Skip to content

Instantly share code, notes, and snippets.

size_t offset = 8;
while(offset--){
uint16_t word = _mm_movemask_epi8((__m128i) value);
for(int8_t index = offset; index < 128; index += 8){
if(word & 1){
// index was set
}
word >>= 1;
}
value <<= 1;
@aczid
aczid / cry1000.py
Last active August 29, 2015 14:01
import sys
from BSecure import *
from Crypto.Hash import MD5
from Crypto.Cipher import AES
from multiprocessing import Pool, cpu_count
p_check = MD5.new()
p_check.update(hex(Rx)[2:-1])
print "Px == MD5(Rx): %s" % (p_check.hexdigest() == hex(Px)[2:-1])
@aczid
aczid / build_all.sh
Last active August 29, 2015 14:20
AVR build script for bleeding edge toolchain (extended)
# - requires git, svn, hg installed
# - will just build the bleeding edge of everything
export PREFIX=`pwd`
export PATH=$PATH:$PREFIX/bin/
export SRCDIR=$PREFIX/src/
# todo test if SRCDIR exists, then get the source
mkdir -p $SRCDIR
# get binutils/gdb, gmp, mpfr, mpc
@aczid
aczid / css transparency
Created January 23, 2009 16:44
Opacity settings for different browsers
opacity: 0.90; /* Safari, Opera */
-moz-opacity:0.90; /* FireFox */
filter: alpha(opacity=90); /* IE */
-khtml-opacity:.90; /* Old safari */
-ms-filter:”alpha(opacity=90)”; /* IE 8*/
@aczid
aczid / gist:112457
Created May 15, 2009 21:56
Four ways to use find with rm
rm `find . -name foo`
find . -name foo | xargs rm
find . -name foo -exec rm {} \;
for i in `find . -name foo`; do rm $i; done
@aczid
aczid / Myspace profile table break (put this under bandmembers)
Created August 29, 2010 12:18
Myspace profile table break (no longer works)
</td></tr></table></td></tr></table></td></tr></table></div>
<style>
.bigdiv {
background-color:000000;
width:1400x; height:2000px; overflow:hidden;
margin-left:-400px;
position: absolute; left:50%; top:0%;margin-top:120px; z-index:2; text-align:left;
visibility:visible;
@aczid
aczid / devkitpro.sh
Created February 14, 2011 15:07
devkitpro.sh, originally from http://lmn.mooo.com/projects/devkitpro-sh updated on 2011-02-14
#!/bin/bash
# Edit the following properties to your own taste:
# NOTE: DIRECTORY PATHS MUST BE ABSOLUTE
DEVKITPRO_PATH=$HOME'/.dev/devkitpro'
LIBNDS_PATH=$DEVKITPRO_PATH'/libnds'
DEFAULT_ARM7_PATH=$LIBNDS_PATH
LIBNDS_EX_PATH=$LIBNDS_PATH'/examples'
NOCASHGBA_PATH="$DEVKITPRO_PATH/nocashgba"
NOCASHGBA_PATH_PRINT="\$DEVKITPRO/nocashgba"
@aczid
aczid / shellcode_aliases
Created October 4, 2011 23:45
bash aliases for shellcoding
# Some bash aliases for working with shellcode. i386-specific, no configuration etc.
# Probably of no use to professionals :)
# Thanks for the help, friends!
# outputs C array of shellcode from .s file, using s-proc (http://www.safemode.org/files/zillion/shellcode/tools/s-proc.c)
function tocshellcode() { gcc -m32 "$@" -o tmp.elf -nostartfiles -nostdlib ; objcopy -O binary -j .text tmp.elf tmp.bin ; s-proc -p tmp.bin ; rm tmp.bin; rm tmp.elf; }
# Morphs the tocshellcode into a single string
function toshellcode() { echo `tocshellcode "$@" | tail -n+4 | tr -d '\n' | tr -d '\t' | tr -d '"' | tr -d ';'`; }
@aczid
aczid / gist:5703046
Last active December 18, 2015 01:19
Make quick & dirty ASCII art out of a hex string and TTF fonts - example at https://github.com/aczid/ru_crypto_engineering/blob/master/README.md#ascii-art
from PIL import Image, ImageFont, ImageDraw
import sys
# Prettify ascii into a TTF rendered ascii art banner
if not len(sys.argv) > 1:
print "Supply string to render"
sys.exit()
if not len(sys.argv) > 2:
@aczid
aczid / gist:5745979
Created June 10, 2013 01:15
Simple bruteforcer for BostonKeyParty CTF level 'Randy'.
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
unsigned int outputs[7][4] = {
{0x7358837a, 0x6e1b2658, 0x3c00c5ff, 0x8c0d4aa},
{0x34d8c3b5, 0x5b56dca1, 0x78236d7, 0x1973085e},
{0x1f49456c, 0x27c0fa1d, 0x145214aa, 0x6200299c},
{0x1fea6614, 0x41cdb864, 0x53c0ed56, 0x63642916},
{0x4e81abc7, 0x792ce075, 0x7d2bc59c, 0x42a11ada},