Example #1
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['cymon'] = None
     self.api_key = get_apikey('cymon')
     if self.api_key == '':
         raise TypeError('API keys cannot be left blank | set all keys in etc/apikeys.json')
     self.api = cymon.Cymon(self.api_key)
Example #2
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['passivetotal'] = None
     self.api_key = get_apikey('passivetotal')
     self.headers = {
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #3
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['censys'] = None
     self.api_key = get_apikey('censys')
     if self.api_key == '':
         raise TypeError('API keys cannot be left blank | set all keys in etc/apikeys.json')
     self.headers = {'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'}
Example #4
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['geoip'] = None
     self.api_key = get_apikey('ipstack')
     self.headers = {
         'Accept-Encoding': 'gzip, deflate',
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #5
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['virustotal'] = None
     self.api_key = get_apikey('virustotal')
     self.headers = {
         'Accept-Encoding': 'gzip, deflate',
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #6
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['fullcontact'] = None
     self.api_key = get_apikey('fullcontact')
     self.headers = {
         'X-FullContact-APIKey': self.api_key,
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #7
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['fullcontact'] = None
     self.api_key = get_apikey('fullcontact')
     self.headers = {
         'X-FullContact-APIKey': self.api_key,
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #8
0
    def __init__(self, artifact):
        self.artifact = artifact
        self.artifact['data']['dnsbrute'] = {}
        self.headers = {
            'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
        }

        self.vt_api_key = get_apikey('virustotal')
        if self.vt_api_key == '':
            raise TypeError(
                'API keys cannot be left blank | set all keys in etc/apikeys.json'
            )

        self.otx_api_key = get_apikey('otx')
        if self.otx_api_key == '':
            raise TypeError(
                'API keys cannot be left blank | set all keys in etc/apikeys.json'
            )
Example #9
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['virustotal'] = None
     self.api_key = get_apikey('virustotal')
     if self.api_key == '':
         raise TypeError('API keys cannot be left blank | set all keys in etc/apikeys.json')
     self.headers = {
         'Accept-Encoding': 'gzip, deflate',
         'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'
     }
Example #10
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['csirtg'] = None
     self.api_key = get_apikey('csirtg')
Example #11
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['csirtg'] = None
     self.api_key = get_apikey('csirtg')
Example #12
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['censys'] = None
     self.api_key = get_apikey('censys')
     self.headers = {'User-Agent': 'OSINT Omnibus (https://github.com/InQuest/Omnibus)'}
Example #13
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['cymon'] = None
     self.api_key = get_apikey('cymon')
     self.api = cymon.Cymon(self.api_key)
Example #14
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['clearbit'] = None
     self.api_key = get_apikey('clearbit')
Example #15
0
 def __init__(self, artifact):
     self.artifact = artifact
     self.artifact['data']['clearbit'] = None
     self.api_key = get_apikey('clearbit')