Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

272 total results found

Canva - Full IP List

IP Address Lists Full IP Lists

Canvas Domain, Email, and Server Management This document lists the domains and IP addresses used in various areas of Canvas. Many K12 schools and some higher education institutions need to restrict the websites that students can visit while on cam...

Canva - Mailserver IP Ranges

IP Address Lists Mail Server IP Ranges

Email IP Addresses If needed, institutions can allow all static Canvas Email IP addresses. When Email IP addresses are allowlisted, the entire list of IP addresses should be allowlisted. The variety of IP addresses ensure a specific IP is not overloaded and ...

External Recon Information Gathering

Pentesting Notes and Snippets - Cheatsheet Main

Data Point Description IP Space Valid ASN for our target, netblocks in use for the organization's public-facing infrastructure, cloud presence and the hosting providers, DNS record entries, etc. Domain Information Based on IP data, DNS, ...

Tools of the Trade

Pentesting Notes and Snippets - Cheatsheet Main

Tool Description PowerView/SharpView A PowerShell tool and a .NET port of the same used to gain situational awareness in AD. These tools can be used as replacements for various Windows net* commands and more. PowerView and SharpView can help u...

Excel: How to Compare Two Columns for Missing Values

Applications - Excel

You can use the following formula in Excel to compare two columns and find missing values: =FILTER(A2:A13, ISNA(VLOOKUP(A2:A13, B2:B7, 1, FALSE))) This particular formula finds all of the values in A2:A13 that are missing from the range B2:B7.  The followin...

Get LAPS Password

Active Directory - One Liners

Get-LapsADPassword mut7gpc202 -AsPlainText  

Get Deleted Users From Azure AD

Azure - One Liners

connect-msolservice Get-MsolUser -ReturnDeletedUsers

List all users hidden from the GAL

Active Directory - One Liners

Get-ADUser -Filter {msExchHideFromAddressLists -eq "TRUE"} |Select-Object UserPrincipalName Original Article

List Active Directory Users In Groups

Active Directory - Scripts

$Members = @() $domains = (Get-ADForest).domains foreach ($domain in $domains) { $Groups = Get-ADGroup -Filter { Name -like "Enterprise Admins" } -Server $domain | Get-ADGroupMember -Server $domain $Members += $Groups ...

List Local Group Membership

Windows - One Liners Security

net localgroup “Administrators” > C:\Servers.txt Original Article

Get Drive/Folder Owner

Windows - One Liners File System

GET-ACL “$Path”| Select-Object path, Owner -expand access | Select-Object @{n=”Path”;e={$_.Path.replace(“Microsoft.PowerShell.Core\FileSystem::”,””)}}, Owner, IdentityReference, FileSystemRights, AccessControlType, IsInherited Original Article

Get Groups From AD User

Active Directory - One Liners

Get-ADPrincipalGroupMembership adminrgastineau | Select-Object name

Get USERID From SID

Active Directory - Scripts

$objSID = New-Object System.Security.Principal.SecurityIdentifier ("S-1-5-21-2484819571-2125529598-2454565363-2184915") $objUser = $objSID.Translate( [System.Security.Principal.NTAccount]) $objUser.Value

Get User SID

Active Directory - Scripts

$objUser = New-Object System.Security.Principal.NTAccount("USERNAME") $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value Original Article

Get Unique Departments From Active Directory

Active Directory - One Liners

get-aduser -filter * -property department | Select-Object -ExpandProperty department | sort-object -unique

Get ACL for Files and Folders

Active Directory - One Liners

The first PowerShell cmdlet used to manage file and folder permissions is get-acl; it lists all object permissions. For example, let’s get the list of all permissions for the folder with the object path \\fs1\shared\sales Get-acl \\fs1\shared\sales | Format-L...

Get List of All Attributes in AD

Active Directory - Scripts

# Import Active Directory module Import-Module ActiveDirectory # Retrieve schema information for all attributes $attributes = Get-ADObject -SearchBase (Get-ADRootDSE).schemaNamingContext -LDAPFilter "(objectClass=attributeSchema)" -Properties * | Select-Obj...

OPNsense Baseline Guide with Mullvad VPN Multi-WAN, Guest, and VLAN Support

pfSense - Walkthroughs Baseline Setup

2021-11-17 (updated: 2023-07-30) This beginner-friendly, step-by-step guide walks you through the initial configuration of your OPNsense firewall. The title of this guide is an homage to the pfSense baseline guide with VPN, Guest, and VLAN suppo...