This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from neo4j.v1 import GraphDatabase, basic_auth | |
driver = GraphDatabase.driver("bolt://localhost", auth=basic_auth("neo4j", "neo4jj")) | |
session = driver.session() | |
for result in session.run(""" | |
MATCH (u:User) | |
RETURN COUNT(u) | |
"""): | |
TotalUserCount = int(result._values[0]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello world |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Origin | Target | |
---|---|---|
Domain Users | Domain Admins | |
Authenticated Users | Administrators | |
Everyone | Enterprise Admins | |
Domain Computers | Domain Controllers |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Targets | |
Domain Admins | |
Enterprise Admins | |
Schema Admins | |
DNS Admins | |
Print Operators | |
Server Operators | |
Account Operators | |
The domain head object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Target Principals | ||
---|---|---|
Domain Admins | ||
Enterprise Admins | ||
Schema Admins | ||
DNS Admins | ||
Print Operators | ||
Server Operators | ||
Account Operators | ||
The domain head object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Groups | ||
---|---|---|
Domain Admins | ||
Enterprise Admins | ||
Schema Admins | ||
DNS Admins | ||
Print Operators | ||
Server Operators | ||
Account Operators |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Groups | ||
---|---|---|
Domain Controllers | ||
Read-Only Domain Controllers | ||
Enterprise Domain Controllers | ||
Cloneable Domain Controllers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Find dangerous API permissions as a user | |
$AzureTenantID = '<Your tenant ID>' | |
$AccountName = '<Username>@<Domain.com>' | |
$Password = ConvertTo-SecureString '<Your password>' -AsPlainText -Force | |
$Credential = New-Object System.Management.Automation.PSCredential($AccountName, $Password) | |
Connect-AzAccount -Credential $Credential -TenantID $AzureTenantID | |
function Get-AzureGraphToken | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Granting Global Admin rights by chaining AppRoleAssignment.ReadWrite.All into RoleManagement.ReadWrite.Directory | |
# Helper function to let us parse Azure JWTs: | |
function Parse-JWTtoken { | |
<# | |
.DESCRIPTION | |
Decodes a JWT token. This was taken from link below. Thanks to Vasil Michev. | |
.LINK | |
https://www.michev.info/Blog/Post/2140/decode-jwt-access-and-id-tokens-via-powershell | |
#> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$psversiontable |
OlderNewer