Skip to content

Instantly share code, notes, and snippets.

View 0xabad1dea's full-sized avatar
🚫
no cooperation with ICE

0xabad1dea (Melissa Elliott) 0xabad1dea

🚫
no cooperation with ICE
View GitHub Profile

Keybase proof

I hereby claim:

  • I am 0xabad1dea on github.
  • I am 0xabad1dea (https://keybase.io/0xabad1dea) on keybase.
  • I have a public key whose fingerprint is F390 1782 28A0 41E1 042F 9F9B 2B1B 8E3B 75D6 270A

To claim this, I am signing this object:

@0xabad1dea
0xabad1dea / celrim.md
Last active August 29, 2015 14:15
celrim instructions

Installing cel-shaded effect into Skyrim

  1. Install enb for Skyrim. The site design is terrible, that list of version numbers at the bottom are the hyperlinks. You did it right if it displays version text in the top left a few seconds after Skyrim starts. For the record I use the injector version.

  2. in enblocal.ini in your skyrim folder, under the [ENGINE] group, put: ForceLodBias=true LodBias=4.0 which forces the textures to be shrunk down and throw out a lot of detail. 4.0 is as high as it goes, if anyone knows a way to get it to shrink textures to, say, 2x2 let me know.

  3. Download the "DOS effect" example from the sample ENB effects. Place it as effect.txt in your Skyrim folder.

@0xabad1dea
0xabad1dea / ABI
Created April 5, 2012 19:50
0x10c Programming Notes
On April 5 2012, #0x10c-dev agreed to the following standard ABI:
- Registers A, B, C are clobberable across calls
- Registers I, J, X, Y, Z are preserved across calls
- Return in A
- J is used for base stack pointer (preserving the value of SP before allocating
data for locals)
@0xabad1dea
0xabad1dea / crisscross.txt
Created April 26, 2012 20:47
Studio Mintaka's CrissCross Cable
_ _
(_) _ | |
____ _ ____ _| |_ _____| | _ _____
| \| | _ (_ _|____ | |_/ |____ | *
| | | | | | | || |_/ ___ | _ (/ ___ | *
|_|_|_|_|_| |_| \__)_____|_| \_)_____| *
STUDIO MINTAKA : MANUFACTURER ID 0xABAD1DEA
___ ____ ____ ___ ___ ___ ____ _____ ___ ___
/ __)( _ \(_ _)/ __)/ __)\ / / __)( _ \( _ )/ __)/ __)
@0xabad1dea
0xabad1dea / vibespy.rb
Created July 4, 2012 00:41
Trivial skeleton script for seeing Vibe messages outside of your range
#!/usr/bin/ruby
# trivial skeleton script for seeing Vibe messages that have a location and range that excludes you
# tested july 3rd, 2012
require 'rubygems'
require 'rest_client'
url = "https://v.zami.com/vibe_getsayings16-W4czD.php"
# new york city
lat = 40.664167
long = -73.938611
@0xabad1dea
0xabad1dea / phppasswordfunctions.txt
Last active December 14, 2015 17:09
List of PHP functions that take password or key arguments
Here is a huge list of functions listed in the PHP manual which take an argument
which contains sensitive data, either directly or as an array element. Use it to
"audit" for statically embedded passwords in "your" codebase. Some of these are
very obscure/deprecated/whatever. The ones with "construct" in the name are
classes called in source like new foo("password");...
http://php.net/manual/en/function.hash-hmac.php
http://www.php.net/manual/en/function.curl-setopt.php
@0xabad1dea
0xabad1dea / tricksy.c
Last active December 17, 2015 14:59
A deceitful C program
// hello clever programmers, would you like to play a game?
// where's the bug?
// by 0xabad1dea :)
#include <stdio.h>
#include <string.h>
int main() {
char input[16] = "stringstring!!!";
char output[8];
@0xabad1dea
0xabad1dea / dnparsefail.c
Created August 30, 2013 01:16
dropping mad 0day in super-relevant XINU
#include <stdio.h>
#include <string.h>
/*~ demonstration of unbounded conditions and integer wrap
bugs in a real networking stack by 0xabad1dea
dnparse() is taken from the XINU operating system
http://www.cs.purdue.edu/homes/dec/xlicense.html
slightly tweaked to compile as a unix userland thing ~*/
@0xabad1dea
0xabad1dea / banned.h
Last active December 27, 2015 19:46
banning macros
/* include this file AFTER your standard includes */
/* clang -Weverything -Wno-unused-macros */
/* SIGNED ARITHMETIC IS THE ENEMY. (use "signed" for main, etc.) */
#define int BANNED
/* THESE OTHER THINGS ARE ALSO THE ENEMY. */
#ifdef strcpy
#undef strcpy
#endif
#define strcpy BANNED
@0xabad1dea
0xabad1dea / rtlsdr-osx.txt
Created June 13, 2013 21:55
Build RTL-SDR on OSX with no tears
rtl-sdr build notes for OSX
using macports http://www.macports.org/
see http://sdr.osmocom.org/trac/wiki/rtl-sdr
sudo port install cmake
sudo port install libusb
sudo port install pkgconfig
sudo port install sox # for easy audio
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr/