This file contains 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:utf-8 | |
#author blog link - http://blog.csdn.net/stevendbaguo/article/details/37320705 thx | |
import sha | |
import string | |
BASE2 = '01' | |
BASE10 = '0123456789' | |
BASE16 = '0123456789ABCDEF' | |
BASE30 = '123456789ABCDEFGHJKLMNPQRTVWXY' | |
BASE36 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' |
This file contains 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 | |
''' | |
convert curl to py request - http://curl.trillworks.com/ | |
pip install ipaddr | |
pip install requests | |
''' | |
import requests |
This file contains 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 | |
import sys | |
import urllib | |
import re | |
GetZipUrl = "http://www.easyicon.net/api/get_zip_api.php?id=" #1179177,1179178 | |
def DownLoad(id): | |
url = GetZipUrl + id |
This file contains 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
# the snapshot | |
src/gz openwrt_core http://downloads.openwrt.org/snapshots/targets/ramips/mt7621/packages | |
src/gz openwrt_kmods http://downloads.openwrt.org/snapshots/targets/ramips/mt7621/kmods/4.14.152-1-a9cdac360b981f868e31773c1230fcd0 | |
src/gz openwrt_base http://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base | |
src/gz openwrt_luci http://downloads.openwrt.org/snapshots/packages/mipsel_24kc/luci | |
src/gz openwrt_packages http://downloads.openwrt.org/snapshots/packages/mipsel_24kc/packages | |
src/gz openwrt_routing http://downloads.openwrt.org/snapshots/packages/mipsel_24kc/routing | |
src/gz openwrt_telephony http://downloads.openwrt.org/snapshots/packages/mipsel_24kc/telephony | |
# 18.06 |
This file contains 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
public class Main { | |
public static void main(String[] argv) throws Exception { | |
System.out.println("Keystore: " + argv[0]); | |
System.out.println("Keystore Password: " + argv[1]); | |
System.out.println("Key Password: " + argv[1]); | |
This file contains 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 main | |
import ( | |
"log" | |
"flag" | |
"os" | |
"github.com/armon/go-socks5" | |
) | |
var ( |
This file contains 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 | |
"""Extend Python's built in HTTP server to save files | |
curl or wget can be used to send files with options similar to the following | |
curl -X PUT --upload-file somefile.txt http://localhost:8000 | |
wget -O- --method=PUT --body-file=somefile.txt http://localhost:8000/somefile.txt | |
__Note__: curl automatically appends the filename onto the end of the URL so |
This file contains 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
[{ | |
"type": "battery", | |
"align": "left", | |
"width": 80, | |
"image": { | |
"base64": "iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAeb0lEQVR4Xu2dCXhU1dnH/3eyTZKZyT5ZgJCEXRZZFGzVqtVaERKCG4lfa12xte6t/bRWRb9Pa2nVuitaQa0EREkgoFhrpZ8LakVQlkDYsq9k35OZud9zJkaT3JncZe7M3Dvznufx8XmY95zznv97fzl3ec85HKiQAqSAWwU40oYUIAXcK0CA0NVBCoyhAAFClwcpQIDQNUAKKFOAZhBlulGtIFGAAAmSQNMwlSlAgCjTjWoFiQIESJAEmoapTAECRJluVCtIFCBAgiTQNExlChAgynSjWkGiAAHiQaCXL1kxy8Fx08FhAsfD4kFTqlflObSDRyVvsO/bunXTYdU7CJIGCRCZgc7JyUszwLASPJ8L4FSZ1f1izoP/jOOxwxAeumbz5r/X+sUJnXZKgMgIXO7SvFUAtxIcUmVU05JpDXh+TdG2DQ9qySkt+0KASIzOspz81RyPuySaa9qMA7YXFhcs1bSTGnGOAJEQiNzsvA8B7lwJpvox4fBK0daC6/TjsH88JUBEdM/NyX8MPO70T3i82ysHPFBYXPCQd3vRd+sEyBjxy8nJO83Ac//Rd4jH9J6Hgzu9aPv63QE8Ro+GRoCMId+ypflrOA43eKSw5ivza4qKN9yoeTf95CAB4kb45cuvSnDYBqo4wOin2PikWw7oDbXZ0je9u6nRJx3qrBMCxB0gS/Nu4Dlujc7iqcxdjrupaOv655VVDuxaBIib+OYuzXsaHHezWPiNxggkp1gRGxsjZurT37u7ulFZWY3e3j4p/T5dVFxwqxTDYLMhQNwBkp33NsBdInZBTJs+BSkpVjEzv/xeV9eAw4eOSOn77aLigsukGAabDQHiFpD8nQDOEbsgzjn3TDETv/7+752fSOl/Z1FxwXlS |
This file contains 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 | |
# stolen from https://github.com/InoriJam/DLL-hijack-X64 tested on vs2019 | |
import os | |
import pefile | |
import sys |
This file contains 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
#!/bin/sh | |
# ref - https://stackoverflow.com/questions/9612090/how-to-loop-through-file-names-returned-by-find | |
# ref - https://github.com/kimocoder/wifite2/tree/master/wifite/tools/ | |
# ref - https://stackoverflow.com/questions/55011240/how-to-count-the-number-of-valid-wpa-handshakes-in-a-cap-file | |
# ref - https://kalitut.com/how-to-extract-handshake-from-capture/ | |
echo "WARNING: quick & dirty, will miss valid wpa handshake pcap files :(" | |
TARGET=$1 |
OlderNewer