Skip to content

Instantly share code, notes, and snippets.

View duncanturk's full-sized avatar

Christopher Rossbach duncanturk

  • Simba n³ GmbH
  • Germany
View GitHub Profile
@duncanturk
duncanturk / get_stun.py
Created March 21, 2020 14:45
python script that whether a jitsi instance uses googles stun servers
import requests as req
import re
domains = [
"jitsi.linux.it",
"chat01.kuketz-meet.de"
]
bad_stuns = {
r"stun[\d]{0,1}\.l\.google\.com": "Google"
}