AATMF T14 — Infrastructure & Economic Warfare. Endpoint DoS via expensive prompts, model-API account exhaustion, GPU resource starvation, billing weaponization.
64
77%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Critical
Do not install without reviewing
Fix and improve this skill with Tessl
tessl review fix ./packages/decepticon/decepticon/skills/plugins/llm-redteam/t14-infra-warfare/SKILL.mdAttacks aimed at degrading service availability, exhausting budget, or causing economic harm via abuse of the LLM endpoint. Adjacent to classical DoS but LLM-specific cost dynamics.
Defenders: per-account caps + alerts.
Multi-tenant LLM services share quotas at a provider level. Attacker exhausts the shared quota → all tenants degraded.
Targets: SaaS products that meter LLM access but share underlying API account.
Self-hosted inference. Long-context queries hog GPU:
Cost-amplification ratio: 1 user request → 100% GPU utilization.
Prompt engineering to maximize output cost:
Some APIs charge differently based on model variant. Trick the endpoint into using the expensive variant via parameter manipulation (T5.004 overlap).
Where LLM provider caches identical prompts (cost-reduction feature):
Open many streaming requests → never consume → endpoint holds connection slots open until timeout.
T14 is load-testing territory. Use k6, locust, hey:
# Spike test
hey -n 1000 -c 100 -m POST -H 'Authorization: Bearer X' \
-d '{"prompt":"'$(python3 -c 'print("a"*100000)')'"}' \
https://target/api/chatMonitor:
| Outcome | Severity |
|---|---|
| Multi-tenant outage via quota exhaust | Critical 9.0 |
| Single-org budget burn via abuse | High 7-8 |
| GPU starvation single-host | High 7-8 (recoverable) |
| Streaming-slot starvation | Medium 6-7 |
max_tokens strictly enforced (no unlimited)skills/exploit/web/...4484f85
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.