aguiafurtiva

detecta-ransom.ps1

Oct 11th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Install-WindowsFeature –Name FS-Resource-Manager –IncludeManagementTools
  2. new-FsrmFileGroup -name "Arquivos Ransomware" -IncludePattern @((Invoke-WebRequest -Uri "https://fsrm.experiant.ca/api/v1/combined").content | convertfrom-json | % {$_.filters})
  3. $SET_LOG = New-FsrmAction Event -EventType Error -Body "RANSOMWARE ALERT!" -RunLimitInterval 180
  4. $SET_DIR_1 = "c:\arquivos"
  5. New-FsrmFileScreen -Path $SET_DIR_1 -IncludeGroup "Arquivos Ransomware" -Notification $SET_LOG -Active -Description "Triagem de arquivos contra ransomware"
Add Comment
Please, Sign In to add comment