Skip to content

Latest commit

 

History

History
99 lines (62 loc) · 4.31 KB

File metadata and controls

99 lines (62 loc) · 4.31 KB

Windows Security Tips

Windows Defender

  • How-To: Play a sound when Microsoft Defender detects a threat,
    • use Windows Task Scheduler to trigger a sound file when specific Event Viewer logs are created. Set up a task for event ID 1116 (malware detected) or 1117 (action taken) from the Microsoft-Windows-Windows Defender/Operational log to trigger a custom audio alert.
      • Locate a Sound: Choose a .wav file you want to play.
      • Open Event Viewer: Search for "Event Viewer" in the Start Menu.
      • Find the Trigger Event: Navigate to Applications and Services Logs > Microsoft > Windows > Windows Defender > Operational.
      • Create a Task: Find an existing detection (Event ID 1116 or 1117), right-click it, and select Attach Task to This Event....
      • Configure Action: In the wizard, select Start a program.
      • Set Sound: Under "Program/script," type powershell.exe and in "Add arguments," use:
        • -c (New-Object Media.SoundPlayer 'C:\path\to\your\sound.wav').PlaySync();
      • Finish: Complete the Wizard

Windows Device Protection

Windows Firewall

Windows Firewall References

Dos Command Line

PowerShell

PUPs

  • Windows Defender Identifies The SAME PUP As A Threat Repeatedly
    • https://answers.microsoft.com/en-us/protect/forum/all/windows-defender-identifies-the-same-pup-as-a/63f17794-3815-4784-b9cd-c6059c8e0828
      • Since the implementation of W10 V2004, Windows Defender has now been defaulted to identify PUPS as a threat. As a result, many are now made aware of their presence. And they are "remediated", on the spot, to prevent them from causing any mischief.
      • The problem occurs on the subsequent scans with Windows Defender. It identifies the same PUP again, and again. It has been determined that this is caused by the presence of the PUP in Protection History.
      • It appears that the default remediation that Windows Defender applies to PUPs is to Block them, then leave them in Protection History .
      • Until Microsoft sees fit to fix this problem, you can prevent the repeating error indication, by deleting the items that are described in Windows Defender Protection History. You can delete them by accessing their files, that are located in
        • C:\ProgramData\Microsoft\Windows Defender\Scans\History\Service
      • In the "Service" folder, find and delete "Detection History".

Intrusion Detection System (IDS)

NMAP

SNORT

SNORT Articles & Tutorials