Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- setlocal enabledelayedexpansion
- :: Set the list of process names to scan for
- set processesToScan=wscript.exe wuauclt.exe msiexec.exe malware.exe ransomware.exe explorer.exe notepad.exe
- :: Set the list of malicious process names
- set maliciousProcesses=wscript.exe wuauclt.exe msiexec.exe malware.exe ransomware.exe
- :: Set the list of unwanted connections
- set unwantedConnections=192.168.1.100 10.0.0.5 suspicious_server.local
- :: Set file name with timestamp
- set "outputFile=SelfAudit_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt"
- :: Variable to track if guest WiFi purge has been done
- set "guestPurgeDone=false"
- :SelfAuditLoop
- echo Performing Professional Self-Audit...
- :: Check for running processes and list potential harmful processes using more sophisticated methods
- for %%d in (%processesToScan%) do (
- tasklist /v /fo csv /fi "STATUS eq running" | findstr /i /r "%%d" > nul
- if !errorlevel! equ 0 (
- echo [ALERT] Potentially harmful process detected: %%d.
- set "highlightedOutput=!highlightedOutput! [ALERT] Potentially harmful process detected: %%d. !newline!"
- ) else (
- echo [INFO] No potentially harmful process found: %%d.
- set "highlightedOutput=!highlightedOutput! [INFO] No potentially harmful process found: %%d. !newline!"
- )
- )
- :: Scan for potential unwanted connections using more advanced network analysis
- for %%c in (%unwantedConnections%) do (
- netstat -ano | findstr /r /c:"%%c" > nul
- if %errorlevel% equ 0 (
- echo [ALERT] Unwanted connection found: %%c
- set "highlightedOutput=!highlightedOutput! [ALERT] Unwanted connection found: %%c !newline!"
- ) else (
- set "highlightedOutput=!highlightedOutput! [INFO] No unwanted connection found: %%c !newline!"
- )
- )
- :: Network purge script to remove all guest WiFi users (only once)
- if !guestPurgeDone! == false (
- netsh wlan show users | findstr /i "Guest" > nul
- if %errorlevel% equ 0 (
- netsh wlan disconnect
- echo [INFO] Guest WiFi users purged from the network.
- set "highlightedOutput=!highlightedOutput! [INFO] Guest WiFi users purged from the network. !newline!"
- set "guestPurgeDone=true"
- ) else (
- echo [INFO] No guest WiFi users found.
- set "highlightedOutput=!highlightedOutput! [INFO] No guest WiFi users found. !newline!"
- )
- )
- :: Save output to file
- echo %highlightedOutput% > %outputFile%
- :: Pause for 1 hour before the next audit
- timeout /t 3600 /nobreak > nul
- goto :SelfAuditLoop
- endlocal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement