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
import math | |
import re | |
def hex_dump(data, cols=16): | |
data_len = len(data) | |
addr_pad = math.ceil(data_len.bit_length() / 4) | |
for i in range(0, data_len, cols): | |
paragraph = data[i:i + cols] | |
hex_view = paragraph.hex(' ', 1).ljust(cols * 3) |
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
./802.11b Wireless LAN PCI Card (Ver. 1.0).iso | |
./ABIT I865-1.20M Drivers, Hardware Monitor, Manual.iso | |
./APC PowerChute Business Edition (8.0.1, 991-2008A).iso | |
./APC PowerChute Personal Edition (Ver. 3.0.2).iso | |
./APC PowerChute Plus (Ver .5.0.2 Windows 9x, 5.2 Windows NT, 5.1.1 J Windows NT J).iso | |
./APC Smart-UPS Tower, Rack-Mount User Manuals (2007, 991-0195P).iso | |
./APC User Documentation - Smart-UPS LCD Tower, Rack-Mount2U (991-0627B).iso | |
./ASRock IIZ75-10 Motherboard (Version 1.0).iso | |
./ASRock Intel-VIA Series IV21b Motherboard (Ver. 2.1b).iso | |
./ATI Catalyst Software (180-G01416-100).iso |
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
0.1x Engineer | |
0xFEEDFACE | |
A Flock of SQLs | |
Abraham Linksys | |
Ace of Base64 | |
All about that base64 | |
Amazon FartCloud | |
Ayn RAND() | |
Big Endian Pimpin' | |
Billy Ray Cyrix |
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
# Klein Tools TI250 image tool by Scott Smitelli. Public domain. | |
# Requires at least Python 3.6 (developed and tested on 3.9) | |
# See https://www.scottsmitelli.com/articles/klein-tools-ti250-hidden-worlds | |
import argparse | |
import numpy as np | |
import re | |
import struct | |
from PIL import Image, ImageDraw |
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/python3 | |
""" | |
Python 3.6 or above. | |
Cygwin: startxwin ./pygame-fps.py | |
""" | |
import numpy | |
import pygame | |
import time |
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 | |
import base64 | |
import getpass | |
import hmac | |
import struct | |
import time | |
def make_hotp(secret_bytes, counter, length): |
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
'use strict'; | |
var lodash = require('lodash'), | |
request = require('superagent'), | |
TestObj = {}; | |
function asyncRequest (callback) { | |
callback(null, {status : 'It works!'}); | |
} |
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
var VALID_TLDS = [ | |
'ac','ad','ae','aero','af','ag','ai','al','am','an','ao','aq','ar','arpa','as','asia','at','au','aw','ax','az', | |
'ba','bb','bd','be','bf','bg','bh','bi','biz','bj','bm','bn','bo','br','bs','bt','bv','bw','by','bz','ca','cat', | |
'cc','cd','cf','cg','ch','ci','ck','cl','cm','cn','co','com','coop','cr','cu','cv','cw','cx','cy','cz','de', | |
'dj','dk','dm','do','dz','ec','edu','ee','eg','er','es','et','eu','fi','fj','fk','fm','fo','fr','ga','gb','gd', | |
'ge','gf','gg','gh','gi','gl','gm','gn','gov','gp','gq','gr','gs','gt','gu','gw','gy','hk','hm','hn','hr','ht', | |
'hu','id','ie','il','im','in','info','int','io','iq','ir','is','it','je','jm','jo','jobs','jp','ke','kg','kh', | |
'ki','km','kn','kp','kr','kw','ky','kz','la','lb','lc','li','lk','lr','ls','lt','lu','lv','ly','ma','mc','md', | |
'me','mg','mh','mil','mk','ml','mm','mn','mo','mobi','mp','mq','mr','ms','mt','mu','museum','mv','mw','mx','my', | |
'mz','na','name','nc','ne','net','nf |
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/bash | |
BASE=/cygdrive/c/Users/ssmitelli/Downloads | |
cd "$BASE" | |
wget -r -np -k http://code.getadblock.com/releases/ | |
# Manually delete crap here | |
cd ~/abfc/ |
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
#!/bin/bash | |
res=$(curl -fsSL http://www.vessel.com/careers/apply.rb) | |
while true | |
do | |
if grep -q 'eval(' <<< "$res" | |
then | |
grep ^\s*# <<< "$res" | grep -v '/usr/bin/env' | |
res=$(sed s/eval/print/ <<< "$res" | ruby) | |
else | |
echo "$res" |
NewerOlder