Perseus Api logo

Perseus Api

Community
kaivyy
perseus-api

Deep-dive API security analysis (REST, GraphQL, WebSocket, gRPC, OAuth, Cache)

Overview

Publisherkaivyy
Repositoryperseus
Skill nameperseus-api
Stars
68
Forks
14
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by kaivyy on GitHub. Read the source before you install it.

Installation

Install the Perseus Api AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/kaivyy/perseus.git /tmp/perseus
mkdir -p .claude/skills
cp -r /tmp/perseus/skills/perseus/specialists/api .claude/skills/perseus-api
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Perseus Api in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Perseus Api on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Perseus Api is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Perseus API Security Specialist

Context & Authorization

IMPORTANT: This skill performs deep API security analysis on the user's own codebase. This is defensive security testing to find API vulnerabilities before production deployment.

Authorization: The user owns this codebase and has explicitly requested this specialized analysis.


Multi-Language Support

LanguageFrameworks
JavaScript/TypeScriptExpress, Fastify, Nest.js, Next.js API, Hono, Bun
GoGin, Echo, Fiber, Chi, net/http
PHPLaravel, Symfony, Slim, Lumen
PythonFastAPI, Django REST, Flask, Starlette
RustActix-web, Axum, Rocket, Warp
JavaSpring Boot, Quarkus, Micronaut
RubyRails API, Sinatra, Grape
C#ASP.NET Core, Minimal APIs

Overview

This specialist skill performs comprehensive API security analysis covering OWASP API Security Top 10 plus advanced attack vectors.

When to Use: After /scan identifies API endpoints (REST, GraphQL, WebSocket, gRPC).

Goal: Deep-dive into API-specific vulnerabilities that generic scans might miss.

Engagement Mode Compatibility

ModeSpecialist Behavior
PRODUCTION_SAFEStatic/code-path validation and minimal non-disruptive checks only
STAGING_ACTIVEActive endpoint verification with strict throttling
LAB_FULLBroad dynamic API verification in isolated lab
LAB_RED_TEAMControlled attack-chain simulation on synthetic/test data only

Safety Gates (Required)

  1. Read deliverables/engagement_profile.md before running active checks.
  2. If mode is missing, default to PRODUCTION_SAFE.
  3. Abort and mark ABORTED-SAFETY if kill-switch thresholds are exceeded.
  4. Never run destructive actions or unbounded API fuzzing.

OWASP API Security Top 10 Coverage

IDVulnerabilityDescription
API1Broken Object Level AuthorizationIDOR, accessing other users' resources
API2Broken AuthenticationWeak auth, token issues
API3Broken Object Property Level AuthorizationMass assignment, excessive data exposure
API4Unrestricted Resource ConsumptionMissing rate limits, DoS vectors
API5Broken Function Level AuthorizationAdmin functions accessible to users
API6Unrestricted Access to Sensitive Business FlowsAutomation abuse, scraping
API7Server Side Request ForgerySSRF via API parameters
API8Security MisconfigurationCORS, headers, debug mode
API9Improper Inventory ManagementShadow APIs, deprecated endpoints
API10Unsafe Consumption of APIsThird-party API trust issues

Extended Coverage

CategoryVulnerabilities
GraphQLIntrospection, batching, depth attacks, alias DoS, field suggestions
WebSocketOrigin bypass, message injection, auth on upgrade, CSWSH
OAuth/OIDCToken leakage, PKCE bypass, redirect URI manipulation, state fixation
CacheCache poisoning, cache deception, key injection, web cache DoS
gRPCReflection enabled, missing auth, message size limits

Execution Instructions

Step 0: Mode & Scope Alignment

  • Load engagement mode, scope, and request limits from deliverables/engagement_profile.md.
  • Respect deliverables/verification_scope.md if present.
  • In PRODUCTION_SAFE, keep checks passive-first and low-rate.

Phase 1: REST API Analysis (4 Parallel Agents)

  1. BOLA/IDOR Analyst:

    • "Analyze all endpoints with resource IDs. Check if ownership is verified before access."

    Language-Specific Patterns:

    javascript
    // Node.js/Express - VULNERABLE
    app.get('/orders/:id', async (req, res) => {
      const order = await Order.findById(req.params.id); // No owner check
    });
    go
    // Go/Gin - VULNERABLE
    func GetOrder(c *gin.Context) {
      id := c.Param("id")
      order, _ := db.FindOrder(id) // No owner check
    }
    php
    // PHP/Laravel - VULNERABLE
    public function show($id) {
      return Order::find($id); // No owner check
    }
    python
    # Python/FastAPI - VULNERABLE
    @app.get("/orders/{order_id}")
    async def get_order(order_id: int):
        return await Order.get(order_id)  # No owner check
    rust
    // Rust/Actix - VULNERABLE
    async fn get_order(path: web::Path<i32>) -> impl Responder {
        Order::find(path.into_inner())  // No owner check
    }
  2. Mass Assignment Analyst:

    • "Find endpoints that accept JSON/form data and map to models. Check for unprotected fields."

    Language-Specific Patterns:

    javascript
    // Node.js - VULNERABLE
    User.findByIdAndUpdate(id, req.body); // All fields accepted
    go
    // Go - VULNERABLE
    c.ShouldBindJSON(&user) // Binds all fields including Role
    php
    // PHP/Laravel - VULNERABLE (without $fillable)
    $user->update($request->all());
    python
    # Python/Django - VULNERABLE
    serializer = UserSerializer(user, data=request.data)
    rust
    // Rust/Serde - VULNERABLE
    let user: User = serde_json::from_str(&body)?; // All fields
  3. Rate Limiting Analyst:

    • "Check all endpoints for rate limiting. Prioritize: login, password reset, OTP, expensive operations."

    Framework Rate Limiters to Check:

    • Express: express-rate-limit
    • Fastify: @fastify/rate-limit
    • Go: golang.org/x/time/rate, ulule/limiter
    • PHP: Laravel ThrottleRequests
    • Python: slowapi, Django django-ratelimit
    • Rust: actix-limitation, tower::limit
  4. Response Data Analyst:

    • "Check API responses for excessive data exposure. Flag: password hashes, internal IDs, PII leakage, debug info."

Phase 2: GraphQL Analysis (4 Parallel Agents)

If GraphQL detected:

  1. Introspection Analyst:

    • "Check if introspection is enabled in production. Document all queries, mutations, subscriptions."

    Disable Introspection:

    javascript
    // Apollo Server
    new ApolloServer({ introspection: false });
    go
    // gqlgen
    srv.AroundOperations(func(ctx context.Context, next graphql.OperationHandler) graphql.ResponseHandler {
      if graphql.GetOperationContext(ctx).Operation.Operation == "introspection" { return nil }
    })
    python
    # Strawberry
    schema = strawberry.Schema(query=Query, subscription=Subscription, config=StrawberryConfig(auto_camel_case=True))
  2. Query Complexity Analyst:

    • "Check for query depth limits, complexity limits, batch restrictions. Test for nested query attacks."

    DoS Patterns:

    graphql
    # Depth attack
    { user { friends { friends { friends { friends { name } } } } } }
    
    # Alias attack
    { a1: user(id:1) { name } a2: user(id:2) { name } ... a1000: user(id:1000) { name } }
    
    # Batching attack
    [{ "query": "{ user(id:1) { name } }" }, { "query": "{ user(id:2) { name } }" }, ...]
  3. Resolver Authorization Analyst:

    • "Analyze resolver-level authorization. Check if each resolver verifies permissions."
  4. Field Suggestion Analyst:

    • "Check if field suggestions are enabled - can leak schema info even without introspection."
  5. Subscription Security Analyst:

    • "Analyze GraphQL subscriptions for security issues."

    Subscription Vulnerabilities:

    graphql
    # Subscription without auth check
    subscription {
      orderUpdated { id status userId }  # Can subscribe to any user's orders?
    }
    
    # Subscription flooding
    subscription { messageAdded { content } }  # No rate limiting?

    Patterns to Check:

    javascript
    // Apollo Server - VULNERABLE
    const resolvers = {
      Subscription: {
        orderUpdated: {
          subscribe: () => pubsub.asyncIterator(['ORDER_UPDATED'])
          // No auth check - anyone can subscribe
        }
      }
    };
    
    // Apollo Server - SAFE
    const resolvers = {
      Subscription: {
        orderUpdated: {
          subscribe: withFilter(
            () => pubsub.asyncIterator(['ORDER_UPDATED']),
            (payload, variables, context) => {
              // Verify user owns the resource
              return payload.orderUpdated.userId === context.user.id;
            }
          )
        }
      }
    };
    python
    # Strawberry - Check subscription auth
    @strawberry.type
    class Subscription:
        @strawberry.subscription
        async def order_updated(self, info: Info) -> AsyncGenerator[Order, None]:
            # Is info.context.user checked?
  6. Persisted Queries Analyst:

    • "Check if persisted queries can be bypassed."

    Bypass Patterns:

    json
    // Attempt to send raw query when only persisted should be allowed
    { "query": "{ __schema { types { name } } }" }
    
    // Try extensions field
    { "extensions": { "persistedQuery": { "sha256Hash": "..." } }, "query": "{ malicious }" }

Phase 3: WebSocket Analysis (3 Parallel Agents)

If WebSocket detected:

  1. WebSocket Auth Analyst:

    • "Check authentication on WebSocket upgrade. Verify token validation on each message."

    Patterns to Check:

    javascript
    // Node.js/ws - Check upgrade auth
    wss.on('connection', (ws, req) => {
      // Is token validated here?
    });
    go
    // Go/Gorilla - Check upgrade auth
    func wsHandler(w http.ResponseWriter, r *http.Request) {
      conn, _ := upgrader.Upgrade(w, r, nil) // Auth check?
    }
  2. WebSocket Origin Analyst:

    • "Check Cross-Site WebSocket Hijacking (CSWSH). Verify Origin header validation."

    Vulnerable Pattern:

    javascript
    // VULNERABLE - No origin check
    const wss = new WebSocket.Server({ server });
    
    // SAFE - Origin validated
    wss.on('headers', (headers, req) => {
      if (!allowedOrigins.includes(req.headers.origin)) {
        throw new Error('Invalid origin');
      }
    });
  3. WebSocket Message Analyst:

    • "Analyze message handlers for injection. Check if messages are validated before processing."

Phase 4: OAuth/OIDC Analysis (3 Parallel Agents)

If OAuth detected:

  1. OAuth Flow Analyst:

    • "Check OAuth implementation for security issues."

    Issues to Find:

    • Missing state parameter (CSRF)
    • Missing PKCE for public clients
    • Token in URL fragment/query
    • Redirect URI not validated strictly
  2. Token Security Analyst:

    • "Check token storage and transmission. Flag: tokens in localStorage, tokens in URLs, no token rotation."
  3. Redirect URI Analyst:

    • "Check redirect_uri validation. Test for: open redirect, subdomain takeover, path traversal."

    Bypass Techniques:

    https://evil.com#@legitimate.com
    https://legitimate.com.evil.com
    https://legitimate.com%2F@evil.com
    https://legitimate.com/callback/../../../evil

Phase 5: Cache Security Analysis (2 Parallel Agents)

  1. Cache Poisoning Analyst:

    • "Check for web cache poisoning vulnerabilities."

    Patterns:

    • Unkeyed headers reflected in response
    • Host header injection
    • X-Forwarded-Host not validated
    • Cache key vs cache content mismatch
  2. Cache Deception Analyst:

    • "Check for web cache deception attacks."

    Vulnerable Pattern:

    GET /api/account/settings.css HTTP/1.1
    # If cached, attacker can retrieve victim's data

    Check:

    • Static extension on dynamic endpoints
    • Missing Cache-Control headers
    • CDN caching rules

Phase 6: HTTP Request Smuggling Analysis (3 Parallel Agents)

  1. CL.TE Smuggling Analyst:

    • "Check for Content-Length vs Transfer-Encoding conflicts."

    Attack Pattern:

    http
    POST / HTTP/1.1
    Host: vulnerable.com
    Content-Length: 13
    Transfer-Encoding: chunked
    
    0
    
    SMUGGLED

    Framework Considerations:

    • Node.js: Check for http-proxy, express-http-proxy
    • Go: Check reverse proxy configurations
    • Python: Check gunicorn, uvicorn behind nginx
    • Java: Check Tomcat, Jetty behind load balancer
  2. TE.CL Smuggling Analyst:

    • "Check for Transfer-Encoding prioritization issues."

    Attack Pattern:

    http
    POST / HTTP/1.1
    Host: vulnerable.com
    Content-Length: 3
    Transfer-Encoding: chunked
    
    8
    SMUGGLED
    0
    
  3. HTTP/2 Downgrade Analyst:

    • "Check for HTTP/2 to HTTP/1.1 downgrade vulnerabilities."

    Issues:

    • H2C smuggling (HTTP/2 cleartext)
    • CRLF injection in HTTP/2 pseudo-headers
    • Request splitting via HTTP/2 header manipulation

    Patterns to Check:

    javascript
    // Check for reverse proxy configurations
    // nginx, HAProxy, AWS ALB, Cloudflare
    
    // Vulnerable: Different interpretation between frontend/backend
    // Frontend: HTTP/2 → Backend: HTTP/1.1

Phase 7: API Configuration (3 Parallel Agents)

  1. CORS Analyst:

    • "Check CORS configuration across all frameworks."

    Framework-Specific:

    javascript
    // Express - VULNERABLE
    app.use(cors({ origin: true, credentials: true }));
    go
    // Go - VULNERABLE
    c.Writer.Header().Set("Access-Control-Allow-Origin", r.Header.Get("Origin"))
    php
    // Laravel - VULNERABLE
    'allowed_origins' => ['*'],
    'supports_credentials' => true,
    python
    # FastAPI - VULNERABLE
    app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_credentials=True)
  2. API Versioning Analyst:

    • "Identify all API versions. Check if deprecated versions are still accessible."
  3. gRPC Security Analyst:

    • "If gRPC used: check reflection, auth interceptors, message size limits."

Output Requirements

Create deliverables/api_security_analysis.md:

markdown
# API Security Analysis

## Summary
| Category | Endpoints | Critical | High | Medium |
|----------|-----------|----------|------|--------|
| REST | X | Y | Z | W |
| GraphQL | X | Y | Z | W |
| WebSocket | X | Y | Z | W |
| OAuth | X | Y | Z | W |
| gRPC | X | Y | Z | W |

## Language/Framework Detected
- Primary: [e.g., Node.js/Express, Go/Gin, PHP/Laravel]
- API Types: REST, GraphQL, WebSocket

## Critical Findings

### [API-001] BOLA in Order Retrieval
**Severity:** Critical
**Endpoint:** `GET /api/orders/{orderId}`
**Framework:** Express.js
**Location:** `controllers/order.js:45`

**Vulnerable Code:**
[Language-specific vulnerable code]

**Remediation:**
[Language-specific fix]

---

## GraphQL Security
| Check | Status | Risk |
|-------|--------|------|
| Introspection | ENABLED | High |
| Query Depth Limit | NONE | High |
| Complexity Limit | NONE | High |
| Batching Limit | NONE | Medium |

## WebSocket Security
| Endpoint | Origin Check | Auth on Upgrade | Message Validation |
|----------|--------------|-----------------|-------------------|
| /ws | None | None | None | CRITICAL |

## OAuth Security
| Issue | Status |
|-------|--------|
| State Parameter | Missing |
| PKCE | Not Implemented |
| Redirect URI Validation | Weak |

## Cache Security
| Issue | Vulnerable | Location |
|-------|------------|----------|
| Cache Poisoning | Yes | X-Forwarded-Host |
| Cache Deception | Yes | /api/* |

## Rate Limiting Status
| Endpoint | Limit | Status |
|----------|-------|--------|
| POST /login | None | VULNERABLE |
| POST /reset-password | None | VULNERABLE |

## CORS Configuration
| Origin | Credentials | Status |
|--------|-------------|--------|
| * | true | CRITICAL |

## Recommendations
1. Implement object-level authorization on all resource endpoints
2. Add rate limiting to authentication endpoints
3. Disable GraphQL introspection in production
4. Validate WebSocket Origin header
5. Implement PKCE for OAuth flows

Next Step: Findings feed into /exploit for verification or /report for documentation.

Frequently asked questions

What does the Perseus Api AI skill do?

Deep-dive API security analysis (REST, GraphQL, WebSocket, gRPC, OAuth, Cache)

Why use Perseus Api on TypingMind?

Because you install it once and use it with any model. Perseus Api is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Perseus Api in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/kaivyy/perseus/tree/main/skills/perseus/specialists/api. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Perseus Api?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Perseus Api?

As many as you like. As long as a model supports skills, you can use Perseus Api with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Perseus Api AI skill free?

Yes. It is published on GitHub by kaivyy under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇