Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sisoma2/drivertester
Program to test IOCTLs in Drivers
https://github.com/sisoma2/drivertester
c driver ioctl malware malware-analysis windows
Last synced: 3 months ago
JSON representation
Program to test IOCTLs in Drivers
- Host: GitHub
- URL: https://github.com/sisoma2/drivertester
- Owner: sisoma2
- Created: 2018-04-15T02:12:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T18:43:51.000Z (almost 7 years ago)
- Last Synced: 2024-09-16T14:47:40.947Z (5 months ago)
- Topics: c, driver, ioctl, malware, malware-analysis, windows
- Language: C++
- Size: 10.7 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DriverTester
DriverTester it's a little program I developed to test IOCTLs in Drivers.
It was developed to test the functionality of the HackAV Rootkit.
Works in x86/x64 systems.## Releases
Go to the Releases tab and download the compiled executables.
## Usage
In order to work it needs the devicename of the driver to connect, the ioctl to test and an optional buffer to send.
```
DriverTester.exe DRIVERNAME IOCTL [BUFFER]
```Connect to "ccc" driver and send the IOCTL 222009
```
DriverTester.exe ccc 222009
```## Building
__Requirements__
- Download and install Microsoft Visual C++ Build Tools or Visual Studio__Build Steps__
- Clone the repo and navigate to the directory
- Open the SLN file to open the project to Visual Studio
- Select the platform in which you will be compiling the binary (x32 or x64)
- Go to Compile->Compile Solution to generate the EXE file
## FeedbackAny questions, comments or requests you can find me on twitter: [@sisoma2](https://twitter.com/sisoma2)
Pull requests welcome!