├── Makefile ├── README.md ├── drv.c ├── drv.h ├── find_offset.py ├── rop_exploit.c └── trigger.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/README.md -------------------------------------------------------------------------------- /drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/drv.c -------------------------------------------------------------------------------- /drv.h: -------------------------------------------------------------------------------- 1 | struct drv_req { 2 | unsigned long offset; 3 | }; 4 | -------------------------------------------------------------------------------- /find_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/find_offset.py -------------------------------------------------------------------------------- /rop_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/rop_exploit.c -------------------------------------------------------------------------------- /trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnik5287/kernel_rop/HEAD/trigger.c --------------------------------------------------------------------------------