├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── codeql.yml │ └── python-package.yml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── __init__.py ├── apis ├── __init__.py ├── api_hudsonrock.py ├── api_keys.db ├── api_keys_reference.db ├── api_securitytrails.py └── api_virustotal.py ├── datagather_modules ├── __init__.py ├── crawl_processor.py ├── data_assembler.py └── networking_processor.py ├── docs ├── __init__.py └── dpulse-docs │ ├── docs │ ├── api.md │ ├── basic_scan.md │ ├── config.md │ ├── contact_dev.md │ ├── demo.md │ ├── dorking.md │ ├── getting_started.md │ ├── index.md │ ├── logging.md │ ├── pagesearch.md │ ├── reporting.md │ └── snapshotting.md │ └── mkdocs.yml ├── dorking ├── __init__.py ├── adminpanels_dorking.db ├── basic_dorking.db ├── db_creator.py ├── dorking_handler.py ├── files_dorking.db ├── iot_dorking.db ├── proxies_rotator.py ├── ua_rotator.py └── webstructure_dorking.db ├── dpulse.py ├── installer.bat ├── installer.sh ├── pagesearch ├── __init__.py └── pagesearch_parsers.py ├── poetry.lock ├── pyproject.toml ├── report_examples ├── html_report_example │ ├── 01-robots.txt │ ├── hackthissiteorg_(28-12-2024, 09h17m49s).html │ └── ps_documents │ │ └── extracted_About%20the%20HackThisSite%20Mirror.txt └── xlsx_report_example │ ├── 01-robots.txt │ ├── hackthissiteorg_(28-12-2024, 09h33m02s).csv │ └── ps_documents │ └── extracted_About%20the%20HackThisSite%20Mirror.txt ├── reporting_modules ├── __init__.py ├── html_report_creation.py └── xlsx_report_creation.py ├── requirements.txt ├── service ├── __init__.py ├── cli_init.py ├── config_processing.py ├── db_processing.py ├── files_processing.py ├── logs_processing.py ├── misc.py └── pdf_report_templates │ ├── legacy_report_template.html │ └── modern_report_template.html └── snapshotting ├── __init__.py ├── archive_snapshotting.py ├── html_snapshotting.py └── screen_snapshotting.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apis/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apis/api_hudsonrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/apis/api_hudsonrock.py -------------------------------------------------------------------------------- /apis/api_keys.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/apis/api_keys.db -------------------------------------------------------------------------------- /apis/api_keys_reference.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/apis/api_keys_reference.db -------------------------------------------------------------------------------- /apis/api_securitytrails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/apis/api_securitytrails.py -------------------------------------------------------------------------------- /apis/api_virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/apis/api_virustotal.py -------------------------------------------------------------------------------- /datagather_modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datagather_modules/crawl_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/datagather_modules/crawl_processor.py -------------------------------------------------------------------------------- /datagather_modules/data_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/datagather_modules/data_assembler.py -------------------------------------------------------------------------------- /datagather_modules/networking_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/datagather_modules/networking_processor.py -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/api.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/basic_scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/basic_scan.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/config.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/contact_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/contact_dev.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/demo.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/dorking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/dorking.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/getting_started.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/index.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/logging.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/pagesearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/pagesearch.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/reporting.md -------------------------------------------------------------------------------- /docs/dpulse-docs/docs/snapshotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/docs/snapshotting.md -------------------------------------------------------------------------------- /docs/dpulse-docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/docs/dpulse-docs/mkdocs.yml -------------------------------------------------------------------------------- /dorking/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dorking/adminpanels_dorking.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/adminpanels_dorking.db -------------------------------------------------------------------------------- /dorking/basic_dorking.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/basic_dorking.db -------------------------------------------------------------------------------- /dorking/db_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/db_creator.py -------------------------------------------------------------------------------- /dorking/dorking_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/dorking_handler.py -------------------------------------------------------------------------------- /dorking/files_dorking.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/files_dorking.db -------------------------------------------------------------------------------- /dorking/iot_dorking.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/iot_dorking.db -------------------------------------------------------------------------------- /dorking/proxies_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/proxies_rotator.py -------------------------------------------------------------------------------- /dorking/ua_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/ua_rotator.py -------------------------------------------------------------------------------- /dorking/webstructure_dorking.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dorking/webstructure_dorking.db -------------------------------------------------------------------------------- /dpulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/dpulse.py -------------------------------------------------------------------------------- /installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/installer.bat -------------------------------------------------------------------------------- /installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/installer.sh -------------------------------------------------------------------------------- /pagesearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pagesearch/pagesearch_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/pagesearch/pagesearch_parsers.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /report_examples/html_report_example/01-robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/html_report_example/01-robots.txt -------------------------------------------------------------------------------- /report_examples/html_report_example/hackthissiteorg_(28-12-2024, 09h17m49s).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/html_report_example/hackthissiteorg_(28-12-2024, 09h17m49s).html -------------------------------------------------------------------------------- /report_examples/html_report_example/ps_documents/extracted_About%20the%20HackThisSite%20Mirror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/html_report_example/ps_documents/extracted_About%20the%20HackThisSite%20Mirror.txt -------------------------------------------------------------------------------- /report_examples/xlsx_report_example/01-robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/xlsx_report_example/01-robots.txt -------------------------------------------------------------------------------- /report_examples/xlsx_report_example/hackthissiteorg_(28-12-2024, 09h33m02s).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/xlsx_report_example/hackthissiteorg_(28-12-2024, 09h33m02s).csv -------------------------------------------------------------------------------- /report_examples/xlsx_report_example/ps_documents/extracted_About%20the%20HackThisSite%20Mirror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/report_examples/xlsx_report_example/ps_documents/extracted_About%20the%20HackThisSite%20Mirror.txt -------------------------------------------------------------------------------- /reporting_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reporting_modules/html_report_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/reporting_modules/html_report_creation.py -------------------------------------------------------------------------------- /reporting_modules/xlsx_report_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/reporting_modules/xlsx_report_creation.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/requirements.txt -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /service/cli_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/cli_init.py -------------------------------------------------------------------------------- /service/config_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/config_processing.py -------------------------------------------------------------------------------- /service/db_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/db_processing.py -------------------------------------------------------------------------------- /service/files_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/files_processing.py -------------------------------------------------------------------------------- /service/logs_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/logs_processing.py -------------------------------------------------------------------------------- /service/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/misc.py -------------------------------------------------------------------------------- /service/pdf_report_templates/legacy_report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/pdf_report_templates/legacy_report_template.html -------------------------------------------------------------------------------- /service/pdf_report_templates/modern_report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/service/pdf_report_templates/modern_report_template.html -------------------------------------------------------------------------------- /snapshotting/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snapshotting/archive_snapshotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/snapshotting/archive_snapshotting.py -------------------------------------------------------------------------------- /snapshotting/html_snapshotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/snapshotting/html_snapshotting.py -------------------------------------------------------------------------------- /snapshotting/screen_snapshotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSINT-TECHNOLOGIES/dpulse/HEAD/snapshotting/screen_snapshotting.py --------------------------------------------------------------------------------