Advanced Search
Search Results
502 total results found
Canva - Full IP List
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
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
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
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
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
Get-LapsADPassword mut7gpc202 -AsPlainText
Get Deleted Users From Azure AD
connect-msolservice Get-MsolUser -ReturnDeletedUsers
List all users hidden from the GAL
Get-ADUser -Filter {msExchHideFromAddressLists -eq "TRUE"} |Select-Object UserPrincipalName Original Article
List Active Directory Users In Groups
$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
net localgroup “Administrators” > C:\Servers.txt Original Article
Get Drive/Folder Owner
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
Get-ADPrincipalGroupMembership adminrgastineau | Select-Object name
Get USERID From SID
$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
$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
get-aduser -filter * -property department | Select-Object -ExpandProperty department | sort-object -unique
Get ACL for Files and Folders
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
# 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
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...