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 python2 | |
# SOCKS 5 server | |
# -*- coding: utf-8 -*- | |
import socket, struct, time, select, os | |
from thread import start_new_thread, allocate_lock | |
# Address to listen on | |
HOST = "" | |
# Port to listen on | |
PORT = 12345 |
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
/* NetFIFO | |
* Creates two FIFO files that are piped to a network connection. | |
* Made by sfan5 | |
* License: CC-BY-SA v3 | |
* | |
* Example Usage: | |
* netfifo tcp google.com 80 ififo ofifo & | |
* echo -e "GET / HTTP/1.1 \r\n" > ififo | |
* cat ofifo | |
*/ |
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
import urllib, urllib2, re | |
from xml.dom import minidom | |
# Made by sfan5 2013 v0.4.09.3 | |
V = "0.4.09.3" | |
# this script runs through the 'Mod Releases' section and checks the topics for missing things | |
# Also displays Statistics | |
# Can also reply to topics when valid session cookies are provided | |
# Can also move faulty topics to another forum | |
## <Settings> |
NewerOlder