industrialxpl-forge 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- industrialxpl_forge-1.0.0/LICENSE +27 -0
- industrialxpl_forge-1.0.0/PKG-INFO +256 -0
- industrialxpl_forge-1.0.0/README.md +160 -0
- industrialxpl_forge-1.0.0/industrialxpl/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/__main__.py +21 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/__init__.py +58 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/exceptions.py +21 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/exploit.py +207 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/option.py +185 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/printer.py +117 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/safety.py +160 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/utils.py +100 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/wifi_lab/__init__.py +1 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/exploit/wifi_lab/_disclaimer.py +1 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/http.py +57 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/mitre/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/mitre/index.py +69 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/mitre/reporter.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/mitre/sweeper.py +215 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/mitre/tactics.py +71 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/poly/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/poly/poly_runner.py +207 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/protocols/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/reporting/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/reporting/reporter.py +30 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/sast/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/sast/llm_provider.py +253 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/sast/plc_parsers.py +273 -0
- industrialxpl_forge-1.0.0/industrialxpl/core/sast/prompts.py +240 -0
- industrialxpl_forge-1.0.0/industrialxpl/interpreter.py +705 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/iec62443/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/iec62443/zone_conduit_audit.py +289 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/ir/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/ir/iacs_ir_playbook.py +410 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/coverage_report.py +96 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/full_mitre_sweep.py +84 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/t0806_brute_force_io.py +128 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/t0830_aitm_modbus.py +151 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/t0842_network_sniff.py +125 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/t0848_rogue_master.py +147 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/mitre_ics/t0878_alarm_suppression.py +138 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/nist_sp800_82/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/nist_sp800_82/control_checklist.py +378 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/risk/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/risk/ics_risk_scorer.py +378 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/sast/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/sast/plc_source_analyzer.py +335 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/threat_intel/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/assessment/threat_intel/ics_kill_chain.py +302 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/abb/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/abb/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/abb/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/ge/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/generic/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/generic/http_basic_digest_default.py +3 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/generic/http_default.py +93 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/generic/ssh_default.py +104 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/generic/telnet_default.py +73 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/honeywell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/honeywell_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/honeywell_ot/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/honeywell_ot/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/moxa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/moxa/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/moxa/telnet_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/moxa/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/omron/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/omron/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/omron/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/phoenix_contact/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/phoenix_contact/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/phoenix_contact/telnet_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/phoenix_contact/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/rockwell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/rockwell/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/rockwell/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/schneider/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/schneider/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/schneider/telnet_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/schneider/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/siemens/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/siemens/ssh_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/siemens/telnet_default_creds.py +34 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/siemens/webinterface_http_auth_default_creds.py +35 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/creds/yokogawa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/7_technologies/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/7_technologies/cve_2011_3486.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2019_18247.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2019_7246.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2020_24676.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2020_8476.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2020_8476_ac500_hardcoded_key.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2021_22277.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2021_22277_ac800m_mms_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2021_22281.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2021_22285.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2022_0228.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2022_26412.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2022_26414.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2022_26415.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2023_0232.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2024_48843.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/abb/cve_2024_51550.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2017_12719.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2017_7895.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2020_13984.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2021_33002.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2021_33014.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2022_3036.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2022_32533.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2023_2611.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2023_4414.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2024_10491.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2024_6542.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/advantech/cve_2024_7940.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apache/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apache/cve_2021_44228.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apt/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apt/frostygoop_modbus_heating.py +176 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apt/industroyer2_iec104_rtu.py +272 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apt/stuxnet_step7_cve_2010_2772_key.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/apt/triton_triconex_cve_2019_6829.py +218 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2021_33010.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2022_23854.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_2573.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_2573_intouch_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_2574.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_2638.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_34982.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2023_36022.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2024_2655.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/aveva/cve_2024_7049.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/baker_hughes/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/baker_hughes/cve_2022_25929.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/beckhoff/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/beckhoff/cve_2019_16883.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/beckhoff/cve_2019_5637_twincat_upnp_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/beckhoff/cve_2023_4380.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/beckhoff/cve_2024_49556.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2021_29241.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2021_29241_opcua_stack_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2021_30189.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2022_22515.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2022_31806.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2022_31806_default_credentials.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2023_37545.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2023_49722.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/codesys/cve_2024_0175.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/critical_manufacturi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/critical_manufacturi/cve_2022_1764.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2017_0144/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2017_0144/cve_2017_0144_eternalblue_ot.py +333 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2017_0144_eternalblue/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2017_0144_eternalblue/cve_2017_0144_eternalblue_ot.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2019_0708/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2019_0708/cve_2019_0708_bluekeep_ot.py +265 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2019_0708_bluekeep/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2019_0708_bluekeep/cve_2019_0708_bluekeep_ot_ews.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2019_13946_s7_300_profinet_dos.py +203 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2020_8476_abb_ac500_hardcoded.py +223 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_21985_vmware/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_21985_vmware/cve_2021_21985_vmware_vcenter.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_22681_s7_1200_hardcoded_key.py +189 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_34473/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_34473/cve_2021_34473_proxyshell_ot.py +254 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_34473_proxyshell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_34473_proxyshell/cve_2021_34473_proxyshell_ot.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_38397_honeywell_experion_pks.py +202 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_40539/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_40539/cve_2021_40539_zoho_manageengine_ot.py +253 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_44228_log4shell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2021_44228_log4shell/cve_2021_44228_log4shell_ics.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_0847/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_0847/cve_2022_0847_dirty_pipe_ot.py +287 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_1388_f5bigip/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_1388_f5bigip/cve_2022_1388_f5bigip_ot.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_22954_vmware/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_22954_vmware/cve_2022_22954_vmware_workspace.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2022_30313_honeywell_controledge.py +190 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_27396_omron_cj2m_fins.py +218 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_27997/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_27997/cve_2023_27997_fortios_sslvpn.py +278 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_27997_fortios/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_27997_fortios/cve_2023_27997_fortios_sslvpn.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_34362_moveit/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_34362_moveit/cve_2023_34362_moveit_sqli_rce.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_34979/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2023_34979/cve_2023_34979_advantech_iview.py +253 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_10943/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_10943/cve_2024_10943_factorytalk_updater.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_3400/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_3400/cve_2024_3400_paloalto_globalprotect.py +245 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_3400/cve_2024_3400_panos_globalprotect.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_35783_simatic_db_os_cmd.py +202 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2024_5989_thinmanager_sqli_rce.py +172 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2025_29824_windows/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/cve_2025_29824_windows/cve_2025_29824_windows_clfs_lpe.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/dassault_systemes/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/dassault_systemes/cve_2025_5086.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/dassault_systemes/cve_2025_6204.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/dassault_systemes/cve_2025_6205.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2017_9312.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2021_33008.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2022_25347.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2022_45137.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2023_1326.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2023_46690.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/delta_electronics/cve_2024_39605.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/digi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/digi/cve_2022_40765.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2018_19021_deltav_path_traversal.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2020_10640.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_29953.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_29957.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_29958.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_29963.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_29966.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_30264.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/emerson/cve_2022_30267.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/linux_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/linux_ot/cve_2021_4034_pwnkit_lpe.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/linux_ot/cve_2024_6387_regresshion_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/network_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/network_ot/cve_2021_22986_f5_bigip_icontrol_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/network_ot/cve_2024_20399_cisco_ios_xe_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/remote_access/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/remote_access/cve_2024_1709_connectwise_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/vpn_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/vpn_ot/cve_2024_21887_ivanti_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/vpn_ot/cve_2024_24919_checkpoint_vpn_info_disclosure.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/windows_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/windows_ot/cve_2022_21907_http_sys_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/windows_ot/cve_2023_23397_outlook_ntlm_steal.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/wireless_ot/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/exploits/wireless_ot/cve_2023_51438_wia_pa_wireless_hart.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/frangoteam/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/frangoteam/cve_2026_25895.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/frangoteam/cve_2026_25939.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2011_0340.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2012_2508.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2014_0751.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2014_0751_cimplicity_blackenergy_vector.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2016_8361.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2018_17924.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2019_6503.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2019_6503_cimplicity_path_traversal.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2019_6557.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2020_6994.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2021_27452.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2022_29957.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2023_3463.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge/cve_2024_4609.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge_vernova/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ge_vernova/cve_2024_4609.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_bacnet.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_dnp3.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_dnp3_nosa.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_enip_noauth.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_modbus.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/generic/design_modbus_noauth.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/hitachi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/hitachi/cve_2022_3483_rtu_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2019_13528.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2020_6970.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2021_38397.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2021_38397_experion_pks_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2022_3029.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2022_30313.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2022_30314.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2022_30316.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2022_30317.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2023_23585.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2023_24477.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2024_33045.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/cve_2024_6081.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/honeywell/icsa_22_242_08.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/iconics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/iconics/cve_2011_1899.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/iconics/cve_2011_2089.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ignition/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/ignition/cve_2023_39476_java_deserialization_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/cve_2022_35872.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/cve_2023_39473.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/cve_2023_39476.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/cve_2025_13911.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/inductive_automation/cve_2025_13913.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/jtekt/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/jtekt/cve_2022_25151.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/jtekt/cve_2022_25152.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/koyo/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/koyo/cve_2012_6435.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/_native/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/_native/cosmicenergy_iec104.py +186 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/_native/ekans_process_killer.py +185 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/acidrain_firmware_wiper.py +316 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/blackenergy2_hmi_attack.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/blackenergy3_industrial.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/chernovite_ot_living_off_land.py +463 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/clop_ot_infrastructure.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/cosmicenergy_iec104.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/crashoverride_industroyer.py +194 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/darkside_colonial_pipeline.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/ekans_snake_ics_ransomware.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/fuxnet_sensor_gateway_brick.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/havex_dragonfly_opc.py +262 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/incontroller_pipedream_suite.py +195 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/industroyer_v1_original.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/iocontrol_iot_ot_backdoor.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/irongate_siemens_simulation.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/kamacite_spearphishing.py +369 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/night_dragon_oil_gas.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/notpetya_destructive_wiper.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/shamoon_destructive_wiper.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/triton_trisis_sis_attack.py +370 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/wannacry_ot_impact.py +86 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/malware/xenotime_triton_group.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/measuresoft/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/measuresoft/cve_2011_3492.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mes_erp/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mes_erp/cve_2023_46604_activemq_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mes_erp/cve_2025_31324_sap_netweaver_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mikrotik/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mikrotik/cve_2018_14847.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mikrotik/cve_2019_3977.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mikrotik/cve_2021_41987.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mitsubishi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/mitsubishi/cve_2020_5595_melsec_q_protocol.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/motorola_solutions/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/motorola_solutions/cve_2022_30271.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/motorola_solutions/cve_2022_30272.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/motorola_solutions/cve_2022_30276.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2018_10995.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2019_15102.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2020_13532.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2021_31851.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2022_0915.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2022_3480_iologik_default_creds.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2023_28699.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/moxa/cve_2024_7695.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2015_0987.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2015_0987_cp2e_fins_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2019_18253.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2021_33008.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2022_30265.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2022_31206.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2022_34151.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2022_34151_nj_nx_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2023_27396.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2023_27396_cj2m_fins_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/omron/cve_2024_27126.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft/cve_2019_18244.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft/cve_2020_25163.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft/cve_2022_24957.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft/cve_2023_31175_pi_server_sqli.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft_aveva/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/osisoft_aveva/cve_2023_34982.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2016_8366.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2016_8366_webvisit_password_disclosure.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2016_8380.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2016_8380_webvisit_tag_manipulation.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2019_9201.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/phoenix_contact/cve_2022_31217.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/realflex/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/realflex/cve_2006_6449.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/cve_2016_5645_1766_enip_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/cve_2020_12038_studio5000_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/cve_2021_27478_enip_stack_overflow.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/cve_2022_1161_controllogix_modified_fw.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell/cve_2023_3595_controllogix_rce.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2012_6435.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2016_5645.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2017_7899.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2017_7901.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2018_14821.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2018_19609.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2019_10952.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2019_13510.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2019_13516.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2019_6553.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2020_11999.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2020_12038.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2020_12040.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2020_6085.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2021_22681.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2021_27476.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2021_27478.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2021_27482.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2022_1161.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2022_2179.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2022_3156.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2022_38742.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2023_2071.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2023_27855.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2023_29022.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2023_46289.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2023_46290.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_21912.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_2426.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_40619.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_4609.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_5643.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_5989.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_6077.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_7947.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2024_7961.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2025_0477.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2025_13823.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/rockwell_automation/cve_2025_13824.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/cve_2015_7937_tm221_modbus_crash.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/cve_2017_6026_schneider_session_hijack.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/cve_2018_7789_tm221_http_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/cve_2019_6833_modicon_vxworks_overflow.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider/cve_2021_22779_modicon_auth_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2008_0436.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2015_7937.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2017_6026.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2018_7789.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2018_7810.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2019_6819.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2019_6829.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2019_6833.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2019_6856.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2019_6857.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2020_28212.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2020_7516.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2020_7537.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2020_7560.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2021_22717.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2021_22763.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2021_22820.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2021_22986.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2021_32014.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_22984.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_22986.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_3032.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_34753.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_34754.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_37300.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_37301.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_41977.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2022_45789.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2023_25547.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2023_27975.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2023_29412.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2024_0571.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2024_2229.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2024_5560.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2025_0327.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/cve_2025_0972.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/icsa_10_214_01.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/icsa_21_259_02.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/schneider_electric/icsa_22_223_03.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2010_2772.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2010_2773.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2012_3037.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2012_3040.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2013_0700.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2014_2909.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2014_2909_s7_1200_crlf_injection.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2015_0015.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2015_2177.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2015_2177_s7_300_s7comm_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2015_5374.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2016_8672.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2017_2680.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2018_10952.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2018_13800.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_10929.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_10943.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_10953.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_13939.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_13945.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_13946.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_13946_s7_profinet_dos.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2019_6568.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2020_15782.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2020_15782_s7_memory_bypass.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2020_25240.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2020_28388.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2020_7580.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_22681.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_22681_s7_1200_hardcoded_key.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_25678.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_33737.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_33925.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_37185.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_37204.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_40440.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2021_43397.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_26649.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_27484.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_34662.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_36323.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_38465.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_38465_s7_global_key.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_43513.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2022_43514.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_28489.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_36380.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_38380.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_38876.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_44373.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_46156.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_46280.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2023_49252.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_21684.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_21903.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_23814.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_30034.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_35300.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_35783.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_36556.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_37998.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_43641.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_43647.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2024_56181.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2025_23403.py +48 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2025_27393.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2025_40736.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2025_40737.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/cve_2025_40738.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/design_s7comm.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/siemens/design_s7comm_noauth.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/tridium/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/tridium/cve_2018_1139.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/tridium/cve_2019_8957_niagara_path_traversal.py +74 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/tridium/cve_2022_40201.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/tridium/cve_2023_30838.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/unitronics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/unitronics/cve_2023_6448.py +85 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/vmware_spring/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/vmware_spring/cve_2022_22965.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/vxworks_urgent11/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12255.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12256.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12257.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12258.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12259.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12260.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12261.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12262.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12263.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/wind_river/cve_2019_12264.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2014_0783.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2014_0784.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2014_3887.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2014_3888.py +101 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2022_25921.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2022_25925.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2023_35985.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/yokogawa/cve_2024_1182.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/zyxel/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/zyxel/cve_2022_30525.py +97 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/cve/zyxel/cve_2023_28771.py +64 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/ble_sweyntooth_bridge.py +157 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/blueborne_attack_cve_2017_0781.py +395 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/wifi_fragattacks_cve_2020_24586.py +449 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/wifi_kr00k_attack_cve_2019_15126.py +296 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/bluetooth_ble/wifi_krack_attack_cve_2017_13077.py +499 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/digi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/digi/cve_2022_40765_connectport_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/mikrotik/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/mikrotik/cve_2018_14847_routeros_winbox.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/moxa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/moxa/cve_2020_13532_mxview_auth_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/moxa/cve_2022_0915_tn4900_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/moxa/mdmtool_bof_rce.py +185 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/moxa/moxa_credentials_recovery.py +229 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/yokogawa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/engineering/yokogawa/bkbcopyd_bof.py +156 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/exploits/generic/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/exploits/generic/fake_dhcp_server.py +226 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/aveva/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/aveva/cve_2022_23854_intouch_traversal_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/aveva/cve_2024_7049_aveva_edge_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/critical_mfg/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/critical_mfg/cve_2022_1764_critical_mfg_auth.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/ignition/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/ignition/cve_2023_39473_ignition_auth_deserial.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/ignition/cve_2023_39476_ignition_deserial_unauthenticated.py +216 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/log4shell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/rockwell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/rockwell/cve_2023_29022_hmi_terminal_auth_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/rockwell/cve_2023_46290_factorytalk_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/rockwell/cve_2024_5989_thinmanager_sqli_rce.py +124 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/siemens/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mes/siemens/cve_2024_35783_simatic_db_os_cmd.py +126 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/mitre_ics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/abb/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/abb/cve_2020_24676_panel_builder_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/abb/cve_2020_8476_ac500_hardcoded_creds.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/abb/cve_2021_22277_ac800m_mms_dos.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/abb/cve_2022_26412_symphony_sqli.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/beckhoff/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/beckhoff/cve_2024_49556_twincat3_ads_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/beckhoff/twincat_ads_dos.py +204 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/ge/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/ge/d20_credential_dump.py +193 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/generic/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/generic/pump_controller_auth_bypass_cve_2023_28648.py +67 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/generic/ur_polyscope5_dashboard_cmd_injection_cve_2026_8153.py +181 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/honeywell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/honeywell/cve_2020_6970_mb_secure_bof.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/honeywell/cve_2021_38397_experion_pks_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/honeywell/iq4e_bacnet_pin_extract.py +181 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/koyo/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/koyo/directlogic_ecom_brute.py +203 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/mitsubishi/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/mitsubishi/cve_2020_5595_melsec_q_input_dos.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/omron/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/omron/cve_2023_27396_cj2m_fins_noauth.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/omron/fins_plc_control.py +232 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/phoenix_contact/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/phoenix_contact/cve_2019_9201_plcnext_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/phoenix_contact/plc_start_stop_command.py +199 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/allen_bradley_pccc_dos.py +136 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/cip_multi_command.py +251 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/compactlogix_auth_bypass_cve_2021_22681.py +126 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/compactlogix_cip_dos_cve_2024_6077.py +117 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/compactlogix_code_injection_cve_2022_1161.py +106 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/cve_2016_5645_micrologix_enip_dos.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/cve_2020_12038_studio5000_auth_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/rockwell/cve_2021_27478_enip_bof_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/cve_2015_7937_tm221_modbus_fc71_crash.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/cve_2017_6026_m221_session_hijack.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/cve_2018_7789_tm221_http_dos.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/cve_2019_6833_modicon_vxworks_bof.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/modicon_modbus_control_cve_2018_7841.py +141 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/modicon_start_stop_command.py +151 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/net55xx_encoder_rce_cve_2018_7784.py +107 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/quantum_plc_control.py +149 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/schneider/scadapack_vxworks_debug_17185.py +179 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/cve_2020_15782_s7_1500_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/cve_2023_28489_sicam_a8000_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/profinet_set_ip.py +170 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/s7_1200_plc_control.py +241 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/s7_300_400_plc_control.py +182 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/siprotec4_dos_cve_2015_5374.py +130 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/siemens/siprotec_relay_dos_cve_2015_5374.py +117 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/unitronics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/unitronics/pcom_default_auth_bypass.py +163 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/plc/yokogawa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/bacnet/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/bacnet/bacnet_reinitialize_device.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/bacnet/bacnet_write_property_noauth.py +293 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/cc_link/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/cc_link/cc_link_ie_broadcast_stop.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/dnp3/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/dnp3/dnp3_data_spoofing.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/dnp3/dnp3_replay_command.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/dnp3/dnp3_self_address_spoof.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/dnp3/dnp3_unauthorized_control.py +134 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/enip/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/enip/cip_multi_request_dos.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/enip/cip_read_all_tags.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/enip/cip_unauthorized_tag_write.py +303 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/enip/enip_list_identity_flood.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/iec104/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/iec61850/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/iec61850/goose_flooding_dos.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/iec61850/goose_spoofing_injection.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/iec61850/mms_unauthorized_control.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/buspwn_modbus_scanner_dos.py +199 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/dos_write_coils.py +134 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/dos_write_registers.py +135 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_broadcast_flood.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_client.py +230 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_exception_probe.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_fc8_diagnostic_abuse.py +161 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_ot_attack_scenarios.py +181 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_replay_attack.py +164 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_unauthorized_coil_set.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_unit_id_spoofing.py +57 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/modbus_write_coil_flood.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/read_coil_status.py +149 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/read_discrete_inputs.py +124 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/read_holding_registers.py +118 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/read_input_registers.py +118 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/write_single_coil.py +128 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/modbus/write_single_register.py +124 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/mqtt/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/mqtt/mqtt_ics_broker_injection.py +289 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/omron/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/omron/fins_broadcast_stop.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/omron/fins_unauthorized_memory_write.py +320 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/opc_da/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/opc_da/opc_da_unauthorized_write.py +279 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/opcua/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/opcua/opcua_node_enumeration.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/opcua/opcua_session_hijack.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/profinet/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/profinet/profinet_dcp_ip_spoof.py +262 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/profinet/profinet_dcp_spoof_mac.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7/s7_cpu_time_manipulate.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7/s7_read_system_status.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7comm/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7comm/s7_cpu_stop_unauthorized.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/s7comm/s7_unauthorized_cpu_control.py +272 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/serial/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/serial/serial_to_ethernet_pass_replay.py +63 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/snmp/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/protocols/snmp/snmp_public_ot_device.py +291 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/freertos/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/freertos/freertos_plus_tcp_oob_write_cve_2025_5688.py +118 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/qnx/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/qnx/crash_qnx_inetd.py +110 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/qnx/qconn_remote_exec.py +146 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/vxworks/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/rtos/vxworks/vxworks_rpc_dos.py +139 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2017_16720_webaccess_sqli_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2017_16727_webaccess_rfi_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2018_17917_webaccess_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2018_8852_webaccess_bof.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2019_3951_webaccess_file_upload.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/cve_2019_6519_webaccess_xml_inject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/advantech/switch_shellshock_cve_2015_6023.py +113 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/azeotech/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/codesys/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/codesys/cve_2022_31806_codesys_v3_noauth.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/codesys/cve_2023_37545_codesys_gateway_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/delmia/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/delta/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/delta/cve_2022_25347_infrasuite_deserial.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/delta/cve_2023_1326_infrasuite_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/emerson/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/emerson/cve_2020_10640_openenterprise_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/cve_2026_25898_fuxa_jwt_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/fuxa_preauth_rce_cve_2026_25895.py +181 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/fuxa_scheduler_bypass_cve_2026_25939.py +184 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/fuxa_scheduler_rce_cve_2026_25939.py +122 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/fuxa/laquis_arb_file_write_cve_2021_41579.py +125 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/ge/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/ge/cve_2014_0751_cimplicity_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/ge/cve_2019_6503_proficy_cimplicity_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/ge/cve_2023_3463_proficy_historian_auth.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/iconics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/iconics/genesis32_genbroker_rce.py +155 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/measuresoft/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/measuresoft/scadapro_cmd_exec.py +142 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/mypro/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/osisoft/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/osisoft/cve_2022_24957_pi_server_bof.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/realflex/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/realflex/realwin_bof.py +149 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/rockwell/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/scadatec/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/schneider/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/schneider/citect_scada_odbc_rce.py +156 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/schneider/cve_2018_7810_indusoft_bof.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/schneider/cve_2021_22763_ecostruxure_auth.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/schneider/sc168_file_write_cve_2022_25359.py +77 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/seven_tech/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/seven_tech/igss9_dataserver_listall.py +141 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/seven_tech/igss9_dataserver_rename.py +149 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/sielco/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/sielco/winlog_runtime_rce.py +150 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/siemens/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/siemens/cve_2022_38465_wincc_oa_key_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/sprecher/__init__.py +1 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/sprecher/cve_2025_41744_sprecon_hardcoded_key.py +180 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/sprecher/cve_2025_41744_sprecon_hardcoded_key_stub.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/three_s/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/tridium/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/tridium/cve_2022_40201_niagara4_auth_bypass.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/tridium/cve_2023_30838_niagara4_rce.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/wellintech/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/wellintech/cve_2014_2347_kingscada_driveby.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/yokogawa/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/yokogawa/cve_2023_35985_centum_vp_traversal.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/zyxel/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/zyxel/cve_2022_30525_usg_flex_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/scada/zyxel/cve_2023_28771_zyxel_ikev2_cmdinject.py +61 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/verticals/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/verticals/oil_gas/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/exploits/verticals/water/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/generic/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/bacnet_scan.py +276 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/dnp3_scan.py +240 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/ics_device_fingerprint.py +465 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/modbus_scan.py +257 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/moxa_udp_discover.py +109 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/opcua_scan.py +329 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/asset/profinet_scan.py +276 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/bacnet_l3_scan.py +274 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/bacnet_scanner.py +187 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/cip_scanner.py +190 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/dnp3_scanner.py +157 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/enip_scanner.py +227 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/modbus_banner_grabbing.py +132 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/modbus_detect.py +102 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/modbus_id_fuzzer.py +120 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/modbus_scanner.py +163 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/pcom_scan.py +211 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/profinet_dcp_scanner.py +243 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/rockwell_discover.py +123 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/s7_comm_scanner.py +200 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/s7comm_plus_scanner.py +192 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/ics/vxworks_scanner.py +221 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/network/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/osint/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/osint/elitewolf_web_dork.py +179 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/osint/ot_hunt_scanner.py +290 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/osint/shodan_ics.py +178 -0
- industrialxpl_forge-1.0.0/industrialxpl/modules/scanners/risk/__init__.py +0 -0
- industrialxpl_forge-1.0.0/industrialxpl/resources/cve/ics_cve_database.json +136 -0
- industrialxpl_forge-1.0.0/industrialxpl/resources/osint/shodan_ics_dorks.json +52 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/PKG-INFO +256 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/SOURCES.txt +858 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/dependency_links.txt +1 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/entry_points.txt +3 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/requires.txt +38 -0
- industrialxpl_forge-1.0.0/industrialxpl_forge.egg-info/top_level.txt +1 -0
- industrialxpl_forge-1.0.0/pyproject.toml +116 -0
- industrialxpl_forge-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 André Henrique (@mrhenrike) | União Geek
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
DISCLAIMER: This tool is intended for authorized security testing, research,
|
|
24
|
+
and educational purposes only. Using this tool against systems you do not own
|
|
25
|
+
or do not have explicit written permission to test is illegal. The author
|
|
26
|
+
assumes no liability for misuse or damage caused by this software. Users bear
|
|
27
|
+
full legal and ethical responsibility for all actions performed with this tool.
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: industrialxpl-forge
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: IndustrialXPL-Forge (IXF) — OT/ICS/SCADA/HMI/IIoT Security Assessment & Exploitation Framework. Python-First, 631+ modules, 79 MITRE ATT&CK for ICS techniques, 26 ICS malware TTPs, 50+ vendors, 50+ protocols.
|
|
5
|
+
Author-email: André Henrique <henrique.santos@uniaogeek.com.br>
|
|
6
|
+
Maintainer-email: André Henrique <henrique.santos@uniaogeek.com.br>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2026 André Henrique (@mrhenrike) | União Geek
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
DISCLAIMER: This tool is intended for authorized security testing, research,
|
|
30
|
+
and educational purposes only. Using this tool against systems you do not own
|
|
31
|
+
or do not have explicit written permission to test is illegal. The author
|
|
32
|
+
assumes no liability for misuse or damage caused by this software. Users bear
|
|
33
|
+
full legal and ethical responsibility for all actions performed with this tool.
|
|
34
|
+
|
|
35
|
+
Project-URL: Homepage, https://github.com/mrhenrike/IndustrialXPL-Forge
|
|
36
|
+
Project-URL: Repository, https://github.com/mrhenrike/IndustrialXPL-Forge
|
|
37
|
+
Project-URL: Documentation, https://github.com/mrhenrike/IndustrialXPL-Forge/wiki
|
|
38
|
+
Project-URL: Bug Tracker, https://github.com/mrhenrike/IndustrialXPL-Forge/issues
|
|
39
|
+
Project-URL: Changelog, https://github.com/mrhenrike/IndustrialXPL-Forge/releases
|
|
40
|
+
Keywords: security,pentesting,ics,scada,ot-security,plc,hmi,modbus,s7comm,enip,dnp3,bacnet,profinet,iec61850,opc-ua,industrial-control-systems,red-team,exploit,vulnerability-scanner,cve,mitre-attack,ot-ics,iiot,xpl-forge,firewall-xpl,embed-xpl,industrial-exploit
|
|
41
|
+
Classifier: Development Status :: 4 - Beta
|
|
42
|
+
Classifier: Environment :: Console
|
|
43
|
+
Classifier: Intended Audience :: Developers
|
|
44
|
+
Classifier: Intended Audience :: Information Technology
|
|
45
|
+
Classifier: Intended Audience :: Science/Research
|
|
46
|
+
Classifier: Intended Audience :: System Administrators
|
|
47
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
48
|
+
Classifier: Natural Language :: English
|
|
49
|
+
Classifier: Natural Language :: Portuguese (Brazilian)
|
|
50
|
+
Classifier: Operating System :: OS Independent
|
|
51
|
+
Classifier: Programming Language :: Python :: 3
|
|
52
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
53
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
54
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
55
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
56
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
57
|
+
Classifier: Topic :: Security
|
|
58
|
+
Classifier: Topic :: System :: Networking
|
|
59
|
+
Classifier: Topic :: Scientific/Engineering
|
|
60
|
+
Requires-Python: >=3.9
|
|
61
|
+
Description-Content-Type: text/markdown
|
|
62
|
+
License-File: LICENSE
|
|
63
|
+
Requires-Dist: requests>=2.32
|
|
64
|
+
Requires-Dist: paramiko>=3.0
|
|
65
|
+
Requires-Dist: pysnmp>=4.4
|
|
66
|
+
Requires-Dist: scapy>=2.5
|
|
67
|
+
Requires-Dist: rich>=13.0
|
|
68
|
+
Requires-Dist: psutil>=5.9
|
|
69
|
+
Provides-Extra: ot
|
|
70
|
+
Requires-Dist: pymodbus>=3.5; extra == "ot"
|
|
71
|
+
Requires-Dist: asyncua>=1.0; extra == "ot"
|
|
72
|
+
Requires-Dist: cpppo>=4.3; extra == "ot"
|
|
73
|
+
Provides-Extra: fieldbus
|
|
74
|
+
Requires-Dist: python-can>=4.3; extra == "fieldbus"
|
|
75
|
+
Provides-Extra: mes
|
|
76
|
+
Requires-Dist: requests>=2.32; extra == "mes"
|
|
77
|
+
Requires-Dist: paramiko>=3.0; extra == "mes"
|
|
78
|
+
Provides-Extra: sast
|
|
79
|
+
Requires-Dist: openai>=1.0; extra == "sast"
|
|
80
|
+
Requires-Dist: anthropic>=0.20; extra == "sast"
|
|
81
|
+
Provides-Extra: dev
|
|
82
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
83
|
+
Requires-Dist: ruff>=0.4; extra == "dev"
|
|
84
|
+
Requires-Dist: bandit>=1.7; extra == "dev"
|
|
85
|
+
Requires-Dist: pip-audit>=2.6; extra == "dev"
|
|
86
|
+
Requires-Dist: build>=1.0; extra == "dev"
|
|
87
|
+
Requires-Dist: twine>=5.0; extra == "dev"
|
|
88
|
+
Provides-Extra: full
|
|
89
|
+
Requires-Dist: pymodbus>=3.5; extra == "full"
|
|
90
|
+
Requires-Dist: asyncua>=1.0; extra == "full"
|
|
91
|
+
Requires-Dist: cpppo>=4.3; extra == "full"
|
|
92
|
+
Requires-Dist: python-can>=4.3; extra == "full"
|
|
93
|
+
Requires-Dist: openai>=1.0; extra == "full"
|
|
94
|
+
Requires-Dist: anthropic>=0.20; extra == "full"
|
|
95
|
+
Dynamic: license-file
|
|
96
|
+
|
|
97
|
+
# IndustrialXPL-Forge (IXF)
|
|
98
|
+
|
|
99
|
+
> **The World's Largest OT/ICS/SCADA Security Assessment & Exploitation Framework**
|
|
100
|
+
> Part of the XPL-Forge suite | Author: André Henrique ([@mrhenrike](https://github.com/mrhenrike)) | [União Geek](https://uniaogeek.com.br/)
|
|
101
|
+
|
|
102
|
+
**Python-First — no Metasploit required. No msfconsole. No Ruby. Just Python.**
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Quick Start
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
pip install industrialxpl
|
|
110
|
+
ixf
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Or from source:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
git clone https://github.com/mrhenrike/IndustrialXPL-Forge
|
|
117
|
+
cd IndustrialXPL-Forge
|
|
118
|
+
pip install -r requirements.txt
|
|
119
|
+
python ixf.py
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## What is IXF?
|
|
125
|
+
|
|
126
|
+
IndustrialXPL-Forge is a modular, Python-native security assessment and exploitation framework for **Operational Technology (OT)**, **Industrial Control Systems (ICS)**, **SCADA**, **HMI**, **PLC**, **RTU**, **DCS**, and **IIoT** environments.
|
|
127
|
+
|
|
128
|
+
It covers the **complete attack lifecycle**:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
OSINT → Discovery → Fingerprint → Vulnerability Check → Exploit → Report
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
**Key features:**
|
|
135
|
+
- **Python-First**: all core functionality works with `pip install industrialxpl` — no Metasploit, no msfconsole, no Java, no Ruby required
|
|
136
|
+
- **SafeMode by default**: every module runs in simulate mode — prints payload without sending
|
|
137
|
+
- **MITRE ATT&CK for ICS v19**: 79 techniques mapped, `ttp T0843 192.168.1.100` syntax
|
|
138
|
+
- **CVE coverage**: 3,300+ ICS/OT CVEs from CVSS 0.1 to 10.0
|
|
139
|
+
- **50 vendors**: Siemens, Schneider, Rockwell, ABB, Honeywell, Emerson, WEG, and more
|
|
140
|
+
- **50 protocols**: Modbus, S7comm, EtherNet/IP, DNP3, BACnet, IEC-104, OPC UA, PROFINET, and more
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Module Catalog
|
|
145
|
+
|
|
146
|
+
| Category | Modules | Description |
|
|
147
|
+
|----------|---------|-------------|
|
|
148
|
+
| `exploits/protocols/` | ~50 | Modbus, S7, ENIP, DNP3, BACnet, Profinet, IEC104, OPC UA |
|
|
149
|
+
| `exploits/plc/` | ~80 | Siemens, Schneider, Rockwell, GE, Beckhoff, Unitronics, ABB |
|
|
150
|
+
| `exploits/scada/` | ~60 | IGSS, RealWin, Genesis32, CoDeSys, FUXA, CitectSCADA |
|
|
151
|
+
| `exploits/mes/` | ~25 | Ignition, ThinManager, SIMATIC Historian, DELMIA Apriso |
|
|
152
|
+
| `scanners/ics/` | ~50 | Protocol-specific discovery (Modbus, S7, BACnet, DNP3...) |
|
|
153
|
+
| `scanners/osint/` | ~8 | Shodan queries, ELITEWOLF web dorks, OT Hunt |
|
|
154
|
+
| `creds/` | ~55 | Default credentials for 50+ OT/ICS vendors |
|
|
155
|
+
| `cve/` | 3,300+ | All CVE severity levels (CVSS 0.1-10.0), 3 implementation tiers |
|
|
156
|
+
| `cve/apt/` | ~10 | APT malware TTPs: FrostyGoop, Industroyer2, TRITON, INCONTROLLER |
|
|
157
|
+
| `assessment/` | ~25 | IEC 62443, NIST 800-82r3, MITRE ICS, risk scoring, IR playbook |
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Usage Examples
|
|
162
|
+
|
|
163
|
+
```
|
|
164
|
+
# Open the IXF interactive shell
|
|
165
|
+
ixf
|
|
166
|
+
|
|
167
|
+
# Load and run a module (simulate mode by default — safe)
|
|
168
|
+
ixf > use scanners/ics/modbus_detect
|
|
169
|
+
ixf > set target 192.168.1.100
|
|
170
|
+
ixf > check
|
|
171
|
+
|
|
172
|
+
# Search for modules
|
|
173
|
+
ixf > search siemens
|
|
174
|
+
ixf > search CVE-2015-5374
|
|
175
|
+
ixf > search modbus
|
|
176
|
+
|
|
177
|
+
# Execute a TTP-ID against a target
|
|
178
|
+
ixf > ttp T0843 192.168.1.100 # Program Download — all modules
|
|
179
|
+
ixf > ttp T0878 10.0.0.0/24 # Alarm Suppression — subnet sweep
|
|
180
|
+
ixf > ttp-list --tactic evasion # List all Evasion TTP-IDs
|
|
181
|
+
|
|
182
|
+
# MITRE ATT&CK for ICS sweep
|
|
183
|
+
ixf > mitre-scan discovery 192.168.1.0/24
|
|
184
|
+
ixf > mitre-scan evasion 192.168.1.100
|
|
185
|
+
ixf > mitre-all 192.168.1.100 # All 79 techniques (simulate by default)
|
|
186
|
+
ixf > mitre-coverage # Show coverage % per tactic
|
|
187
|
+
|
|
188
|
+
# CVE-specific modules
|
|
189
|
+
ixf > cve CVE-2026-25895 # FUXA SCADA pre-auth RCE
|
|
190
|
+
ixf > cve CVE-2015-5374 # Siemens SIPROTEC4 DoS
|
|
191
|
+
ixf > cve-scan 192.168.1.0/24 # Discover assets + test all CVEs
|
|
192
|
+
|
|
193
|
+
# Generate reports
|
|
194
|
+
ixf > report json
|
|
195
|
+
ixf > mitre-report layer # ATT&CK Navigator JSON layer
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## SafeMode / DestructiveMode
|
|
201
|
+
|
|
202
|
+
**Every module defaults to simulate mode** — it prints what it WOULD do without sending any packets.
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
ixf (FrostyGoop) > run # SIMULATE: prints payload, no send
|
|
206
|
+
ixf (FrostyGoop) > set simulate false
|
|
207
|
+
ixf (FrostyGoop) > set destructive true
|
|
208
|
+
ixf (FrostyGoop) > run # LIVE: shows banner + requires confirmation
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
Impact levels require proportional confirmation:
|
|
212
|
+
- `INFO/READ`: automatic
|
|
213
|
+
- `LOW`: simple warning
|
|
214
|
+
- `MEDIUM`: press Enter
|
|
215
|
+
- `HIGH`: type `yes`
|
|
216
|
+
- `CRITICAL`: type the full confirmation string
|
|
217
|
+
- `CATASTROPHIC`: type string + wait 10 seconds
|
|
218
|
+
|
|
219
|
+
All destructive operations are logged to `.log/destructive_ops_YYYY-MM-DD.log`.
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
## Python-First Policy
|
|
224
|
+
|
|
225
|
+
| Tier | Type | Examples | Required? |
|
|
226
|
+
|------|------|----------|-----------|
|
|
227
|
+
| **0** | Python stdlib | socket, struct, select | Always |
|
|
228
|
+
| **1** | pip install | pymodbus, scapy, rich, requests | Yes |
|
|
229
|
+
| **2** | pip extras | asyncua, cpppo, python-can | Optional |
|
|
230
|
+
| **3** | External runtimes | ruby, node, java, gcc, go | **Optional — Python fallback always available** |
|
|
231
|
+
|
|
232
|
+
No Metasploit installation required. All 64 MSF SCADA modules are ported to Python native.
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## Legal Disclaimer
|
|
237
|
+
|
|
238
|
+
This tool is intended for **authorized security testing, research, and educational purposes only**.
|
|
239
|
+
|
|
240
|
+
Using IndustrialXPL-Forge against systems you do not own or do not have **explicit written authorization** to test is **illegal** and may violate computer fraud laws in your jurisdiction.
|
|
241
|
+
|
|
242
|
+
OT/ICS systems control critical physical infrastructure. Unauthorized use may cause:
|
|
243
|
+
- Physical damage to industrial equipment
|
|
244
|
+
- Disruption of essential services (power, water, gas, manufacturing)
|
|
245
|
+
- Personal injury or death
|
|
246
|
+
- Significant legal penalties
|
|
247
|
+
|
|
248
|
+
**The authors and União Geek assume no liability for misuse. Users bear full legal and ethical responsibility for all actions performed with this tool.**
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## Author & Credits
|
|
253
|
+
|
|
254
|
+
**Author:** André Henrique ([@mrhenrike](https://github.com/mrhenrike)) | [União Geek](https://uniaogeek.com.br/)
|
|
255
|
+
|
|
256
|
+
Module sources: EmbedXPL-Forge (suite sibling), ISF/ICSSploit, ModBusSploit, Metasploit SCADA modules (ported to Python), n-days-poc-benchmark, InduGuard, ZeronTek OT Hunt research, CISA ICS-CERT advisories, Vedere Labs OT:ICEFALL.
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# IndustrialXPL-Forge (IXF)
|
|
2
|
+
|
|
3
|
+
> **The World's Largest OT/ICS/SCADA Security Assessment & Exploitation Framework**
|
|
4
|
+
> Part of the XPL-Forge suite | Author: André Henrique ([@mrhenrike](https://github.com/mrhenrike)) | [União Geek](https://uniaogeek.com.br/)
|
|
5
|
+
|
|
6
|
+
**Python-First — no Metasploit required. No msfconsole. No Ruby. Just Python.**
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install industrialxpl
|
|
14
|
+
ixf
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Or from source:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
git clone https://github.com/mrhenrike/IndustrialXPL-Forge
|
|
21
|
+
cd IndustrialXPL-Forge
|
|
22
|
+
pip install -r requirements.txt
|
|
23
|
+
python ixf.py
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## What is IXF?
|
|
29
|
+
|
|
30
|
+
IndustrialXPL-Forge is a modular, Python-native security assessment and exploitation framework for **Operational Technology (OT)**, **Industrial Control Systems (ICS)**, **SCADA**, **HMI**, **PLC**, **RTU**, **DCS**, and **IIoT** environments.
|
|
31
|
+
|
|
32
|
+
It covers the **complete attack lifecycle**:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
OSINT → Discovery → Fingerprint → Vulnerability Check → Exploit → Report
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**Key features:**
|
|
39
|
+
- **Python-First**: all core functionality works with `pip install industrialxpl` — no Metasploit, no msfconsole, no Java, no Ruby required
|
|
40
|
+
- **SafeMode by default**: every module runs in simulate mode — prints payload without sending
|
|
41
|
+
- **MITRE ATT&CK for ICS v19**: 79 techniques mapped, `ttp T0843 192.168.1.100` syntax
|
|
42
|
+
- **CVE coverage**: 3,300+ ICS/OT CVEs from CVSS 0.1 to 10.0
|
|
43
|
+
- **50 vendors**: Siemens, Schneider, Rockwell, ABB, Honeywell, Emerson, WEG, and more
|
|
44
|
+
- **50 protocols**: Modbus, S7comm, EtherNet/IP, DNP3, BACnet, IEC-104, OPC UA, PROFINET, and more
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Module Catalog
|
|
49
|
+
|
|
50
|
+
| Category | Modules | Description |
|
|
51
|
+
|----------|---------|-------------|
|
|
52
|
+
| `exploits/protocols/` | ~50 | Modbus, S7, ENIP, DNP3, BACnet, Profinet, IEC104, OPC UA |
|
|
53
|
+
| `exploits/plc/` | ~80 | Siemens, Schneider, Rockwell, GE, Beckhoff, Unitronics, ABB |
|
|
54
|
+
| `exploits/scada/` | ~60 | IGSS, RealWin, Genesis32, CoDeSys, FUXA, CitectSCADA |
|
|
55
|
+
| `exploits/mes/` | ~25 | Ignition, ThinManager, SIMATIC Historian, DELMIA Apriso |
|
|
56
|
+
| `scanners/ics/` | ~50 | Protocol-specific discovery (Modbus, S7, BACnet, DNP3...) |
|
|
57
|
+
| `scanners/osint/` | ~8 | Shodan queries, ELITEWOLF web dorks, OT Hunt |
|
|
58
|
+
| `creds/` | ~55 | Default credentials for 50+ OT/ICS vendors |
|
|
59
|
+
| `cve/` | 3,300+ | All CVE severity levels (CVSS 0.1-10.0), 3 implementation tiers |
|
|
60
|
+
| `cve/apt/` | ~10 | APT malware TTPs: FrostyGoop, Industroyer2, TRITON, INCONTROLLER |
|
|
61
|
+
| `assessment/` | ~25 | IEC 62443, NIST 800-82r3, MITRE ICS, risk scoring, IR playbook |
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Usage Examples
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
# Open the IXF interactive shell
|
|
69
|
+
ixf
|
|
70
|
+
|
|
71
|
+
# Load and run a module (simulate mode by default — safe)
|
|
72
|
+
ixf > use scanners/ics/modbus_detect
|
|
73
|
+
ixf > set target 192.168.1.100
|
|
74
|
+
ixf > check
|
|
75
|
+
|
|
76
|
+
# Search for modules
|
|
77
|
+
ixf > search siemens
|
|
78
|
+
ixf > search CVE-2015-5374
|
|
79
|
+
ixf > search modbus
|
|
80
|
+
|
|
81
|
+
# Execute a TTP-ID against a target
|
|
82
|
+
ixf > ttp T0843 192.168.1.100 # Program Download — all modules
|
|
83
|
+
ixf > ttp T0878 10.0.0.0/24 # Alarm Suppression — subnet sweep
|
|
84
|
+
ixf > ttp-list --tactic evasion # List all Evasion TTP-IDs
|
|
85
|
+
|
|
86
|
+
# MITRE ATT&CK for ICS sweep
|
|
87
|
+
ixf > mitre-scan discovery 192.168.1.0/24
|
|
88
|
+
ixf > mitre-scan evasion 192.168.1.100
|
|
89
|
+
ixf > mitre-all 192.168.1.100 # All 79 techniques (simulate by default)
|
|
90
|
+
ixf > mitre-coverage # Show coverage % per tactic
|
|
91
|
+
|
|
92
|
+
# CVE-specific modules
|
|
93
|
+
ixf > cve CVE-2026-25895 # FUXA SCADA pre-auth RCE
|
|
94
|
+
ixf > cve CVE-2015-5374 # Siemens SIPROTEC4 DoS
|
|
95
|
+
ixf > cve-scan 192.168.1.0/24 # Discover assets + test all CVEs
|
|
96
|
+
|
|
97
|
+
# Generate reports
|
|
98
|
+
ixf > report json
|
|
99
|
+
ixf > mitre-report layer # ATT&CK Navigator JSON layer
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## SafeMode / DestructiveMode
|
|
105
|
+
|
|
106
|
+
**Every module defaults to simulate mode** — it prints what it WOULD do without sending any packets.
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
ixf (FrostyGoop) > run # SIMULATE: prints payload, no send
|
|
110
|
+
ixf (FrostyGoop) > set simulate false
|
|
111
|
+
ixf (FrostyGoop) > set destructive true
|
|
112
|
+
ixf (FrostyGoop) > run # LIVE: shows banner + requires confirmation
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Impact levels require proportional confirmation:
|
|
116
|
+
- `INFO/READ`: automatic
|
|
117
|
+
- `LOW`: simple warning
|
|
118
|
+
- `MEDIUM`: press Enter
|
|
119
|
+
- `HIGH`: type `yes`
|
|
120
|
+
- `CRITICAL`: type the full confirmation string
|
|
121
|
+
- `CATASTROPHIC`: type string + wait 10 seconds
|
|
122
|
+
|
|
123
|
+
All destructive operations are logged to `.log/destructive_ops_YYYY-MM-DD.log`.
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Python-First Policy
|
|
128
|
+
|
|
129
|
+
| Tier | Type | Examples | Required? |
|
|
130
|
+
|------|------|----------|-----------|
|
|
131
|
+
| **0** | Python stdlib | socket, struct, select | Always |
|
|
132
|
+
| **1** | pip install | pymodbus, scapy, rich, requests | Yes |
|
|
133
|
+
| **2** | pip extras | asyncua, cpppo, python-can | Optional |
|
|
134
|
+
| **3** | External runtimes | ruby, node, java, gcc, go | **Optional — Python fallback always available** |
|
|
135
|
+
|
|
136
|
+
No Metasploit installation required. All 64 MSF SCADA modules are ported to Python native.
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## Legal Disclaimer
|
|
141
|
+
|
|
142
|
+
This tool is intended for **authorized security testing, research, and educational purposes only**.
|
|
143
|
+
|
|
144
|
+
Using IndustrialXPL-Forge against systems you do not own or do not have **explicit written authorization** to test is **illegal** and may violate computer fraud laws in your jurisdiction.
|
|
145
|
+
|
|
146
|
+
OT/ICS systems control critical physical infrastructure. Unauthorized use may cause:
|
|
147
|
+
- Physical damage to industrial equipment
|
|
148
|
+
- Disruption of essential services (power, water, gas, manufacturing)
|
|
149
|
+
- Personal injury or death
|
|
150
|
+
- Significant legal penalties
|
|
151
|
+
|
|
152
|
+
**The authors and União Geek assume no liability for misuse. Users bear full legal and ethical responsibility for all actions performed with this tool.**
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Author & Credits
|
|
157
|
+
|
|
158
|
+
**Author:** André Henrique ([@mrhenrike](https://github.com/mrhenrike)) | [União Geek](https://uniaogeek.com.br/)
|
|
159
|
+
|
|
160
|
+
Module sources: EmbedXPL-Forge (suite sibling), ISF/ICSSploit, ModBusSploit, Metasploit SCADA modules (ported to Python), n-days-poc-benchmark, InduGuard, ZeronTek OT Hunt research, CISA ICS-CERT advisories, Vedere Labs OT:ICEFALL.
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""IndustrialXPL-Forge entry point for 'python -m industrialxpl' and console script 'ixf'."""
|
|
2
|
+
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main() -> None:
|
|
7
|
+
"""Launch the IXF interactive shell."""
|
|
8
|
+
from industrialxpl.interpreter import IXFInterpreter
|
|
9
|
+
|
|
10
|
+
interpreter = IXFInterpreter()
|
|
11
|
+
if len(sys.argv[1:]):
|
|
12
|
+
interpreter.nonInteractive(sys.argv)
|
|
13
|
+
else:
|
|
14
|
+
interpreter.start()
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if __name__ == "__main__":
|
|
18
|
+
try:
|
|
19
|
+
main()
|
|
20
|
+
except (KeyboardInterrupt, SystemExit):
|
|
21
|
+
pass
|
|
File without changes
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"""Public API for industrialxpl.core.exploit — re-exports for module authors."""
|
|
2
|
+
|
|
3
|
+
from industrialxpl.core.exploit.exploit import (
|
|
4
|
+
BaseExploit,
|
|
5
|
+
Exploit,
|
|
6
|
+
Protocol,
|
|
7
|
+
mute,
|
|
8
|
+
multi,
|
|
9
|
+
GLOBAL_OPTS,
|
|
10
|
+
)
|
|
11
|
+
from industrialxpl.core.exploit.option import (
|
|
12
|
+
OptBool,
|
|
13
|
+
OptEncoder,
|
|
14
|
+
OptFloat,
|
|
15
|
+
OptIP,
|
|
16
|
+
OptInteger,
|
|
17
|
+
OptMAC,
|
|
18
|
+
OptPort,
|
|
19
|
+
OptString,
|
|
20
|
+
OptWordlist,
|
|
21
|
+
Option,
|
|
22
|
+
)
|
|
23
|
+
from industrialxpl.core.exploit.printer import (
|
|
24
|
+
print_error,
|
|
25
|
+
print_info,
|
|
26
|
+
print_status,
|
|
27
|
+
print_success,
|
|
28
|
+
print_table,
|
|
29
|
+
print_warning,
|
|
30
|
+
pprint_dict_in_order,
|
|
31
|
+
PrinterThread,
|
|
32
|
+
printer_queue,
|
|
33
|
+
)
|
|
34
|
+
from industrialxpl.core.exploit.safety import DestructiveGate
|
|
35
|
+
from industrialxpl.core.exploit.exceptions import IXFException, OptionValidationError
|
|
36
|
+
from industrialxpl.core.exploit.utils import (
|
|
37
|
+
index_modules,
|
|
38
|
+
import_exploit,
|
|
39
|
+
pythonize_path,
|
|
40
|
+
humanize_path,
|
|
41
|
+
module_required,
|
|
42
|
+
stop_after,
|
|
43
|
+
MODULES_DIR,
|
|
44
|
+
WORDLISTS_DIR,
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
__all__ = [
|
|
48
|
+
"BaseExploit", "Exploit", "Protocol", "mute", "multi", "GLOBAL_OPTS",
|
|
49
|
+
"OptBool", "OptEncoder", "OptFloat", "OptIP", "OptInteger",
|
|
50
|
+
"OptMAC", "OptPort", "OptString", "OptWordlist", "Option",
|
|
51
|
+
"print_error", "print_info", "print_status", "print_success",
|
|
52
|
+
"print_table", "print_warning", "pprint_dict_in_order",
|
|
53
|
+
"PrinterThread", "printer_queue",
|
|
54
|
+
"DestructiveGate",
|
|
55
|
+
"IXFException", "OptionValidationError",
|
|
56
|
+
"index_modules", "import_exploit", "pythonize_path", "humanize_path",
|
|
57
|
+
"module_required", "stop_after", "MODULES_DIR", "WORDLISTS_DIR",
|
|
58
|
+
]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""IXF exception hierarchy."""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class IXFException(Exception):
|
|
5
|
+
"""Base exception for IndustrialXPL-Forge."""
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class OptionValidationError(IXFException):
|
|
9
|
+
"""Raised when an option value fails validation."""
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ModuleNotFoundError(IXFException):
|
|
13
|
+
"""Raised when a module cannot be imported."""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ExploitRunError(IXFException):
|
|
17
|
+
"""Raised when an exploit run encounters a fatal error."""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class DestructiveOperationAborted(IXFException):
|
|
21
|
+
"""Raised when the user declines the destructive-mode confirmation gate."""
|