├── .gitignore ├── .gitmodules ├── BHEU_2021 ├── EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey-wp.pdf └── EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey.pdf ├── BHUSA_2022 └── Titan_BHUSA.pdf ├── LICENSE ├── README.md ├── ROOTS ├── DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_paper.pdf └── DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_slides.pdf ├── bin2rec ├── Readme.md ├── bin2rec.py └── extract-rw_a.py ├── citadelimgloader ├── Module.manifest ├── README.md ├── bin │ ├── README.txt │ ├── citadelimgloader │ │ ├── CitadelImgLoaderLoader.class │ │ └── SignedHeader.class │ ├── help │ │ ├── TOC_Source.xml │ │ ├── shared │ │ │ └── Frontpage.css │ │ └── topics │ │ │ └── citadelimgloader │ │ │ └── help.html │ └── images │ │ └── README.txt ├── build.gradle ├── data │ ├── README.txt │ ├── buildLanguage.xml │ ├── languages │ │ ├── skel.cspec │ │ ├── skel.ldefs │ │ ├── skel.opinion │ │ ├── skel.pspec │ │ ├── skel.sinc │ │ └── skel.slaspec │ ├── sleighArgs.txt │ └── symbols.xml ├── extension.properties ├── ghidra-screen.png ├── ghidra_scripts │ └── README.txt ├── lib │ └── README.txt ├── os │ ├── linux64 │ │ └── README.txt │ ├── osx64 │ │ └── README.txt │ └── win64 │ │ └── README.txt └── src │ ├── main │ ├── help │ │ └── help │ │ │ ├── TOC_Source.xml │ │ │ ├── shared │ │ │ └── Frontpage.css │ │ │ └── topics │ │ │ └── citadelimgloader │ │ │ └── help.html │ ├── java │ │ └── citadelimgloader │ │ │ ├── CitadelImgLoaderLoader.java │ │ │ └── SignedHeader.java │ └── resources │ │ └── images │ │ └── README.txt │ └── test │ └── java │ └── README.test.txt └── nugget_toolkit ├── CMakeLists.txt ├── Dockerfile ├── README.md ├── buildAll.sh ├── client ├── keyblob_utils.cpp ├── keyblob_utils.h ├── nosclient.cpp ├── utils.cpp └── utils.h ├── exploits ├── rop.cpp └── rop.h ├── external ├── CMakeLists.txt ├── configs │ ├── android │ │ └── config.h │ ├── config-protobuf.sh │ ├── libnos.patch │ ├── libnos_datagram.patch │ └── libnos_transport.patch ├── keymint │ ├── Algorithm.h │ ├── BlockMode.h │ ├── DeviceInfo.h │ ├── Digest.h │ ├── EcCurve.h │ ├── KeyOrigin.h │ ├── KeyPurpose.h │ ├── PaddingMode.h │ ├── Tag.h │ └── TagType.h └── libnos_protobuf_cpp │ └── nugget │ ├── app │ ├── avb │ │ ├── avb.pb-c.c │ │ ├── avb.pb-c.h │ │ ├── avb.pb.cc │ │ └── avb.pb.h │ ├── identity │ │ ├── identity.pb.cc │ │ ├── identity.pb.h │ │ ├── identity_defs.pb.cc │ │ ├── identity_defs.pb.h │ │ ├── identity_types.pb.cc │ │ └── identity_types.pb.h │ ├── keymaster │ │ ├── keymaster.pb.cc │ │ ├── keymaster.pb.h │ │ ├── keymaster_defs.pb.cc │ │ ├── keymaster_defs.pb.h │ │ ├── keymaster_types.pb.cc │ │ └── keymaster_types.pb.h │ ├── protoapi │ │ ├── control.pb.cc │ │ ├── control.pb.h │ │ ├── diagnostics_api.pb.cc │ │ ├── diagnostics_api.pb.h │ │ ├── gchips_types.pb.cc │ │ ├── gchips_types.pb.h │ │ ├── header.pb.cc │ │ ├── header.pb.h │ │ ├── testing_api.pb.cc │ │ └── testing_api.pb.h │ └── weaver │ │ ├── weaver.pb-c.c │ │ ├── weaver.pb-c.h │ │ ├── weaver.pb.cc │ │ └── weaver.pb.h │ └── protobuf │ ├── options.pb-c.c │ ├── options.pb-c.h │ ├── options.pb.cc │ └── options.pb.h ├── fuzzer ├── README.md ├── fuzz.cpp ├── fuzz.h ├── libradamsa.c └── radamsa.h ├── jni └── include │ └── log.h ├── nostypes ├── nostypes.cpp ├── nostypes.h ├── nosutils.cpp └── nosutils.h ├── parser └── parser.cpp └── scripts ├── frida ├── callapp.js └── write_flash.js ├── leak.sh └── parse_signrok-csv.py /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | build 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/.gitmodules -------------------------------------------------------------------------------- /BHEU_2021/EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey-wp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/BHEU_2021/EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey-wp.pdf -------------------------------------------------------------------------------- /BHEU_2021/EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/BHEU_2021/EU-21-Rossi_Bellom-2021_A_Titan_M_Odyssey.pdf -------------------------------------------------------------------------------- /BHUSA_2022/Titan_BHUSA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/BHUSA_2022/Titan_BHUSA.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/README.md -------------------------------------------------------------------------------- /ROOTS/DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/ROOTS/DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_paper.pdf -------------------------------------------------------------------------------- /ROOTS/DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/ROOTS/DamianoMelotti_ReversingAndFuzzingTheGoogleTitanMChip_slides.pdf -------------------------------------------------------------------------------- /bin2rec/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/bin2rec/Readme.md -------------------------------------------------------------------------------- /bin2rec/bin2rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/bin2rec/bin2rec.py -------------------------------------------------------------------------------- /bin2rec/extract-rw_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/bin2rec/extract-rw_a.py -------------------------------------------------------------------------------- /citadelimgloader/Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citadelimgloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/README.md -------------------------------------------------------------------------------- /citadelimgloader/bin/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /citadelimgloader/bin/citadelimgloader/CitadelImgLoaderLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/citadelimgloader/CitadelImgLoaderLoader.class -------------------------------------------------------------------------------- /citadelimgloader/bin/citadelimgloader/SignedHeader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/citadelimgloader/SignedHeader.class -------------------------------------------------------------------------------- /citadelimgloader/bin/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/help/TOC_Source.xml -------------------------------------------------------------------------------- /citadelimgloader/bin/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/help/shared/Frontpage.css -------------------------------------------------------------------------------- /citadelimgloader/bin/help/topics/citadelimgloader/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/help/topics/citadelimgloader/help.html -------------------------------------------------------------------------------- /citadelimgloader/bin/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/bin/images/README.txt -------------------------------------------------------------------------------- /citadelimgloader/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/build.gradle -------------------------------------------------------------------------------- /citadelimgloader/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/README.txt -------------------------------------------------------------------------------- /citadelimgloader/data/buildLanguage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/buildLanguage.xml -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.cspec -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.ldefs -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.opinion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.opinion -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.pspec -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.sinc -------------------------------------------------------------------------------- /citadelimgloader/data/languages/skel.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/languages/skel.slaspec -------------------------------------------------------------------------------- /citadelimgloader/data/sleighArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/sleighArgs.txt -------------------------------------------------------------------------------- /citadelimgloader/data/symbols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/data/symbols.xml -------------------------------------------------------------------------------- /citadelimgloader/extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/extension.properties -------------------------------------------------------------------------------- /citadelimgloader/ghidra-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/ghidra-screen.png -------------------------------------------------------------------------------- /citadelimgloader/ghidra_scripts/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /citadelimgloader/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/lib/README.txt -------------------------------------------------------------------------------- /citadelimgloader/os/linux64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/os/linux64/README.txt -------------------------------------------------------------------------------- /citadelimgloader/os/osx64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/os/osx64/README.txt -------------------------------------------------------------------------------- /citadelimgloader/os/win64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/os/win64/README.txt -------------------------------------------------------------------------------- /citadelimgloader/src/main/help/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/help/help/TOC_Source.xml -------------------------------------------------------------------------------- /citadelimgloader/src/main/help/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/help/help/shared/Frontpage.css -------------------------------------------------------------------------------- /citadelimgloader/src/main/help/help/topics/citadelimgloader/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/help/help/topics/citadelimgloader/help.html -------------------------------------------------------------------------------- /citadelimgloader/src/main/java/citadelimgloader/CitadelImgLoaderLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/java/citadelimgloader/CitadelImgLoaderLoader.java -------------------------------------------------------------------------------- /citadelimgloader/src/main/java/citadelimgloader/SignedHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/java/citadelimgloader/SignedHeader.java -------------------------------------------------------------------------------- /citadelimgloader/src/main/resources/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/main/resources/images/README.txt -------------------------------------------------------------------------------- /citadelimgloader/src/test/java/README.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/citadelimgloader/src/test/java/README.test.txt -------------------------------------------------------------------------------- /nugget_toolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/CMakeLists.txt -------------------------------------------------------------------------------- /nugget_toolkit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/Dockerfile -------------------------------------------------------------------------------- /nugget_toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/README.md -------------------------------------------------------------------------------- /nugget_toolkit/buildAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/buildAll.sh -------------------------------------------------------------------------------- /nugget_toolkit/client/keyblob_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/client/keyblob_utils.cpp -------------------------------------------------------------------------------- /nugget_toolkit/client/keyblob_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/client/keyblob_utils.h -------------------------------------------------------------------------------- /nugget_toolkit/client/nosclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/client/nosclient.cpp -------------------------------------------------------------------------------- /nugget_toolkit/client/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/client/utils.cpp -------------------------------------------------------------------------------- /nugget_toolkit/client/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/client/utils.h -------------------------------------------------------------------------------- /nugget_toolkit/exploits/rop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/exploits/rop.cpp -------------------------------------------------------------------------------- /nugget_toolkit/exploits/rop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/exploits/rop.h -------------------------------------------------------------------------------- /nugget_toolkit/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/CMakeLists.txt -------------------------------------------------------------------------------- /nugget_toolkit/external/configs/android/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/configs/android/config.h -------------------------------------------------------------------------------- /nugget_toolkit/external/configs/config-protobuf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sh autogen.sh 3 | ./configure 4 | -------------------------------------------------------------------------------- /nugget_toolkit/external/configs/libnos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/configs/libnos.patch -------------------------------------------------------------------------------- /nugget_toolkit/external/configs/libnos_datagram.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/configs/libnos_datagram.patch -------------------------------------------------------------------------------- /nugget_toolkit/external/configs/libnos_transport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/configs/libnos_transport.patch -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/Algorithm.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/BlockMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/BlockMode.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/DeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/DeviceInfo.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/Digest.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/EcCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/EcCurve.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/KeyOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/KeyOrigin.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/KeyPurpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/KeyPurpose.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/PaddingMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/PaddingMode.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/Tag.h -------------------------------------------------------------------------------- /nugget_toolkit/external/keymint/TagType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/keymint/TagType.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb-c.c -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb-c.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/avb/avb.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_defs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_defs.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_defs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_defs.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_types.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_types.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_types.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/identity/identity_types.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_defs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_defs.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_defs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_defs.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_types.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_types.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_types.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/keymaster/keymaster_types.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/control.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/control.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/control.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/control.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/diagnostics_api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/diagnostics_api.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/diagnostics_api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/diagnostics_api.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/gchips_types.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/gchips_types.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/gchips_types.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/gchips_types.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/header.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/header.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/header.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/header.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/testing_api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/testing_api.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/testing_api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/protoapi/testing_api.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb-c.c -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb-c.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/app/weaver/weaver.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb-c.c -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb-c.h -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb.cc -------------------------------------------------------------------------------- /nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/external/libnos_protobuf_cpp/nugget/protobuf/options.pb.h -------------------------------------------------------------------------------- /nugget_toolkit/fuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/fuzzer/README.md -------------------------------------------------------------------------------- /nugget_toolkit/fuzzer/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/fuzzer/fuzz.cpp -------------------------------------------------------------------------------- /nugget_toolkit/fuzzer/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/fuzzer/fuzz.h -------------------------------------------------------------------------------- /nugget_toolkit/fuzzer/libradamsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/fuzzer/libradamsa.c -------------------------------------------------------------------------------- /nugget_toolkit/fuzzer/radamsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/fuzzer/radamsa.h -------------------------------------------------------------------------------- /nugget_toolkit/jni/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/jni/include/log.h -------------------------------------------------------------------------------- /nugget_toolkit/nostypes/nostypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/nostypes/nostypes.cpp -------------------------------------------------------------------------------- /nugget_toolkit/nostypes/nostypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/nostypes/nostypes.h -------------------------------------------------------------------------------- /nugget_toolkit/nostypes/nosutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/nostypes/nosutils.cpp -------------------------------------------------------------------------------- /nugget_toolkit/nostypes/nosutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/nostypes/nosutils.h -------------------------------------------------------------------------------- /nugget_toolkit/parser/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/parser/parser.cpp -------------------------------------------------------------------------------- /nugget_toolkit/scripts/frida/callapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/scripts/frida/callapp.js -------------------------------------------------------------------------------- /nugget_toolkit/scripts/frida/write_flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/scripts/frida/write_flash.js -------------------------------------------------------------------------------- /nugget_toolkit/scripts/leak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/scripts/leak.sh -------------------------------------------------------------------------------- /nugget_toolkit/scripts/parse_signrok-csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkslab/titanm/HEAD/nugget_toolkit/scripts/parse_signrok-csv.py --------------------------------------------------------------------------------