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
vulnbox-easy-CVE-2025-29927 | Kitploit
Tools/GitHubGitHub/rgvillanueva28/vulnbox-easy-cve-2025-29927
Vulnerability AnalysisWeb Application ExploitationCTFPenetration TestingLearning & EducationLabs & Practice
GitHubrgvillanueva28/vulnbox-easy-cve-2025-29927

vulnbox-easy-CVE-2025-29927

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
1 month agoNot yet reviewed

Man-in-the-middle

This application is named Man-in-the middle because it contains a vulnerability in Next.JS middleware and the flag is in the API call.


🚀 Production Setup

1. .env.production

root@kitploit:~
DATABASE_URL=postgresql://postgres:password@db:5432/nextauth
JWT_SECRET=your-production-secret

2. Build and Start

root@kitploit:~
docker compose up --build -d

🛠️ Development Setup

1. Clone the Repository

root@kitploit:~
git clone <your-repo-url>
cd <your-project-folder>

2. Install Dependencies

root@kitploit:~
npm install

3. Set Up PostgreSQL (Development)

Create a separate docker-compose.dev.yml for dev:

root@kitploit:~
version: "3.8"

services:
  db:
    image: postgres:16
    restart: always
    environment:
      POSTGRES_USER: devuser
      POSTGRES_PASSWORD: devpass
      POSTGRES_DB: devdb
    volumes:
      - devdata:/var/lib/postgresql/data
    ports:
      - "5433:5432"

volumes:
  devdata:

Then run it:

root@kitploit:~
docker compose -f docker-compose.dev.yml up -d

4. Create .env

root@kitploit:~
DATABASE_URL=postgresql://devuser:devpass@localhost:5433/devdb
JWT_SECRET=dev-secret

5. Prisma Setup

root@kitploit:~
npx prisma generate
npx prisma migrate dev --name init
npx tsx prisma/seed.ts

6. Start Dev Server

root@kitploit:~
npm run dev

App: http://localhost:3000


🧪 Testing

You can test login with the seeded admin user:

root@kitploit:~
email: [email protected]
password: adminSup3rS3cur3P@ssw0rd
Download Tool