-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsource.py
50 lines (42 loc) · 1.32 KB
/
source.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# Based on:
# https://github.com/0xdade/sephiroth/blob/master/providers/provider.py
# Import source modules
from core.sources.ip import IP
from core.sources.tor import Tor
from core.sources.asn import RADB, BGPView
from core.sources.misc import Misc
from core.sources.amazon import AWS
from core.sources.oracle import OracleCloud
from core.sources.google import GoogleCloud
from core.sources.htaccess import HTAccess
from core.sources.hostname import Hostname
from core.sources.microsoft import Azure, Office365
from core.sources.useragents import UserAgents
# Import module to read external sources
from core.sources.external import IPFile, HostnameFile, UserAgentFile, ASNFile
source_map = {
'ips': IP,
'tor': Tor,
'aws': AWS,
'radb': RADB,
'misc': Misc,
'azure': Azure,
'bgpview': BGPView,
'htaccess': HTAccess,
'hostnames': Hostname,
'office365': Office365,
'user-agents': UserAgents,
'oraclecloud': OracleCloud,
'googlecloud': GoogleCloud,
# External sources
'ip-file': IPFile,
'asn-file': ASNFile,
'hostname-file': HostnameFile,
'useragent-file': UserAgentFile
}
class Source(object):
def __init__(self, source, params):
self.source = source_map[source](*params)
def process_data(self):
return self.source.process_data()