PoshCode Archive  Artifact [271d106e08]

Artifact 271d106e08c847ff0de90702a5ea56ab70d4cb389a4a8076c0cb27149901be8f:

  • File get-smtpconnections.ps1 — part of check-in [65d89cea80] at 2018-06-10 13:33:30 on branch trunk — extract unique list of ip addresses from single or mulitple smtp logfiles (w3svc) (user: chriskenis size: 1034)

# encoding: ascii
# api: powershell
# title: get-smtpconnections
# description: extract unique list of ip addresses from single or mulitple smtp logfiles (w3svc)
# version: 0.1
# author: chriskenis
# license: CC0
# x-poshcode-id: 3947
# x-archived: 2015-08-03T02:21:30
# x-published: 2015-02-14T09:10:00
#
#
param (
$logpath = "C:\WINDOWS\system32\LogFiles\SMTPSVC1"
 # can also be fed by "gci $logpath | select basename" but then all logfiles would be read
$logfiles = @("ex130213.log","ex130214.log")
$regex = "(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
)
$smtphosts = @()
foreach ($logFile in $logfiles){
	# can also be iterated thru "gci $logpath" if all logfiles need parsing
	$logfilepath = Join-Path $logpath $logfile
	write-host "getting smtp connections from $logfile" -foregroundcolor green
	$smtphosts += select-string -Path $logfilepath -Pattern $regex -AllMatches | %{ $_.Matches } | % { $_.Value } | sort -Unique
	}
$smtphosts | sort -Unique
# can be followed by "| nslookup" for automated reverse lookup