
Powershell : Count Members of a AD Group
As Administrator, In many cases you need to count members of AD groups. The Get-ADGroupMember cmdlet gets the members of…

WiFi Pineapple
COMPREHENSIVE WIFI AUDITING The WiFi Pineapple provides auditors with targeted man-in-the-middle interception capabilities, advanced WiFi…

nmapAutomator
A script that you can run in the background! Summary This will ensure two things:…
Powershell to export all distubution groups
$365Logon = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $365Logon -Authentication Basic -AllowRedirection Import-PSSession $Session $Result=@()$groups = Get-DistributionGroup…
More Articles
$365Logon = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $365Logon -Authentication Basic -AllowRedirection Import-PSSession $Session $Result=@()$groups = Get-DistributionGroup -ResultSize Unlimited$totalmbx = $groups.Count$i =…
Powershell to export all Azure AD groups and there members Connect-AzureAD$groups=Get-AzureADGroup -All $true$resultsarray =@()ForEach ($group in $groups){$members = Get-AzureADGroupMember -ObjectId $group.ObjectId -All $trueForEach ($member in…

A script that you can run in the background! Summary This will ensure two things: 1) Automate nmap scans. 2) Always have some recon running…

SQL injection is one of the most common attacks against web applications. A SQL injection attack consists of insertion or “injection” of a SQL query…