Skip to content

Instantly share code, notes, and snippets.

View levisre's full-sized avatar
💭
I may be slow to respond.

Levis Nickaster levisre

💭
I may be slow to respond.
View GitHub Profile
@levisre
levisre / Jar2ExeUnpack_Level2.c
Created July 13, 2015 06:39
Small C Program to unpack Level 2 Protection of Jar2exe
/*
================================================|
Jar2Exe level 2 Unpacker (Hide Class protection)|
Created by Levis Nickaster |
http://ltops9.wordpress.com |
================================================|
*/
#include <stdio.h>
#include <stdlib.h>
@levisre
levisre / HopperScriptsInstaller.sh
Last active August 29, 2015 14:24
A small Shell Script to install Script Collection for Hopper Disassembler
#!/bin/sh
ARCHIVE="master.zip"
SCRIPT_PATH="$HOME/GNUstep/Library/ApplicationSupport/Hopper/Scripts/"
UNZIP_PATH="HopperScripts-master"
#Require wget, unzip
echo "Hopper Disassembler Scripts Installer\n Based on phracker Github Repository"
echo "Moving to TMP folder..."
cd /tmp
@levisre
levisre / re100.py
Created May 8, 2015 02:00
WhiteHat Contest 9 RE100
def Calculate(iSum, lValue):
lTmp=range(0,len(lValue)+1)
for i in range(0x20,0x7F):
lTmp[0]=i
cSum=0
cSum+=lTmp[0]
for j in range(0,len(lValue)):
lTmp[j+1]=lTmp[j]+lValue[j]
cSum+=lTmp[j+1]
if cSum==iSum:
@levisre
levisre / flufferduff.py
Created February 25, 2015 08:21
Flufferduff sCTF 2015
def sumOdd(a):
i=1
result=0
while i<a:
result+=i
i+=2
return result
def getPrime(a):
result =[]