We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'll leave here some fixes to the customqueries.json, just in case someone stumble upon these errors
Query:
Find all sessions a user in a specific domain has
Find an object from domain 'A' that can do anything to a foreign object
Fix:
{domain:{result}}
{domain: $result}
Find Kerberoastable users and where they are AdminTo
RETURN u
RETURN u1
Find All Users with an SPN/Find all Kerberoastable Users with passwords last set > 5 years ago
WHERE
AND WHERE u.pwdlastset
n.hasspn
u.hasspn
Find all computers with unsupported operating systems
MATCH (H:Computer) WHERE H.operatingsystem =~ '(?i).(2000|2003|2008|xp|vista|7|me).' RETURN H
This update is based on a comment in the original blog
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'll leave here some fixes to the customqueries.json, just in case someone stumble upon these errors
Query:
Find all sessions a user in a specific domain has
Find an object from domain 'A' that can do anything to a foreign object
Fix:
{domain:{result}}
for{domain: $result}
Query:
Find Kerberoastable users and where they are AdminTo
Fix:
RETURN u
forRETURN u1
Query:
Find All Users with an SPN/Find all Kerberoastable Users with passwords last set > 5 years ago
Fix:
WHERE
keyword inAND WHERE u.pwdlastset
n.hasspn
foru.hasspn
Query:
Find all computers with unsupported operating systems
Fix:
MATCH (H:Computer) WHERE H.operatingsystem =~ '(?i).(2000|2003|2008|xp|vista|7|me).' RETURN H
The text was updated successfully, but these errors were encountered: