Skip to content

Instantly share code, notes, and snippets.

@lucianmaxx
lucianmaxx / AdbCommands
Created January 8, 2021 05:13 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@lucianmaxx
lucianmaxx / google-dorks
Created September 16, 2020 22:22 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@lucianmaxx
lucianmaxx / extract.sh
Created March 22, 2020 05:31 — forked from bfritz/extract.sh
convert android backup.ab file to tarball
# assumes unencrypted backup
# dump tarball to stdout
tail -n +5 backup.ab | openssl zlib -d
# show tarball TOC
tail -n +5 backup.ab | openssl zlib -d | tar tv | less