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
Masterchef — 🍳 The most delicious pentesting tool | Kitploit
Tools/GitHubGitHub/cosasdepuma/masterchef
Vulnerability AnalysisExploitationWeb SecurityPenetration TestingUtilities & FrameworksLearning & EducationArchived
GitHubcosasdepuma/masterchef

Masterchef

🍳 The most delicious pentesting tool

View Repository
46244 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
Logo

Masterchef Framework

👨‍🍳 The most delicious pentesting tool 👩‍🍳

Under development...


Cooker

Masterchef is a graphical vulnerability exploitation and validation tool that helps you break down your penetration testing workflow by creating tasty recipes.

It is the ideal tool for getting started in the world of offensive cybersecurity. Visual, intuitive, customizable and with a lot of delicious ingredients! So yummy!


🍱 Table of contents

  • Honorary mention
  • Disclaimer
  • Download and install
    • Compiled version
    • Go
    • Docker
    • Sauce code
  • Getting started
  • Examples

🥇 Honorary mention

Download Tool

MisterChef was created by the author under the academic validation of the University of Vigo in the form of a Final Degree Project.

🍅 Disclaimer

The use of the application may be a criminal act, depending on the regulations of each country.

The author of this document is not responsible in case criminal charges are brought against any individual or corporation using the tool against the stipulated laws, as well as for damages caused by a misuse of the tool. It is the responsibility of the end user to obey all applicable laws.

It is recommended that use be limited to controlled environments and/or penetration testing with prior approval.

🥤 Download and install

Download and install Masterchef Framework quickly with the steps described here.

🥡 Compiled version

Click the button below to download the Masterchef binary.

    Windows Mac Linux

Don't see your operating system here? Try one of the other downloads.

Masterchef binary requires no installation or dependencies.

🥣 Go

Go 1.16+ is required

Install the application using go get:

root@kitploit:~
go install github.com/cosasdepuma/masterchef@latest

🐟 Docker

It is possible to compile and run Masterchef in a container using docker:

root@kitploit:~
# Download the container from Docker Hub
docker pull cosasdepuma/masterchef

# Run the container
docker run --name masterchef -d -p 7767:7767 cosasdepuma/masterchef

Alternatively, you can pull up the Masterchef service, as well as its documentation, using docker-compose:

root@kitploit:~
cd masterchef/
docker-compose up

🍲 Sauce code

If you are a paranoid sybarite, you can download and install the program yourself from the source code.

Download or clone the repository using git:

root@kitploit:~
git clone https://github.com/cosasdepuma/Masterchef

Compile the code:

root@kitploit:~
cd masterchef/

# Manually
npm --prefix frontend install
npm --prefix frontend run compile
cd backend/
export GOOS=linux     # windows, darwin...
export GOARCH=amd64   # 386, arm, arm64...
go build -a -ldflags="-s -w -extldflags \"-static\"" -o ../dist/masterchef main.go
cd ..
upx -9 --ultra-brute dist/masterchef # optional

# Automatically
make clean
make

# Using Docker
docker build -t cosasdepuma:masterchef .

🍴 Getting started

Run the application by double clicking or using the console:

root@kitploit:~
./masterchef

It is possible to modify the address and the number of threads per request using environment variables:

root@kitploit:~
export MC_ADDR=0.0.0.0:7767 # Address
export MC_THREADS=200       # Threads

Once the application is started, access the displayed web address. By default, it is http://127.0.0.1:7767/.

If everything works correctly, the following interface will be shown:

Interface

📚 Examples

You can find recipes with examples of functionality in the cookbook folder.