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-15473-User-Enumeration- — python code use to check for user in ssh | Kitploit
Tools/GitHubGitHub/bdalrhmnhamdalalm-jpg/cve-2018-15473-user-enumeration-
ReconnaissanceVulnerability AnalysisExploitationInformation GatheringNetwork SecurityPenetration Testing
GitHubbdalrhmnhamdalalm-jpg/cve-2018-15473-user-enumeration-

CVE-2018-15473-User-Enumeration-

python code use to check for user in ssh

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
115 days agoNot yet reviewed

CVE-2018-15473 – SSH Username Enumeration

A Python tool developed by me to identify valid SSH usernames by exploiting CVE-2018-15473.

Target Information

  • Service: SSH
  • Version: OpenSSH 5.8p1 Debian 1ubuntu3
  • Operating System: Ubuntu Linux
  • Protocol: SSH-2.0
  • Assessment: Tested for CVE-2018-15473 (SSH Username Enumeration)

Language

  • Python 3

Features

  • Developed in Python 3.
  • Enumerates valid SSH usernames by leveraging CVE-2018-15473.
  • Supports custom username wordlists.
  • Displays discovered usernames in real time.
  • Provides a summary of all valid usernames at the end of the scan.
  • Lightweight and easy to use.

Usage

root@kitploit:~
python3 enum_ssh.py usernames.txt

Where usernames.txt contains the list of usernames to test.


Example Output

root@kitploit:~
[parrot@parrot]-[~]
$ python3 enum_ssh.py usernames.txt

[*] Starting CVE-2018-15473 enumeration against 10.10.10.100:22
[*] Using wordlist: usernames.txt

[+] [EXISTS] -> root
[+] [EXISTS] -> admin
[+] [EXISTS] -> administrator
[+] [EXISTS] -> user
[+] [EXISTS] -> test
[+] [EXISTS] -> guest
[+] [EXISTS] -> demo
[+] [EXISTS] -> operator
[+] [EXISTS] -> sysadmin
[+] [EXISTS] -> security
[+] [EXISTS] -> netadmin
[+] [EXISTS] -> webmaster
[+] [EXISTS] -> support
[+] [EXISTS] -> service
[+] [EXISTS] -> ubuntu
[+] [EXISTS] -> debian
[+] [EXISTS] -> centos
[+] [EXISTS] -> fedora
[+] [EXISTS] -> kali
[+] [EXISTS] -> parrot

========================================
[*] Scan complete.
[*] Found 95 valid user(s):

    - root
    - admin
    - administrator
    - user
    - test
    - guest
    - demo
    - operator
    - sysadmin
    - security
    - netadmin
    - webmaster
    - support
    - service
    - ubuntu
    - debian
    - centos

========================================

Disclaimer

This tool is intended for educational purposes and authorized security testing only. Use it only on systems for which you have explicit permission.

Download Tool