├── README.md ├── binary └── ctf.hex ├── license.txt ├── solutions ├── Riscure solution │ ├── Solution path diagram.png │ └── writeup.txt └── winners solutions │ ├── Riscure's comments to the winners solutions.txt │ ├── STARE @ Cisco SPVSS │ └── writeup.md │ └── Team R@bbit │ ├── hack.py │ ├── setup.jpg │ └── writeup.txt └── source ├── aes ├── README ├── aes.h ├── aes128_dec.c ├── aes128_dec.h ├── aes128_enc.c ├── aes128_enc.h ├── aes_dec.c ├── aes_dec.h ├── aes_enc.c ├── aes_enc.h ├── aes_invsbox.c ├── aes_invsbox.h ├── aes_keyschedule.c ├── aes_keyschedule.h ├── aes_sbox.c ├── aes_sbox.h ├── aes_types.h ├── build.sh ├── gf256mul.S └── gf256mul.h ├── auth ├── auth.c ├── auth.h └── build.sh ├── build.sh ├── check_board.py ├── eeprom_rw ├── build.sh ├── eeprom_rw.c └── eeprom_rw.h ├── license.txt ├── main ├── avr5.x ├── build.sh ├── ldscript └── main.c ├── menu ├── build.sh ├── menu.c └── menu.h ├── overflow_readflash ├── build.sh ├── overflow_readflash.c └── overflow_readflash.h ├── overflow_rop ├── build.sh ├── examine_stack.c ├── examine_stack.h ├── overflow_rop.c └── overflow_rop.h ├── random ├── README ├── build.sh ├── random.c ├── random.h └── random_test.c ├── serial ├── README ├── build.sh ├── dbg_putchar.c ├── dbg_putchar.h ├── serial_io.c ├── serial_io.h ├── serial_test.c ├── usart.c ├── usart.h ├── usartx.c └── usartx.h ├── upload.sh └── variables ├── build.sh ├── variables.c └── variables.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/README.md -------------------------------------------------------------------------------- /binary/ctf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/binary/ctf.hex -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/license.txt -------------------------------------------------------------------------------- /solutions/Riscure solution/Solution path diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/Riscure solution/Solution path diagram.png -------------------------------------------------------------------------------- /solutions/Riscure solution/writeup.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solutions/winners solutions/Riscure's comments to the winners solutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/winners solutions/Riscure's comments to the winners solutions.txt -------------------------------------------------------------------------------- /solutions/winners solutions/STARE @ Cisco SPVSS/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/winners solutions/STARE @ Cisco SPVSS/writeup.md -------------------------------------------------------------------------------- /solutions/winners solutions/Team R@bbit/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/winners solutions/Team R@bbit/hack.py -------------------------------------------------------------------------------- /solutions/winners solutions/Team R@bbit/setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/winners solutions/Team R@bbit/setup.jpg -------------------------------------------------------------------------------- /solutions/winners solutions/Team R@bbit/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/solutions/winners solutions/Team R@bbit/writeup.txt -------------------------------------------------------------------------------- /source/aes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/README -------------------------------------------------------------------------------- /source/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes.h -------------------------------------------------------------------------------- /source/aes/aes128_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes128_dec.c -------------------------------------------------------------------------------- /source/aes/aes128_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes128_dec.h -------------------------------------------------------------------------------- /source/aes/aes128_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes128_enc.c -------------------------------------------------------------------------------- /source/aes/aes128_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes128_enc.h -------------------------------------------------------------------------------- /source/aes/aes_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_dec.c -------------------------------------------------------------------------------- /source/aes/aes_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_dec.h -------------------------------------------------------------------------------- /source/aes/aes_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_enc.c -------------------------------------------------------------------------------- /source/aes/aes_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_enc.h -------------------------------------------------------------------------------- /source/aes/aes_invsbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_invsbox.c -------------------------------------------------------------------------------- /source/aes/aes_invsbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_invsbox.h -------------------------------------------------------------------------------- /source/aes/aes_keyschedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_keyschedule.c -------------------------------------------------------------------------------- /source/aes/aes_keyschedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_keyschedule.h -------------------------------------------------------------------------------- /source/aes/aes_sbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_sbox.c -------------------------------------------------------------------------------- /source/aes/aes_sbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_sbox.h -------------------------------------------------------------------------------- /source/aes/aes_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/aes_types.h -------------------------------------------------------------------------------- /source/aes/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/build.sh -------------------------------------------------------------------------------- /source/aes/gf256mul.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/gf256mul.S -------------------------------------------------------------------------------- /source/aes/gf256mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/aes/gf256mul.h -------------------------------------------------------------------------------- /source/auth/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/auth/auth.c -------------------------------------------------------------------------------- /source/auth/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/auth/auth.h -------------------------------------------------------------------------------- /source/auth/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/auth/build.sh -------------------------------------------------------------------------------- /source/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/build.sh -------------------------------------------------------------------------------- /source/check_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/check_board.py -------------------------------------------------------------------------------- /source/eeprom_rw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/eeprom_rw/build.sh -------------------------------------------------------------------------------- /source/eeprom_rw/eeprom_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/eeprom_rw/eeprom_rw.c -------------------------------------------------------------------------------- /source/eeprom_rw/eeprom_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/eeprom_rw/eeprom_rw.h -------------------------------------------------------------------------------- /source/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/license.txt -------------------------------------------------------------------------------- /source/main/avr5.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/main/avr5.x -------------------------------------------------------------------------------- /source/main/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/main/build.sh -------------------------------------------------------------------------------- /source/main/ldscript: -------------------------------------------------------------------------------- 1 | SECTIONS 2 | { 3 | .flagsection = 0x3500; 4 | } 5 | -------------------------------------------------------------------------------- /source/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/main/main.c -------------------------------------------------------------------------------- /source/menu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/menu/build.sh -------------------------------------------------------------------------------- /source/menu/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/menu/menu.c -------------------------------------------------------------------------------- /source/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/menu/menu.h -------------------------------------------------------------------------------- /source/overflow_readflash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_readflash/build.sh -------------------------------------------------------------------------------- /source/overflow_readflash/overflow_readflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_readflash/overflow_readflash.c -------------------------------------------------------------------------------- /source/overflow_readflash/overflow_readflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_readflash/overflow_readflash.h -------------------------------------------------------------------------------- /source/overflow_rop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_rop/build.sh -------------------------------------------------------------------------------- /source/overflow_rop/examine_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_rop/examine_stack.c -------------------------------------------------------------------------------- /source/overflow_rop/examine_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_rop/examine_stack.h -------------------------------------------------------------------------------- /source/overflow_rop/overflow_rop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_rop/overflow_rop.c -------------------------------------------------------------------------------- /source/overflow_rop/overflow_rop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/overflow_rop/overflow_rop.h -------------------------------------------------------------------------------- /source/random/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/random/README -------------------------------------------------------------------------------- /source/random/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/random/build.sh -------------------------------------------------------------------------------- /source/random/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/random/random.c -------------------------------------------------------------------------------- /source/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/random/random.h -------------------------------------------------------------------------------- /source/random/random_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/random/random_test.c -------------------------------------------------------------------------------- /source/serial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/README -------------------------------------------------------------------------------- /source/serial/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/build.sh -------------------------------------------------------------------------------- /source/serial/dbg_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/dbg_putchar.c -------------------------------------------------------------------------------- /source/serial/dbg_putchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/dbg_putchar.h -------------------------------------------------------------------------------- /source/serial/serial_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/serial_io.c -------------------------------------------------------------------------------- /source/serial/serial_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/serial_io.h -------------------------------------------------------------------------------- /source/serial/serial_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/serial_test.c -------------------------------------------------------------------------------- /source/serial/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/usart.c -------------------------------------------------------------------------------- /source/serial/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/usart.h -------------------------------------------------------------------------------- /source/serial/usartx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/usartx.c -------------------------------------------------------------------------------- /source/serial/usartx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/serial/usartx.h -------------------------------------------------------------------------------- /source/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/upload.sh -------------------------------------------------------------------------------- /source/variables/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/variables/build.sh -------------------------------------------------------------------------------- /source/variables/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/variables/variables.c -------------------------------------------------------------------------------- /source/variables/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keysight/RHme-2015/HEAD/source/variables/variables.h --------------------------------------------------------------------------------