Skip to content

Commit

Permalink
roadrecon: fix in gathering and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkjanm committed Mar 21, 2023
1 parent 9ac92d3 commit d325c91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions roadrecon/roadtools/roadrecon/gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ async def dumphelper(url, method=requests.get):
print('Sleeping because of rate-limit hit')
continue
if req.status != 200:
# Ignore default users role not being found
if req.status == 404 and 'a0b1b346-4d3e-4e8b-98f8-753987be4970' in url:
return
print('Error %d for URL %s' % (req.status, nexturl))
# print(await req.text())
# print(req.headers)
Expand Down
2 changes: 1 addition & 1 deletion roadrecon/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup
setup(name='roadrecon',
version='1.0.4',
version='1.0.5',
description='Azure AD recon for red/blue',
author='Dirk-jan Mollema',
author_email='[email protected]',
Expand Down

0 comments on commit d325c91

Please sign in to comment.