├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DriverBuddyReloaded.py ├── DriverBuddyReloaded ├── NTSTATUS.py ├── __init__.py ├── device_name_finder.py ├── dump_pool_tags.py ├── find_opcodes.py ├── ioctl_decoder.py ├── utils.py ├── vulnerable_functions_lists │ ├── __init__.py │ ├── c.py │ ├── custom.py │ ├── opcode.py │ └── winapi.py ├── wdf.py ├── wdf_structs.py └── wdm.py ├── LICENSE ├── README.MD └── screenshots ├── IOCTL-table.png ├── WDM-structures.png ├── auto-analysis.png ├── decode-IOCTL.png ├── devicename.png ├── finding-dispatchdevicecontrol.png ├── flagging-functions.png └── pooltag.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DriverBuddyReloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/NTSTATUS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/NTSTATUS.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DriverBuddyReloaded/device_name_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/device_name_finder.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/dump_pool_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/dump_pool_tags.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/find_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/find_opcodes.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/ioctl_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/ioctl_decoder.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/utils.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/vulnerable_functions_lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DriverBuddyReloaded/vulnerable_functions_lists/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/vulnerable_functions_lists/c.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/vulnerable_functions_lists/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/vulnerable_functions_lists/custom.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/vulnerable_functions_lists/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/vulnerable_functions_lists/opcode.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/vulnerable_functions_lists/winapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/vulnerable_functions_lists/winapi.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/wdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/wdf.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/wdf_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/wdf_structs.py -------------------------------------------------------------------------------- /DriverBuddyReloaded/wdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/DriverBuddyReloaded/wdm.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/README.MD -------------------------------------------------------------------------------- /screenshots/IOCTL-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/IOCTL-table.png -------------------------------------------------------------------------------- /screenshots/WDM-structures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/WDM-structures.png -------------------------------------------------------------------------------- /screenshots/auto-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/auto-analysis.png -------------------------------------------------------------------------------- /screenshots/decode-IOCTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/decode-IOCTL.png -------------------------------------------------------------------------------- /screenshots/devicename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/devicename.png -------------------------------------------------------------------------------- /screenshots/finding-dispatchdevicecontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/finding-dispatchdevicecontrol.png -------------------------------------------------------------------------------- /screenshots/flagging-functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/flagging-functions.png -------------------------------------------------------------------------------- /screenshots/pooltag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoidSec/DriverBuddyReloaded/HEAD/screenshots/pooltag.png --------------------------------------------------------------------------------