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
#coding:utf-8 | |
from __future__ import print_function | |
import os | |
import sys | |
import struct | |
import math | |
TAG_TYPE = { | |
18:'SCRIPT', | |
9:'VIDEO', |
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
.class public Lcom/test/Debug; | |
.super Ljava/lang/Object; | |
# static fields | |
.field public static final DEBUG_BILLING_DUMMY:Z = false | |
.field public static final DEBUG_CHECK_MD5:Z = false | |
.field public static final DEBUG_DISABLE_EVIDENCE:Z = false |
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
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) |
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
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): |
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
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]) |
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
/** | |
* bijiji.net v2.0.504 | |
* dev:Mr.Wong | |
* create date:2013.11.14 | |
* **/ | |
//业务逻辑 | |
; | |
(function ($, W, D) { | |
var TK = W.Toolkit, |
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 python | |
# -*-coding: utf8 -*- | |
"""Channel API | |
""" | |
import time | |
import json | |
import urllib | |
import urllib2 |
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
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])] |
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
#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 |
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
#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", |