├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── docker └── Dockerfile ├── requirements-dev.txt ├── requirements.txt └── threat_note ├── __init__.py ├── libs ├── API.py ├── __init__.py ├── circl.py ├── cuckoo.py ├── database.py ├── farsight.py ├── helpers.py ├── models.py ├── opendns.py ├── passivetotal.py ├── shodan.py ├── virustotal.py └── whoisinfo.py ├── static ├── css │ ├── animate.min.css │ ├── bootstrap-tokenfield.css │ ├── bootstrap.min.css │ ├── demo.css │ ├── light-bootstrap-dashboard.css │ └── pe-icon-7-stroke.css ├── fonts │ ├── Pe-icon-7-stroke.eot │ ├── Pe-icon-7-stroke.svg │ ├── Pe-icon-7-stroke.ttf │ └── Pe-icon-7-stroke.woff ├── img │ ├── Solid_Shield_Horizontal_BlackText_WhiteBkgd.jpg │ ├── favicon.ico │ ├── favicon2.ico │ ├── loading-bubbles.svg │ ├── logo.png │ └── mask.png └── js │ ├── bootstrap-checkbox-radio-switch.js │ ├── bootstrap-notify.js │ ├── bootstrap-select.js │ ├── bootstrap-tokenfield.js │ ├── bootstrap.min.js │ ├── chartist.min.js │ ├── demo.js │ ├── jquery-1.10.2.js │ └── light-bootstrap-dashboard.js ├── templates ├── about.html ├── addrelationship.html ├── base.html ├── campaigns.html ├── dashboard.html ├── error.html ├── fileobject.html ├── files.html ├── footer.html ├── header.html ├── import.html ├── login.html ├── networkobject.html ├── networks.html ├── neweditobject.html ├── newobject.html ├── profile.html ├── register.html ├── settings.html ├── sidebar.html ├── tags.html ├── threatactorobject.html ├── threatactors.html ├── userdropdown.html ├── victimobject.html └── victims.html └── threat_note.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/requirements.txt -------------------------------------------------------------------------------- /threat_note/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /threat_note/libs/API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/API.py -------------------------------------------------------------------------------- /threat_note/libs/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'alex' 2 | -------------------------------------------------------------------------------- /threat_note/libs/circl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/circl.py -------------------------------------------------------------------------------- /threat_note/libs/cuckoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/cuckoo.py -------------------------------------------------------------------------------- /threat_note/libs/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/database.py -------------------------------------------------------------------------------- /threat_note/libs/farsight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/farsight.py -------------------------------------------------------------------------------- /threat_note/libs/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/helpers.py -------------------------------------------------------------------------------- /threat_note/libs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/models.py -------------------------------------------------------------------------------- /threat_note/libs/opendns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/opendns.py -------------------------------------------------------------------------------- /threat_note/libs/passivetotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/passivetotal.py -------------------------------------------------------------------------------- /threat_note/libs/shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/shodan.py -------------------------------------------------------------------------------- /threat_note/libs/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/virustotal.py -------------------------------------------------------------------------------- /threat_note/libs/whoisinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/libs/whoisinfo.py -------------------------------------------------------------------------------- /threat_note/static/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/animate.min.css -------------------------------------------------------------------------------- /threat_note/static/css/bootstrap-tokenfield.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/bootstrap-tokenfield.css -------------------------------------------------------------------------------- /threat_note/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /threat_note/static/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/demo.css -------------------------------------------------------------------------------- /threat_note/static/css/light-bootstrap-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/light-bootstrap-dashboard.css -------------------------------------------------------------------------------- /threat_note/static/css/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/css/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /threat_note/static/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /threat_note/static/fonts/Pe-icon-7-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/fonts/Pe-icon-7-stroke.svg -------------------------------------------------------------------------------- /threat_note/static/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /threat_note/static/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /threat_note/static/img/Solid_Shield_Horizontal_BlackText_WhiteBkgd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/Solid_Shield_Horizontal_BlackText_WhiteBkgd.jpg -------------------------------------------------------------------------------- /threat_note/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/favicon.ico -------------------------------------------------------------------------------- /threat_note/static/img/favicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/favicon2.ico -------------------------------------------------------------------------------- /threat_note/static/img/loading-bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/loading-bubbles.svg -------------------------------------------------------------------------------- /threat_note/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/logo.png -------------------------------------------------------------------------------- /threat_note/static/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/img/mask.png -------------------------------------------------------------------------------- /threat_note/static/js/bootstrap-checkbox-radio-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/bootstrap-checkbox-radio-switch.js -------------------------------------------------------------------------------- /threat_note/static/js/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/bootstrap-notify.js -------------------------------------------------------------------------------- /threat_note/static/js/bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/bootstrap-select.js -------------------------------------------------------------------------------- /threat_note/static/js/bootstrap-tokenfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/bootstrap-tokenfield.js -------------------------------------------------------------------------------- /threat_note/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /threat_note/static/js/chartist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/chartist.min.js -------------------------------------------------------------------------------- /threat_note/static/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/demo.js -------------------------------------------------------------------------------- /threat_note/static/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /threat_note/static/js/light-bootstrap-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/static/js/light-bootstrap-dashboard.js -------------------------------------------------------------------------------- /threat_note/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/about.html -------------------------------------------------------------------------------- /threat_note/templates/addrelationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/addrelationship.html -------------------------------------------------------------------------------- /threat_note/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/base.html -------------------------------------------------------------------------------- /threat_note/templates/campaigns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/campaigns.html -------------------------------------------------------------------------------- /threat_note/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/dashboard.html -------------------------------------------------------------------------------- /threat_note/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/error.html -------------------------------------------------------------------------------- /threat_note/templates/fileobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/fileobject.html -------------------------------------------------------------------------------- /threat_note/templates/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/files.html -------------------------------------------------------------------------------- /threat_note/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/footer.html -------------------------------------------------------------------------------- /threat_note/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/header.html -------------------------------------------------------------------------------- /threat_note/templates/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/import.html -------------------------------------------------------------------------------- /threat_note/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/login.html -------------------------------------------------------------------------------- /threat_note/templates/networkobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/networkobject.html -------------------------------------------------------------------------------- /threat_note/templates/networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/networks.html -------------------------------------------------------------------------------- /threat_note/templates/neweditobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/neweditobject.html -------------------------------------------------------------------------------- /threat_note/templates/newobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/newobject.html -------------------------------------------------------------------------------- /threat_note/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/profile.html -------------------------------------------------------------------------------- /threat_note/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/register.html -------------------------------------------------------------------------------- /threat_note/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/settings.html -------------------------------------------------------------------------------- /threat_note/templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/sidebar.html -------------------------------------------------------------------------------- /threat_note/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/tags.html -------------------------------------------------------------------------------- /threat_note/templates/threatactorobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/threatactorobject.html -------------------------------------------------------------------------------- /threat_note/templates/threatactors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/threatactors.html -------------------------------------------------------------------------------- /threat_note/templates/userdropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/userdropdown.html -------------------------------------------------------------------------------- /threat_note/templates/victimobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/victimobject.html -------------------------------------------------------------------------------- /threat_note/templates/victims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/templates/victims.html -------------------------------------------------------------------------------- /threat_note/threat_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefensePointSecurity/threat_note/HEAD/threat_note/threat_note.py --------------------------------------------------------------------------------