mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-26 07:23:17 +08:00
Added Port scanning, Subdomain takeover, Fixed Shodan, improved Dns bruteforce and added SQLite support to store the results.
9 lines
225 B
Python
9 lines
225 B
Python
class Alert:
|
|
def __init__(self):
|
|
self.id = None
|
|
self.name = None
|
|
self.api_key = None
|
|
self.filters = None
|
|
self.credits = None
|
|
self.created = None
|
|
self.expires = None
|