Preparation and Review of eMAPT (INE security FKA eLearnSecurity Mobile Application Penetration Tester

I started thinking about Mobile pentesting sometime back. Finally in Feb/2024, I paid for the yearly subscription for INE and added eMAPT to my cart. If you dont know about eMAPT cert, then head over to eMAPT certification. And as per their home page

The Mobile Application Penetration Tester (eMAPT) certification is issued to cyber security experts that display advanced mobile application security knowledge through a scenario-based exam.

And on Apr/05/2024, I got My Certificate. My Certificate

Continue reading

Benchmarking the system/CPU performance

2012-01-15 2 min read Bash Fedora Learning

Have you ever wanted to have a quick check on your CPU performance. I know that lot of people will say that this is not the right way to do this, but here is something that you can use to check the CPU speed.

#!/bin/bash -
#===============================================================================
#
#          FILE:  benchmark.sh
#
#         USAGE:  ./benchmark.sh
#
#   DESCRIPTION:  Benchmark the CPU
#
#       OPTIONS:  ---
#  REQUIREMENTS:  ---
#          BUGS:  ---
#         NOTES:  ---
#        AUTHOR: Amit Agarwal (aka), amit.agarwal@roamware.com
#       COMPANY: Roamware India Pvt Ltd
#       CREATED: 09/21/2011 11:46:03 AM IST
# Last modified: Wed Sep 21, 2011  12:22PM
#      REVISION:  ---
#===============================================================================

add ()
{
    COUNTER=0
    exec 2>&1
    time=$(exec 2>&1;(time while [[  $COUNTER -lt 100000 ]]; do ((COUNTER++)) \
        ; done))
    echo "Time for 100000 additions is "$time
}	# ----------  end of function add  ----------
mul ()
{
    COUNTER=0
    test=2
    exec 2>&1
    time=$(exec 2>&1;(time while [[  $COUNTER -lt 100000 ]]; do ((COUNTER++)) \
        ; ((test=test*2));done))
    echo "Time for 100000 mul is "$time
}	# ----------  end of function add  ----------
div ()
{
    COUNTER=0
    test=1000000000000
    exec 2>&1
    time=$(exec 2>&1;(time while [[  $COUNTER -lt 100000 ]]; do ((COUNTER++)) \
        ; (( test=test/2)); done)|tr -d '\n')
    echo "Time for 100000 divisions is "${time}
}	# ----------  end of function add  ----------

time add
time mul
time div

And here is the output :

Continue reading

30 Best Windows Mobile Applications

2011-12-28 2 min read Uncategorized

30 Best Windows Mobile Applications

33 Comments »
Share inShare

The main reason why people still love window mobile is because of its freeware applications and excellent add-ons. Windows Mobile users carry great access to third party applications than any other Mobile Operating system in the market. At the same time it might be confusing for the user to settle on which window mobile apps to download. So we at honeytechblog did a search and have compiled a list of Top 30 Best window mobile applications. These applications will ensure following features such as networking, themes, tools for tweak, music players, newsreaders, Internet browser, document manager and much more.

Continue reading

Blogging from N900

2011-12-19 1 min read Maemo N900
[English: Nokia N900 communicator/internet tabl...][1]
Image via Wikipedia

Can´t get simpler than this. Just install the application called wordpress in your N900, and punch in the details for your blog along with your admin login and password and you have a amazing wordpress client. You can even add photos like the one below:

N900 and its applications keep me amazed and happy 🙂

Enhanced by Zemanta

N900 starts showing junk characters

2011-06-08 1 min read Maemo N900

Well, sometime back I bought N900, some snaps here. And sooner than later I started playing with it. In an effort to reduce the disk usage for the “/” (root) partition, I removed some packages that were taking too much of space and managed to get the mobile to a stage where a lot of applications started displaying strange and junk characters and also cannot use package manager any more…errors reported.

Continue reading

Best Mobile Internet Browser (Opera Mini vs. SkyFire)

2010-08-07 3 min read Bash Linux

Showdown: Best Mobile <a class="zem_slink" title="Internet" rel="wikipedia" href="http://en.wikipedia.org/wiki/Internet">Internet Browser (<a class="zem_slink" title="Opera Software" rel="homepage" href="http://www.opera.com">Opera Mini vs. <a class="zem_slink" title="Skyfire" rel="homepage" href="http://www.skyfire.com">SkyFire) mobile internet browsersDo you browse the web on your mobile device? As <a class="zem_slink" title="Mobile phone" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mobile_phone">cell phones get faster connection speeds, processors, bigger screens and better applications, it’s getting easier and easier to go online with them. Add in the fact that most websites have a mobile version now and it makes this an even simpler process.

Continue reading