View URL-ScreenShots.ps1
[Reflection.Assembly]::LoadWithPartialName("System.Drawing") | |
function Screenshot([Drawing.Rectangle]$bounds, $path) { | |
$bmp = New-Object Drawing.Bitmap $bounds.width, $bounds.height | |
$graphics = [Drawing.Graphics]::FromImage($bmp) | |
$graphics.CopyFromScreen($bounds.Location, [Drawing.Point]::Empty, $bounds.size) | |
$bmp.Save($path) |
View hulk.sh
#!/bin/bash | |
# | |
# -------------------------------------------------------------------------------------------- | |
# Nginx IP Address Deny List download and format | |
# -------------------------------------------------------------------------------------------- | |
# This file pulls from http://www.stopforumspam.com/downloads/bannedips.zip to | |
# retrieve a list of IPs known to be associated with spam. The program | |
# downloads, unzips, and formats the IP addresses into an NGINX config using | |
# 'deny' | |
# |