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
# Malware DNS List DNS | |
https://filterlists.com | |
ABUSE-FEADO https://feodotracker.abuse.ch/blocklist/?download=domainblocklist | |
ABUSE-FEADO-IP https://feodotracker.abuse.ch/blocklist/?download=ipblocklist | |
ABUSE-PALEVO https://palevotracker.abuse.ch/blocklists.php?download=domainblocklist | |
ABUSE-PALEVO-IP https://palevotracker.abuse.ch/blocklists.php?download=ipblocklist | |
ABUSE-RANSOMWARE https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt | |
ABUSE-RANSOMWARE-IP https://ransomwaretracker.abuse.ch/downloads/RW_IPBL.txt |
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/bash | |
# CHANGE THESE | |
auth_email="[email protected]" | |
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
zone_name="example.com" | |
record_name="www.example.com" | |
# MAYBE CHANGE THESE | |
ip=$(curl -s http://ipv4.icanhazip.com) |
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
========================crowbar.swoole.php:================== | |
<?php | |
/* | |
crowbar.php是客户端 | |
crowbar_server.php是服务端 | |
客户端监听端口 和 服务端转发目标端口 都是写死的 | |
服务端 可以用swoole内建一个socks5, 仿照: http://m.jb51.net/article/83531.htm | |
然后可以在客户端加参数 来区分forward 和 socks5 | |
*/ |