Skip to content

Instantly share code, notes, and snippets.

View hb-i's full-sized avatar

hb-i

  • Canada
View GitHub Profile
@technion
technion / Password References.md
Last active May 4, 2024 01:21
A set of references on modern password policies

References on modern password policies

Below links provide source, reference link and relevant quote

Standards

NIST

https://github.com/usnistgov/800-63-3/blob/nist-pages/sp800-63b/sec5_authenticators.md

Verifiers SHOULD NOT impose other composition rules (e.g., requiring mixtures of different character types or prohibiting consecutively repeated characters) for memorized secrets. Verifiers SHOULD NOT require memorized secrets to be changed arbitrarily (e.g., periodically).However, verifiers SHALL force a change if there is evidence of compromise of the authenticator.

Major organisations

anonymous
anonymous / Get-HardwareProfile.ps1
Created May 2, 2017 21:34
Quick script to gather hardware and BIOS info on AD servers and export to CSV
# Gather all servers
$servers = (Get-ADComputer -Filter *).name
# Create collection to capture results
$Results = @()
# Begin server loop
foreach ($server in $servers) {
# Test if machine is online
if (Test-Connection -ComputerName $server -Count 1 -Quiet -ErrorAction Stop) {
# Create object for each machine's results
$Result = New-Object -TypeName System.Object