You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently query reads: "query": "OPTIONAL MATCH (u1:User) WHERE u1.hasspn=true OPTIONAL MATCH (u1)-[r:AdminTo]->(c:Computer) RETURN u"
Should read: "query": "OPTIONAL MATCH (u1:User) WHERE u1.hasspn=true OPTIONAL MATCH (u1)-[r:AdminTo]->(c:Computer) RETURN u1"
Although, even with that, the data I'm looking at only returns the kerberoastable accounts. I tried adding ",c" to the end of the query and I do get the machines, but it's missing the relationship between the two. When I tried adding "r" as well, it went back to producing only kerberoastable accounts
The text was updated successfully, but these errors were encountered:
Currently query reads: "query": "OPTIONAL MATCH (u1:User) WHERE u1.hasspn=true OPTIONAL MATCH (u1)-[r:AdminTo]->(c:Computer) RETURN u"
Should read: "query": "OPTIONAL MATCH (u1:User) WHERE u1.hasspn=true OPTIONAL MATCH (u1)-[r:AdminTo]->(c:Computer) RETURN u1"
Although, even with that, the data I'm looking at only returns the kerberoastable accounts. I tried adding ",c" to the end of the query and I do get the machines, but it's missing the relationship between the two. When I tried adding "r" as well, it went back to producing only kerberoastable accounts
The text was updated successfully, but these errors were encountered: