First release - BlackHat Arsenal tool

This commit is contained in:
OC12YS
2018-12-04 16:01:33 +01:00
parent bae0273f3f
commit c8fec7e437
183 changed files with 78936 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
import simplejson
class Domain:
def __init__(self):
self.fqdn = ""
self.purchasable = ""
self.price = ""
self.no_info = False
def _asdict(self):
return self.__dict__
def toJSON(self):
return simplejson.dumps(self.__dict__, ensure_ascii=False)