mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-07 01:13:39 +01:00
LOL Drivers
This commit is contained in:
parent
30d17b4924
commit
86cc53244d
1 changed files with 33 additions and 29 deletions
|
|
@ -868,11 +868,14 @@ Application running as SYSTEM allowing an user to spawn a CMD, or browse directo
|
||||||
|
|
||||||
Example: "Windows Help and Support" (Windows + F1), search for "command prompt", click on "Click to open Command Prompt"
|
Example: "Windows Help and Support" (Windows + F1), search for "command prompt", click on "Click to open Command Prompt"
|
||||||
|
|
||||||
|
|
||||||
## EoP - Evaluating Vulnerable Drivers
|
## EoP - Evaluating Vulnerable Drivers
|
||||||
|
|
||||||
Look for vuln drivers loaded, we often don't spend enough time looking at this:
|
Look for vuln drivers loaded, we often don't spend enough time looking at this:
|
||||||
|
|
||||||
|
* [Living Off The Land Drivers](https://www.loldrivers.io/) is a curated list of Windows drivers used by adversaries to bypass security controls and carry out attacks. The project helps security professionals stay informed and mitigate potential threats.
|
||||||
|
* Native binary: DriverQuery.exe
|
||||||
```powershell
|
```powershell
|
||||||
# Native binary
|
|
||||||
PS C:\Users\Swissky> driverquery.exe /fo table /si
|
PS C:\Users\Swissky> driverquery.exe /fo table /si
|
||||||
Module Name Display Name Driver Type Link Date
|
Module Name Display Name Driver Type Link Date
|
||||||
============ ====================== ============= ======================
|
============ ====================== ============= ======================
|
||||||
|
|
@ -886,8 +889,9 @@ AcpiPmi ACPI Power Meter Drive Kernel 11/19/2006 9:20:15 PM
|
||||||
acpitime ACPI Wake Alarm Driver Kernel 2/9/1974 7:10:30 AM
|
acpitime ACPI Wake Alarm Driver Kernel 2/9/1974 7:10:30 AM
|
||||||
ADP80XX ADP80XX Kernel 4/9/2015 4:49:48 PM
|
ADP80XX ADP80XX Kernel 4/9/2015 4:49:48 PM
|
||||||
<SNIP>
|
<SNIP>
|
||||||
|
```
|
||||||
# https://github.com/matterpreter/OffensiveCSharp/tree/master/DriverQuery
|
* [matterpreter/OffensiveCSharp/DriverQuery](https://github.com/matterpreter/OffensiveCSharp/tree/master/DriverQuery)
|
||||||
|
```powershell
|
||||||
PS C:\Users\Swissky> DriverQuery.exe --no-msft
|
PS C:\Users\Swissky> DriverQuery.exe --no-msft
|
||||||
[+] Enumerating driver services...
|
[+] Enumerating driver services...
|
||||||
[+] Checking file signatures...
|
[+] Checking file signatures...
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue