Skip to content

Instantly share code, notes, and snippets.

@buzzer-re
buzzer-re / frida_tracer.py
Created August 22, 2020 22:42
Quick and dirty frida tracer, just pass your injected script path and the process name
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()
@buzzer-re
buzzer-re / virustotal_json.sh
Last active July 20, 2020 03:05
curl the public virus total endpoint to retrieve the report in json format
# 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
# Convert matrix to raw bytes
# $ cat simple
# 1,1
# 1,0
# $ xxd simple.bin
# 00000000: 0101 0100
adj_matrix=$1
@buzzer-re
buzzer-re / dnsrecon.py
Last active December 21, 2020 20:46
Extract maximum information possible from a DNS server and also try zone migration
from dns.resolver import Resolver
from dns.query import xfr
import json
import argparse
if __name__ == '__main__':
args = argparse.ArgumentParser("DNS resolver toolkit")