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
Tools/GitHubGitHub/advanced-threat-research/creosote
Vulnerability ScannersStatic Code Analysis (SAST)Vulnerability AnalysisCode AnalysisSupply Chain SecurityMisconfiguration
GitHubadvanced-threat-research/creosote

Creosote

Creosote is our solution to searching for the tarfile vulnerability described by CVE-2007-4559.

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

Creosote

Creosote is our solution to searching for the tarfile vulnerability described by CVE-2007-4559. The tool recursively traverses the given directory searching for python files. When the tool finds python files it scans them for the tarfile module and then parses the code into an AST to look for vulnerable code.

Creosote categorizes all found vulnerabilities under 3 main categories:

  • Vuln:
    • This is the highest confidence level the tool can give, anything marked as a vuln should be analyzed.
  • Probable Vuln
    • Anything marked as probably vulnerable had the structure of a vuln but had some sort of indication of potentially being checked by the program.
  • Potential Vuln
    • This is a catch all to make sure nothing gets missed.

In order to run Creosote you just need to pass it the directory:

root@kitploit:~
python3 creosote.py <directory to scan>

Creosote runs on both Linux, macOS, and Windows. The tool has been tested for Python 3.9 and later.

Download Tool