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/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 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
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