Files & Filesystems

Files Modifiable by Anyone
Get-ChildItem "C:\Program Files" - Recurse | Get-ACL | ?{$_.AccessToString -match "Everyone\sAllow\s\sModify"}
Search generic files

dir c:\temp /s /b | find *.bat

Search Specific Files
Get-ChildItem -Path C:\ -Include *.kdbx -File -Recurse -ErrorAction SilentlyContinue
Accesschk.exe - Users/Groups Access

This is a Microsoft tool that lists the kind of access specific users & groups have to different resources.

https://learn.microsoft.com/en-us/sysinternals/downloads/accesschk

Sigcheck.exe - Check File version, timestamp & digital signature

This is utility to check file version, timestamp and digital signature details.

https://learn.microsoft.com/en-us/sysinternals/downloads/sigcheck

Check Parameters of a Service
sc qc upnphost

Last updated