View query_4px.py
#coding:utf-8 | |
from httplib2 import Http | |
import re | |
import time | |
today = time.strftime('%Y-%m-%d 00:00:00',time.localtime(time.time())) | |
ticket = "xxxxxxxxxxxxxxxxxx" | |
a,b = Http("Z:\TEMP").request("http://www.transrush.com/Transport/LogisticsTransferTrace.aspx?code=%s" % ticket, | |
headers = {"Referer":"http://tr.4px.com/Transport/TransportInfo.aspx", | |
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", | |
"Accept-Encoding":"gzip,deflate", |
View .htaccess
#Redirect 301 ^/$ /search.htm | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
#RewriteCond %{REQUEST_URI} !^/index\.htm | |
#RewriteCond %{REQUEST_URI} !^/image\.htm | |
#RewriteCond %{REQUEST_URI} !^/m\.htm | |
#RewriteCond %{REQUEST_URI} !^/mi\.htm |
View KHimekuri.py
from __future__ import print_function | |
from Crypto.Cipher import AES | |
import os, os.path as opath | |
import binascii | |
import time | |
from datetime import datetime, timedelta | |
from httplib2 import Http | |
pad = lambda s: s + (16 - len(s) % 16) * chr(16 - len(s) % 16) | |
unpad = lambda s : s[0:-ord(s[-1])] |
View channel.py
#!/usr/bin/env python | |
# -*-coding: utf8 -*- | |
"""Channel API | |
""" | |
import time | |
import json | |
import urllib | |
import urllib2 |
View app.js
/** | |
* bijiji.net v2.0.504 | |
* dev:Mr.Wong | |
* create date:2013.11.14 | |
* **/ | |
//业务逻辑 | |
; | |
(function ($, W, D) { | |
var TK = W.Toolkit, |
View check_ssl.py
from socket import socket, error, setdefaulttimeout | |
import ssl | |
import re | |
import time | |
import sys | |
import os | |
from hashlib import md5 | |
import json | |
os.chdir(os.path.split(sys.argv[0])[0]) |
View qqvote_makedie.py
from httplib2 import Http | |
import random | |
import time | |
from threading import Thread | |
from Queue import Queue, Empty | |
print_queue = Queue() | |
rnd = lambda :'0.'+''.join([random.choice('0123456789') for i in range(18)]) | |
cnt = 0 | |
class wo(Thread): | |
def __init__(self, name): |
View fuck_so.py
from subprocess import Popen, PIPE | |
import struct | |
import os | |
fuckfile = r'z:\libGame.so' | |
total = os.stat(fuckfile).st_size | |
print('totle file size is 0x%x' % total) | |
f = open(fuckfile, 'rb') | |
l1 = f.read(16) | |
l2 = f.read(16) | |
l3 = f.read(16) |
View goo-proxy.conf
LoadModule proxy_module modules/mod_proxy.so | |
LoadModule proxy_http_module modules/mod_proxy_http.so | |
ErrorLog ${APACHE_LOG_DIR}/google-proxy-android-err.log | |
CustomLog ${APACHE_LOG_DIR}/google-proxy-android-access.log combined | |
DocumentRoot "/var/www/google-proxy" | |
ProxyPreserveHost On | |
ProxyRequests Off | |
ProxyRequests Off | |
ProxyPassReverseCookiePath /var/www/google-proxy / |
View YoukuAntiADs+.js
// ==UserScript== | |
// @name YoukuAntiADs@res | |
// @author Harv.c, fffonion | |
// @description 你猜猜 | |
// @version 0.2.6 | |
// @namespace http://userscripts.org:8080/users/Harv | |
// @updateURL http://userscripts.org:8080/scripts/source/119622.meta.js | |
// @downloadURL http://userscripts.org:8080/scripts/source/119622.user.js | |
// @include http://*/* | |
// @include https://*/* |
OlderNewer