├── LICENSE ├── README.md ├── disassembly ├── PIC32MM0256GPM048_Human_1_Baseline.idc └── PIC32MM0256GPM048_Human_1_Baseline.lst ├── firmware ├── PIC32MM0256GPM048.hex ├── PIC32MM0256GPM048_patch1.hex └── Tymkrs_DC26-V2.hex ├── firmware_notes.md ├── hardware_notes.md └── tools └── patcher ├── README.md ├── diff.py ├── mem_dump.s ├── patcher.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/README.md -------------------------------------------------------------------------------- /disassembly/PIC32MM0256GPM048_Human_1_Baseline.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/disassembly/PIC32MM0256GPM048_Human_1_Baseline.idc -------------------------------------------------------------------------------- /disassembly/PIC32MM0256GPM048_Human_1_Baseline.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/disassembly/PIC32MM0256GPM048_Human_1_Baseline.lst -------------------------------------------------------------------------------- /firmware/PIC32MM0256GPM048.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/firmware/PIC32MM0256GPM048.hex -------------------------------------------------------------------------------- /firmware/PIC32MM0256GPM048_patch1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/firmware/PIC32MM0256GPM048_patch1.hex -------------------------------------------------------------------------------- /firmware/Tymkrs_DC26-V2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/firmware/Tymkrs_DC26-V2.hex -------------------------------------------------------------------------------- /firmware_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/firmware_notes.md -------------------------------------------------------------------------------- /hardware_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/hardware_notes.md -------------------------------------------------------------------------------- /tools/patcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/tools/patcher/README.md -------------------------------------------------------------------------------- /tools/patcher/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/tools/patcher/diff.py -------------------------------------------------------------------------------- /tools/patcher/mem_dump.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/tools/patcher/mem_dump.s -------------------------------------------------------------------------------- /tools/patcher/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/tools/patcher/patcher.py -------------------------------------------------------------------------------- /tools/patcher/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wchill/defcon26_badgehacking/HEAD/tools/patcher/requirements.txt --------------------------------------------------------------------------------