FreeBSD: Ways to Check Version Here are several options to check FreeBSD version. $ uname -r 12.0 - RELEASE $ freebsd-version 12.0 - RELEASE Labels FreeBSD
John the Ripper: Notes "John the Ripper is an Open Source password security auditing and password recovery tool available for many operating systems." Read more
Export All Group Policy Objects PS C:\Users\Administrator> Import-Module GroupPolicy PS C:\Users\Administrator> $today = Get-Date -F yyyyMMdd PS C:\Users\Administrator> $domain = "practicehabits.net" PS C:\Users\Administrator> Get-GPOReport -All -ReportType XML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.xml PS C:\Users\Administrator> Get-GPOReport -All -ReportType HTML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.html Read more
Powershell: Check Bad Logon get-aduser -Filter {BadLogonCount -ne 0} -properties * | select SamAccountName,BadLogonCount,BadPasswordTime,BadPwdCount,@{name='badPasswordTimeDT'; expression={[datetime]::fromFileTime($_.badPasswordTime)}} | sort BadPasswordTime | FT Read more