The Challenge
Integrated Edge Protection
AWS WAF integrates tightly with CloudFront/ALB, using challenges that verify browser capabilities and integrity.
Our Solution
WAF Token Acquisition
Our system interacts with the AWS challenge scripts to produce the 'aws-waf-token' required to access protected resources.
- aws-waf-token resolution
- Canvas/JS challenge resolution
- Captcha puzzle solution
- Cookie persistence
Technical Details
Key parameters for integration.
Target Cookie
aws-waf-tokenChallenge TypeJS & Captcha
Common Errors Solved
405 Method Not Allowed403 Forbidden
Integration is easy
Stop fighting with headless browsers. Get the cookie you need in a single API call and attach it to your rigid HTTP client.
const response = await fetch('/v1/tasks/submit', {
method: 'POST',
body: JSON.stringify({
service: 'aws',
url: 'https://example.com'
})
});
// Returns valid aws-waf-token
method: 'POST',
body: JSON.stringify({
service: 'aws',
url: 'https://example.com'
})
});
// Returns valid aws-waf-token