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
{ | |
"targets": [], | |
"libraries": [ | |
{ | |
"folders": [ | |
{ | |
"id": "c43bd29e-8ebb-4a72-8cd4-be26d4b96087", | |
"title": "Reconnaissance", | |
"checklist": [ | |
{ |
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
build: | |
go build -o _main | |
objcopy --add-section myfile=myfile _main main |
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
package main | |
import "crypto/aes" | |
import "fmt" | |
import "encoding/hex" | |
var start = []byte("AES-256 ECB mode twice, two keys") | |
var end = []byte("\x4c\x76\xe9\x07\x86\xc4\xf3\x64\x6a\xdf\x99\x21\x7a\x64\xd0\xd7\x49\xed\xc5\x9f\x2c\x7f\xbb\x36\x58\xaf\x04\xaf\x07\x1d\x0c\x47") | |
var reverse = make(map[string][32]byte) |
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
#!/usr/bin/env python3 | |
# Build a SQLite3 DB for looking up SHA-1 hashes of leaked passwords. | |
# | |
# This can be fed the txt file from one of Have I Been Pwned's hash | |
# lists available from https://haveibeenpwned.com/Passwords -- but any | |
# text file with line format ``hash-hex:count`` will work. | |
# | |
# When run on the v5 hash-ordered SHA-1 file, expect the build to take | |
# about 35 minutes and produce a 15.7 GiB file (~30.5 bytes per record). | |
# |
OlderNewer