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
version: '2' | |
services: | |
# VPN | |
gluetun: | |
image: qmcgaw/gluetun | |
container_name: gluetun | |
cap_add: | |
- NET_ADMIN | |
devices: | |
- /dev/net/tun:/dev/net/tun |
This file has been truncated, but you can view the full file.
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
{ | |
"atlanta":[ | |
{ | |
"ip":"66.22.222.7", | |
"dns":"atlanta238.discord.gg", | |
"city":"Atlanta", | |
"region":"Georgia", | |
"country":"US", | |
"org":"AS49544 i3D.net B.V" | |
}, |
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 dns from 'node:dns'; | |
import fetch from 'node-fetch'; | |
import regions from "./regions.json" assert { type: "json" }; | |
import fs from 'node:fs'; | |
const IPINFO_API_KEY = "key here"; | |
const loops = 15000; | |
var regionscomplete = {}; |
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
{ | |
"us-central":[ | |
{ | |
"ip":"138.128.140.253", | |
"dns":"us-central96.discord.gg", | |
"city":"Elk Grove Village", | |
"region":"Illinois", | |
"country":"US", | |
"org":"AS49544 i3D.net B.V" | |
}, |
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 requests #dependency | |
url = "<your url>" #webhook url, from here: https://i.imgur.com/f9XnAew.png | |
#for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook | |
data = { | |
"content" : "message content", | |
"avatar" : "direct avatar URL", | |
"username" : "custom username" | |
} |