├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── banners └── banner.asc ├── commands └── commands.py ├── main.py ├── modules ├── candump.py ├── canfuzz_sids.py ├── cherokee_kill_brakes.py ├── cherokee_kill_engine.py ├── cherokee_turn_steering.py ├── diagnostic_state.py ├── disable_rapid_pw_dwn.py ├── ecu_hard_reset.py ├── ecu_off_on.py ├── ecu_soft_reset.py ├── enable_rapid_pw_dwn.py ├── ford_escape_diagnostic_packets.py ├── ford_escape_door_ajarSpoof.py ├── ford_escape_kill_engine.py ├── honda_car_lock_and_unlock.py ├── ignis_zeta_fuel_seatbelt_spoof.py ├── jeep_wrangler_evicsend.py ├── kill_bus.py ├── malibu_overheat.py ├── mazda2_ic_fuzzer.py ├── mazda2_ic_mover.py ├── pdo_input_output_controller.py ├── peugeot207_ic_fuzzer.py ├── peugeot207_ic_mover.py ├── peugeot207_ic_reboot.py ├── peugeot207_ic_warning.py ├── prius_park_killEngine.py ├── reset_mileage.py ├── rx8_rpm_fuzzer.py ├── spam_bus.py ├── tesla_disable_esp_abs.py ├── tesla_open_trunk.py ├── uds_fuzzer.py └── uds_sec_access.py ├── references.txt ├── requirements.txt ├── unittest ├── detect_ecu_hard_reset.py ├── double_receive_attack.py ├── ecu_unlock_sample.py ├── freeze_doom_loop.py ├── isotp_send_msg.py ├── janus_attack.py ├── simple_ids_ads.py ├── simple_uds_fuzzer.py └── uds_fuzzer.py └── vcan.sh /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/README.md -------------------------------------------------------------------------------- /banners/banner.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/banners/banner.asc -------------------------------------------------------------------------------- /commands/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/commands/commands.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/main.py -------------------------------------------------------------------------------- /modules/candump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/candump.py -------------------------------------------------------------------------------- /modules/canfuzz_sids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/canfuzz_sids.py -------------------------------------------------------------------------------- /modules/cherokee_kill_brakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/cherokee_kill_brakes.py -------------------------------------------------------------------------------- /modules/cherokee_kill_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/cherokee_kill_engine.py -------------------------------------------------------------------------------- /modules/cherokee_turn_steering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/cherokee_turn_steering.py -------------------------------------------------------------------------------- /modules/diagnostic_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/diagnostic_state.py -------------------------------------------------------------------------------- /modules/disable_rapid_pw_dwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/disable_rapid_pw_dwn.py -------------------------------------------------------------------------------- /modules/ecu_hard_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ecu_hard_reset.py -------------------------------------------------------------------------------- /modules/ecu_off_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ecu_off_on.py -------------------------------------------------------------------------------- /modules/ecu_soft_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ecu_soft_reset.py -------------------------------------------------------------------------------- /modules/enable_rapid_pw_dwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/enable_rapid_pw_dwn.py -------------------------------------------------------------------------------- /modules/ford_escape_diagnostic_packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ford_escape_diagnostic_packets.py -------------------------------------------------------------------------------- /modules/ford_escape_door_ajarSpoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ford_escape_door_ajarSpoof.py -------------------------------------------------------------------------------- /modules/ford_escape_kill_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ford_escape_kill_engine.py -------------------------------------------------------------------------------- /modules/honda_car_lock_and_unlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/honda_car_lock_and_unlock.py -------------------------------------------------------------------------------- /modules/ignis_zeta_fuel_seatbelt_spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/ignis_zeta_fuel_seatbelt_spoof.py -------------------------------------------------------------------------------- /modules/jeep_wrangler_evicsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/jeep_wrangler_evicsend.py -------------------------------------------------------------------------------- /modules/kill_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/kill_bus.py -------------------------------------------------------------------------------- /modules/malibu_overheat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/malibu_overheat.py -------------------------------------------------------------------------------- /modules/mazda2_ic_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/mazda2_ic_fuzzer.py -------------------------------------------------------------------------------- /modules/mazda2_ic_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/mazda2_ic_mover.py -------------------------------------------------------------------------------- /modules/pdo_input_output_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/pdo_input_output_controller.py -------------------------------------------------------------------------------- /modules/peugeot207_ic_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/peugeot207_ic_fuzzer.py -------------------------------------------------------------------------------- /modules/peugeot207_ic_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/peugeot207_ic_mover.py -------------------------------------------------------------------------------- /modules/peugeot207_ic_reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/peugeot207_ic_reboot.py -------------------------------------------------------------------------------- /modules/peugeot207_ic_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/peugeot207_ic_warning.py -------------------------------------------------------------------------------- /modules/prius_park_killEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/prius_park_killEngine.py -------------------------------------------------------------------------------- /modules/reset_mileage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/reset_mileage.py -------------------------------------------------------------------------------- /modules/rx8_rpm_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/rx8_rpm_fuzzer.py -------------------------------------------------------------------------------- /modules/spam_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/spam_bus.py -------------------------------------------------------------------------------- /modules/tesla_disable_esp_abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/tesla_disable_esp_abs.py -------------------------------------------------------------------------------- /modules/tesla_open_trunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/tesla_open_trunk.py -------------------------------------------------------------------------------- /modules/uds_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/uds_fuzzer.py -------------------------------------------------------------------------------- /modules/uds_sec_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/modules/uds_sec_access.py -------------------------------------------------------------------------------- /references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/references.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/requirements.txt -------------------------------------------------------------------------------- /unittest/detect_ecu_hard_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/detect_ecu_hard_reset.py -------------------------------------------------------------------------------- /unittest/double_receive_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/double_receive_attack.py -------------------------------------------------------------------------------- /unittest/ecu_unlock_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/ecu_unlock_sample.py -------------------------------------------------------------------------------- /unittest/freeze_doom_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/freeze_doom_loop.py -------------------------------------------------------------------------------- /unittest/isotp_send_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/isotp_send_msg.py -------------------------------------------------------------------------------- /unittest/janus_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/janus_attack.py -------------------------------------------------------------------------------- /unittest/simple_ids_ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/simple_ids_ads.py -------------------------------------------------------------------------------- /unittest/simple_uds_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/simple_uds_fuzzer.py -------------------------------------------------------------------------------- /unittest/uds_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/unittest/uds_fuzzer.py -------------------------------------------------------------------------------- /vcan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipcod3/canTot/HEAD/vcan.sh --------------------------------------------------------------------------------