https://github.com/rtfmkiesel/loldrivers-webclient
Scan your computer for known vulnerable and known malicious Windows drivers using loldrivers.io
https://github.com/rtfmkiesel/loldrivers-webclient
drivers golang mitre vulnerabilities wasm windows
Last synced: 6 months ago
JSON representation
Scan your computer for known vulnerable and known malicious Windows drivers using loldrivers.io
- Host: GitHub
- URL: https://github.com/rtfmkiesel/loldrivers-webclient
- Owner: rtfmkiesel
- License: apache-2.0
- Created: 2024-06-07T22:37:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-10T19:44:02.000Z (9 months ago)
- Last Synced: 2024-09-10T22:37:57.111Z (9 months ago)
- Topics: drivers, golang, mitre, vulnerabilities, wasm, windows
- Language: JavaScript
- Homepage: https://rtfmkiesel.github.io/loldrivers-webclient/
- Size: 3.9 MB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LOLDrivers-webclient
A PoC web client for [LOLDrivers](https://github.com/magicsword-io/LOLDrivers) (Living Off The Land Drivers) by [MagicSword](https://www.magicsword.io/). Scan your computer for known vulnerable and known malicious Windows drivers.

*This was hacked together in like 2,5 hours, please have mercy*
## Usage
Click [here](https://rtfmkiesel.github.io/loldrivers-webclient), wait a few seconds, and then select the directory to scan. The default Windows driver directories are:
+ C:\Windows\System32\drivers
+ C:\Windows\System32\DriverStore\FileRepository
+ C:\WINDOWS\inf## Build
To build `loldrivers-webclient.wasm` yourself:
```sh
# linux
GOOS=js GOARCH=wasm go build -o .\assets\loldrivers-webclient.wasm# windows
$Env:GOOS = "js"
$Env:GOARCH ="wasm"
go build -o .\assets\loldrivers-webclient.wasm
```