addon.py
def log(msg):
print('[test] %s' % msg)
data = {'key1':1, 'key': 2}
try:
assert 'key3' in data, 'no key'
except Exception as e:
log(str(e))| #!/usr/bin/env sh | |
| adb shell settings put global captive_portal_fallback_url http://g.cn/generate_204 | |
| adb shell settings put global captive_portal_http_url http://www.google.cn/generate_204 | |
| adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204 | |
| adb shell settings put global captive_portal_other_fallback_urls http://www.qualcomm.cn/generate_204 |
| # coding: utf-8 | |
| # py2 origin author lrdcq | |
| # usage python3 unwxapkg.py filename | |
| __author__ = 'Integ: https://github.com./integ' | |
| import sys, os | |
| import struct | |
| class WxapkgFile(object): |
| #!/bin/bash | |
| set -euo pipefail | |
| # http://apetec.com/support/GenerateSAN-CSR.htm | |
| # http://chschneider.eu/linux/server/openssl.shtml | |
| DOMAIN=${1:-c9.dev} | |
| IP=${2:-127.0.0.1} | |
| if [[ "$DOMAIN$IP" =~ [/[:space:]] ]]; then |
| <script for=document event="oncontextmenu()" language="javascript"> | |
| /*disable the right key*/ | |
| //return false; | |
| </script> |
| #!/usr/bin/env python3 | |
| from __future__ import print_function | |
| import frida | |
| import sys | |
| import json | |
| import time | |
| def on_message(message, payload): | |
| if(message['type'] == 'send'): |
| #!/bin/sh | |
| ## edit this | |
| cf_ddns_host=myddns.mydomain.com | |
| # My Profile - API Tokens - Create Token - Use template of Edit zone DNS - Zone Resources - Include - All zones - Continue to summary - Create Token | |
| cf_token= | |
| ## edit end | |
| # auto fetch | |
| cf_zoneid= |
| #EXTM3U name="四川电信IPTV" | |
| #EXTINF:-1,CCTV-1高清 | |
| http://192.168.2.2/rtp/239.93.0.184:5140 | |
| #EXTINF:-1,CCTV-2高清 | |
| http://192.168.2.2/rtp/239.93.1.23:6000 | |
| #EXTINF:-1,CCTV-3高清 | |
| http://192.168.2.2/rtp/239.93.1.11:2223 | |
| #EXTINF:-1,CCTV-5高清 | |
| http://192.168.2.2/rtp/239.93.1.12:2224 | |
| #EXTINF:-1,CCTV-6高清 |
| (function() { | |
| function escapeQuote(str) { | |
| return str.replace("\"", "\\\""); | |
| } | |
| function buildAria2Url(name, url) { | |
| return `aria2c -c -s10 -k1M -x16 --enable-rpc=false ` + | |
| `-o "${escapeQuote(name)}" ` + | |
| `--header "${escapeQuote(window.navigator.userAgent)}" ` + | |
| `--header "Referer: ${escapeQuote(window.location.toString())}" ` + |
addon.py
def log(msg):
print('[test] %s' % msg)
data = {'key1':1, 'key': 2}
try:
assert 'key3' in data, 'no key'
except Exception as e:
log(str(e))| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Author: ficapy | |
| import io | |
| from urllib.parse import urlencode | |
| from base64 import b64encode | |
| from pdf2image import convert_from_bytes | |
| from PyPDF2 import PdfFileWriter, PdfFileReader |