Skip to content

Instantly share code, notes, and snippets.

View bhdrozgn's full-sized avatar

Bahadır Özgün bhdrozgn

  • 08:26 (UTC +03:00)
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 October 9, 2024 08:33
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"
},
@itslukej
itslukej / voice_servers.json
Created March 8, 2020 22:00
List of all of discord's voice servers as of 08-03-2020
[
{
"ip": "185.50.107.211",
"dns": "brazil0.discord.gg",
"city": "Cotia",
"region": "São Paulo",
"country": "BR",
"org": "AS49544 i3D.net B.V"
},
{
@katowulf
katowulf / client.js
Last active April 10, 2023 06:35
Firestore security rules validation example
import * as firebase from "firebase/app";
import 'firebase/firestore';
import config from './config';
firebase.initializeApp(config);
const data = {
string: 'foo',
integer: 23,
boolean: false,