This file contains hidden or 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
| /* | |
| frida -U -f package.name --codeshare luca-regne/android-freerasp-bypass --no-pause | |
| Android freeRASP Bypass by regne | |
| https://fireshellsecurity.team/bhackctf2024-bypass-freerasp-callbacks/ | |
| */ | |
| Java.perform(function() { | |
| var Intent = Java.use("android.content.Intent"); |
This file contains hidden or 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
| # https://twitter.com/brsn76945860/status/1171233054951501824 | |
| pip install mmh3 | |
| ----------------------------- | |
| # python 2 | |
| import mmh3 | |
| import requests | |
| response = requests.get('https://cybersecurity.wtf/favicon.ico') | |
| favicon = response.content.encode('base64') |
This file contains hidden or 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 | |
| # Usage : ./scanio.sh <save file> | |
| # Example: ./scanio.sh cname_list.txt | |
| # Premium | |
| function ech() { | |
| spinner=( "|" "/" "-" "\\" ) | |
| while true; do | |
| for i in ${spinner[@]}; do | |
| echo -ne "\r[$i] $1" |
This file contains hidden or 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
| ## crt.sh | |
| curl "https://crt.sh/?q=.${domain}&output=json" | jq -r ".[].name_value" | sed -s "s/\*\.//" | sort -u | |
| ## bufferover.run | |
| curl "https://dns.bufferover.run/dns?q=.${domain}" | jq -r ".FDNS_A[]",".RDNS[]" | cut -d ',' -f2 | grep -F ".${domain}" |