Skip to content

Instantly share code, notes, and snippets.

View AndyIsHereBoi's full-sized avatar

AndyIsHereBoi AndyIsHereBoi

View GitHub Profile
@AndyIsHereBoi
AndyIsHereBoi / as of 9-2-2024
Created September 3, 2024 16:59
discord voice servers
This file has been truncated, but you can view the full file.
{
"atlanta":[
{
"ip":"66.22.222.7",
"dns":"atlanta238.discord.gg",
"city":"Atlanta",
"region":"Georgia",
"country":"US",
"org":"AS49544 i3D.net B.V"
@AndyIsHereBoi
AndyIsHereBoi / index.js
Last active September 3, 2024 16:59
Scans Discord for its voice servers.
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 = {};
@AndyIsHereBoi
AndyIsHereBoi / output.json
Created January 15, 2024 16:40
Discord voice servers as of Jan 15 2024
{
"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"
},
@AndyIsHereBoi
AndyIsHereBoi / webhook.py
Created May 11, 2022 18:22 — forked from Bilka2/webhook.py
Simple discord webhook with python
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"
}