View crack-lm-ntlm.sh
This file contains 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 | |
session=ntlmscript | |
if [ -z "$1" ]; then | |
echo "No hashfile supplied" | |
exit | |
fi | |
hashfile=$1 | |
if [ ! -f $hashfile ]; then | |
echo "[ERROR] File not exists." |
View blueborne-nexus5.py
This file contains 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 os | |
import sys | |
import time | |
import struct | |
import select | |
import binascii | |
import bluetooth | |
from bluetooth import _bluetooth as bt |
View solitaire-inverse.py
This file contains 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/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 |