-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
bad URI with complex passwords #88
Comments
This looks like its related to an open PR with the underlying carrot-top function https://github.com/portertech/carrot-top/pull/8. Unfortunately the project looks to have gone stale. Maybe we could CGI.escape(password) the string before we pass it to the carrot-top functionality. |
That won't work because carrot-top parses the URI and would use the URL-encoded password as a parameter for Basic Auth, which then leads to a 401 as the password isn't correct and needs to be unescaped. So this issue requires carrot-top to be updated or for this plugin to use something else, preferably the latter given the lack of updates to carrot-top. |
Checking the project, I saw that the carrot-top hasn't received updates since 2012. Bearing that in mind, would it be valid to apply a cleaning of the uri parameters right here? |
when parsing complex passwords most plugins return bad URI while curl -v gets the content without a probelm.
the problem part in the password is:
Check failed to run: bad URI(is not URI?): http://admin:4L#*!1@logging-rabbitmq-0***.***.com:15672/api/queues/
The text was updated successfully, but these errors were encountered: