This file contains 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/env python | |
# Omegle Bot v0.1 | |
# Copyleft 2012 thefinn93 | |
# Do not run with author permission | |
# Do not legally obtain this file. It is illegal | |
# If I catch you with a legal copy of this file I will sue you. | |
# Dependencies: | |
# - requests (python-requests.org) |
This file contains 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/env python | |
import httplib2 | |
import sys | |
import json | |
from urllib import urlencode | |
h = httplib2.Http(".cache") | |
print "Please hold while we retrive your IP address..." | |
r,ip = h.request("http://[fc72:6c3b:8c74:68a7:d8c3:b4e0:6cbd:9588]/ip/","GET") | |
url = "http://[fc5d:baa5:61fc:6ffd:9554:67f0:e290:7535]/node/details/" + ip + "/save" | |
print "Looks like your IP is " + ip |
This file contains 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
package irc; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.PrintWriter; | |
import java.net.Socket; | |
import java.net.UnknownHostException; | |
public class IRC { |
This file contains 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/env python | |
from scapy.all import * | |
import sys | |
macs = set() | |
routerprefix = "00:24:6c" | |
try: | |
print "Importing from " + sys.argv[1] |
This file contains 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
package portscanner; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.Socket; | |
import java.net.UnknownHostException; | |
import java.util.Scanner; | |
public class PortScanner { |
This file contains 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
<ruleset name="xkcd"> | |
<target host="xkcd.com" /> | |
<target host="xkcd.org" /> | |
<target host="*.xkcd.com" /> | |
<target host="*.xkcd.org" /> | |
<target host="www.store.xkcd.com" /> | |
<rule from="^http://(www\.|m\.)?xkcd\.(?:com|org)/" | |
to="https://$1xkcd.com/" /> | |
<rule from="^http://(?:www\.)?store\.xkcd\.com/" |
This file contains 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/env python | |
import sys | |
try: | |
import requests | |
except: | |
"Install python requests asshole!" | |
sys.exit() | |
import json |
This file contains 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/env python | |
import sys | |
import json | |
import subprocess | |
import urllib | |
try: | |
import requests | |
except: | |
print "Install requests (try easy_install requests)" | |
sys.exit() |
This file contains 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 | |
LOGFILE="/var/log/cjdnsmap.log" | |
CJDADMIN_IP="127.0.0.1" | |
CJDADMIN_PORT="11234" | |
CJDADMIN_PASS="hax" | |
date > $LOGFILE | |
/home/finn/cjdnsmap/cjdnsmap.py $CJDADMIN_IP $CJDADMIN_PORT $CJDADMIN_PASS /home/finn/cjdnsmap |
This file contains 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
CREATE TABLE IF NOT EXISTS `nodes` ( | |
`name` text NOT NULL, | |
`lat` double NOT NULL, | |
`lon` double NOT NULL, | |
`icon` text NOT NULL, | |
`ip` text NOT NULL, | |
`publickey` text NOT NULL, | |
`password` text NOT NULL, | |
`fcip` text NOT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
OlderNewer