(JSON::ParserError) “{N}: unexpected token at 'alihack<%eval request(\”alihack.com\")%>

前端 未结 4 1403
悲哀的现实
悲哀的现实 2021-02-01 12:22

I have the website on Ruby on Rails 3.2.11 and Ruby 1.9.3.

What can cause the following error:

(JSON::ParserError) \"{N}: unexpected token at \'alihack&         


        
4条回答
  •  礼貌的吻别
    2021-02-01 13:20

    Why it happens?

    It seems like an attempt to at least test for, or exploit, a remote code execution vulnerability. Potentially a generic one (targeting a platform other than Rails), or one that existed in earlier versions.

    The actual error however stems from the fact that the request is an HTTP PUT with application/json headers, but the body isn't a valid json.

    To reproduce this on your dev environment:

    curl -D - -X PUT --data "not json" -H "Content-Type: application/json" http://localhost:3000

    More details

    Rails action_dispatch tries to parse any json requests by passing the body to be decoded

      # lib/action_dispatch/middleware/params_parser.rb
    
      def parse_formatted_parameters(env)
        ...
        strategy = @parsers[mime_type]
        ...
    
        case strategy
        when Proc
          ...
        when :json
          data = ActiveSupport::JSON.decode(request.body)
        ...
    

    In this case, it's not a valid JSON, and the error is raised, causing the server to report a 500.

    Possible solutions

    I'm not entirely sure what's the best strategy to deal with this. There are several possibilities:

    1. you can block the IP address using iptables
    2. filter (PUT or all) requests to /ali.txt within your nginx or apache configs.
    3. use a tool like the rack-attack gem and apply the filter there. (see this rack-attack issue )
    4. use the request_exception_handler gem to catch the error and handle it from within Rails (See this SO answer and this github issue)
    5. block PUT requests within Rails' routes.rb to all urls but those that are explicitly allowed. It looks like that in this case, the error is raised even before it reaches Rails' routes - so this might not be possible.
    6. Use the rack-robustness middleware and catch the json parse error with something like this configuration in config/application.rb
    7. Write your own middleware. Something along the lines of the stuff on this post

    I'm currently leaning towards options #3, #4 or #6. All of which might come in handy for other types of bots/scanners or other invalid requests that might pop-up in future...

    Happy to hear what people think about the various alternative solutions

" id="ans_title" name="title">
提交回复
热议问题