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 | |
# author=evi1m0 | |
# website=linux.im | |
''' | |
12306 Captcha Picture: | |
author: Evi1m0@20150316 | |
1. Download Captcha | |
2. Pic Conver Text |
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
''' | |
___. .___ __ __ | |
\_ |__ ____ ___.__. ____ ____ __| _// |________ __ __ _______/ |_ | |
| __ \_/ __ < | |/ _ \ / \ / __ |\ __\_ __ \ | \/ ___/\ __\ | |
| \_\ \ ___/\___ ( <_> ) | \/ /_/ | | | | | \/ | /\___ \ | | | |
|___ /\___ > ____|\____/|___| /\____ | |__| |__| |____//____ > |__| | |
\/ \/\/ \/ \/ \/ | |
MS15-034 Checker | |
Danger! This script has not been properly qa'd and will probably fail in terrible ways. |
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
#!/user/bom/env python | |
# coding=utf8 | |
# author=dave | |
# create=20150501 | |
import time | |
import gevent | |
import requests | |
import gevent.monkey | |
gevent.monkey.patch_socket() |
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
#!/user/bom/env python | |
# coding=utf8 | |
# [email protected] | |
# create=20150502 | |
__author__ = 'Dave' | |
import dns.resolver | |
def get_dns_a(domain): | |
print "[+] A Records" |
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
package dave.demo.Utility; | |
import android.os.AsyncTask; | |
import android.util.Log; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.HttpStatus; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.impl.client.DefaultHttpClient; |
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 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
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
package davex; | |
import java.util.Objects; | |
/** | |
* The MATRIX Class for storing and operating weighted undirected grid | |
* @author Dong Fang | |
*/ | |
public class Matrix { | |
private int mSize; |
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
package pw.davex; | |
/** | |
* @author Dong Fang | |
*/ | |
public class HashTable <V> { | |
private int mTableSize; | |
private int mElementNum; | |
private int mAttemptTime; | |
private HashEntry[] mTable; |
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 python3 | |
# -*- utf8 -*- | |
# [email protected] | |
# create=20160425 | |
import requests | |
import gevent.pool | |
import gevent.monkey | |
import sys | |
MAX_TRY_COUNT = 3 | |
THREADS = 30 |
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 | |
/** | |
* 生成mysql数据字典 | |
*/ | |
// 配置数据库 | |
$database = array(); | |
$database['DB_HOST'] = '127.0.0.1'; | |
$database['DB_NAME'] = 'test'; | |
$database['DB_USER'] = 'testuser'; | |
$database['DB_PWD'] = '123456'; |
OlderNewer