Skip to content

Instantly share code, notes, and snippets.

View Sinkmanu's full-sized avatar
😸

Manuel Mancera Sinkmanu

😸
View GitHub Profile
@Sinkmanu
Sinkmanu / booSSH.py
Last active March 12, 2021 12:07
Fuzzing SSH Key exchange begins
from boofuzz import *
import sys
host = sys.argv[1]
port = int(sys.argv[2])
#def banner(target, fuzz_data_logger, session, *args, **kwargs):
# target.send(b"SSH-2.0-OpenSSH_7.9p1 Debian-10+deb10u2\x0d\x0a")
# data = target.recv(1024)
# print("RECV: %s" % str(data))
@Sinkmanu
Sinkmanu / checksec_macho.sh
Created April 24, 2025 12:45
Check security properties of MachO files. It uses otool and nm.
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage $0 <binary>"
exit 1
fi
BIN="$1"
if [ ! -f "$BIN" ]; then