The pentest report your auditorasked for, delivered same day.
Strix Full Audit: exhaustive AI-driven testing of your apps and APIs,
reviewed by CREST-certified pentesters and written up for SOC 2, ISO 27001, and customer reviews.
Why compliance pentests are usually slow and expensive
What the Full Audit includes
Everything in a one-time Strix pentest, plus the depth and paperwork a compliance review needs.
Auditor-ready report
A formal PDF written for SOC 2 and ISO 27001 evidence requests: scope, methodology, findings, severity, and remediation status.
Reviewed by CREST-certified pentesters
Human experts validate the agents' results and sign off on the report, so it carries weight in an audit or customer review.
Business logic and attack chains
Deeper, exhaustive testing per target, including multi-step attack paths and the logic flaws automated scanners miss.
Custom scope and test accounts
Authenticated testing across roles and environments, scoped with you so the report covers what your auditor lists.
Same-day results
Agents run in parallel, so findings and the report arrive in hours instead of the weeks a consultancy schedule takes.
Free retest and fix PRs
Every validated finding ships with a fix pull request. Merge it and agents retest, so you can show closed findings, not open ones.
Which frameworks it covers
One engagement, evidence for the reviews you actually get asked for.
SOC 2 Type I and Type II
Independent penetration test evidence for the security trust services criteria your auditor samples.
ISO 27001
Technical vulnerability management evidence and a remediation trail for your ISMS.
Customer security reviews
A report you can share with enterprise procurement teams that ask for a recent third-party pentest.
Consultancy pentest vs Strix Full Audit
How a traditional compliance engagement compares.
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
Strix Full Audit
Traditional consultancy
From issue to fix in seconds
Find critical issues, auto-validate, and auto-fix with merge-ready PRs.
SSRF via URL Parameter in /api/proxy
TL;DR
The /api/proxy endpoint accepts a user-supplied URL without validation. An attacker can access internal services, read cloud metadata, and exfiltrate credentials.
Impact
Access to cloud metadata at 169.254.169.254, potential credential theft, and internal network scanning.
Location
Severity
CVSS
8.6Fix Effort
LowDiscovered
2h agoDiscover & Validate
Pentests your entire attack surface continuously. Reproduces each finding, confirms exploitability with proof, and prioritizes by real impact.
How do I fix it?
Validate and restrict the target URL using an allowlist of permitted hostnames. Reject private/internal IP ranges and enforce HTTPS-only.
| 23 | 23 | const targetUrl = req.query.url; |
| 24 | const resp = await fetch(targetUrl); | |
| 24 | const parsed = new URL(targetUrl); | |
| 25 | if (!ALLOWED_HOSTS.has(parsed.hostname)) { | |
| 26 | throw new ForbiddenError("blocked"); | |
| 27 | } | |
| 28 | const resp = await fetch(parsed.href); | |
| 25 | 29 | return res.json(await resp.json()); |
Auto-Fix
Generates a fix, retests to confirm the vulnerability is gone, and delivers a merge-ready PR. Review, merge, done.
Frequently asked questions
Common questions about penetration testing for SOC 2 and ISO 27001.
Keep exploring
Solutions
Get your compliance pentest done this week
Book a scoping call for the Full Audit, or start with a self-serve pentest today.


