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
| import frida | |
| import subprocess | |
| import sys | |
| import argparse | |
| if __name__ == '__main__': | |
| args = argparse.ArgumentParser(description="A simple scriptable frida tracer") | |
| args.add_argument("process", help="Process name to spawn!") | |
| args.add_argument("--inject-script", help="script path to inject", required=True) | |
| args = args.parse_args() |
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
| # Use the "public api" that https://www.virustotal.com/old-browsers/ uses for request the sample information | |
| echo "[+] Virus Total file checker [+]" | |
| if [ $# -ne 1 ] | |
| then | |
| echo "Usage: $0 <SHA1>" | |
| exit |
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
| # Convert matrix to raw bytes | |
| # $ cat simple | |
| # 1,1 | |
| # 1,0 | |
| # $ xxd simple.bin | |
| # 00000000: 0101 0100 | |
| adj_matrix=$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
| from dns.resolver import Resolver | |
| from dns.query import xfr | |
| import json | |
| import argparse | |
| if __name__ == '__main__': | |
| args = argparse.ArgumentParser("DNS resolver toolkit") |
NewerOlder