AETHER_SOLVER // zSnow
SYS.STATUS: ONLINE

API_GATEWAY

> Automated bypass engine — Cloudflare, Azure WAF, AWS WAF protocols initialized.

[ AUTHENTICATION REQUIRED ]

All solver and encryption endpoints require a valid API Key. Pass it via:

Header: X-API-Key: sk_live_...
Bearer: Authorization: Bearer sk_live_...
Query: ?api_key=sk_live_...

[ MOD_TURNSTILE ]

POST /turnstile

Parameters required for standard execution (JSON Body or Query):

url Target validation URL sitekey Turnstile public key proxy [OPTIONAL] Per-request proxy string
# cURL Example:
curl -X POST https://solvers.zsnow.dev/turnstile \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://target.com", "sitekey": "0x4AAAAAA..."}'

[ MOD_IUAM ]

POST /cf_clearance

Cookie harvesting protocol (CF Clearance):

url Protected page URL timeout [OPTIONAL] Max wait time in seconds (def: 60) proxy [OPTIONAL] Per-request proxy string
# cURL Example:
curl -X POST https://solvers.zsnow.dev/cf_clearance \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://target.com", "timeout": 30}'

[ MOD_AZURE_WAF ]

POST /waf/azure

Application Gateway traversal:

url Protected page URL proxy [OPTIONAL] Per-request proxy string
# cURL Example:
curl -X POST https://solvers.zsnow.dev/waf/azure \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://target.com"}'

[ MOD_AWS_WAF ]

POST /waf/aws

AWS WAF token extraction — resolves SHA-256, scrypt & bandwidth challenges:

url Protected page URL proxy [OPTIONAL] Per-request proxy string timeout [OPTIONAL] Max wait in seconds (def: 60)
# cURL Example:
curl -X POST https://solvers.zsnow.dev/waf/aws \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://target.com"}'
Returns: aws-waf-token — set as cookie in subsequent requests to the protected origin.

[ MOD_CHARGIFY_ENC ]

POST /encrypts/chargify

Chargify h_token integrity hash — send your billing payload, receive the computed hash:

full_number Card number expiration_month Expiry month expiration_year Expiry year cvv CVV first_name [OPTIONAL] Cardholder first name ...billing fields [OPTIONAL] Any extra billing fields are included in hash
# cURL Example:
curl -X POST https://solvers.zsnow.dev/encrypts/chargify \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"full_number":"4111111111111111", "expiration_month":"12", "expiration_year":"2028", "cvv":"123"}'
Returns: h_token — pass as the "h" field in your POST to Chargify's tokens.json.
AETHER_OS_INTEGRATION END_OF_TRANSMISSION