mirror of
https://github.com/aljazceru/squatm3gator.git
synced 2025-12-18 23:24:20 +01:00
First release - BlackHat Arsenal tool
This commit is contained in:
14
squatm3-api/wrapper/3rdparty/squatm3/modules/Classes/Domain.py
vendored
Normal file
14
squatm3-api/wrapper/3rdparty/squatm3/modules/Classes/Domain.py
vendored
Normal 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)
|
||||
Reference in New Issue
Block a user