Advertisement
WhosYourDaddySec

Bluesky

Feb 8th, 2024
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. @echo off
  2. setlocal enabledelayedexpansion
  3.  
  4. :: Set the list of process names to scan for
  5. set processesToScan=wscript.exe wuauclt.exe msiexec.exe malware.exe ransomware.exe explorer.exe notepad.exe
  6.  
  7. :: Set the list of malicious process names
  8. set maliciousProcesses=wscript.exe wuauclt.exe msiexec.exe malware.exe ransomware.exe
  9.  
  10. :: Set the list of unwanted connections
  11. set unwantedConnections=192.168.1.100 10.0.0.5 suspicious_server.local
  12.  
  13. :: Set file name with timestamp
  14. set "outputFile=SelfAudit_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt"
  15.  
  16. :: Variable to track if guest WiFi purge has been done
  17. set "guestPurgeDone=false"
  18.  
  19. :SelfAuditLoop
  20. echo Performing Professional Self-Audit...
  21.  
  22. :: Check for running processes and list potential harmful processes using more sophisticated methods
  23. for %%d in (%processesToScan%) do (
  24. tasklist /v /fo csv /fi "STATUS eq running" | findstr /i /r "%%d" > nul
  25. if !errorlevel! equ 0 (
  26. echo [ALERT] Potentially harmful process detected: %%d.
  27. set "highlightedOutput=!highlightedOutput! [ALERT] Potentially harmful process detected: %%d. !newline!"
  28. ) else (
  29. echo [INFO] No potentially harmful process found: %%d.
  30. set "highlightedOutput=!highlightedOutput! [INFO] No potentially harmful process found: %%d. !newline!"
  31. )
  32. )
  33.  
  34. :: Scan for potential unwanted connections using more advanced network analysis
  35. for %%c in (%unwantedConnections%) do (
  36. netstat -ano | findstr /r /c:"%%c" > nul
  37. if %errorlevel% equ 0 (
  38. echo [ALERT] Unwanted connection found: %%c
  39. set "highlightedOutput=!highlightedOutput! [ALERT] Unwanted connection found: %%c !newline!"
  40. ) else (
  41. set "highlightedOutput=!highlightedOutput! [INFO] No unwanted connection found: %%c !newline!"
  42. )
  43. )
  44.  
  45. :: Network purge script to remove all guest WiFi users (only once)
  46. if !guestPurgeDone! == false (
  47. netsh wlan show users | findstr /i "Guest" > nul
  48. if %errorlevel% equ 0 (
  49. netsh wlan disconnect
  50. echo [INFO] Guest WiFi users purged from the network.
  51. set "highlightedOutput=!highlightedOutput! [INFO] Guest WiFi users purged from the network. !newline!"
  52. set "guestPurgeDone=true"
  53. ) else (
  54. echo [INFO] No guest WiFi users found.
  55. set "highlightedOutput=!highlightedOutput! [INFO] No guest WiFi users found. !newline!"
  56. )
  57. )
  58.  
  59. :: Save output to file
  60. echo %highlightedOutput% > %outputFile%
  61.  
  62. :: Pause for 1 hour before the next audit
  63. timeout /t 3600 /nobreak > nul
  64. goto :SelfAuditLoop
  65.  
  66. endlocal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement