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
zeno — Automatic Vulnerability Discovery | Kitploit
Tools/GitHubGitHub/traxes/zeno
Static AnalysisVulnerability AnalysisFuzzingBinary Analysis
GitHubtraxes/zeno

zeno

Automatic Vulnerability Discovery

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

Zeno Framework

Installation

root@kitploit:~
cd ~
git clone https://github.com/Traxes/zeno --recursive
sudo pip3 install termcolor tqdm
git clone https://github.com/Z3Prover/z3 --recursive
cd z3
python3 scripts/mk_make.py --python
cd build
make
sudo make install
cd ~/zeno

Usage

root@kitploit:~
~/zeno$ PYTHONPATH=$PYTHONPATH:$HOME/zeno python3 src/main.py

Example

For running all plugins on target.bin

root@kitploit:~
~/zeno$ PYTHONPATH=$PYTHONPATH:$HOME/zeno python3 src/main.py target.bin

Documentation

TODO

  • Beauty Code

    • Prefix internal Methods with _
  • Core

    • Slicing
    • Arch Support
  • Reporter

    • include into Plugin System
  • GUI

  • Extern Interface in DLLs

  • Plugins

    • BufferOverflow
    • Out of Bounds
    • IntegerOverflow
    • Format String
    • Uninitialized Memory
      • Graph Slicing!

False Positive

  • CWE457_Use_of_Uninitialized_Variable__char_pointer_17_bad()
    • False positive on goodG2B

DONE

  • Plugin loader

Resources & Similar Projects

  • https://github.com/cetfor/PaperMachete

Buffer Overflows: gets <- always char buf[123]; std::cin>>buf

Download Tool