PoshCode Archive  Artifact [d3ea021621]

Artifact d3ea0216216d0515be88cc62fd263e525550e27163227c82d97d991461c27667:

  • File Check-Honeypot-Project.ps1 — part of check-in [15ddaa055e] at 2018-06-10 13:59:56 on branch trunk — This script will take a list of IP’s in an input csv (Octet.csv) and check each IP at honeypotproject.org to see if the IP is listed. (user: Munsonisim size: 1695)

# encoding: ascii
# api: powershell
# title: Check Honeypot Project
# description: This script will take a list of IP’s in an input csv (Octet.csv) and check each IP at honeypotproject.org to see if the IP is listed.	
# version: 0.1
# author: Munsonisim
# license: CC0
# x-poshcode-id: 5715
# x-archived: 2015-01-28T09:31:49
# x-published: 2015-01-26T20:13:00
#
# You need a CSV with a single column with the header of Octet as the input file.
#
#region Variables - Set up Data source, SMTP info, and To address(s)
# The input CSV needs one column with the header "Octet" - This should contain the IP addresses one on each line to look  up.
$IPADDRESSES = Import-Csv '<Path to CSV>'
$Smtpserver = '<Mail server Info>'
$To = '<To Email Address>'
#endregion

#region Check the Honeypot Project website - read the return info and look for positive criteria or Negitive Criteria
foreach ($IPADD in $IPADDRESSES)
{
[string]$IP1 = $IPADD.Octet
[string]$Outfilehtml = 'c:\'+$IP1+'.html'
[string]$URL = "http://www.projecthoneypot.org/ip_"+$IP1
[string]$positive = "The Project Honey Pot system has detected behavior from the IP address"
[string]$negitive = "We don't have data on this IP currently. If you know something, you may"
$web = Invoke-WebRequest -Uri $URL
$string = $web.Content
#$IP1
if ($string -match $positive) {
    Send-MailMessage -SmtpServer $Smtpserver -To $To -From 'Honeypot_YES@yourdomain.com' -BodyAsHtml $string -Subject $IP1
} 
# Just in case you want an Email no matter what - yes or no
if ($string -match $negitive) {
	Send-MailMessage -SmtpServer $Smtpserver -To $To -From 'Honeypot_NO@yourdomain.com' -Subject $IP1 
}
}
#endregion