Skip to content

Instantly share code, notes, and snippets.

@kstrauser
Created August 5, 2018 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kstrauser/bb63763363e81fa5f843fc7bcb9f84b4 to your computer and use it in GitHub Desktop.
Save kstrauser/bb63763363e81fa5f843fc7bcb9f84b4 to your computer and use it in GitHub Desktop.
Raw data for the blog post at https://blog.freeradical.zone/yes-russia/
#!/usr/bin/env python
from collections import Counter
spammers = [
{"domain": "lewohner.top", "ip": "5.189.207.59", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "vesigarna.site",
"ip": "185.71.1.152",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "veriasta.xyz", "ip": "5.8.45.172", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "balros.eu", "ip": " 5.62.156.29", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "boxwerko.pw", "ip": "185.71.2.229", "asn": "AS200557", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "lewohner.top",
"ip": "93.179.91.36",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{
"domain": "vesigarna.site",
"ip": "5.189.205.109",
"asn": "AS50896",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "verozhe.icu", "ip": "95.181.218.52", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "mailasrvs.pw",
"ip": "79.110.31.187",
"netname": "QUALYTYNETWORK",
"mx": "mxsrv.mailasrvs.pw",
},
{
"domain": "veriasta.xyz",
"ip": "185.71.1.163",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{
"domain": "barklop.store",
"ip": "5.101.218.138",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "velortna.srl", "ip": "37.9.44.20", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "qerola.xyz",
"ip": "185.14.193.110",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "balros.eu", "ip": "185.101.70.70", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "qerola.xyz", "ip": "37.9.45.108", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "keomea.top", "ip": "5.8.46.150", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "xepertn.tech", "ip": "5.8.46.82", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "dedanka.to", "ip": "37.9.45.147", "asn": "AS50896", "mx": None},
{
"domain": "bebarsoc.site",
"ip": "191.101.24.11",
"asn": "AS61440",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "veoado.xyz", "ip": "5.8.44.229", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{"domain": "verozhe.icu", "ip": "95.181.218.37", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "nanorkad.host",
"ip": "91.204.14.66",
"netname": "QUALITYNETWORK",
"mx": "mxsrv.mailasrvs.pw",
},
{
"domain": "vesigarna.site",
"ip": "185.71.1.122",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
{"domain": "perolk.fun", "ip": "5.189.206.41", "asn": "AS50896", "mx": "mxsrv.mailasrvs.pw"},
{
"domain": "cerjoxa.press",
"ip": "185.71.0.223",
"asn": "AS200557",
"mx": "mxsrv.mailasrvs.pw",
},
]
asn = {
"AS50896": {
"remarks": "Depo Data Center Kaluga",
"address": "248021, Russia, Kaluga region, Moscow Street 258, office 16",
},
"AS200557": {
"remarks": "Depo Data Center Kaluga",
"address": "248021, Russia, Kaluga region, Moscow Street 258, office 16",
},
}
print(Counter(_.get("asn") for _ in spammers))
print(len({_["domain"] for _ in spammers}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment