- https://www.hackingarticles.in/android-penetration-testing-apk-reverse-engineering/
- https://www.hackingarticles.in/android-penetration-testing-apk-reversing-part-2/
- https://www.hackingarticles.in/android-pentest-deep-link-exploitation/
- https://www.hackingarticles.in/android-penetration-testing-webview-attacks/
- https://www.hackingarticles.in/android-penetration-testing-frida/
- https://www.hackingarticles.in/android-pentest-lab-setup-adb-command-cheatsheet/
- https://www.hackingarticles.in/android-hooking-and-sslpinning-using-objection-framework/
- https://www.hackingarticles.in/android-penetration-testing-drozer/
- checkra1n
- A7 - A10 devices (iPhone 5s - iPhone X), iOS 12.0+
- Dropbear SSH, port 44, root:alpine
- USB multiplexing daemon
usbmuxd
(available viabrew
) - Use
scp
to copy file to/from device
Forward remote (iDevice) port 44 (Dropbear SSH) to local (Mac) 2222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Burp SSL Certificate on IOS 11 | |
On iOS 11 you can't just install your MITM root cert, you also need to explicitly trust it. | |
You can do this by: | |
Settings -> General -> About -> Certificate Trust Settings -> Flip the switch on your cert | |
---------------------------------------------------------------------------------------------------------------- | |
#GDB on IOS 11 | |
Source: https://shmoo419.github.io/ | |
gdb | |
ps -ax | grep -i appName | |
attach [processNo] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to setup Burp Suite inside a docker container. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Online Subdomain Detect Script" | |
echo "Twitter => https://twitter.com/cihanmehmets" | |
echo "Github => https://github.com/cihanmehmet" | |
echo "CURL Subdomain Execute => curl -s -L https://raw.githubusercontent.com/cihanmehmet/sub.sh/master/sub.sh | bash -s bing.com" | |
echo "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" | |
if [[ $# -eq 0 ]] ; | |
then |
cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####################### | |
### Proxy curl/wget ### | |
####################### | |
export http_proxy=localhost:8080 | |
export https_proxy=localhost:8080 | |
curl -k https://ifconfig.io | |
wget --no-check-certificates https://ifconfig.io | |
####################### | |
### Proxy Java JARs ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"proxy":{ | |
"ssl_pass_through":{ | |
"automatically_add_entries_on_client_ssl_negotiation_failure":false, | |
"rules":[ | |
{ | |
"enabled":true, | |
"host":".*\\.google\\.com", | |
"protocol":"any" | |
}, |
NewerOlder