-
Notifications
You must be signed in to change notification settings - Fork 1
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
Basic Scrubber is mangling certain symbols and encodings #13
Comments
Looking at the first problem - substring being stripped off: The first case is a bit of mystery, as it's not clear from the scrubber code why it would strip off the Looking at the server logs (looks like the scrub request ID is actually
So the scrubber never saw the This unfortunately looks like this has to be handled on the client side - the One fix would be to be properly URL-ify the string. The other is to use the official python client (TM). These fixes should be tested before this issue should be closed. |
Second problem - byte strings resulting in strange escaped quotes being injected. Request ID for scrub is actually
Mmm, again, looks like the issue is coming from the client side - as far as the server is concerned, it's getting the string One pretty dangerous option to handle this on the server would be to evaluate the string (using |
As reported by @ColinAnthony :
The text was updated successfully, but these errors were encountered: