Noam Rathaus
Noam Rathaus
Fix suggested here: https://github.com/rapid7/metasploit-omnibus/pull/192
I had better success of controlling everything if I use `run_module_with_output` As it opens a console, and "types" the commands one by one - and you can more easily: 1....
I believe you should look at `--exclude-redirect` rather than `--exclude-subdirs` for your setup as you are mentioning that its a `301` that brings you to the site you don't want
Maybe related to this: ``` python = "^3.11" ``` Why is 3.11 required?
You can modify the `settings.py` file to say: `MAX_CONSECUTIVE_REQUEST_ERRORS = some_large_number` To prevent the rising of this exception
It sounds like a system proxy setting is overriding the code use by `requests.Request` to send out requests, and failing, the error returned by `dirsearch` assumes the ProxyError is from...
This can be closed
This can be closed, there is nothing here
I believe offending code is inside `def setup_reports(self):` `parsed = urlparse(options["urls"][0])` on: `scanme.nmap.org` returns no `scheme` In `def set_target(self, url):` When there is no `scheme` the code `detect_scheme(host, port)` is...
An option can be to use what is seen here: https://github.com/HansBug/hbutils/blob/main/hbutils/system/python/package.py#L202 I reached this code from here: https://github.com/python/importlib_metadata/issues/450