Skip to content

Instantly share code, notes, and snippets.

View fffonion's full-sized avatar

Wangchong Zhou fffonion

View GitHub Profile
@fffonion
fffonion / query_4px.py
Last active August 29, 2015 13:57
四方转运怨念累积每日查询用脚本【摔
#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",
@fffonion
fffonion / KHimekuri.py
Created April 18, 2014 07:52
download K Project everyday wallpaper
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])]
@fffonion
fffonion / channel.py
Created April 23, 2014 10:40
SAE internal apis
#!/usr/bin/env python
# -*-coding: utf8 -*-
"""Channel API
"""
import time
import json
import urllib
import urllib2
@fffonion
fffonion / app.js
Created April 30, 2014 15:56
比机机(bijiji.net)测试js
/**
* bijiji.net v2.0.504
* dev:Mr.Wong
* create date:2013.11.14
* **/
//业务逻辑
;
(function ($, W, D) {
var TK = W.Toolkit,
@fffonion
fffonion / qqvote_makedie.py
Created July 22, 2014 14:43
为什么腾讯的投票不检查ip和session的
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):
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)
@fffonion
fffonion / goo-proxy.conf
Last active August 29, 2015 14:07
Google service redirect @apache2 ver
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 /
@fffonion
fffonion / YoukuAntiADs+.js
Last active August 29, 2015 14:07
antiads, f*ck crossdomain, f8ck swf loader
// ==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://*/*
@fffonion
fffonion / goo-proxy.conf
Created November 28, 2014 09:21
Google service redirect @nginx ver
access_log /var/log/nginx/google_proxy-access.log combined;
####sn-nx57
server {
listen 80;
server_name ~^r.+yn7s.c.android.clients.google.com$;
server_name ~^r.+yn7s.c.pack.google.com$;
location / {
proxy_pass http://173.194.56.9:80/;
@fffonion
fffonion / wiki_movie_names.py
Last active August 29, 2015 14:12
get original name of movies
#encoding:utf-8
import httplib2
import lxml.html as lhtml
import re
import os
import urllib
import sys
import gzip
reload(sys)
sys.setdefaultencoding('utf-8')