diff --git a/.travis.yml b/.travis.yml index 17caa50a4a..680e720a3a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ language: python python: - "3.6" - "3.8" + - "3.9" cache: pip diff --git a/VERSION b/VERSION index 6590144581..d330c9b271 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -SpiderFoot 3.3-DEV +SpiderFoot 3.3 diff --git a/dyn/HEADER.tmpl b/dyn/HEADER.tmpl index f041460223..57796a7532 100644 --- a/dyn/HEADER.tmpl +++ b/dyn/HEADER.tmpl @@ -2,7 +2,7 @@
-SpiderFoot is an open source, GPL-licensed footprinting tool, created by Steve Micallef. It is designed to be easy to use, fast and extensible.
If you have any bugs to report, or requests for enhancements, please contact the support mailing list at support@spiderfoot.net. -
You are running version 3.3-DEV.
+You are running version 3.3.
Visit the project website at https://www.spiderfoot.net/.
View the documentation at https://www.spiderfoot.net/documentation/.
Check out the Github repo at https://github.com/smicallef/spiderfoot.
diff --git a/modules/sfp_archiveorg.py b/modules/sfp_archiveorg.py index d8ea5f4fe0..973ac6f3ab 100644 --- a/modules/sfp_archiveorg.py +++ b/modules/sfp_archiveorg.py @@ -165,7 +165,7 @@ def handleEvent(self, event): ret = None if not ret: - self.sf.error("Unable to process empty response from archive.org: {eventData}") + self.sf.debug("Empty response from archive.org for {eventData}") continue if len(ret['archived_snapshots']) < 1: diff --git a/modules/sfp_binaryedge.py b/modules/sfp_binaryedge.py index 1f42eab18f..a624fb6ed2 100644 --- a/modules/sfp_binaryedge.py +++ b/modules/sfp_binaryedge.py @@ -438,6 +438,10 @@ def handleEvent(self, event): try: banner = prec['result']['data']['service']['banner'] + if '\\r\\n\\r\\n' in banner and "HTTP/" in banner: + # We don't want the content after HTTP banners + banner = banner.split('\\r\\n\\r\\n')[0] + banner = banner.replace("\\r\\n", "\n") except Exception: self.sf.debug("No banner information found.") continue diff --git a/modules/sfp_pageinfo.py b/modules/sfp_pageinfo.py index da16e994f8..251242f43b 100644 --- a/modules/sfp_pageinfo.py +++ b/modules/sfp_pageinfo.py @@ -85,6 +85,15 @@ def handleEvent(self, event): self.sf.debug("Not gathering page info for external site " + eventSource) return + # Ignore javascript and CSS + if ".css?" in eventSource or eventSource.endswith(".css"): + self.sf.debug("Not attempting to match CSS content.") + return + + if ".js?" in eventSource or eventSource.endswith(".js"): + self.sf.debug("Not attempting to match JS content.") + return + if eventSource in self.results: self.sf.debug("Already checked this page for a page type, skipping.") return diff --git a/modules/sfp_s3bucket.py b/modules/sfp_s3bucket.py index dbaf289517..ad185c2d93 100644 --- a/modules/sfp_s3bucket.py +++ b/modules/sfp_s3bucket.py @@ -161,6 +161,8 @@ def handleEvent(self, event): if eventName == "LINKED_URL_EXTERNAL": if ".amazonaws.com" in eventData: b = self.sf.urlFQDN(eventData) + if b in self.opts['endpoints']: + b += "/" + eventData.split(b + "/")[1].split("/")[0] evt = SpiderFootEvent("CLOUD_STORAGE_BUCKET", b, self.__name__, event) self.notifyListeners(evt) return None diff --git a/modules/sfp_scylla.py b/modules/sfp_scylla.py index 2e4d7ae497..e86ce54176 100644 --- a/modules/sfp_scylla.py +++ b/modules/sfp_scylla.py @@ -27,14 +27,14 @@ class sfp_scylla(SpiderFootPlugin): 'useCases': ["Footprint", "Investigate", "Passive"], 'categories': ["Leaks, Dumps and Breaches"], 'dataSource': { - 'website': "https://scylla.sh/", + 'website': "https://scylla.so/", 'model': "FREE_NOAUTH_UNLIMITED", 'references': [ - "https://scylla.sh/crowdsource" + "https://scylla.so/crowdsource" ], 'favIcon': "", 'logo': "", - 'description': "scylla.sh has two major goals. One is to have a community-oriented database leak community " + 'description': "scylla.so has two major goals. One is to have a community-oriented database leak community " "that is a useful tool for security researchers.\n" "The other major goal is to undercut those people that are selling databases.", } @@ -76,7 +76,7 @@ def producedEvents(self): # Query Scylla API def query(self, qry, per_page=20, start=0): params = { - 'q': 'Email:@' + qry.encode('raw_unicode_escape').decode("ascii", errors='replace'), + 'q': 'email:@' + qry.encode('raw_unicode_escape').decode("ascii", errors='replace'), 'size': str(per_page), 'start': str(start) } @@ -84,7 +84,7 @@ def query(self, qry, per_page=20, start=0): headers = { 'Accept': 'application/json' } - res = self.sf.fetchUrl('https://scylla.sh/search?' + urllib.parse.urlencode(params), + res = self.sf.fetchUrl('https://scylla.so/search?' + urllib.parse.urlencode(params), headers=headers, timeout=15, useragent=self.opts['_useragent'], @@ -99,7 +99,7 @@ def query(self, qry, per_page=20, start=0): return None if res['content'] is None: - self.sf.debug('No response from Scylla.sh') + self.sf.debug('No response from Scylla.so') return None try: diff --git a/modules/sfp_shodan.py b/modules/sfp_shodan.py index d74f1a035d..093f4eeec8 100644 --- a/modules/sfp_shodan.py +++ b/modules/sfp_shodan.py @@ -98,7 +98,11 @@ def query(self, qry): return None try: - return json.loads(res['content']) + r = json.loads(res['content']) + if "error" in r: + self.sf.error("Error returned form SHODAN: {r['error']}") + return None + return r except Exception as e: self.sf.error(f"Error processing JSON response from SHODAN: {e}") return None @@ -115,7 +119,11 @@ def searchHosts(self, qry): return None try: - return json.loads(res['content']) + r = json.loads(res['content']) + if "error" in r: + self.sf.error("Error returned form SHODAN: {r['error']}") + return None + return r except Exception as e: self.sf.error(f"Error processing JSON response from SHODAN: {e}") return None @@ -136,7 +144,14 @@ def searchHtml(self, qry): return None try: - return json.loads(res['content']) + r = json.loads(res['content']) + if "error" in r: + self.sf.error("Error returned form SHODAN: {r['error']}") + return None + if r.get('total', 0) == 0: + self.sf.info("No SHODAN info found for {qry}") + return None + return r except Exception as e: self.sf.error(f"Error processing JSON response from SHODAN: {e}") return None diff --git a/modules/sfp_spider.py b/modules/sfp_spider.py index 060554312e..3829c8dcf0 100644 --- a/modules/sfp_spider.py +++ b/modules/sfp_spider.py @@ -136,7 +136,7 @@ def processUrl(self, url): self.getTarget().getNames()) if not links: - self.sf.info(f"No links found at {url}") + self.sf.debug(f"No links found at {url}") return None # Notify modules about the links found @@ -301,7 +301,7 @@ def handleEvent(self, event): if spiderTarget is None: return None - self.sf.info("Initiating spider of " + spiderTarget + " from " + srcModuleName) + self.sf.debug("Initiating spider of " + spiderTarget + " from " + srcModuleName) # Link the spidered URL to the event that triggered it self.urlEvents[spiderTarget] = event @@ -368,7 +368,7 @@ def spiderFrom(self, startingPoint): break nextLinks = self.cleanLinks(links) - self.sf.info(f"Found links: {nextLinks}") + self.sf.debug(f"Found links: {nextLinks}") # We've scanned through another layer of the site levelsTraversed += 1 @@ -379,7 +379,7 @@ def spiderFrom(self, startingPoint): # We've reached the end of our journey.. if len(nextLinks) == 0: - self.sf.info("No more links found to spider, finishing..") + self.sf.debug("No more links found to spider, finishing..") keepSpidering = False # We've been asked to stop scanning diff --git a/sf.py b/sf.py index 93a67063b2..a53270c5a0 100755 --- a/sf.py +++ b/sf.py @@ -85,7 +85,7 @@ def main(): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.db', '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', @@ -115,7 +115,7 @@ def main(): # Legacy way to run the server args = None - p = argparse.ArgumentParser(description='SpiderFoot 3.3-DEV: Open Source Intelligence Automation.') + p = argparse.ArgumentParser(description='SpiderFoot 3.3: Open Source Intelligence Automation.') p.add_argument("-d", "--debug", action='store_true', help="Enable debug output.") p.add_argument("-l", metavar="IP:port", help="IP and port to listen on.") p.add_argument("-m", metavar="mod1,mod2,...", type=str, help="Modules to enable.") diff --git a/sfcli.py b/sfcli.py index 79a16a7711..3c97447e91 100755 --- a/sfcli.py +++ b/sfcli.py @@ -53,7 +53,7 @@ class bcolors: class SpiderFootCli(cmd.Cmd): - version = "3.3-DEV" + version = "3.3" pipecmd = None output = None modules = [] diff --git a/test/integration/test_sfwebui.py b/test/integration/test_sfwebui.py index fc3249deec..98447baa97 100644 --- a/test/integration/test_sfwebui.py +++ b/test/integration/test_sfwebui.py @@ -22,7 +22,7 @@ def setup_server(): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp__stor_db.py b/test/unit/modules/test_sfp__stor_db.py index f6c3e5e03a..335fd349b9 100644 --- a/test/unit/modules/test_sfp__stor_db.py +++ b/test/unit/modules/test_sfp__stor_db.py @@ -21,7 +21,7 @@ class TestModule_stor_db(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp__stor_stdout.py b/test/unit/modules/test_sfp__stor_stdout.py index 3f88a61901..cd83981701 100644 --- a/test/unit/modules/test_sfp__stor_stdout.py +++ b/test/unit/modules/test_sfp__stor_stdout.py @@ -21,7 +21,7 @@ class TestModule_stor_stdout(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_abusech.py b/test/unit/modules/test_sfp_abusech.py index 550e4438ba..f6e8e3e676 100644 --- a/test/unit/modules/test_sfp_abusech.py +++ b/test/unit/modules/test_sfp_abusech.py @@ -21,7 +21,7 @@ class TestModuleabusech(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_abuseipdb.py b/test/unit/modules/test_sfp_abuseipdb.py index 3a89e2f7e4..920de01bcb 100644 --- a/test/unit/modules/test_sfp_abuseipdb.py +++ b/test/unit/modules/test_sfp_abuseipdb.py @@ -21,7 +21,7 @@ class TestModuleabuseipdb(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_accounts.py b/test/unit/modules/test_sfp_accounts.py index 02282bb6b7..39b9468336 100644 --- a/test/unit/modules/test_sfp_accounts.py +++ b/test/unit/modules/test_sfp_accounts.py @@ -21,7 +21,7 @@ class TestModuleaccounts(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_adblock.py b/test/unit/modules/test_sfp_adblock.py index 161a14198b..b7bde36fb8 100644 --- a/test/unit/modules/test_sfp_adblock.py +++ b/test/unit/modules/test_sfp_adblock.py @@ -21,7 +21,7 @@ class TestModuleadblock(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ahmia.py b/test/unit/modules/test_sfp_ahmia.py index e22dbafb55..d9835b70a0 100644 --- a/test/unit/modules/test_sfp_ahmia.py +++ b/test/unit/modules/test_sfp_ahmia.py @@ -21,7 +21,7 @@ class TestModuleahmia(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_alienvault.py b/test/unit/modules/test_sfp_alienvault.py index adb3c57863..8d587f7b9c 100644 --- a/test/unit/modules/test_sfp_alienvault.py +++ b/test/unit/modules/test_sfp_alienvault.py @@ -21,7 +21,7 @@ class TestModulealienvault(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_alienvaultiprep.py b/test/unit/modules/test_sfp_alienvaultiprep.py index b85ca5b588..c7861e3826 100644 --- a/test/unit/modules/test_sfp_alienvaultiprep.py +++ b/test/unit/modules/test_sfp_alienvaultiprep.py @@ -21,7 +21,7 @@ class TestModulealienvaultiprep(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_apility.py b/test/unit/modules/test_sfp_apility.py index 6d46e72d70..eca015a393 100644 --- a/test/unit/modules/test_sfp_apility.py +++ b/test/unit/modules/test_sfp_apility.py @@ -21,7 +21,7 @@ class TestModuleapility(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_apple_itunes.py b/test/unit/modules/test_sfp_apple_itunes.py index 4afbbeba1f..bcbab76805 100644 --- a/test/unit/modules/test_sfp_apple_itunes.py +++ b/test/unit/modules/test_sfp_apple_itunes.py @@ -21,7 +21,7 @@ class TestModuleAppleItunes(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_archiveorg.py b/test/unit/modules/test_sfp_archiveorg.py index 4da91b6677..ce19ce1347 100644 --- a/test/unit/modules/test_sfp_archiveorg.py +++ b/test/unit/modules/test_sfp_archiveorg.py @@ -21,7 +21,7 @@ class TestModulearchiveorg(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_arin.py b/test/unit/modules/test_sfp_arin.py index 77833009b2..f4ca1a97ac 100644 --- a/test/unit/modules/test_sfp_arin.py +++ b/test/unit/modules/test_sfp_arin.py @@ -21,7 +21,7 @@ class TestModulearin(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_azureblobstorage.py b/test/unit/modules/test_sfp_azureblobstorage.py index 441f0b25ec..a4a05643b8 100644 --- a/test/unit/modules/test_sfp_azureblobstorage.py +++ b/test/unit/modules/test_sfp_azureblobstorage.py @@ -21,7 +21,7 @@ class TestModuleazureblobstorage(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_badipscom.py b/test/unit/modules/test_sfp_badipscom.py index 3e85a30635..531ccf4be1 100644 --- a/test/unit/modules/test_sfp_badipscom.py +++ b/test/unit/modules/test_sfp_badipscom.py @@ -21,7 +21,7 @@ class TestModulebadipscom(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_badpackets.py b/test/unit/modules/test_sfp_badpackets.py index 4718b2a2b4..7f520527dd 100644 --- a/test/unit/modules/test_sfp_badpackets.py +++ b/test/unit/modules/test_sfp_badpackets.py @@ -21,7 +21,7 @@ class TestModulebadpackets(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bambenek.py b/test/unit/modules/test_sfp_bambenek.py index d71fc0cc71..19a6ec6037 100644 --- a/test/unit/modules/test_sfp_bambenek.py +++ b/test/unit/modules/test_sfp_bambenek.py @@ -21,7 +21,7 @@ class TestModulebambenek(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_base64.py b/test/unit/modules/test_sfp_base64.py index d2ca3d0080..9123c6d573 100644 --- a/test/unit/modules/test_sfp_base64.py +++ b/test/unit/modules/test_sfp_base64.py @@ -21,7 +21,7 @@ class TestModuleBase64(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bgpview.py b/test/unit/modules/test_sfp_bgpview.py index 0a2f789e0d..0dfc0ef673 100644 --- a/test/unit/modules/test_sfp_bgpview.py +++ b/test/unit/modules/test_sfp_bgpview.py @@ -21,7 +21,7 @@ class TestModulebgpview(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_binaryedge.py b/test/unit/modules/test_sfp_binaryedge.py index b86022d38f..2e0e8dfc0f 100644 --- a/test/unit/modules/test_sfp_binaryedge.py +++ b/test/unit/modules/test_sfp_binaryedge.py @@ -21,7 +21,7 @@ class TestModulebinaryedge(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bingsearch.py b/test/unit/modules/test_sfp_bingsearch.py index d82a7a9856..0719d1dedf 100644 --- a/test/unit/modules/test_sfp_bingsearch.py +++ b/test/unit/modules/test_sfp_bingsearch.py @@ -21,7 +21,7 @@ class TestModulebingsearch(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bingsharedip.py b/test/unit/modules/test_sfp_bingsharedip.py index 642ccbf714..cb9c7777b5 100644 --- a/test/unit/modules/test_sfp_bingsharedip.py +++ b/test/unit/modules/test_sfp_bingsharedip.py @@ -21,7 +21,7 @@ class TestModulebingsharedip(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_binstring.py b/test/unit/modules/test_sfp_binstring.py index b9a38ab2cc..b66b16f498 100644 --- a/test/unit/modules/test_sfp_binstring.py +++ b/test/unit/modules/test_sfp_binstring.py @@ -21,7 +21,7 @@ class TestModuleBinstring(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bitcoin.py b/test/unit/modules/test_sfp_bitcoin.py index 6b7f50e69a..9c39c4663c 100644 --- a/test/unit/modules/test_sfp_bitcoin.py +++ b/test/unit/modules/test_sfp_bitcoin.py @@ -21,7 +21,7 @@ class TestModuleBitcoin(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bitcoinabuse.py b/test/unit/modules/test_sfp_bitcoinabuse.py index 702fbe3171..76f6b8baff 100644 --- a/test/unit/modules/test_sfp_bitcoinabuse.py +++ b/test/unit/modules/test_sfp_bitcoinabuse.py @@ -21,7 +21,7 @@ class TestModuleBitcoinAbuse(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_bitcoinwhoswho.py b/test/unit/modules/test_sfp_bitcoinwhoswho.py index 7bfb69e4fd..bbec91b1ab 100644 --- a/test/unit/modules/test_sfp_bitcoinwhoswho.py +++ b/test/unit/modules/test_sfp_bitcoinwhoswho.py @@ -21,7 +21,7 @@ class TestModuletemplate(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_blockchain.py b/test/unit/modules/test_sfp_blockchain.py index e9fd43325d..780b5d80ce 100644 --- a/test/unit/modules/test_sfp_blockchain.py +++ b/test/unit/modules/test_sfp_blockchain.py @@ -21,7 +21,7 @@ class TestModuleblockchain(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_blocklistde.py b/test/unit/modules/test_sfp_blocklistde.py index 3edc38f714..fe27c2fdb0 100644 --- a/test/unit/modules/test_sfp_blocklistde.py +++ b/test/unit/modules/test_sfp_blocklistde.py @@ -21,7 +21,7 @@ class TestModuleblocklistde(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_botscout.py b/test/unit/modules/test_sfp_botscout.py index ec3b84bbc6..21762f8cb7 100644 --- a/test/unit/modules/test_sfp_botscout.py +++ b/test/unit/modules/test_sfp_botscout.py @@ -21,7 +21,7 @@ class TestModulebotscout(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_botvrij.py b/test/unit/modules/test_sfp_botvrij.py index cd1d9c3c2c..a50ea0595f 100644 --- a/test/unit/modules/test_sfp_botvrij.py +++ b/test/unit/modules/test_sfp_botvrij.py @@ -21,7 +21,7 @@ class TestModulebotvrij(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_builtwith.py b/test/unit/modules/test_sfp_builtwith.py index a8825e53bd..09f87a1ef0 100644 --- a/test/unit/modules/test_sfp_builtwith.py +++ b/test/unit/modules/test_sfp_builtwith.py @@ -21,7 +21,7 @@ class TestModulebuiltwith(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_c99.py b/test/unit/modules/test_sfp_c99.py index b5a5c44051..9d3bca9322 100644 --- a/test/unit/modules/test_sfp_c99.py +++ b/test/unit/modules/test_sfp_c99.py @@ -18,7 +18,7 @@ class TestModuleC99(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_callername.py b/test/unit/modules/test_sfp_callername.py index 56f3088ea7..97b70a6509 100644 --- a/test/unit/modules/test_sfp_callername.py +++ b/test/unit/modules/test_sfp_callername.py @@ -21,7 +21,7 @@ class TestModulecallername(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_censys.py b/test/unit/modules/test_sfp_censys.py index 48e5b610eb..db1d908c35 100644 --- a/test/unit/modules/test_sfp_censys.py +++ b/test/unit/modules/test_sfp_censys.py @@ -21,7 +21,7 @@ class TestModulecensys(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cinsscore.py b/test/unit/modules/test_sfp_cinsscore.py index 7bd5175660..f654d033a5 100644 --- a/test/unit/modules/test_sfp_cinsscore.py +++ b/test/unit/modules/test_sfp_cinsscore.py @@ -21,7 +21,7 @@ class TestModulecinsscore(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_circllu.py b/test/unit/modules/test_sfp_circllu.py index 4d1a0193b5..55682ff34a 100644 --- a/test/unit/modules/test_sfp_circllu.py +++ b/test/unit/modules/test_sfp_circllu.py @@ -21,7 +21,7 @@ class TestModulecircllu(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_citadel.py b/test/unit/modules/test_sfp_citadel.py index f33657b8ac..d525f4ccbf 100644 --- a/test/unit/modules/test_sfp_citadel.py +++ b/test/unit/modules/test_sfp_citadel.py @@ -21,7 +21,7 @@ class TestModulecitadel(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cleanbrowsing.py b/test/unit/modules/test_sfp_cleanbrowsing.py index 81542d77c6..7347ba2896 100644 --- a/test/unit/modules/test_sfp_cleanbrowsing.py +++ b/test/unit/modules/test_sfp_cleanbrowsing.py @@ -21,7 +21,7 @@ class TestModulecleanbrowsing(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cleantalk.py b/test/unit/modules/test_sfp_cleantalk.py index c24f8650fd..5e5d3bd438 100644 --- a/test/unit/modules/test_sfp_cleantalk.py +++ b/test/unit/modules/test_sfp_cleantalk.py @@ -21,7 +21,7 @@ class TestModulecleantalk(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_clearbit.py b/test/unit/modules/test_sfp_clearbit.py index e4355656ad..816c9987ea 100644 --- a/test/unit/modules/test_sfp_clearbit.py +++ b/test/unit/modules/test_sfp_clearbit.py @@ -21,7 +21,7 @@ class TestModuleclearbit(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cloudflaredns.py b/test/unit/modules/test_sfp_cloudflaredns.py index d5347f3e9b..6bb9be27cc 100644 --- a/test/unit/modules/test_sfp_cloudflaredns.py +++ b/test/unit/modules/test_sfp_cloudflaredns.py @@ -21,7 +21,7 @@ class TestModulecloudflaredns(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_coinblocker.py b/test/unit/modules/test_sfp_coinblocker.py index ea9717fbd1..0604d54abc 100644 --- a/test/unit/modules/test_sfp_coinblocker.py +++ b/test/unit/modules/test_sfp_coinblocker.py @@ -21,7 +21,7 @@ class TestModulecoinblocker(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_commoncrawl.py b/test/unit/modules/test_sfp_commoncrawl.py index 197acda82d..b8c83a82d6 100644 --- a/test/unit/modules/test_sfp_commoncrawl.py +++ b/test/unit/modules/test_sfp_commoncrawl.py @@ -21,7 +21,7 @@ class TestModulecommoncrawl(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_comodo.py b/test/unit/modules/test_sfp_comodo.py index 556fa8363f..7a270d997a 100644 --- a/test/unit/modules/test_sfp_comodo.py +++ b/test/unit/modules/test_sfp_comodo.py @@ -21,7 +21,7 @@ class TestModulecomodo(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_company.py b/test/unit/modules/test_sfp_company.py index 0c0f1a0cfa..da058f8fbf 100644 --- a/test/unit/modules/test_sfp_company.py +++ b/test/unit/modules/test_sfp_company.py @@ -21,7 +21,7 @@ class TestModuleCompany(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cookie.py b/test/unit/modules/test_sfp_cookie.py index bea2539618..82a019c23b 100644 --- a/test/unit/modules/test_sfp_cookie.py +++ b/test/unit/modules/test_sfp_cookie.py @@ -21,7 +21,7 @@ class TestModuleCookie(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_countryname.py b/test/unit/modules/test_sfp_countryname.py index 53308d8098..ac2b02d077 100644 --- a/test/unit/modules/test_sfp_countryname.py +++ b/test/unit/modules/test_sfp_countryname.py @@ -21,7 +21,7 @@ class TestModuleCountryName(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_creditcard.py b/test/unit/modules/test_sfp_creditcard.py index e4e2829a3b..46bfb8775f 100644 --- a/test/unit/modules/test_sfp_creditcard.py +++ b/test/unit/modules/test_sfp_creditcard.py @@ -21,7 +21,7 @@ class TestModuleCreditCard(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_crobat_api.py b/test/unit/modules/test_sfp_crobat_api.py index f3898c7c3b..2be83a851f 100644 --- a/test/unit/modules/test_sfp_crobat_api.py +++ b/test/unit/modules/test_sfp_crobat_api.py @@ -21,7 +21,7 @@ class TestModuleCrobat_api(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_crossref.py b/test/unit/modules/test_sfp_crossref.py index 233a71c916..fa0a37fc23 100644 --- a/test/unit/modules/test_sfp_crossref.py +++ b/test/unit/modules/test_sfp_crossref.py @@ -21,7 +21,7 @@ class TestModulecrossref(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_crt.py b/test/unit/modules/test_sfp_crt.py index f179222d30..5bfd6f5bea 100644 --- a/test/unit/modules/test_sfp_crt.py +++ b/test/unit/modules/test_sfp_crt.py @@ -21,7 +21,7 @@ class TestModulecrt(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_crxcavator.py b/test/unit/modules/test_sfp_crxcavator.py index f0340d582d..1e6cf8ddc0 100644 --- a/test/unit/modules/test_sfp_crxcavator.py +++ b/test/unit/modules/test_sfp_crxcavator.py @@ -21,7 +21,7 @@ class TestModuleCrxcavator(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_customfeed.py b/test/unit/modules/test_sfp_customfeed.py index 65295d89c7..ffeb3316e7 100644 --- a/test/unit/modules/test_sfp_customfeed.py +++ b/test/unit/modules/test_sfp_customfeed.py @@ -21,7 +21,7 @@ class TestModulecustomfeed(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_cybercrimetracker.py b/test/unit/modules/test_sfp_cybercrimetracker.py index 2a6ffbcd40..a02aa43154 100644 --- a/test/unit/modules/test_sfp_cybercrimetracker.py +++ b/test/unit/modules/test_sfp_cybercrimetracker.py @@ -21,7 +21,7 @@ class TestModulecybercrimetracker(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_darksearch.py b/test/unit/modules/test_sfp_darksearch.py index fd8206d2d4..59218adec0 100644 --- a/test/unit/modules/test_sfp_darksearch.py +++ b/test/unit/modules/test_sfp_darksearch.py @@ -21,7 +21,7 @@ class TestModuledarksearch(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_debounce.py b/test/unit/modules/test_sfp_debounce.py index 3e93a2dad1..2be95afc66 100644 --- a/test/unit/modules/test_sfp_debounce.py +++ b/test/unit/modules/test_sfp_debounce.py @@ -21,7 +21,7 @@ class TestModuledebounce(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_digitaloceanspace.py b/test/unit/modules/test_sfp_digitaloceanspace.py index 083e2c7615..9839c77b00 100644 --- a/test/unit/modules/test_sfp_digitaloceanspace.py +++ b/test/unit/modules/test_sfp_digitaloceanspace.py @@ -21,7 +21,7 @@ class TestModuledigitaloceanspace(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnsbrute.py b/test/unit/modules/test_sfp_dnsbrute.py index dc970a3975..0994aa5264 100644 --- a/test/unit/modules/test_sfp_dnsbrute.py +++ b/test/unit/modules/test_sfp_dnsbrute.py @@ -21,7 +21,7 @@ class TestModulednsbrute(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnscommonsrv.py b/test/unit/modules/test_sfp_dnscommonsrv.py index 98b470dc8c..da8130f2fd 100644 --- a/test/unit/modules/test_sfp_dnscommonsrv.py +++ b/test/unit/modules/test_sfp_dnscommonsrv.py @@ -21,7 +21,7 @@ class TestModulednscommonsrv(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnsdb.py b/test/unit/modules/test_sfp_dnsdb.py index bb9fdf84ce..a3779d8848 100644 --- a/test/unit/modules/test_sfp_dnsdb.py +++ b/test/unit/modules/test_sfp_dnsdb.py @@ -21,7 +21,7 @@ class TestModulednsdb(unittest.TestCase): "_internettlds": "https://publicsuffix.org/list/effective_tld_names.dat", "_internettlds_cache": 72, "_genericusers": "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - "__version__": "3.3-DEV", + "__version__": "3.3", "__database": "spiderfoot.test.db", # note: test database file "__modules__": None, # List of modules. Will be set after start-up. "_socks1type": "", diff --git a/test/unit/modules/test_sfp_dnsgrep.py b/test/unit/modules/test_sfp_dnsgrep.py index 6de37eac43..f4162fd91d 100644 --- a/test/unit/modules/test_sfp_dnsgrep.py +++ b/test/unit/modules/test_sfp_dnsgrep.py @@ -21,7 +21,7 @@ class TestModulednsgrep(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnsneighbor.py b/test/unit/modules/test_sfp_dnsneighbor.py index 0552f55cd4..2d16479b4f 100644 --- a/test/unit/modules/test_sfp_dnsneighbor.py +++ b/test/unit/modules/test_sfp_dnsneighbor.py @@ -21,7 +21,7 @@ class TestModulednsneighbor(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnsraw.py b/test/unit/modules/test_sfp_dnsraw.py index 201752567c..493022e281 100644 --- a/test/unit/modules/test_sfp_dnsraw.py +++ b/test/unit/modules/test_sfp_dnsraw.py @@ -21,7 +21,7 @@ class TestModulednsraw(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnsresolve.py b/test/unit/modules/test_sfp_dnsresolve.py index dcd574065e..5f778a80ce 100644 --- a/test/unit/modules/test_sfp_dnsresolve.py +++ b/test/unit/modules/test_sfp_dnsresolve.py @@ -21,7 +21,7 @@ class TestModuleDnsResolve(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dnszonexfer.py b/test/unit/modules/test_sfp_dnszonexfer.py index d0f9693858..0a4d765c52 100644 --- a/test/unit/modules/test_sfp_dnszonexfer.py +++ b/test/unit/modules/test_sfp_dnszonexfer.py @@ -21,7 +21,7 @@ class TestModulednszonexfer(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_dronebl.py b/test/unit/modules/test_sfp_dronebl.py index 23e6f1c9c3..2c186d732d 100644 --- a/test/unit/modules/test_sfp_dronebl.py +++ b/test/unit/modules/test_sfp_dronebl.py @@ -21,7 +21,7 @@ class TestModuledronebl(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_duckduckgo.py b/test/unit/modules/test_sfp_duckduckgo.py index 6cf8ad34cd..20b0f8e48a 100644 --- a/test/unit/modules/test_sfp_duckduckgo.py +++ b/test/unit/modules/test_sfp_duckduckgo.py @@ -21,7 +21,7 @@ class TestModuleduckduckgo(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_email.py b/test/unit/modules/test_sfp_email.py index 0e13fe7df9..e3bb5fc87e 100644 --- a/test/unit/modules/test_sfp_email.py +++ b/test/unit/modules/test_sfp_email.py @@ -21,7 +21,7 @@ class TestModuleEmail(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_emailcrawlr.py b/test/unit/modules/test_sfp_emailcrawlr.py index ea9691761f..be4b833fd5 100644 --- a/test/unit/modules/test_sfp_emailcrawlr.py +++ b/test/unit/modules/test_sfp_emailcrawlr.py @@ -21,7 +21,7 @@ class TestModuleemailcrawlr(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_emailformat.py b/test/unit/modules/test_sfp_emailformat.py index afaad862e8..4e39a35cdc 100644 --- a/test/unit/modules/test_sfp_emailformat.py +++ b/test/unit/modules/test_sfp_emailformat.py @@ -21,7 +21,7 @@ class TestModuleemailformat(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_emailrep.py b/test/unit/modules/test_sfp_emailrep.py index 07a5ba558b..4fb93f3fe3 100644 --- a/test/unit/modules/test_sfp_emailrep.py +++ b/test/unit/modules/test_sfp_emailrep.py @@ -21,7 +21,7 @@ class TestModuleemailrep(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_emergingthreats.py b/test/unit/modules/test_sfp_emergingthreats.py index 8cdd28f4a8..29a9912b7b 100644 --- a/test/unit/modules/test_sfp_emergingthreats.py +++ b/test/unit/modules/test_sfp_emergingthreats.py @@ -21,7 +21,7 @@ class TestModuleemergingthreats(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_errors.py b/test/unit/modules/test_sfp_errors.py index e4f3e28b4b..e4d3ddd67a 100644 --- a/test/unit/modules/test_sfp_errors.py +++ b/test/unit/modules/test_sfp_errors.py @@ -21,7 +21,7 @@ class TestModuleErrors(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ethereum.py b/test/unit/modules/test_sfp_ethereum.py index fe2d47b1fb..7a6f7ea81e 100644 --- a/test/unit/modules/test_sfp_ethereum.py +++ b/test/unit/modules/test_sfp_ethereum.py @@ -21,7 +21,7 @@ class TestModuleEthereum(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_filemeta.py b/test/unit/modules/test_sfp_filemeta.py index 83b3268989..4a7133912d 100644 --- a/test/unit/modules/test_sfp_filemeta.py +++ b/test/unit/modules/test_sfp_filemeta.py @@ -21,7 +21,7 @@ class TestModuleFilemeta(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_flickr.py b/test/unit/modules/test_sfp_flickr.py index 132eec5e27..5fd34d0fdc 100644 --- a/test/unit/modules/test_sfp_flickr.py +++ b/test/unit/modules/test_sfp_flickr.py @@ -21,7 +21,7 @@ class TestModuleflickr(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_fortinet.py b/test/unit/modules/test_sfp_fortinet.py index df27b657bb..5cfea08d7c 100644 --- a/test/unit/modules/test_sfp_fortinet.py +++ b/test/unit/modules/test_sfp_fortinet.py @@ -21,7 +21,7 @@ class TestModulefortinet(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_fraudguard.py b/test/unit/modules/test_sfp_fraudguard.py index da04590cfd..372b5c8f8b 100644 --- a/test/unit/modules/test_sfp_fraudguard.py +++ b/test/unit/modules/test_sfp_fraudguard.py @@ -21,7 +21,7 @@ class TestModulefraudguard(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_fringeproject.py b/test/unit/modules/test_sfp_fringeproject.py index 41f93ebeff..393873de4e 100644 --- a/test/unit/modules/test_sfp_fringeproject.py +++ b/test/unit/modules/test_sfp_fringeproject.py @@ -21,7 +21,7 @@ class TestModulefringeproject(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_fsecure_riddler.py b/test/unit/modules/test_sfp_fsecure_riddler.py index bc6db2cab5..7cc9e93257 100644 --- a/test/unit/modules/test_sfp_fsecure_riddler.py +++ b/test/unit/modules/test_sfp_fsecure_riddler.py @@ -21,7 +21,7 @@ class TestModulefsecure_riddler(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_fullcontact.py b/test/unit/modules/test_sfp_fullcontact.py index 18938c153f..e8a0c34ab0 100644 --- a/test/unit/modules/test_sfp_fullcontact.py +++ b/test/unit/modules/test_sfp_fullcontact.py @@ -21,7 +21,7 @@ class TestModulefullcontact(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_github.py b/test/unit/modules/test_sfp_github.py index 0256e16584..c6b3764fa0 100644 --- a/test/unit/modules/test_sfp_github.py +++ b/test/unit/modules/test_sfp_github.py @@ -21,7 +21,7 @@ class TestModulegithub(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_googlemaps.py b/test/unit/modules/test_sfp_googlemaps.py index af73cad4bc..72e586afee 100644 --- a/test/unit/modules/test_sfp_googlemaps.py +++ b/test/unit/modules/test_sfp_googlemaps.py @@ -21,7 +21,7 @@ class TestModulegooglemaps(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_googleobjectstorage.py b/test/unit/modules/test_sfp_googleobjectstorage.py index ca5a2b6651..7d2f6a6ace 100644 --- a/test/unit/modules/test_sfp_googleobjectstorage.py +++ b/test/unit/modules/test_sfp_googleobjectstorage.py @@ -21,7 +21,7 @@ class TestModulegoogleobjectstorage(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_googlesafebrowsing.py b/test/unit/modules/test_sfp_googlesafebrowsing.py index 7e94afaf71..2cda9a05f2 100644 --- a/test/unit/modules/test_sfp_googlesafebrowsing.py +++ b/test/unit/modules/test_sfp_googlesafebrowsing.py @@ -21,7 +21,7 @@ class TestModulegooglesafebrowsing(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_googlesearch.py b/test/unit/modules/test_sfp_googlesearch.py index 046163f2d2..bd43b0de49 100644 --- a/test/unit/modules/test_sfp_googlesearch.py +++ b/test/unit/modules/test_sfp_googlesearch.py @@ -21,7 +21,7 @@ class TestModulegooglesearch(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_gravatar.py b/test/unit/modules/test_sfp_gravatar.py index 08b6d6ee75..e2a6845a29 100644 --- a/test/unit/modules/test_sfp_gravatar.py +++ b/test/unit/modules/test_sfp_gravatar.py @@ -21,7 +21,7 @@ class TestModulegravatar(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_greensnow.py b/test/unit/modules/test_sfp_greensnow.py index aab81a346a..0f408d1176 100644 --- a/test/unit/modules/test_sfp_greensnow.py +++ b/test/unit/modules/test_sfp_greensnow.py @@ -21,7 +21,7 @@ class TestModulegreensnow(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_grep_app.py b/test/unit/modules/test_sfp_grep_app.py index bec57dcaa8..8921393258 100644 --- a/test/unit/modules/test_sfp_grep_app.py +++ b/test/unit/modules/test_sfp_grep_app.py @@ -21,7 +21,7 @@ class TestModulegrep_app(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_greynoise.py b/test/unit/modules/test_sfp_greynoise.py index fc1f258b58..85331ddc1e 100644 --- a/test/unit/modules/test_sfp_greynoise.py +++ b/test/unit/modules/test_sfp_greynoise.py @@ -21,7 +21,7 @@ class TestModulegreynoise(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_h1nobbdde.py b/test/unit/modules/test_sfp_h1nobbdde.py index b0eaa5588e..1fd63f356e 100644 --- a/test/unit/modules/test_sfp_h1nobbdde.py +++ b/test/unit/modules/test_sfp_h1nobbdde.py @@ -21,7 +21,7 @@ class TestModuleh1nobbdde(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hackertarget.py b/test/unit/modules/test_sfp_hackertarget.py index 7601e7fcd1..07fd4aa358 100644 --- a/test/unit/modules/test_sfp_hackertarget.py +++ b/test/unit/modules/test_sfp_hackertarget.py @@ -21,7 +21,7 @@ class TestModulehackertarget(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hashes.py b/test/unit/modules/test_sfp_hashes.py index 64a72b72e6..e69e804abb 100644 --- a/test/unit/modules/test_sfp_hashes.py +++ b/test/unit/modules/test_sfp_hashes.py @@ -21,7 +21,7 @@ class TestModuleHashes(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_haveibeenpwned.py b/test/unit/modules/test_sfp_haveibeenpwned.py index f5540bfd50..e67cf94db3 100644 --- a/test/unit/modules/test_sfp_haveibeenpwned.py +++ b/test/unit/modules/test_sfp_haveibeenpwned.py @@ -21,7 +21,7 @@ class TestModulehaveibeenpwned(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_honeypot.py b/test/unit/modules/test_sfp_honeypot.py index fb6baf7c40..152c43ca40 100644 --- a/test/unit/modules/test_sfp_honeypot.py +++ b/test/unit/modules/test_sfp_honeypot.py @@ -21,7 +21,7 @@ class TestModulehoneypot(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hosting.py b/test/unit/modules/test_sfp_hosting.py index 7ce2789a06..907b72b3ef 100644 --- a/test/unit/modules/test_sfp_hosting.py +++ b/test/unit/modules/test_sfp_hosting.py @@ -21,7 +21,7 @@ class TestModuleHosting(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hostio.py b/test/unit/modules/test_sfp_hostio.py index 6611c81937..ce099a3867 100644 --- a/test/unit/modules/test_sfp_hostio.py +++ b/test/unit/modules/test_sfp_hostio.py @@ -21,7 +21,7 @@ class TestModulehostio(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hunter.py b/test/unit/modules/test_sfp_hunter.py index 9b7ca90c38..6202569e68 100644 --- a/test/unit/modules/test_sfp_hunter.py +++ b/test/unit/modules/test_sfp_hunter.py @@ -21,7 +21,7 @@ class TestModulehunter(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_hybrid_analysis.py b/test/unit/modules/test_sfp_hybrid_analysis.py index 26b9a8966a..a139243757 100644 --- a/test/unit/modules/test_sfp_hybrid_analysis.py +++ b/test/unit/modules/test_sfp_hybrid_analysis.py @@ -21,7 +21,7 @@ class TestModulehybrid_analysis(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_iban.py b/test/unit/modules/test_sfp_iban.py index ca85743f2b..963c4154f0 100644 --- a/test/unit/modules/test_sfp_iban.py +++ b/test/unit/modules/test_sfp_iban.py @@ -21,7 +21,7 @@ class TestModuleIban(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_iknowwhatyoudownload.py b/test/unit/modules/test_sfp_iknowwhatyoudownload.py index 9103baeb1b..c9b75e504b 100644 --- a/test/unit/modules/test_sfp_iknowwhatyoudownload.py +++ b/test/unit/modules/test_sfp_iknowwhatyoudownload.py @@ -21,7 +21,7 @@ class TestModuleiknowwhatyoudownload(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_instagram.py b/test/unit/modules/test_sfp_instagram.py index 91e4ffa4e8..cc6b6ba631 100644 --- a/test/unit/modules/test_sfp_instagram.py +++ b/test/unit/modules/test_sfp_instagram.py @@ -21,7 +21,7 @@ class TestModuleinstagram(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_intelx.py b/test/unit/modules/test_sfp_intelx.py index 482216b467..79536eef28 100644 --- a/test/unit/modules/test_sfp_intelx.py +++ b/test/unit/modules/test_sfp_intelx.py @@ -21,7 +21,7 @@ class TestModuleintelx(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_intfiles.py b/test/unit/modules/test_sfp_intfiles.py index 337d7e6370..e451ee69c3 100644 --- a/test/unit/modules/test_sfp_intfiles.py +++ b/test/unit/modules/test_sfp_intfiles.py @@ -21,7 +21,7 @@ class TestModuleintfiles(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ipinfo.py b/test/unit/modules/test_sfp_ipinfo.py index d61339ebc4..e2d2e3318c 100644 --- a/test/unit/modules/test_sfp_ipinfo.py +++ b/test/unit/modules/test_sfp_ipinfo.py @@ -21,7 +21,7 @@ class TestModuleipinfo(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ipqualityscore.py b/test/unit/modules/test_sfp_ipqualityscore.py index 7d29e1b5f8..8861e4361b 100644 --- a/test/unit/modules/test_sfp_ipqualityscore.py +++ b/test/unit/modules/test_sfp_ipqualityscore.py @@ -21,7 +21,7 @@ class TestModuleipqualityscore(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ipregistry.py b/test/unit/modules/test_sfp_ipregistry.py index 87fcfa8c46..a8f283dc98 100644 --- a/test/unit/modules/test_sfp_ipregistry.py +++ b/test/unit/modules/test_sfp_ipregistry.py @@ -21,7 +21,7 @@ class TestModuletemplate(unittest.TestCase): "_internettlds": "https://publicsuffix.org/list/effective_tld_names.dat", "_internettlds_cache": 72, "_genericusers": "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - "__version__": "3.3-DEV", + "__version__": "3.3", "__database": "spiderfoot.test.db", # note: test database file "__modules__": None, # List of modules. Will be set after start-up. "_socks1type": "", diff --git a/test/unit/modules/test_sfp_ipstack.py b/test/unit/modules/test_sfp_ipstack.py index fa19d4c669..582cc1a7f7 100644 --- a/test/unit/modules/test_sfp_ipstack.py +++ b/test/unit/modules/test_sfp_ipstack.py @@ -21,7 +21,7 @@ class TestModuleipstack(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_isc.py b/test/unit/modules/test_sfp_isc.py index 2f6eefd5d0..3a5c468879 100644 --- a/test/unit/modules/test_sfp_isc.py +++ b/test/unit/modules/test_sfp_isc.py @@ -21,7 +21,7 @@ class TestModuleisc(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_jsonwhoiscom.py b/test/unit/modules/test_sfp_jsonwhoiscom.py index 4e54dda7ce..d30f5d84bb 100644 --- a/test/unit/modules/test_sfp_jsonwhoiscom.py +++ b/test/unit/modules/test_sfp_jsonwhoiscom.py @@ -21,7 +21,7 @@ class TestModulejsonwhoiscom(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_junkfiles.py b/test/unit/modules/test_sfp_junkfiles.py index c9479d0308..994ee8e0fb 100644 --- a/test/unit/modules/test_sfp_junkfiles.py +++ b/test/unit/modules/test_sfp_junkfiles.py @@ -21,7 +21,7 @@ class TestModulejunkfiles(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_keybase.py b/test/unit/modules/test_sfp_keybase.py index f4aa93fc42..7aa931cfb5 100644 --- a/test/unit/modules/test_sfp_keybase.py +++ b/test/unit/modules/test_sfp_keybase.py @@ -21,7 +21,7 @@ class TestModulekeybase(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_koodous.py b/test/unit/modules/test_sfp_koodous.py index ace670013f..40e42bee6e 100644 --- a/test/unit/modules/test_sfp_koodous.py +++ b/test/unit/modules/test_sfp_koodous.py @@ -21,7 +21,7 @@ class TestModuleKoodous(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_leakix.py b/test/unit/modules/test_sfp_leakix.py index 2a1d47eaea..89c39e1b91 100644 --- a/test/unit/modules/test_sfp_leakix.py +++ b/test/unit/modules/test_sfp_leakix.py @@ -21,7 +21,7 @@ class TestModuleleakix(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_maltiverse.py b/test/unit/modules/test_sfp_maltiverse.py index f84decf2e6..bbb577c9b9 100644 --- a/test/unit/modules/test_sfp_maltiverse.py +++ b/test/unit/modules/test_sfp_maltiverse.py @@ -21,7 +21,7 @@ class TestModulemaltiverse(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_malwaredomainlist.py b/test/unit/modules/test_sfp_malwaredomainlist.py index 0ef708f8ab..3aa2805dc3 100644 --- a/test/unit/modules/test_sfp_malwaredomainlist.py +++ b/test/unit/modules/test_sfp_malwaredomainlist.py @@ -21,7 +21,7 @@ class TestModulemalwaredomainlist(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_malwaredomains.py b/test/unit/modules/test_sfp_malwaredomains.py index 61e5429be3..2877dd8af0 100644 --- a/test/unit/modules/test_sfp_malwaredomains.py +++ b/test/unit/modules/test_sfp_malwaredomains.py @@ -21,7 +21,7 @@ class TestModulemalwaredomains(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_malwarepatrol.py b/test/unit/modules/test_sfp_malwarepatrol.py index 70c44054e0..97bdd37193 100644 --- a/test/unit/modules/test_sfp_malwarepatrol.py +++ b/test/unit/modules/test_sfp_malwarepatrol.py @@ -21,7 +21,7 @@ class TestModulemalwarepatrol(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_metadefender.py b/test/unit/modules/test_sfp_metadefender.py index 5eceec4947..e30da736ef 100644 --- a/test/unit/modules/test_sfp_metadefender.py +++ b/test/unit/modules/test_sfp_metadefender.py @@ -21,7 +21,7 @@ class TestModulemetadefender(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_mnemonic.py b/test/unit/modules/test_sfp_mnemonic.py index d0e0ed2c76..c9c5fab9be 100644 --- a/test/unit/modules/test_sfp_mnemonic.py +++ b/test/unit/modules/test_sfp_mnemonic.py @@ -21,7 +21,7 @@ class TestModulemnemonic(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_multiproxy.py b/test/unit/modules/test_sfp_multiproxy.py index e0a8b04e20..d8cccaf10b 100644 --- a/test/unit/modules/test_sfp_multiproxy.py +++ b/test/unit/modules/test_sfp_multiproxy.py @@ -21,7 +21,7 @@ class TestModulemultiproxy(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_myspace.py b/test/unit/modules/test_sfp_myspace.py index 0ea866364f..5981127c1b 100644 --- a/test/unit/modules/test_sfp_myspace.py +++ b/test/unit/modules/test_sfp_myspace.py @@ -21,7 +21,7 @@ class TestModulemyspace(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_nameapi.py b/test/unit/modules/test_sfp_nameapi.py index c2f9d77a7b..bacec76a2f 100644 --- a/test/unit/modules/test_sfp_nameapi.py +++ b/test/unit/modules/test_sfp_nameapi.py @@ -21,7 +21,7 @@ class TestModulenameapi(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_names.py b/test/unit/modules/test_sfp_names.py index 31da8a1d7c..6c5d040da8 100644 --- a/test/unit/modules/test_sfp_names.py +++ b/test/unit/modules/test_sfp_names.py @@ -21,7 +21,7 @@ class TestModuleNames(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_networksdb.py b/test/unit/modules/test_sfp_networksdb.py index e497d62f50..d2bd01e854 100644 --- a/test/unit/modules/test_sfp_networksdb.py +++ b/test/unit/modules/test_sfp_networksdb.py @@ -21,7 +21,7 @@ class TestModulenetworksdb(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_neutrinoapi.py b/test/unit/modules/test_sfp_neutrinoapi.py index b311223d3c..deecee8948 100644 --- a/test/unit/modules/test_sfp_neutrinoapi.py +++ b/test/unit/modules/test_sfp_neutrinoapi.py @@ -21,7 +21,7 @@ class TestModuleneutrinoapi(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_norton.py b/test/unit/modules/test_sfp_norton.py index 83c36d8347..3904c91fe2 100644 --- a/test/unit/modules/test_sfp_norton.py +++ b/test/unit/modules/test_sfp_norton.py @@ -21,7 +21,7 @@ class TestModulenorton(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_numverify.py b/test/unit/modules/test_sfp_numverify.py index 7c300f3d80..438b096a82 100644 --- a/test/unit/modules/test_sfp_numverify.py +++ b/test/unit/modules/test_sfp_numverify.py @@ -21,7 +21,7 @@ class TestModulenumverify(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_onioncity.py b/test/unit/modules/test_sfp_onioncity.py index 1d80f37df7..433e6a45ea 100644 --- a/test/unit/modules/test_sfp_onioncity.py +++ b/test/unit/modules/test_sfp_onioncity.py @@ -21,7 +21,7 @@ class TestModuleonioncity(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_onionsearchengine.py b/test/unit/modules/test_sfp_onionsearchengine.py index ce0538984a..623f2942e9 100644 --- a/test/unit/modules/test_sfp_onionsearchengine.py +++ b/test/unit/modules/test_sfp_onionsearchengine.py @@ -21,7 +21,7 @@ class TestModuleonionsearchengine(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_onyphe.py b/test/unit/modules/test_sfp_onyphe.py index 8f64001f38..d6e5b3fc2a 100644 --- a/test/unit/modules/test_sfp_onyphe.py +++ b/test/unit/modules/test_sfp_onyphe.py @@ -21,7 +21,7 @@ class TestModuleOnyphe(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_open_passive_dns_database.py b/test/unit/modules/test_sfp_open_passive_dns_database.py index f405b86296..d7e2539e87 100644 --- a/test/unit/modules/test_sfp_open_passive_dns_database.py +++ b/test/unit/modules/test_sfp_open_passive_dns_database.py @@ -21,7 +21,7 @@ class TestModuleopen_passive_dns_database(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_openbugbounty.py b/test/unit/modules/test_sfp_openbugbounty.py index 4ae482021c..da3b42f238 100644 --- a/test/unit/modules/test_sfp_openbugbounty.py +++ b/test/unit/modules/test_sfp_openbugbounty.py @@ -21,7 +21,7 @@ class TestModuleopenbugbounty(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_opencorporates.py b/test/unit/modules/test_sfp_opencorporates.py index 35ebbf91fb..f37999e5c9 100644 --- a/test/unit/modules/test_sfp_opencorporates.py +++ b/test/unit/modules/test_sfp_opencorporates.py @@ -21,7 +21,7 @@ class TestModuleopencorporates(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_opendns.py b/test/unit/modules/test_sfp_opendns.py index 0252d436cb..0ba25a88d2 100644 --- a/test/unit/modules/test_sfp_opendns.py +++ b/test/unit/modules/test_sfp_opendns.py @@ -21,7 +21,7 @@ class TestModuleopendns(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_openphish.py b/test/unit/modules/test_sfp_openphish.py index 256b24ecd3..0151818ea4 100644 --- a/test/unit/modules/test_sfp_openphish.py +++ b/test/unit/modules/test_sfp_openphish.py @@ -21,7 +21,7 @@ class TestModuleopenphish(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_openstreetmap.py b/test/unit/modules/test_sfp_openstreetmap.py index 4501fcadba..b6088a5a15 100644 --- a/test/unit/modules/test_sfp_openstreetmap.py +++ b/test/unit/modules/test_sfp_openstreetmap.py @@ -21,7 +21,7 @@ class TestModuleopenstreetmap(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_pageinfo.py b/test/unit/modules/test_sfp_pageinfo.py index deba795685..7ec3221412 100644 --- a/test/unit/modules/test_sfp_pageinfo.py +++ b/test/unit/modules/test_sfp_pageinfo.py @@ -21,7 +21,7 @@ class TestModulePageInfo(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_pastebin.py b/test/unit/modules/test_sfp_pastebin.py index a67f785ca6..c0e420bc44 100644 --- a/test/unit/modules/test_sfp_pastebin.py +++ b/test/unit/modules/test_sfp_pastebin.py @@ -21,7 +21,7 @@ class TestModulepastebin(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_pgp.py b/test/unit/modules/test_sfp_pgp.py index eaa20ebf65..c03931b690 100644 --- a/test/unit/modules/test_sfp_pgp.py +++ b/test/unit/modules/test_sfp_pgp.py @@ -21,7 +21,7 @@ class TestModulepgp(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_phishstats.py b/test/unit/modules/test_sfp_phishstats.py index c6b6ea2569..b3777f45e3 100644 --- a/test/unit/modules/test_sfp_phishstats.py +++ b/test/unit/modules/test_sfp_phishstats.py @@ -21,7 +21,7 @@ class TestModulephishstats(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_phishtank.py b/test/unit/modules/test_sfp_phishtank.py index f99f0fc7b3..d63b9a296c 100644 --- a/test/unit/modules/test_sfp_phishtank.py +++ b/test/unit/modules/test_sfp_phishtank.py @@ -21,7 +21,7 @@ class TestModulephishtank(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_phone.py b/test/unit/modules/test_sfp_phone.py index 621715038f..c441e02e88 100644 --- a/test/unit/modules/test_sfp_phone.py +++ b/test/unit/modules/test_sfp_phone.py @@ -21,7 +21,7 @@ class TestModulePhone(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_portscan_tcp.py b/test/unit/modules/test_sfp_portscan_tcp.py index 963ab91281..118cb95ae7 100644 --- a/test/unit/modules/test_sfp_portscan_tcp.py +++ b/test/unit/modules/test_sfp_portscan_tcp.py @@ -21,7 +21,7 @@ class TestModuleportscan_tcp(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_projectdiscovery.py b/test/unit/modules/test_sfp_projectdiscovery.py index 9491c1f0ab..2f61686215 100644 --- a/test/unit/modules/test_sfp_projectdiscovery.py +++ b/test/unit/modules/test_sfp_projectdiscovery.py @@ -17,7 +17,7 @@ class TestModuleProjectdiscovery(unittest.TestCase): "_internettlds": "https://publicsuffix.org/list/effective_tld_names.dat", "_internettlds_cache": 72, "_genericusers": "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - "__version__": "3.3-DEV", + "__version__": "3.3", "__database": "spiderfoot.test.db", # note: test database file "__modules__": None, # List of modules. Will be set after start-up. "_socks1type": "", diff --git a/test/unit/modules/test_sfp_psbdmp.py b/test/unit/modules/test_sfp_psbdmp.py index 64d6022f6f..7337dec3d0 100644 --- a/test/unit/modules/test_sfp_psbdmp.py +++ b/test/unit/modules/test_sfp_psbdmp.py @@ -21,7 +21,7 @@ class TestModulepsbdmp(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_pulsedive.py b/test/unit/modules/test_sfp_pulsedive.py index 31f57bb666..cd01b2e4c5 100644 --- a/test/unit/modules/test_sfp_pulsedive.py +++ b/test/unit/modules/test_sfp_pulsedive.py @@ -21,7 +21,7 @@ class TestModulepulsedive(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_quad9.py b/test/unit/modules/test_sfp_quad9.py index 08df6096f2..dbf42a740a 100644 --- a/test/unit/modules/test_sfp_quad9.py +++ b/test/unit/modules/test_sfp_quad9.py @@ -21,7 +21,7 @@ class TestModulequad9(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_recondev.py b/test/unit/modules/test_sfp_recondev.py index 0c2777ac77..32b43d9225 100644 --- a/test/unit/modules/test_sfp_recondev.py +++ b/test/unit/modules/test_sfp_recondev.py @@ -21,7 +21,7 @@ class TestModulerecondev(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_ripe.py b/test/unit/modules/test_sfp_ripe.py index e34b126120..2632b1b579 100644 --- a/test/unit/modules/test_sfp_ripe.py +++ b/test/unit/modules/test_sfp_ripe.py @@ -21,7 +21,7 @@ class TestModuleripe(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_riskiq.py b/test/unit/modules/test_sfp_riskiq.py index 38ada9f8bf..0295be8d25 100644 --- a/test/unit/modules/test_sfp_riskiq.py +++ b/test/unit/modules/test_sfp_riskiq.py @@ -21,7 +21,7 @@ class TestModuleriskiq(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_robtex.py b/test/unit/modules/test_sfp_robtex.py index d59da1db23..262ef59db4 100644 --- a/test/unit/modules/test_sfp_robtex.py +++ b/test/unit/modules/test_sfp_robtex.py @@ -21,7 +21,7 @@ class TestModulerobtex(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_s3bucket.py b/test/unit/modules/test_sfp_s3bucket.py index c1690a46a0..dee2763a73 100644 --- a/test/unit/modules/test_sfp_s3bucket.py +++ b/test/unit/modules/test_sfp_s3bucket.py @@ -21,7 +21,7 @@ class TestModules3bucket(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_scylla.py b/test/unit/modules/test_sfp_scylla.py index 925a6cd44d..f4c169c9d2 100644 --- a/test/unit/modules/test_sfp_scylla.py +++ b/test/unit/modules/test_sfp_scylla.py @@ -21,7 +21,7 @@ class TestModulescylla(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_securitytrails.py b/test/unit/modules/test_sfp_securitytrails.py index d3e57ad375..565298b6d5 100644 --- a/test/unit/modules/test_sfp_securitytrails.py +++ b/test/unit/modules/test_sfp_securitytrails.py @@ -21,7 +21,7 @@ class TestModulesecuritytrails(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_shodan.py b/test/unit/modules/test_sfp_shodan.py index 90d93e1918..86c5f804fa 100644 --- a/test/unit/modules/test_sfp_shodan.py +++ b/test/unit/modules/test_sfp_shodan.py @@ -21,7 +21,7 @@ class TestModuleshodan(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_similar.py b/test/unit/modules/test_sfp_similar.py index 62821ecd2c..3c46fccde9 100644 --- a/test/unit/modules/test_sfp_similar.py +++ b/test/unit/modules/test_sfp_similar.py @@ -21,7 +21,7 @@ class TestModulesimilar(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_skymem.py b/test/unit/modules/test_sfp_skymem.py index 39a098f37c..59fe3e46fb 100644 --- a/test/unit/modules/test_sfp_skymem.py +++ b/test/unit/modules/test_sfp_skymem.py @@ -21,7 +21,7 @@ class TestModuleskymem(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_slideshare.py b/test/unit/modules/test_sfp_slideshare.py index 1f764bcceb..098e487c81 100644 --- a/test/unit/modules/test_sfp_slideshare.py +++ b/test/unit/modules/test_sfp_slideshare.py @@ -21,7 +21,7 @@ class TestModuleslideshare(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_snov.py b/test/unit/modules/test_sfp_snov.py index 7690c7d0cc..391920c4c3 100644 --- a/test/unit/modules/test_sfp_snov.py +++ b/test/unit/modules/test_sfp_snov.py @@ -21,7 +21,7 @@ class TestModulesnov(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_social.py b/test/unit/modules/test_sfp_social.py index b1b179d933..c99373642a 100644 --- a/test/unit/modules/test_sfp_social.py +++ b/test/unit/modules/test_sfp_social.py @@ -21,7 +21,7 @@ class TestModulesocial(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_socialprofiles.py b/test/unit/modules/test_sfp_socialprofiles.py index 0912583acb..a2c528c6f2 100644 --- a/test/unit/modules/test_sfp_socialprofiles.py +++ b/test/unit/modules/test_sfp_socialprofiles.py @@ -21,7 +21,7 @@ class TestModulesocialprofiles(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_sorbs.py b/test/unit/modules/test_sfp_sorbs.py index 1cf051bfe2..6b5f099469 100644 --- a/test/unit/modules/test_sfp_sorbs.py +++ b/test/unit/modules/test_sfp_sorbs.py @@ -21,7 +21,7 @@ class TestModulesorbs(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spamcop.py b/test/unit/modules/test_sfp_spamcop.py index 563f17af9f..f4b2a74438 100644 --- a/test/unit/modules/test_sfp_spamcop.py +++ b/test/unit/modules/test_sfp_spamcop.py @@ -21,7 +21,7 @@ class TestModulespamcop(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spamhaus.py b/test/unit/modules/test_sfp_spamhaus.py index b5ca56f3be..f920b58f1e 100644 --- a/test/unit/modules/test_sfp_spamhaus.py +++ b/test/unit/modules/test_sfp_spamhaus.py @@ -21,7 +21,7 @@ class TestModulespamhaus(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spider.py b/test/unit/modules/test_sfp_spider.py index 4bcb6e54ac..6885dad9d0 100644 --- a/test/unit/modules/test_sfp_spider.py +++ b/test/unit/modules/test_sfp_spider.py @@ -21,7 +21,7 @@ class TestModulespider(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spur.py b/test/unit/modules/test_sfp_spur.py index a9805e1f55..b7ccd0ef9a 100644 --- a/test/unit/modules/test_sfp_spur.py +++ b/test/unit/modules/test_sfp_spur.py @@ -21,7 +21,7 @@ class TestModulespur(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spyonweb.py b/test/unit/modules/test_sfp_spyonweb.py index aa123f2392..0af6a37ace 100644 --- a/test/unit/modules/test_sfp_spyonweb.py +++ b/test/unit/modules/test_sfp_spyonweb.py @@ -21,7 +21,7 @@ class TestModulespyonweb(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_spyse.py b/test/unit/modules/test_sfp_spyse.py index d1d48933e2..70aee1e3ed 100644 --- a/test/unit/modules/test_sfp_spyse.py +++ b/test/unit/modules/test_sfp_spyse.py @@ -21,7 +21,7 @@ class TestModulespyse(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_sslcert.py b/test/unit/modules/test_sfp_sslcert.py index a2796b0595..f70e6a79c8 100644 --- a/test/unit/modules/test_sfp_sslcert.py +++ b/test/unit/modules/test_sfp_sslcert.py @@ -21,7 +21,7 @@ class TestModulesslcert(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_strangeheaders.py b/test/unit/modules/test_sfp_strangeheaders.py index 3e7cdddd41..7032cac0be 100644 --- a/test/unit/modules/test_sfp_strangeheaders.py +++ b/test/unit/modules/test_sfp_strangeheaders.py @@ -21,7 +21,7 @@ class TestModuleStrangeHeaders(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_subdomain_takeover.py b/test/unit/modules/test_sfp_subdomain_takeover.py index 559d7c6ab4..4ba7adc41a 100644 --- a/test/unit/modules/test_sfp_subdomain_takeover.py +++ b/test/unit/modules/test_sfp_subdomain_takeover.py @@ -21,7 +21,7 @@ class TestModulesubdomain_takeover(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_talosintel.py b/test/unit/modules/test_sfp_talosintel.py index 3207342f02..209d53d94f 100644 --- a/test/unit/modules/test_sfp_talosintel.py +++ b/test/unit/modules/test_sfp_talosintel.py @@ -21,7 +21,7 @@ class TestModuletalosintel(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_template.py b/test/unit/modules/test_sfp_template.py index caeef97e44..cca5e6644a 100644 --- a/test/unit/modules/test_sfp_template.py +++ b/test/unit/modules/test_sfp_template.py @@ -20,7 +20,7 @@ class TestModuletemplate(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_textmagic.py b/test/unit/modules/test_sfp_textmagic.py index 84289bb1db..59988f18c1 100644 --- a/test/unit/modules/test_sfp_textmagic.py +++ b/test/unit/modules/test_sfp_textmagic.py @@ -21,7 +21,7 @@ class TestModuletextmagic(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_threatcrowd.py b/test/unit/modules/test_sfp_threatcrowd.py index 93b3235d2f..913b91bb07 100644 --- a/test/unit/modules/test_sfp_threatcrowd.py +++ b/test/unit/modules/test_sfp_threatcrowd.py @@ -21,7 +21,7 @@ class TestModulethreatcrowd(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_threatminer.py b/test/unit/modules/test_sfp_threatminer.py index f375b46b02..410ba32859 100644 --- a/test/unit/modules/test_sfp_threatminer.py +++ b/test/unit/modules/test_sfp_threatminer.py @@ -21,7 +21,7 @@ class TestModulethreatminer(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_tldsearch.py b/test/unit/modules/test_sfp_tldsearch.py index 68e2d93b2d..66d0abd37e 100644 --- a/test/unit/modules/test_sfp_tldsearch.py +++ b/test/unit/modules/test_sfp_tldsearch.py @@ -21,7 +21,7 @@ class TestModuletldsearch(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_tool_cmseek.py b/test/unit/modules/test_sfp_tool_cmseek.py index 5ee6dae238..8678a90a88 100644 --- a/test/unit/modules/test_sfp_tool_cmseek.py +++ b/test/unit/modules/test_sfp_tool_cmseek.py @@ -21,7 +21,7 @@ class TestModuleCmseek(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_tool_dnstwist.py b/test/unit/modules/test_sfp_tool_dnstwist.py index 6826929cca..863d05ccc1 100644 --- a/test/unit/modules/test_sfp_tool_dnstwist.py +++ b/test/unit/modules/test_sfp_tool_dnstwist.py @@ -21,7 +21,7 @@ class TestModuletool_dnstwist(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_tool_nmap.py b/test/unit/modules/test_sfp_tool_nmap.py index 1d42f10bf7..485b42c950 100644 --- a/test/unit/modules/test_sfp_tool_nmap.py +++ b/test/unit/modules/test_sfp_tool_nmap.py @@ -21,7 +21,7 @@ class TestModuletool_nmap(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_tool_whatweb.py b/test/unit/modules/test_sfp_tool_whatweb.py index d54e0adfb4..6e1a07c4f3 100644 --- a/test/unit/modules/test_sfp_tool_whatweb.py +++ b/test/unit/modules/test_sfp_tool_whatweb.py @@ -21,7 +21,7 @@ class TestModuleWhatweb(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_torch.py b/test/unit/modules/test_sfp_torch.py index 4a1cb89a6d..c136054d23 100644 --- a/test/unit/modules/test_sfp_torch.py +++ b/test/unit/modules/test_sfp_torch.py @@ -21,7 +21,7 @@ class TestModuletorch(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_torexits.py b/test/unit/modules/test_sfp_torexits.py index f42f3bac7a..97cfc8c02f 100644 --- a/test/unit/modules/test_sfp_torexits.py +++ b/test/unit/modules/test_sfp_torexits.py @@ -21,7 +21,7 @@ class TestModuletorexits(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_totalhash.py b/test/unit/modules/test_sfp_totalhash.py index a6a734dfdd..a823afc440 100644 --- a/test/unit/modules/test_sfp_totalhash.py +++ b/test/unit/modules/test_sfp_totalhash.py @@ -21,7 +21,7 @@ class TestModuletotalhash(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_trumail.py b/test/unit/modules/test_sfp_trumail.py index 82f484771e..512e59837f 100644 --- a/test/unit/modules/test_sfp_trumail.py +++ b/test/unit/modules/test_sfp_trumail.py @@ -21,7 +21,7 @@ class TestModuletrumail(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_twilio.py b/test/unit/modules/test_sfp_twilio.py index bcc5b4e840..1c1f95282a 100644 --- a/test/unit/modules/test_sfp_twilio.py +++ b/test/unit/modules/test_sfp_twilio.py @@ -21,7 +21,7 @@ class TestModuletwilio(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_twitter.py b/test/unit/modules/test_sfp_twitter.py index 45009e8a83..6aa98ef9ad 100644 --- a/test/unit/modules/test_sfp_twitter.py +++ b/test/unit/modules/test_sfp_twitter.py @@ -21,7 +21,7 @@ class TestModuletwitter(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_uceprotect.py b/test/unit/modules/test_sfp_uceprotect.py index e15514cc3c..d6156f1be2 100644 --- a/test/unit/modules/test_sfp_uceprotect.py +++ b/test/unit/modules/test_sfp_uceprotect.py @@ -21,7 +21,7 @@ class TestModuleuceprotect(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_urlscan.py b/test/unit/modules/test_sfp_urlscan.py index b4a3bcf8dc..2cf1f067c3 100644 --- a/test/unit/modules/test_sfp_urlscan.py +++ b/test/unit/modules/test_sfp_urlscan.py @@ -21,7 +21,7 @@ class TestModuleurlscan(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_venmo.py b/test/unit/modules/test_sfp_venmo.py index b30b2b6d78..b47ab84571 100644 --- a/test/unit/modules/test_sfp_venmo.py +++ b/test/unit/modules/test_sfp_venmo.py @@ -21,7 +21,7 @@ class TestModulevenmo(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_viewdns.py b/test/unit/modules/test_sfp_viewdns.py index 70fff2824f..f26a4ebcb3 100644 --- a/test/unit/modules/test_sfp_viewdns.py +++ b/test/unit/modules/test_sfp_viewdns.py @@ -21,7 +21,7 @@ class TestModuleviewdns(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_virustotal.py b/test/unit/modules/test_sfp_virustotal.py index 2c35ef5de1..20ca92a0cd 100644 --- a/test/unit/modules/test_sfp_virustotal.py +++ b/test/unit/modules/test_sfp_virustotal.py @@ -21,7 +21,7 @@ class TestModulevirustotal(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_voipbl.py b/test/unit/modules/test_sfp_voipbl.py index 65317267e3..013eb5f613 100644 --- a/test/unit/modules/test_sfp_voipbl.py +++ b/test/unit/modules/test_sfp_voipbl.py @@ -21,7 +21,7 @@ class TestModulevoipbl(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_vxvault.py b/test/unit/modules/test_sfp_vxvault.py index 35b9bfbb7d..42b6d2d9f1 100644 --- a/test/unit/modules/test_sfp_vxvault.py +++ b/test/unit/modules/test_sfp_vxvault.py @@ -21,7 +21,7 @@ class TestModulevxvault(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_watchguard.py b/test/unit/modules/test_sfp_watchguard.py index 041a0821ea..46f51b0fde 100644 --- a/test/unit/modules/test_sfp_watchguard.py +++ b/test/unit/modules/test_sfp_watchguard.py @@ -21,7 +21,7 @@ class TestModulewatchguard(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_webanalytics.py b/test/unit/modules/test_sfp_webanalytics.py index eef20ee7a5..6de281a004 100644 --- a/test/unit/modules/test_sfp_webanalytics.py +++ b/test/unit/modules/test_sfp_webanalytics.py @@ -21,7 +21,7 @@ class TestModuleWebAnalytics(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_webframework.py b/test/unit/modules/test_sfp_webframework.py index a626683482..9ba878634b 100644 --- a/test/unit/modules/test_sfp_webframework.py +++ b/test/unit/modules/test_sfp_webframework.py @@ -21,7 +21,7 @@ class TestModuleWebFramework(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_webserver.py b/test/unit/modules/test_sfp_webserver.py index a655afb028..b573718f20 100644 --- a/test/unit/modules/test_sfp_webserver.py +++ b/test/unit/modules/test_sfp_webserver.py @@ -21,7 +21,7 @@ class TestModuleWebserver(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_whatcms.py b/test/unit/modules/test_sfp_whatcms.py index 762c0f4fef..dbd8b5a5c3 100644 --- a/test/unit/modules/test_sfp_whatcms.py +++ b/test/unit/modules/test_sfp_whatcms.py @@ -21,7 +21,7 @@ class TestModuleWhatCMS(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_whois.py b/test/unit/modules/test_sfp_whois.py index aa65aa4936..446a54c5cd 100644 --- a/test/unit/modules/test_sfp_whois.py +++ b/test/unit/modules/test_sfp_whois.py @@ -21,7 +21,7 @@ class TestModulewhois(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_whoisology.py b/test/unit/modules/test_sfp_whoisology.py index 42b997d957..b3c53810c3 100644 --- a/test/unit/modules/test_sfp_whoisology.py +++ b/test/unit/modules/test_sfp_whoisology.py @@ -21,7 +21,7 @@ class TestModulewhoisology(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_whoxy.py b/test/unit/modules/test_sfp_whoxy.py index 532c827e22..f654c92c73 100644 --- a/test/unit/modules/test_sfp_whoxy.py +++ b/test/unit/modules/test_sfp_whoxy.py @@ -21,7 +21,7 @@ class TestModulewhoxy(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_wigle.py b/test/unit/modules/test_sfp_wigle.py index 6699f51e21..ca70b8c144 100644 --- a/test/unit/modules/test_sfp_wigle.py +++ b/test/unit/modules/test_sfp_wigle.py @@ -21,7 +21,7 @@ class TestModulewigle(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_wikileaks.py b/test/unit/modules/test_sfp_wikileaks.py index 81bc4ff16f..e8d8010d75 100644 --- a/test/unit/modules/test_sfp_wikileaks.py +++ b/test/unit/modules/test_sfp_wikileaks.py @@ -21,7 +21,7 @@ class TestModulewikileaks(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_wikipediaedits.py b/test/unit/modules/test_sfp_wikipediaedits.py index f8d6e247d5..d820ec892c 100644 --- a/test/unit/modules/test_sfp_wikipediaedits.py +++ b/test/unit/modules/test_sfp_wikipediaedits.py @@ -21,7 +21,7 @@ class TestModulewikipediaedits(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_xforce.py b/test/unit/modules/test_sfp_xforce.py index 0722b58cb9..7e0c4e95f1 100644 --- a/test/unit/modules/test_sfp_xforce.py +++ b/test/unit/modules/test_sfp_xforce.py @@ -21,7 +21,7 @@ class TestModulexforce(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_yandexdns.py b/test/unit/modules/test_sfp_yandexdns.py index d03fa6bce2..9366cacd15 100644 --- a/test/unit/modules/test_sfp_yandexdns.py +++ b/test/unit/modules/test_sfp_yandexdns.py @@ -21,7 +21,7 @@ class TestModuleyandexdns(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_zetalytics.py b/test/unit/modules/test_sfp_zetalytics.py index ae9a09b0df..cfd2065f2d 100644 --- a/test/unit/modules/test_sfp_zetalytics.py +++ b/test/unit/modules/test_sfp_zetalytics.py @@ -21,7 +21,7 @@ class TestModuleZetalytics(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/modules/test_sfp_zoneh.py b/test/unit/modules/test_sfp_zoneh.py index 660d1a237b..7baf543c49 100644 --- a/test/unit/modules/test_sfp_zoneh.py +++ b/test/unit/modules/test_sfp_zoneh.py @@ -21,7 +21,7 @@ class TestModulezoneh(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/spiderfoot/test_spiderfootdb.py b/test/unit/spiderfoot/test_spiderfootdb.py index 90da4cf898..79e75d0b0b 100644 --- a/test/unit/spiderfoot/test_spiderfootdb.py +++ b/test/unit/spiderfoot/test_spiderfootdb.py @@ -18,7 +18,7 @@ class TestSpiderFootDb(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, '_socks1type': '', diff --git a/test/unit/spiderfoot/test_spiderfootplugin.py b/test/unit/spiderfoot/test_spiderfootplugin.py index a968332973..e651017fdd 100644 --- a/test/unit/spiderfoot/test_spiderfootplugin.py +++ b/test/unit/spiderfoot/test_spiderfootplugin.py @@ -19,7 +19,7 @@ class TestSpiderFootPlugin(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/test_spiderfoot.py b/test/unit/test_spiderfoot.py index 3a21952a47..02ff12a722 100644 --- a/test/unit/test_spiderfoot.py +++ b/test/unit/test_spiderfoot.py @@ -20,7 +20,7 @@ class TestSpiderFoot(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/test_spiderfoot_module_loading.py b/test/unit/test_spiderfoot_module_loading.py index a2be65e356..3d0111f32f 100644 --- a/test/unit/test_spiderfoot_module_loading.py +++ b/test/unit/test_spiderfoot_module_loading.py @@ -20,7 +20,7 @@ class TestSpiderFootModuleLoading(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, # List of modules. Will be set after start-up. '_socks1type': '', diff --git a/test/unit/test_spiderfootscanner.py b/test/unit/test_spiderfootscanner.py index fabd555dbe..8e7869bc01 100644 --- a/test/unit/test_spiderfootscanner.py +++ b/test/unit/test_spiderfootscanner.py @@ -19,7 +19,7 @@ class TestSpiderFootScanner(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, '_socks1type': '', diff --git a/test/unit/test_spiderfootwebui.py b/test/unit/test_spiderfootwebui.py index 13bed54bce..3b47e22660 100644 --- a/test/unit/test_spiderfootwebui.py +++ b/test/unit/test_spiderfootwebui.py @@ -18,7 +18,7 @@ class TestSpiderFootWebUi(unittest.TestCase): '_internettlds': 'https://publicsuffix.org/list/effective_tld_names.dat', '_internettlds_cache': 72, '_genericusers': "abuse,admin,billing,compliance,devnull,dns,ftp,hostmaster,inoc,ispfeedback,ispsupport,list-request,list,maildaemon,marketing,noc,no-reply,noreply,null,peering,peering-notify,peering-request,phish,phishing,postmaster,privacy,registrar,registry,root,routing-registry,rr,sales,security,spam,support,sysadmin,tech,undisclosed-recipients,unsubscribe,usenet,uucp,webmaster,www", - '__version__': '3.3-DEV', + '__version__': '3.3', '__database': 'spiderfoot.test.db', # note: test database file '__modules__': None, '_socks1type': '',