Created
February 3, 2026 18:56
-
-
Save ziadoz/88955ba996cb24a367515f6a31e3f451 to your computer and use it in GitHub Desktop.
Notepad++ Virus Check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check for suspicious directories | |
| Test-Path "$env:APPDATA\Bluetooth" | |
| Test-Path "C:\ProgramData\USOShared" | |
| # Check for suspicious services | |
| Get-Service | Where-Object {$_.Name -like "*Bluetooth*"} | |
| # Check registry run keys | |
| Get-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" | |
| Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Run" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment