Missings ACEs
See original GitHub issueWhen working on a lab I noticed bloodhound-python is missing ACEs. To compare, I used bloodhound ingestor from the official bloodhound repository. The 2 dumps were performed at the same time.
import json
with open("computers.json") as f:
wrong = json.load(f)
with open("20210307143122_computers.json") as f:
correct = json.load(f)
wrong['computers'][1]['Properties']['name']
'TEST.SUB.CORP.LOCAL'
correct['computers'][1]['Properties']['name']
'TEST.SUB.CORP.LOCAL'
len(wrong['computers'][1]['Aces'])
7
len(correct['computers'][1]['Aces'])
9
In this specific case, bloodhound is missing a critical ACE for domain user with Extended Rights :
{
"PrincipalSID": "S-1-5-21-1559563558-6653093943-1360247436-1103",
"PrincipalType": "User",
"RightName": "ExtendedRight",
"AceType": "All",
"IsInherited": false
}
When running bloodhound-python I got no particular error except SID resolution (global catalog server not found) and nothing related to this user.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
In Search of the Missing ACEs... | PACEsConnection
Whilst many ACEs are covered in the 10 questions, many are not. Colleagues often talk of the ACEs questionnaire being a diagnostic tool,...
Read more >The ACEs Questionnaire Is Missing These Types of Trauma
The study involved the use of a questionnaire featuring 10 types of childhood trauma identified as most common within the sample community ...
Read more >What's missing from the ACEs framework
An ACEs framework missing this perspective means that clinicians and researchers fail to see how restrictive immigration policies enact ...
Read more >Donna Beegle - What's missing from ACES (Adverse ...
What's missing from ACES (Adverse Childhood Experiences) research? ACES research asks questions about trauma in the home when participants ...
Read more >The Missing Aces | Air & Space Forces Magazine
The Missing Aces. By Rebecca Grant ... From a high of 708 in World War II, the USAF ace count fell to 39...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In my case these modifications did the job, I could the see the previous missing permission. If everything else works (including computers with LAPS) that could be cool. Thanks 👍
I think the issue is in this line. Just adding computer maybe fix your problem but if the computer has no laps you will see this in GUI. In order to avoid that message it is recommended to check laps first like this, as sharphound does too. Keep in mind that there is another check for computer extendedright here that could be reported as an unexploitable ace.
I added changes to #60 fixing this issue.