This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ZipFS | |
| import zipfile | |
| import os | |
| class FileSystem: | |
| def __init__(self,name="fs.zip"): | |
| self.drive = name | |
| self.apps = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://matt.might.net/articles/settling-into-unix/ | |
| http://dotfiles.org/ | |
| http://matt.might.net/articles/basic-unix/ | |
| http://matt.might.net/articles/console-hacks-exploiting-frequency/ | |
| http://matt.might.net/articles/how-to-read-and-create-microsoft-word-documents-excel-spreadsheets-powerpoint-presentations-without-microsoft-office/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #Get number of parameters | |
| #if its 2 then continue | |
| if [ "$#" -eq 2 ]; then | |
| url="$1" | |
| dir="$2" | |
| mkdir -p $dir | |
| domain="images.4chan.org" | |
| user_agent="Mozilla" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| cls | |
| echo Python PIP | |
| echo ---------- | |
| cd C:\Python27\Lib\site-packages\pip\ | |
| python __init__.py %1 | |
| echo ---------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get install aircrack-ng | |
| apt-get install macchanger | |
| ifconfig <interface> down | |
| macchanger -s 00:00:13:37:00:00 <interface> | |
| airmon-ng start <interface> | |
| ifconfig <interface> up | |
| airodump-ng <interface> | |
| ...let it populate | |
| ^c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static class TreeNode | |
| { | |
| //Customer information | |
| int id; | |
| String name; | |
| TreeNode left; | |
| TreeNode right; | |
| //Our constructor takes the id and first and last name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [------------------------------------------------------------------------] | |
| [-- 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 --] | |
| [------------------------------------------------------------------------] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get install apache2 php5 libapache2-mod-php5 php5-mysql php5-sqlite php5-curl php5-xdebug php5-gd php5-cgi |