Skip to content
View PSingletary's full-sized avatar
🔍
Search
🔍
Search

Sponsoring

@CommanderRoot
@BarryCarlyon
@exeldro
@redsolver
@FiniteSingularity
@mary-ext
Block or Report

Block or report PSingletary

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Get the password expiration date of ... Get the password expiration date of a samAccountName (AD User object)
    1
    <#
    2
    .SYNOPSIS
    3
        Gets samaccountname password expiration date
    4
    .DESCRIPTION
    5
        Quickly determine the password expiration date of an Ad User account:
  2. Find out when your Password Expires ... Find out when your Password Expires (PowerShell Module) - Source: https://blogs.msdn.microsoft.com/adpowershell/2010/02/26/find-out-when-your-password-expires/
    1
    function Get-XADUserPasswordExpirationDate() {
    2
    
                  
    3
        Param ([Parameter(Mandatory=$true,  Position=0,  ValueFromPipeline=$true, HelpMessage="Identity of the Account")]
    4
    
                  
    5
        [Object] $accountIdentity)
  3. OPML for my shopping rss feeds OPML for my shopping rss feeds
    1
    <?xml version="1.0" encoding="UTF-8"?>
    2
    
                  
    3
    <opml version="1.0">
    4
        <head>
    5
            <title>Shopping RSS feeds</title>
  4. Format-Date8601.ps1 Format-Date8601.ps1
    1
    $sISO8601 = Get-Date -format s
  5. Generate-pswd.ps1 Generate-pswd.ps1
    1
    #Source characters ABCDEGHJKLNPSTUYZ=#+acdeghiknopstuyz23456789
    2
    #Arrays
    3
    $array4word = "able", "case", "come", "fact", "find", "give", "hand", "have", "high", "into", "know", "last", "life", "long", "make", "next", "over", "part", "same", "take", "that", "they", "this", "time", "want", "with", "work", "year"
    4
    $array5word = "about", "after", "child", "early", "first", "great", "group", "large", "leave", "other", "place", "right", "their", "there", "thing", "think", "woman", "world", "would", "young"
    5
    $arraySpecial = "#", "+", "="
  6. NCSC-pwauditor-1.2.1 NCSC-pwauditor-1.2.1 Public

    https://www.ncsc.gov.uk/blog-post/spray-you-spray-me-defending-against-password-spraying-attacks

    PowerShell 1 1