question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

When 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:closed
  • Created 3 years ago
  • Comments:8 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
tiyeusecommented, Mar 27, 2021

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 👍

1reaction
jarilaoscommented, Mar 16, 2021

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found