Automate Your Recon: One API to Run All Your Pentesting Tools Instantly
开发者为解决渗透测试中的重复步骤问题,开发了Pentest Orchestration工具,通过API调用多个安全工具自动化执行recon阶段的任务。 2025-7-21 05:24:38 Author: infosecwriteups.com(查看原文) 阅读量:17 收藏

Aris Haryanto

Pentest Orchestration

If you’re a pentester, you already know the drill.

New target?
Cool! now it’s time to run tool, wait. Run other tool, wait again. Save results. Validate them. Move on. Repeat.

We were doing this every single time in my team, and honestly, it started to feel like we were spending more time setting up scans than actually analyzing them.

So I built a little tool to fix that. It’s called Pentest Orchestration, and it lets you run multiple tools with a single API call.

I noticed that our recon phase was full of small, repetitive steps especially in the beginning of every engagement.

We’d always start by looking for:

  • Hidden directories (dirb)
  • XSS vulnerabilities (dalfox)

Every time, same commands. So I figured, why not wrap that into something simple and reusable?

Now I just run:

curl -X POST http://localhost:41215/scan
-H “Authorization: Bearer kocak”
-H “Content-Type: application/json”
-d ‘{ “urls”: [ “https://kocak.com", “https://kocak2.com" ] }’


文章来源: https://infosecwriteups.com/automate-your-recon-one-api-to-run-all-your-pentesting-tools-instantly-e1502862c2c7?source=rss----7b722bfd1b8d--bug_bounty
如有侵权请联系:admin#unsafe.sh