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-2018-10933 — Education purpose for CVE-2018-10933 | Kitploit
Tools/GitHubGitHub/hsw109/cve-2018-10933
Vulnerability AnalysisExploitationNetwork SecurityPenetration TestingAuthenticationLearning & Education
GitHubhsw109/cve-2018-10933

CVE-2018-10933

Education purpose for CVE-2018-10933

View Repository
42 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

Recreate & improve scenario of CVE-2018-10933

[Explaination]

root@kitploit:~
 This is educational purpose for CVE-2018-10933, which is libSSH bypass authentication!
 libssh versions 0.6 and above have an authentication bypass vulnerability in the server code.
 By presenting the server an SSH2_MSG_USERAUTH_SUCCESS message in place of the SSH2_MSG_USERAUTH_REQUEST
 message which the server would expect to initiate authentication, the attacker could successfully authentciate
 without any credentials.

 The "patch" folder contains modified code in the server for testing purpose (which injects a SSH2_MSG_USERAUTH_SUCCESS packet during any authentication),
 because of this vulnerability has been patched since libSSH-0.7.5 version (complicated to regenerate environment suit with old version of libSSH)    

[Usage]

If you want to run this PoC on your machine, please follow instructions.

  • Clone the repos.

  • Adding library to your local machine

root@kitploit:~
sudo cp CVE-2018-10933-PoC/libssh-0.8.3/src/* /usr/local/lib
  • Install Python dependencies
root@kitploit:~
pip install -r requirements.txt
  • Starting the server (modified with patches):
root@kitploit:~
cd libssh-0.8.3
root@kitploit:~
./ssh_server -v [server_IP] -p [port] -d ssh_host_dsa_key -k ssh_host_rsa_key
  • Checking version of server:
root@kitploit:~
python3 libSSHcheck.py -t [server_IP] -p [server_port]
  • Then you got the message which is the banner.

  • Execute the payload, then you got a shell:

root@kitploit:~
python3 paramikoBypass.py -t [server_IP] -p [server_port] 

=> Succeed!

[Reference]

root@kitploit:~
https://github.com/hackerhouse-opensource/
https://www.exploit-db.com/exploits/45638
Download Tool