Skip to content

Commit

Permalink
Critical bug fix for use case functionality.
Browse files Browse the repository at this point in the history
  • Loading branch information
smicallef committed Sep 9, 2020
1 parent 2f7a86b commit c3da732
Show file tree
Hide file tree
Showing 207 changed files with 213 additions and 213 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[![License](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/smicallef/spiderfoot/master/LICENSE)
[![Python Version](https://img.shields.io/badge/python-3.6+-green)](https://www.python.org)
[![Stable Release](https://img.shields.io/badge/version-3.2-blue.svg)](https://github.com/smicallef/spiderfoot/releases/tag/v3.2)
[![Stable Release](https://img.shields.io/badge/version-3.2.1-blue.svg)](https://github.com/smicallef/spiderfoot/releases/tag/v3.2.1)
[![CI Status](https://img.shields.io/travis/smicallef/spiderfoot)](https://travis-ci.com/github/smicallef/spiderfoot)
[![Last Commit](https://img.shields.io/github/last-commit/smicallef/spiderfoot)](https://github.com/smicallef/spiderfoot/commits/master)
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/github/smicallef/spiderfoot)](https://libraries.io/github/smicallef/spiderfoot)
Expand Down Expand Up @@ -74,8 +74,8 @@ To install and run SpiderFoot, you need at least Python 3.6 and a number of Pyth
#### Stable build (packaged release):

```
$ wget https://github.com/smicallef/spiderfoot/archive/v3.2.tar.gz
$ tar zxvf v3.2.tar.gz
$ wget https://github.com/smicallef/spiderfoot/archive/v3.2.1.tar.gz
$ tar zxvf v3.2.1.tar.gz
$ cd spiderfoot
~/spiderfoot$ pip3 install -r requirements.txt
~/spiderfoot$ python3 ./sf.py -l 127.0.0.1:5001
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SpiderFoot 3.2
SpiderFoot 3.2.1
6 changes: 3 additions & 3 deletions dyn/HEADER.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>SpiderFoot v3.2</title>
<title>SpiderFoot v3.2.1</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
Expand Down Expand Up @@ -64,13 +64,13 @@ class="nav-item"><a href="${docroot}/opts" class="nav-link"><i class="glyphicon
<div class="modal-content">

<div class="modal-header">
<h3 class="modal-title">SpiderFoot 3.2</h3>
<h3 class="modal-title">SpiderFoot 3.2.1</h3>
</div>

<div class="modal-body">
<p>SpiderFoot is an open source, GPL-licensed footprinting tool, created by <a href='https://twitter.com/binarypool' target=_new>Steve Micallef</a>. It is designed to be easy to use, fast and extensible.</p>
<p>If you have any bugs to report, or requests for enhancements, please contact the support mailing list at <a href=mailto:[email protected]>[email protected]</a>.
<p>You are running version <b>3.2</b>.</p>
<p>You are running version <b>3.2.1</b>.</p>
<p> Visit the project website at <a href='https://www.spiderfoot.net/r.php?u=aHR0cHM6Ly93d3cuc3BpZGVyZm9vdC5uZXQv&s=os_int' target=_new>https://www.spiderfoot.net/</a>.</p>
<p> View the documentation at <a href='https://www.spiderfoot.net/documentation/' target=_new>https://www.spiderfoot.net/documentation/</a>.</p>
<p> Check out the Github repo at <a href='https://github.com/smicallef/spiderfoot' target=_new>https://github.com/smicallef/spiderfoot</a>.</p>
Expand Down
4 changes: 2 additions & 2 deletions sf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'_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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.db',
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down Expand Up @@ -106,7 +106,7 @@ def handle_abort(signal, frame):

# Legacy way to run the server
args = None
p = argparse.ArgumentParser(description='SpiderFoot 3.2: Open Source Intelligence Automation.')
p = argparse.ArgumentParser(description='SpiderFoot 3.2.1: 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.")
Expand Down
2 changes: 1 addition & 1 deletion sfcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class bcolors:


class SpiderFootCli(cmd.Cmd):
version = "3.2"
version = "3.2.1"
pipecmd = None
output = None
modules = []
Expand Down
2 changes: 1 addition & 1 deletion sfwebui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ def startscan(self, scanname, scantarget, modulelist, typelist, usecase):
# User selected a use case
if len(modlist) == 0 and usecase != "":
for mod in self.config['__modules__']:
if usecase == 'all' or usecase in self.config['__modules__'][mod]['cats']:
if usecase == 'all' or usecase in self.config['__modules__'][mod]['group']:
modlist.append(mod)

# Add our mandatory storage module..
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp__stor_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp__stor_stdout.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_abusech.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_abuseipdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_adblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_ahmia.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_alienvault.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_alienvaultiprep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_api_recon_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TestModuleapi_recon_dev(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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_apility.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_archiveorg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_arin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_azureblobstorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_badipscom.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_badpackets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_bambenek.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_base64.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/test_sfp_bgpview.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2',
'__version__': '3.2.1',
'__database': 'spiderfoot.test.db', # note: test database file
'__webaddr': '127.0.0.1',
'__webport': 5001,
Expand Down
Loading

0 comments on commit c3da732

Please sign in to comment.