openpgp4fpr:029BE97239D16F6A8B08151B8EBB335CB284FB75
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
import sys | |
import base64 | |
args = sys.argv | |
if len(args) != 4 or "--help" in args or "-h" in args: | |
print("./" + args[0] + " " + "FINGERPRINT URL EMAIL_ADDRESS") | |
sys.exit() | |
f = bytes.fromhex(args[1]) | |
url = args[2].encode() |
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
#domain | #severity | #reject_media | #reject_reports | #public_comment | #obfuscate | |
---|---|---|---|---|---|---|
trycloudflare.com | suspend | false | false | サブドメイン貸し出し | false | |
ngrok.io | suspend | false | false | サブドメイン貸し出し | false | |
repl.co | suspend | false | false | サブドメイン貸し出し | false | |
github.io | suspend | false | false | サブドメイン貸し出し | false | |
pages.dev | suspend | false | false | サブドメイン貸し出し | false | |
ngrok-free.app | suspend | false | false | サブドメイン貸し出し | false | |
ngrok-free.dev | suspend | false | false | サブドメイン貸し出し | false | |
ngrok.app | suspend | false | false | サブドメイン貸し出し | false | |
ngrok.dev | suspend | false | false | サブドメイン貸し出し | false |
これを元にしました https://misskey.04.si/notes/9ipkkt4ygz
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 | |
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT | |
iptables -A INPUT -i lo -j ACCEPT | |
for ip in `curl "https://www.cloudflare.com/ips-v4"` | |
do | |
iptables -A INPUT -p tcp -m multiport --dports 443 -s ${ip} -j ACCEPT | |
done | |
iptables -A INPUT -p tcp -m multiport --dports 443 -j DROP |