hack
Entry P0 primary router for HackSkills. Use when the task involves web application testing, API security assessment, recon, vulnerability triage, exploit path planning, or choosing the right next category skill before any deep topic skill.
What this skill does
# HACKING SKILLS / HackSkills ## Overview This is a top-level routing skill for **bug bounty, web security, API security, and authorized penetration testing**. Its core role is not to replace all specialized techniques, but to help the agent: 1. First determine the testing phase (Recon / Validation / Privilege Escalation / Chain building) 2. Then select the correct vulnerability category 3. Avoid relying only on baseline model memory; prefer structured methodology 4. Prioritize boundary conditions AI often misses but that matter in real engagements ## Trust Model - This knowledge base emphasizes content safety and auditability. - Use this only within **authorized targets**, **legitimate research**, **defensive validation**, and **bug-bounty-approved rules**. - Do not use these techniques for unauthorized attacks. ## When to Use This Skill Use this skill first in the following scenarios: - You just received a new bug bounty target and do not know where to start - You need to decide whether to load XSS / SQLi / SSRF / IDOR / JWT / API tracks first - You want the agent to perform Web/API security testing with a more stable methodology - You need to route scattered findings to the right attack surface - You want AI to miss fewer critical test points in security work ## Operating Model ### Step 1: Start with Recon and context validation Collect first: - Target type: classic web, REST API, mobile backend, admin panel, payment flow, file upload, GraphQL - Identity and permission model: anonymous, regular user, admin, multi-tenant - Input locations: URL, query parameters, JSON, headers, cookies, filenames, imported files, templates, reflection points - Output locations: HTML, attributes, JS, PDF, email, logs, background tasks, mobile endpoints ### Step 2: Route by observed behavior | Signal | Priority direction | |---|---| | Input reflects into HTML / JS | XSS / SSTI | | Server actively fetches URL / hostname | SSRF | | Accepts XML / Office / SVG | XXE | | Path, filename, or download endpoint is controllable | Path Traversal / LFI | | Many object IDs appear in APIs | IDOR / BOLA / BFLA | | Login, reset password, 2FA, sessions | Auth Bypass / JWT / OAuth | | Multi-step transactions, coupons, pricing, inventory | Business Logic | | MongoDB / JSON query syntax exposure | NoSQL Injection | | CLI tools, image processing, importers | Command Injection | | HTTP parsing anomalies / front-back framing mismatch | Request Smuggling | | Node.js JSON handling / controllable `__proto__` | Prototype Pollution | | PHP weak comparison / 0e hash / loose conditions | Type Juggling | | Repeated parameter names / WAF-app parsing mismatch | HTTP Parameter Pollution | | One-time operations (coupon/inventory/reset) | Race Condition | | XML/XSLT template processing | XSLT Injection | | Accessible .git/.svn/.env paths | Insecure SCM | | CSV/Excel export features | CSV Formula Injection | | WebSocket protocol upgrades | WebSocket Security | | Internal package names / supply-chain inventory | Dependency Confusion | ### Step 3: Use the most likely-hit testing order 1. Recon / Methodology 2. API Security / Auth / IDOR 3. XSS / SQLi / SSRF / SSTI / XXE 4. Business Logic / Race Condition 5. Chained exploits and privilege-escalation paths ## Core Skill Map If you have the full repository, prioritize using these topic documents together: - [Recon and Methodology](../recon-and-methodology/SKILL.md) - [XSS Cross Site Scripting](../xss-cross-site-scripting/SKILL.md) - [SQLi SQL Injection](../sqli-sql-injection/SKILL.md) - [SSRF Server Side Request Forgery](../ssrf-server-side-request-forgery/SKILL.md) - [XXE XML External Entity](../xxe-xml-external-entity/SKILL.md) - [SSTI Server Side Template Injection](../ssti-server-side-template-injection/SKILL.md) - [IDOR Broken Object Authorization](../idor-broken-object-authorization/SKILL.md) - [CMDi Command Injection](../cmdi-command-injection/SKILL.md) - [Path Traversal LFI](../path-traversal-lfi/SKILL.md) - [CSRF Cross Site Request Forgery](../csrf-cross-site-request-forgery/SKILL.md) - [API Security Router](../api-sec/SKILL.md) - [JWT OAuth Token Attacks](../jwt-oauth-token-attacks/SKILL.md) - [OAuth OIDC Misconfiguration](../oauth-oidc-misconfiguration/SKILL.md) - [CORS Cross Origin Misconfiguration](../cors-cross-origin-misconfiguration/SKILL.md) - [SAML SSO Assertion Attacks](../saml-sso-assertion-attacks/SKILL.md) - [Authentication Bypass](../authbypass-authentication-flaws/SKILL.md) - [Business Logic Vulnerabilities](../business-logic-vulnerabilities/SKILL.md) - [Upload Insecure Files](../upload-insecure-files/SKILL.md) - [NoSQL Injection](../nosql-injection/SKILL.md) - [Request Smuggling](../request-smuggling/SKILL.md) - [Prototype Pollution](../prototype-pollution/SKILL.md) - [Type Juggling (PHP)](../type-juggling/SKILL.md) - [HTTP Parameter Pollution](../http-parameter-pollution/SKILL.md) - [Race Condition](../race-condition/SKILL.md) - [XSLT Injection](../xslt-injection/SKILL.md) - [Insecure Source Code Management](../insecure-source-code-management/SKILL.md) - [CSV Formula Injection](../csv-formula-injection/SKILL.md) - [WebSocket Security](../websocket-security/SKILL.md) - [Dependency Confusion](../dependency-confusion/SKILL.md) - [Ghost Bits Cast Attack](../ghost-bits-cast-attack/SKILL.md) Previously separate mini skills such as payload-selection and brute-selection were merged back into their main skills to avoid router overload and selection noise. ## High-Value Expert Intuitions These are points many baseline models miss, but they are frequently effective in real bug bounty work: 1. **The same filtering logic is often reused across multiple pages**: if one point is bypassable, similar pages usually are too. 2. **Parameter names are an attack surface too**: WAFs often inspect values but not names. 3. **Second-order vulnerabilities are common**: safe at storage time does not mean safe when later read into a dangerous context. 4. **BOLA is fundamentally 'authenticated but unauthorized'**: replaying with account A/B switching is critical. 5. **Older API versions are most likely to miss patches**: fixing v2 does not mean v1 was retired. 6. **Business-logic vulnerabilities often bring highest impact**: scanners miss them and they persist longer. 7. **Race conditions should prioritize one-time actions**: coupon redemption, claims, resets, invites, trials, inventory deduction. 8. **For JWT attacks, check key and algorithm context first**: do not blindly spray payloads; verify `alg`, `kid`, JWKS, and key source first. ## Suggested Prompts Use this skill as a router to make the agent clarify phase and goal first: - "First, plan the testing route for this target using bug bounty methodology. - "This is a REST API; prioritize BOLA, BFLA, Mass Assignment, and JWT angles. - "This parameter triggers server-side requests; list key validation points from an SSRF perspective. - "This feature is a payment/coupon/inventory flow; prioritize business logic and race-condition analysis. - "I only see login and password-reset flows; analyze via Auth Bypass + OAuth/JWT + CSRF. ## Installation Notes Recommended skill name: - `hack` Recommended search keywords: - `HackSkills` - `HACKING SKILLS` - `bug bounty` - `bug bounty hunter` ## Guidelines - Prioritize routing by target type and observed behavior, not random payload enumeration. - When payloads are needed, prefer quick-start / first-pass samples in the corresponding main skill instead of adding another intermediate router. - Prioritize reusable filters, shared components, and cross-page reproduction paths. - Confirm authentication, authorization, and version boundaries before deeper exploitation. - Preserve explainable, auditable, reproducible testing processes. - When full repository context is available, return to topic documents for finer exploitation details.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.