├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── aes.c ├── aes.h ├── bootstrap.S ├── config.h ├── gpio.c ├── gpio.h ├── linker.x ├── loader.c ├── loader.x ├── main.c ├── pervasive.c ├── pervasive.h ├── scripts ├── README.md ├── analysis │ ├── README.md │ ├── aes.py │ ├── analyze_faults.py │ └── tests.py ├── dfa_crack │ ├── crack_all.py │ └── crack_all_slow.py ├── setup_cwlite_vita.py ├── vita_dfa_capture.py ├── vita_get_partials.py ├── vita_reload_payload.py └── vita_run_payload.py ├── simpleserial.c ├── simpleserial.h ├── types.h ├── uart.c ├── uart.h └── vita.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/README.md -------------------------------------------------------------------------------- /aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/aes.c -------------------------------------------------------------------------------- /aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/aes.h -------------------------------------------------------------------------------- /bootstrap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/bootstrap.S -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/config.h -------------------------------------------------------------------------------- /gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/gpio.c -------------------------------------------------------------------------------- /gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/gpio.h -------------------------------------------------------------------------------- /linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/linker.x -------------------------------------------------------------------------------- /loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/loader.c -------------------------------------------------------------------------------- /loader.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/loader.x -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/main.c -------------------------------------------------------------------------------- /pervasive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/pervasive.c -------------------------------------------------------------------------------- /pervasive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/pervasive.h -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/analysis/README.md -------------------------------------------------------------------------------- /scripts/analysis/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/analysis/aes.py -------------------------------------------------------------------------------- /scripts/analysis/analyze_faults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/analysis/analyze_faults.py -------------------------------------------------------------------------------- /scripts/analysis/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/analysis/tests.py -------------------------------------------------------------------------------- /scripts/dfa_crack/crack_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/dfa_crack/crack_all.py -------------------------------------------------------------------------------- /scripts/dfa_crack/crack_all_slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/dfa_crack/crack_all_slow.py -------------------------------------------------------------------------------- /scripts/setup_cwlite_vita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/setup_cwlite_vita.py -------------------------------------------------------------------------------- /scripts/vita_dfa_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/vita_dfa_capture.py -------------------------------------------------------------------------------- /scripts/vita_get_partials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/vita_get_partials.py -------------------------------------------------------------------------------- /scripts/vita_reload_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/vita_reload_payload.py -------------------------------------------------------------------------------- /scripts/vita_run_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/scripts/vita_run_payload.py -------------------------------------------------------------------------------- /simpleserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/simpleserial.c -------------------------------------------------------------------------------- /simpleserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/simpleserial.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/types.h -------------------------------------------------------------------------------- /uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/uart.c -------------------------------------------------------------------------------- /uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/uart.h -------------------------------------------------------------------------------- /vita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/f00dsimpleserial/HEAD/vita.h --------------------------------------------------------------------------------