├── .gitignore ├── License.md ├── README.md ├── conferences └── 2021 │ └── blackhat_us_arsenal │ └── BH-Arsenal-2021.pdf ├── crawler ├── Dockerfile ├── app │ ├── main.py │ └── templates │ │ ├── base.html │ │ ├── dashboard.html │ │ ├── domain_details.html │ │ ├── domains.html │ │ ├── search_results.html │ │ ├── url_details.html │ │ └── urls.html ├── config.yml ├── docker-compose.yml ├── input │ ├── phishtank.py │ └── urlhaus.py ├── misp-objects │ └── opendir-url │ │ └── definition.json ├── processing │ ├── __init__.py │ ├── clamav_processing.py │ ├── default_processing.py │ ├── example_processing.py │ ├── external_intel_processing.py │ ├── jarm_processing.py │ ├── minisdhash │ │ ├── libsdbf.a │ │ ├── sdbf_class.py │ │ └── sdhash │ ├── payload_processing.py │ ├── sdhash_processing.py │ ├── tlsh_processing.py │ └── yara_processing.py ├── requirements.txt ├── run.sh ├── service.py ├── storage │ ├── __init__.py │ ├── console_storage.py │ ├── default_storage.py │ ├── elastic_storage.py │ ├── example_storage.py │ ├── kibana-dashboard │ │ └── overview-dashboard.ndjson │ ├── misp_storage.py │ └── sqlite_storage.py ├── subcrawl.py ├── supervisor │ └── supervisord.conf ├── utils │ ├── __init__.py │ ├── ansi_colors.py │ ├── banner.py │ ├── helpers.py │ ├── logger.py │ ├── logos │ │ ├── subcrawl-1.txt │ │ ├── subcrawl-2.txt │ │ └── subcrawl-3.txt │ ├── setup_kafka_topic.py │ ├── sqlite_model.py │ └── subcrawl.db └── yara-rules │ ├── acridrain_stealer_panel_login.yar │ ├── agenttesla_webpanel_login.yar │ ├── amadey_panel_login.yar │ ├── attachments_onedrive_phish.yar │ ├── aurora_stealer_panel_login.yar │ ├── bankamerica_phish.yar │ ├── bapr_banking_phish.yar │ ├── base64_pe.yar │ ├── base64_shellcode_dos_header_pe.yar │ ├── chase_login_spox_phish.yar │ ├── collector_stealer_panel_login.yar │ ├── combined-rules.yar │ ├── default_page_apache.yar │ ├── default_page_xampp_windows.yar │ ├── erbium_discord_panel_login.yar │ ├── grandamisha_panel_login.yar │ ├── h3k_tinyfilemanager_login.yar │ ├── hex-encoded-pe-file.yar │ ├── html_webshell_login.yar │ ├── huntington_phish.yar │ ├── js_webshell_tracking_script.yar │ ├── link_sharing_onedrive.yar │ ├── mana5_panel_login.yar │ ├── mars_panel_login.yar │ ├── microsoft_login_phish.yar │ ├── microsoft_phish.yar │ ├── modernloader_panel_login.yar │ ├── obfuscated_script.yar │ ├── office365_review_phish.yar │ ├── office365_verify_pdf_phish.yar │ ├── onedrive_business_phish.yar │ ├── open_webshell.yar │ ├── outlook_phish.yar │ ├── panels.yar │ ├── php_file_manager_login.yar │ ├── php_webshell_backend.yar │ ├── pony_panel_login.yar │ ├── royalmail_phish.yar │ ├── sharepoint_dropbox_online_phish.yar │ ├── sharepoint_online_phish.yar │ ├── standard_bank_phish.yar │ ├── titan_stealer_panel_login.yar │ ├── unam_webpanel_login.yar │ ├── wallet_connect_phish.yar │ ├── webpanel_origin_login.yar │ └── wellsfargo_phish.yar └── images ├── architecture-prev.png ├── architecture.png ├── clamav-output.png ├── console-storage.png ├── external_intel.png ├── misp-overview.png ├── payload-output.png ├── sqlite-storage.png ├── webui.png └── yara-output.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/README.md -------------------------------------------------------------------------------- /conferences/2021/blackhat_us_arsenal/BH-Arsenal-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/conferences/2021/blackhat_us_arsenal/BH-Arsenal-2021.pdf -------------------------------------------------------------------------------- /crawler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/Dockerfile -------------------------------------------------------------------------------- /crawler/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/main.py -------------------------------------------------------------------------------- /crawler/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/base.html -------------------------------------------------------------------------------- /crawler/app/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/dashboard.html -------------------------------------------------------------------------------- /crawler/app/templates/domain_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/domain_details.html -------------------------------------------------------------------------------- /crawler/app/templates/domains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/domains.html -------------------------------------------------------------------------------- /crawler/app/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/search_results.html -------------------------------------------------------------------------------- /crawler/app/templates/url_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/url_details.html -------------------------------------------------------------------------------- /crawler/app/templates/urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/app/templates/urls.html -------------------------------------------------------------------------------- /crawler/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/config.yml -------------------------------------------------------------------------------- /crawler/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/docker-compose.yml -------------------------------------------------------------------------------- /crawler/input/phishtank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/input/phishtank.py -------------------------------------------------------------------------------- /crawler/input/urlhaus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/input/urlhaus.py -------------------------------------------------------------------------------- /crawler/misp-objects/opendir-url/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/misp-objects/opendir-url/definition.json -------------------------------------------------------------------------------- /crawler/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/__init__.py -------------------------------------------------------------------------------- /crawler/processing/clamav_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/clamav_processing.py -------------------------------------------------------------------------------- /crawler/processing/default_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/default_processing.py -------------------------------------------------------------------------------- /crawler/processing/example_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/example_processing.py -------------------------------------------------------------------------------- /crawler/processing/external_intel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/external_intel_processing.py -------------------------------------------------------------------------------- /crawler/processing/jarm_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/jarm_processing.py -------------------------------------------------------------------------------- /crawler/processing/minisdhash/libsdbf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/minisdhash/libsdbf.a -------------------------------------------------------------------------------- /crawler/processing/minisdhash/sdbf_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/minisdhash/sdbf_class.py -------------------------------------------------------------------------------- /crawler/processing/minisdhash/sdhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/minisdhash/sdhash -------------------------------------------------------------------------------- /crawler/processing/payload_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/payload_processing.py -------------------------------------------------------------------------------- /crawler/processing/sdhash_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/sdhash_processing.py -------------------------------------------------------------------------------- /crawler/processing/tlsh_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/tlsh_processing.py -------------------------------------------------------------------------------- /crawler/processing/yara_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/processing/yara_processing.py -------------------------------------------------------------------------------- /crawler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/requirements.txt -------------------------------------------------------------------------------- /crawler/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/run.sh -------------------------------------------------------------------------------- /crawler/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/service.py -------------------------------------------------------------------------------- /crawler/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/__init__.py -------------------------------------------------------------------------------- /crawler/storage/console_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/console_storage.py -------------------------------------------------------------------------------- /crawler/storage/default_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/default_storage.py -------------------------------------------------------------------------------- /crawler/storage/elastic_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/elastic_storage.py -------------------------------------------------------------------------------- /crawler/storage/example_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/example_storage.py -------------------------------------------------------------------------------- /crawler/storage/kibana-dashboard/overview-dashboard.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/kibana-dashboard/overview-dashboard.ndjson -------------------------------------------------------------------------------- /crawler/storage/misp_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/misp_storage.py -------------------------------------------------------------------------------- /crawler/storage/sqlite_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/storage/sqlite_storage.py -------------------------------------------------------------------------------- /crawler/subcrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/subcrawl.py -------------------------------------------------------------------------------- /crawler/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/supervisor/supervisord.conf -------------------------------------------------------------------------------- /crawler/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/__init__.py -------------------------------------------------------------------------------- /crawler/utils/ansi_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/ansi_colors.py -------------------------------------------------------------------------------- /crawler/utils/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/banner.py -------------------------------------------------------------------------------- /crawler/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/helpers.py -------------------------------------------------------------------------------- /crawler/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/logger.py -------------------------------------------------------------------------------- /crawler/utils/logos/subcrawl-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/logos/subcrawl-1.txt -------------------------------------------------------------------------------- /crawler/utils/logos/subcrawl-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/logos/subcrawl-2.txt -------------------------------------------------------------------------------- /crawler/utils/logos/subcrawl-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/logos/subcrawl-3.txt -------------------------------------------------------------------------------- /crawler/utils/setup_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/setup_kafka_topic.py -------------------------------------------------------------------------------- /crawler/utils/sqlite_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/sqlite_model.py -------------------------------------------------------------------------------- /crawler/utils/subcrawl.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/utils/subcrawl.db -------------------------------------------------------------------------------- /crawler/yara-rules/acridrain_stealer_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/acridrain_stealer_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/agenttesla_webpanel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/agenttesla_webpanel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/amadey_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/amadey_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/attachments_onedrive_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/attachments_onedrive_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/aurora_stealer_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/aurora_stealer_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/bankamerica_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/bankamerica_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/bapr_banking_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/bapr_banking_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/base64_pe.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/base64_pe.yar -------------------------------------------------------------------------------- /crawler/yara-rules/base64_shellcode_dos_header_pe.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/base64_shellcode_dos_header_pe.yar -------------------------------------------------------------------------------- /crawler/yara-rules/chase_login_spox_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/chase_login_spox_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/collector_stealer_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/collector_stealer_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/combined-rules.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/combined-rules.yar -------------------------------------------------------------------------------- /crawler/yara-rules/default_page_apache.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/default_page_apache.yar -------------------------------------------------------------------------------- /crawler/yara-rules/default_page_xampp_windows.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/default_page_xampp_windows.yar -------------------------------------------------------------------------------- /crawler/yara-rules/erbium_discord_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/erbium_discord_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/grandamisha_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/grandamisha_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/h3k_tinyfilemanager_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/h3k_tinyfilemanager_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/hex-encoded-pe-file.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/hex-encoded-pe-file.yar -------------------------------------------------------------------------------- /crawler/yara-rules/html_webshell_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/html_webshell_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/huntington_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/huntington_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/js_webshell_tracking_script.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/js_webshell_tracking_script.yar -------------------------------------------------------------------------------- /crawler/yara-rules/link_sharing_onedrive.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/link_sharing_onedrive.yar -------------------------------------------------------------------------------- /crawler/yara-rules/mana5_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/mana5_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/mars_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/mars_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/microsoft_login_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/microsoft_login_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/microsoft_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/microsoft_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/modernloader_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/modernloader_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/obfuscated_script.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/obfuscated_script.yar -------------------------------------------------------------------------------- /crawler/yara-rules/office365_review_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/office365_review_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/office365_verify_pdf_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/office365_verify_pdf_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/onedrive_business_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/onedrive_business_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/open_webshell.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/open_webshell.yar -------------------------------------------------------------------------------- /crawler/yara-rules/outlook_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/outlook_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/panels.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/panels.yar -------------------------------------------------------------------------------- /crawler/yara-rules/php_file_manager_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/php_file_manager_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/php_webshell_backend.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/php_webshell_backend.yar -------------------------------------------------------------------------------- /crawler/yara-rules/pony_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/pony_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/royalmail_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/royalmail_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/sharepoint_dropbox_online_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/sharepoint_dropbox_online_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/sharepoint_online_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/sharepoint_online_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/standard_bank_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/standard_bank_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/titan_stealer_panel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/titan_stealer_panel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/unam_webpanel_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/unam_webpanel_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/wallet_connect_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/wallet_connect_phish.yar -------------------------------------------------------------------------------- /crawler/yara-rules/webpanel_origin_login.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/webpanel_origin_login.yar -------------------------------------------------------------------------------- /crawler/yara-rules/wellsfargo_phish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/crawler/yara-rules/wellsfargo_phish.yar -------------------------------------------------------------------------------- /images/architecture-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/architecture-prev.png -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/clamav-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/clamav-output.png -------------------------------------------------------------------------------- /images/console-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/console-storage.png -------------------------------------------------------------------------------- /images/external_intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/external_intel.png -------------------------------------------------------------------------------- /images/misp-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/misp-overview.png -------------------------------------------------------------------------------- /images/payload-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/payload-output.png -------------------------------------------------------------------------------- /images/sqlite-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/sqlite-storage.png -------------------------------------------------------------------------------- /images/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/webui.png -------------------------------------------------------------------------------- /images/yara-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstrosch/subcrawl/HEAD/images/yara-output.png --------------------------------------------------------------------------------