Getting this error when trying to fingerprint a domino server (or run any of the other commands). Pretty sure it is 9.0.1.
|
self.logger.error('Unable to determine authentication type') |
The server is returning a 500 error, which is falling into the 'else' clause of the code.
Error 500
HTTP Web Server: IBM Notes Exception - You are not authorized to access that database
It would be good if this was handled so the rest of the tool could work.
Hacking the following lines in seemed to allow it to work:
elif response.status_code == 500:
auth_type = "*shrugs*"
Getting this error when trying to fingerprint a domino server (or run any of the other commands). Pretty sure it is 9.0.1.
domi-owned/domi_owned/main.py
Line 78 in 583d0a5
The server is returning a 500 error, which is falling into the 'else' clause of the code.
It would be good if this was handled so the rest of the tool could work.
Hacking the following lines in seemed to allow it to work: