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
[ | |
{ | |
"id": 1, | |
"name": "TiMoiD", | |
"server": "http://speedtest.timoid.org/", | |
"dlURL": "garbage.php", | |
"ulURL": "empty.php", | |
"pingURL": "empty.php", | |
"getIpURL": "getIP.php" | |
}, |
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 bash | |
# Explicit "allow" list in case Github users overlap with system users | |
ALLOWED_USERS="ctixsystems" | |
KEY_URL="https://github.com/${1}.keys" | |
KEY_FILE=$(eval echo /root/.ssh/authorized_keys2) | |
if [[ -z $1 ]]; then | |
>&2 echo "Username required." | |
exit 1 |
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
sudo pip3 install git+https://github.com/JustAnotherArchivist/snscrape.git | |
snscrape --jsonl --progress --max-results 100 --since 2021-11-21 twitter-search "from:gootloadersites" | jq .content | grep ^\"Current | awk '{print $8}' | tr -d '"' | sort -u | |
# Example output | |
# hxxps://firstchessset.com/news.php | |
# hxxps://gabycampo.com.ar/news.php | |
# | |
# get_sites.sh | |
# |