Skip to content

Instantly share code, notes, and snippets.

@jesux
jesux / crack-lm-ntlm.sh
Last active February 21, 2022 19:43
Hashcat Script to Crack LM + NTLM hashes
View crack-lm-ntlm.sh
#/bin/bash
session=ntlmscript
if [ -z "$1" ]; then
echo "No hashfile supplied"
exit
fi
hashfile=$1
if [ ! -f $hashfile ]; then
echo "[ERROR] File not exists."
@jesux
jesux / blueborne-nexus5.py
Created November 3, 2017 10:14
Blueborne RCE PoC - Nexus5 6.0.1
View blueborne-nexus5.py
import os
import sys
import time
import struct
import select
import binascii
import bluetooth
from bluetooth import _bluetooth as bt
@jesux
jesux / solitaire-inverse.py
Last active September 9, 2021 03:13
Python implementation of Bruce Schneier's Solitaire with inverse decrypt
View solitaire-inverse.py
#!/bin/env python
"""
Python implementation of Bruce Schneier's Solitaire Encryption
Algorithm.
John Dell'Aquila <jbd@alum.mit.edu>
@jesux
- Final deck decrypt
- Set deck order without passphrase