-
Notifications
You must be signed in to change notification settings - Fork 11
Replace JAMFHound repo and fix mermaid diagram renders #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
so-lcain
wants to merge
3
commits into
SpecterOps:main
Choose a base branch
from
so-lcain:repo_update
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
74 changes: 37 additions & 37 deletions
74
docs/opengraph/extensions/jamfhound/reference/edges/jamf_azmatchedemail.mdx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,37 +1,37 @@ | ||
| --- | ||
| title: 'jamf_AZMatchedEmail' | ||
| description: 'Represents a cross-platform identity correlation where the JAMF principal''s email attribute matches an Azure AD account''s email.' | ||
| --- | ||
| <img noZoom src="/assets/enterprise-AND-community-edition-pill-tag.svg" alt="Applies to BloodHound Enterprise and CE"/> | ||
| ## Edge Schema | ||
| - Source: [jamf_Account](/opengraph/extensions/jamfhound/reference/nodes/jamf_account), [jamf_DisabledAccount](/opengraph/extensions/jamfhound/reference/nodes/jamf_disabledaccount), [jamf_ComputerUser](/opengraph/extensions/jamfhound/reference/nodes/jamf_computeruser) | ||
| - Destination: [AZUser](/resources/nodes/az-user) | ||
| - Traversable: ❌ | ||
| ## General Information | ||
| The non-traversable `jamf_AZMatchedEmail` edge represents a cross-platform identity correlation created during post-processing. When the Jamf principal's email attribute matches an Azure AD account's email, this edge is created to link the identities across environments. This edge is generated by the `checkAzureUsers` utility rather than the main collection flow. | ||
| ```mermaid | ||
| graph LR | ||
| A("jamf_Account | ||
| john.admin") | ||
| B("AzureAD_User | ||
| john.admin\@contoso.com") | ||
| C("jamf_ComputerUser | ||
| bob.smith") | ||
| D("AzureAD_User | ||
| bob.smith\@contoso.com") | ||
| E("jamf_DisabledAccount | ||
| bob.former") | ||
| F("AzureAD_User | ||
| bob\@former.localhost") | ||
| A -- jamf_AZMatchedEmail --> B | ||
| C -- jamf_AZMatchedEmail --> D | ||
| E -- jamf_AZMatchedEmail --> F | ||
| ``` | ||
| --- | ||
| title: 'jamf_AZMatchedEmail' | ||
| description: 'Represents a cross-platform identity correlation where the JAMF principal''s email attribute matches an Azure AD account''s email.' | ||
| --- | ||
|
|
||
| <img noZoom src="/assets/enterprise-AND-community-edition-pill-tag.svg" alt="Applies to BloodHound Enterprise and CE"/> | ||
|
|
||
| ## Edge Schema | ||
|
|
||
| - Source: [jamf_Account](/opengraph/extensions/jamfhound/reference/nodes/jamf_account), [jamf_DisabledAccount](/opengraph/extensions/jamfhound/reference/nodes/jamf_disabledaccount), [jamf_ComputerUser](/opengraph/extensions/jamfhound/reference/nodes/jamf_computeruser) | ||
| - Destination: [AZUser](/resources/nodes/az-user) | ||
| - Traversable: ❌ | ||
|
|
||
| ## General Information | ||
|
|
||
| The non-traversable `jamf_AZMatchedEmail` edge represents a cross-platform identity correlation created during post-processing. When the Jamf principal's email attribute matches an Azure AD account's email, this edge is created to link the identities across environments. This edge is generated by the `checkAzureUsers` utility rather than the main collection flow. | ||
|
|
||
|
|
||
| ```mermaid | ||
| graph LR | ||
| A("jamf_Account | ||
| john.admin") | ||
| B("AzureAD_User | ||
| john.admin\@contoso.com") | ||
| C("jamf_ComputerUser | ||
| bob.smith") | ||
| D("AzureAD_User | ||
| bob.smith\@contoso.com") | ||
| E("jamf_DisabledAccount | ||
| bob.former") | ||
| F("AzureAD_User | ||
| bob\@former.localhost") | ||
|
|
||
| A -- jamf_AZMatchedEmail --> B | ||
| C -- jamf_AZMatchedEmail --> D | ||
| E -- jamf_AZMatchedEmail --> F | ||
|
JonasBK marked this conversation as resolved.
|
||
| ``` | ||
60 changes: 30 additions & 30 deletions
60
docs/opengraph/extensions/jamfhound/reference/edges/jamf_matchedemail.mdx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,30 @@ | ||
| --- | ||
| title: 'jamf_MatchedEmail' | ||
| description: 'Represents an identity correlation where the JAMF computer user''s email attribute matches the JAMF account''s email.' | ||
| --- | ||
| <img noZoom src="/assets/enterprise-AND-community-edition-pill-tag.svg" alt="Applies to BloodHound Enterprise and CE"/> | ||
| ## Edge Schema | ||
| - Source: [jamf_ComputerUser](/opengraph/extensions/jamfhound/reference/nodes/jamf_computeruser) | ||
| - Destination: [jamf_Account](/opengraph/extensions/jamfhound/reference/nodes/jamf_account), [jamf_DisabledAccount](/opengraph/extensions/jamfhound/reference/nodes/jamf_disabledaccount) | ||
| - Traversable: ✅ | ||
| ## General Information | ||
| The traversable `jamf_MatchedEmail` edge represents an identity correlation where the Jamf computer user's email attribute matches the Jamf account's email, indicating they are likely the same person. This links physical device access to Jamf administrative privileges. | ||
| ```mermaid | ||
| graph LR | ||
| A("jamf_ComputerUser | ||
| jsmith\@corp.com") | ||
| B("jamf_Account | ||
| jsmith\@corp.com") | ||
| C("jamf_ComputerUser | ||
| jdoe\@corp.com") | ||
| D("jamf_DisabledAccount | ||
| jdoe\@corp.com") | ||
| A -- jamf_MatchedEmail --> B | ||
| C -- jamf_MatchedEmail --> D | ||
| ``` | ||
| --- | ||
| title: 'jamf_MatchedEmail' | ||
| description: 'Represents an identity correlation where the JAMF computer user''s email attribute matches the JAMF account''s email.' | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are the double apostrophes in "user" and "account" expected? |
||
| --- | ||
|
|
||
| <img noZoom src="/assets/enterprise-AND-community-edition-pill-tag.svg" alt="Applies to BloodHound Enterprise and CE"/> | ||
|
|
||
| ## Edge Schema | ||
|
|
||
| - Source: [jamf_ComputerUser](/opengraph/extensions/jamfhound/reference/nodes/jamf_computeruser) | ||
| - Destination: [jamf_Account](/opengraph/extensions/jamfhound/reference/nodes/jamf_account), [jamf_DisabledAccount](/opengraph/extensions/jamfhound/reference/nodes/jamf_disabledaccount) | ||
| - Traversable: ✅ | ||
|
|
||
| ## General Information | ||
|
|
||
| The traversable `jamf_MatchedEmail` edge represents an identity correlation where the Jamf computer user's email attribute matches the Jamf account's email, indicating they are likely the same person. This links physical device access to Jamf administrative privileges. | ||
|
|
||
| ```mermaid | ||
| graph LR | ||
| A("jamf_ComputerUser | ||
| jsmith\@corp.com") | ||
| B("jamf_Account | ||
| jsmith\@corp.com") | ||
| C("jamf_ComputerUser | ||
| jdoe\@corp.com") | ||
| D("jamf_DisabledAccount | ||
| jdoe\@corp.com") | ||
| A -- jamf_MatchedEmail --> B | ||
| C -- jamf_MatchedEmail --> D | ||
| ``` | ||
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are the double apostrophes in "principal" and "account" expected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope.. Seems to be generated by my script somehow. I'll dig into it and get it fixed