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
require ('ldebug') | |
require ('lqueso') | |
function map (f, t) | |
local result = {} | |
for k,v in pairs(t) do | |
result[k] = f(v) | |
end | |
return result | |
end |
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
BEAT NAVY! License | |
Copyright (c) 2014, Alex Eubanks <[email protected]> | |
BEAT NAVY! | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
1. Redistributions of source code must retain the above copyright | |
notice, this list of conditions and the following disclaimer, to |
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 darm | |
start = 0xbac0 | |
end = 0xc860 | |
doc = Document.getCurrentDocument() | |
seg = doc.getCurrentSegment() | |
def label_plt_entry(adr) : |
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
from phply.phpparse import parser | |
import phply.phplex as phplex | |
from phply.phpast import * | |
import sys | |
import copy | |
import os.path | |
import pickle | |
import subprocess | |
import traceback |
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 binascii | |
import subprocess | |
import sys | |
bench_files = ['bench_database.txt', | |
'bench_kiosk.txt', | |
'bench_mixed.txt', | |
'bench_test.txt', | |
'bench_webapp.txt'] |
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
#!/usr/bin/python | |
import hashlib | |
import sys | |
if len(sys.argv) != 3 : | |
print("usage: " + sys.argv[0] + " <CASE_INSENSITIVE_PASSWORD> <NTLM_HASH>") | |
sys.exit(-1) | |
def nt_hash (plaintext) : |
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
" Vim syntax file | |
" Language: Hudson | |
" Maintainer: Alex Eubanks <endeavor at rainbowsandpwnies dot com> | |
" Last Change: Oct 19 2011 | |
" Comments: Modified from lua.vim found in default arch repos 19 Oct 2011 | |
syntax clear | |
syn case match | |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main (int argc, char * argv[]) { | |
int filesize; | |
int i; | |
unsigned char byte; | |
char string[41]; |