Skip to content

Instantly share code, notes, and snippets.

@mouseroot
mouseroot / LICENSE.txt
Created February 11, 2012 22:55 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@mouseroot
mouseroot / sniff_popups.py
Created August 23, 2012 01:39
sniff popups
import socket
import os
def copyfile():
host_path = "C:\Windows\System32\drivers\etc\hosts"
host_repl = "myhosts"
os.system("copy %s %s" % (host_repl,host_path))
@mouseroot
mouseroot / requests.java
Created August 23, 2012 02:11
Post requests in java
import java.io.*;
import java.net.*;
import javax.swing.*;
public class Requests {
static String domain;
static URL myurl;
static URLConnection myurlc;
@mouseroot
mouseroot / game.py
Created August 23, 2012 02:30
pygame class
import pygame
from pygame.locals import *
class Game:
def __init__(self):
pygame.init()
self.screen = pygame.display.set_mode((640,480))
self.running = 1
self.clock = pygame.time.Clock()
@mouseroot
mouseroot / ctypes.py
Created August 23, 2012 02:36
ctypes demo
from ctypes import *
class Win32api():
def __init__(self):
#msdn for what dll to use
self.SetWindowText = windll.user32.SetWindowTextA
self.FindWindow = windll.user32.FindWindowA
def String(self,s):
return c_char_p(s)
@mouseroot
mouseroot / multiserver.py
Created August 23, 2012 02:52
multithreaded echo server
from threading import Thread
import socket
class clientThread(Thread):
def __init__(self,sock):
Thread.__init__(self)
self.socket = sock
self.running = 1
def run(self):
while self.running == 1:
apt-get install apache2 php5 libapache2-mod-php5 php5-mysql php5-sqlite php5-curl php5-xdebug php5-gd php5-cgi
@mouseroot
mouseroot / client.py
Created August 31, 2012 06:11
XMLRPC Client/Server
#!/usr/bin/python
import xmlrpclib,os
def main():
cli = xmlrpclib.Server("http://192.168.0.2:1337")
for file in os.listdir("send-files"):
print file
if os.path.isdir("send-files/" + file) == True:
print "Dir:",file
@mouseroot
mouseroot / needle.txt
Created September 1, 2012 01:47
Linux x86 Runtime process doc
[------------------------------------------------------------------------]
[-- Uninformed Research -- informative information for the uninformed. --]
[------------------------------------------------------------------------]
[-- Genre : Development --]
[-- Name : needle --]
[-- Desc : Linux x86 run-time process manipulation --]
[-- Url : http://www.uninformed.org/ --]
[-- Use : EVILNESS --]
[------------------------------------------------------------------------]
@mouseroot
mouseroot / ret_to_main.sh
Created September 1, 2012 05:33
Simple gdb script to rerturn the eip to libc main
set $s = dyld_stub_rand
set $p = ($s+6+*(int*)($s+2))
call (void*)dlsym((void*)dlopen("myrand.dylib"), "my_rand")
set *(void**)$p = my_rand
c