🛡️ Policy Violations Playbook
(Covers: Unwanted Software, Prohibited Files, and Malware)
Windows (Desktop & Server)
Section titled “Windows (Desktop & Server)”- Objective: Find and remove software and files that violate security policy, including games, “hacking” tools, PUPs, malware (backdoors, keyloggers), and unauthorized media files.
- Tools:
appwiz.cpl(Apps & Features)File ExplorerWindows Security
- Common Actions:
- Unwanted Software: Open
appwiz.cpl. Review the list of installed programs. Uninstall anything that is a game, a “hacking” tool (e.g., Wireshark), a PUP (e.g., CCleaner), or other unauthorized software. - Prohibited Files: Use File Explorer to search the entire system (especially user
C:\Usersdirectories) for prohibited file types (e.g.,.mp3,.mp4,.avi,.iso) and delete them. - Malware: Run a full scan using Windows Security. Malware is often “hidden” and won’t appear in the
appwiz.cpllist.
- Unwanted Software: Open
Linux (Mint 21 & Ubuntu 22)
Section titled “Linux (Mint 21 & Ubuntu 22)”- Objective: Find and remove software and files that violate security policy, including games, “hacking” tools, PUPs, malware, and unauthorized media files.
- Tools:
Terminal
- Common Actions:
- Unwanted Software: List installed packages with
dpkg --list. Remove unwanted packages usingsudo apt remove <package-name>(e.g., aisleriot, ophcrack). - Prohibited Files: Use the
findcommand to search for files. Example:find /home -name "*.mp3". Once found, remove them withrm. - Malware: Install and run tools like
chkrootkitorrkhunterto scan for common rootkits and backdoors.
- Unwanted Software: List installed packages with