Skip to content

Instantly share code, notes, and snippets.

@kivanio
Created March 29, 2014 21:28
Show Gist options
  • Save kivanio/9863348 to your computer and use it in GitHub Desktop.
Save kivanio/9863348 to your computer and use it in GitHub Desktop.
rack Utf8Sanitizer
#http://dev.mensfeld.pl/2014/03/rack-argument-error-invalid-byte-sequence-in-utf-8/
class Utf8Sanitizer
SANITIZE_ENV_KEYS = %w(
HTTP_REFERER
PATH_INFO
REQUEST_URI
REQUEST_PATH
QUERY_STRING
)
def initialize(app)
@app = app
end
def call(env)
SANITIZE_ENV_KEYS.each do |key|
string = env[key].to_s
valid = URI.decode(string).force_encoding('UTF-8').valid_encoding?
# Don't accept requests with invalid byte sequence
return [ 400, { }, [ 'Bad request' ] ] unless valid
end
@app.call(env)
end
end
# and after that you just put into your config/application.rb this:
config.middleware.use Utf8Sanitizer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment