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
Tools/GitHubGitHub/lisa-2905/cve-2024-56428
Vulnerability AnalysisExploitationData ExfiltrationInformation Gathering
GitHublisa-2905/cve-2024-56428

CVE-2024-56428

Proof-of-concept exploit for CVE-2024-56428 that reads cleartext credentials from iLabClient's local Apache Derby database.

View Repository
41 year 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

CVE-2024-56428

Cleartext credentials in local database of the iLabClient


Read out the configuration incl. password

The iLabClient is used to download the results from the laboratory server. The configuration data are stored locally in the Apache Derby instance iLabClient. The password is stored in plain text. In order to be able to read this, a connection to the local database must first be established, for example as described in CVE-2024-56429.

Read out the passwords:

root@kitploit:~
select EINSTELLUNGEN from configs;

Automated script

The get_configs.sh script can be executed to read out the configuration data. It is important that no other program (e.g. the iLabClient itself) accesses the database during execution.

Explanations to the script:

root@kitploit:~
#! /bin/bash
"C:\ilabClient\java8u422\bin\java.exe" -jar ".\derby-lib\derbyrun.jar" ij script_sql.sql
read

"C:\ilabClient\java8u422\bin\java.exe": Use of the Java version supplied with the installation of the client. Change this if the client was installed in a different directory.
-jar: Instruction that a JAR file is to be executed
".\derby-lib\derbyrun.jar ij" Execution of the ij tool from Apache Derby
script_sql.sql: Script that reads out the corresponding configurations. Change the path to the database in this file when the client was installed in a different directory.


Discoverer: Lisa Ulbrich (Lufthansa Industry Solutions AS GmbH)

Download Tool