xalgorix

60 mods across 1 repository, 942 stars between them.

xalgorix/xalgorix

Skill Claude CodeCodex

Uses Postman to perform structured API security testing by building collections that test for OWASP API Security Top 10 vulnerabilities including authentication bypass, authorization flaws, injection, and data exposure. The tester creates environments with multiple user roles, writes test scripts for automated…

942 2d ago A 106 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Execute and test GraphQL depth limit attacks using deeply nested recursive queries to identify denial-of-service vulnerabilities in GraphQL APIs.

942 2d ago A 33 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Performs GraphQL introspection attacks to extract the full API schema including types, queries, mutations, subscriptions, and field definitions from GraphQL endpoints. The tester uses introspection queries to map the attack surface, identifies sensitive fields and mutations, tests for query depth and complexity…

942 2d ago A 111 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Execute and test the JWT none algorithm attack to bypass signature verification by manipulating the alg header field in JSON Web Tokens.

942 2d ago A 34 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Tests API authentication mechanisms for weaknesses including broken token validation, missing authentication on endpoints, weak password policies, credential stuffing susceptibility, token leakage in URLs or logs, and session management flaws. The tester evaluates JWT implementation, API key handling, OAuth flows, and…

942 2d ago A 102 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Tests REST and GraphQL APIs for Broken Object Level Authorization (BOLA/IDOR) vulnerabilities where an authenticated user can access or modify resources belonging to other users by manipulating object identifiers in API requests. The tester intercepts API calls, identifies object ID parameters (numeric IDs, UUIDs…

942 2d ago C 133 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Tests APIs for mass assignment (auto-binding) vulnerabilities where clients can modify object properties they should not have access to by including additional parameters in API requests. The tester identifies writable endpoints, adds undocumented fields to request bodies (role, isAdmin, price, balance), and checks if…

942 2d ago A 114 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Tests OAuth 2.0 and OpenID Connect implementations for security flaws including authorization code interception, redirect URI manipulation, CSRF in OAuth flows, token leakage, scope escalation, and PKCE bypass. The tester evaluates the authorization server, client application, and token handling for common…

942 2d ago A 100 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Tests WebSocket API implementations for security vulnerabilities including missing authentication on WebSocket upgrade, Cross-Site WebSocket Hijacking (CSWSH), injection attacks through WebSocket messages, insufficient input validation, denial-of-service via message flooding, and information leakage through WebSocket…

942 2d ago B 117 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Integrates Static Application Security Testing (SAST), Dynamic Application Security Testing (DAST), and Software Composition Analysis (SCA) into CI/CD pipelines using open-source tools. Covers Semgrep for SAST, Trivy for SCA and container scanning, OWASP ZAP for DAST, and Gitleaks for secrets detection. Activates for…

942 2d ago A 109 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Deploy Runtime Application Self-Protection (RASP) agents to detect and block attacks from within application runtime, covering OpenRASP integration, attack pattern detection, and security policy configuration for Java and Python web applications.

942 2d ago A 51 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Perform coverage-guided fuzzing of compiled binaries using AFL++ (American Fuzzy Lop Plus Plus) to discover memory corruption, crashes, and security vulnerabilities. The tester instruments target binaries with afl-cc/afl-clang-fast, manages input corpora with afl-cmin and afl-tmin, runs parallel fuzzing campaigns with…

942 2d ago A 116 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Simulate and detect software supply chain attacks including typosquatting detection via Levenshtein distance, dependency confusion testing against private registries, package hash verification with pip, and known vulnerability scanning with pip-audit.

942 2d ago A 54 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for identifying and defeating common binary hardening mitigations during authorized exploitation — ASLR, PIE, stack canaries, NX/DEP, and RELRO — by leaking addresses, brute-forcing entropy, abusing forked-process behavior, and selecting the right code-reuse primitive for the protections in place.

942 2d ago A 73 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for converting an arbitrary-write (write-what-where) or write-anything-anywhere primitive into code execution during authorized engagements, covering target selection among GOT/PLT entries, .finiarray/.dtors, mallochook/freehook, the atexit/exitfuncs handler list, and printfarginfotable, plus how…

942 2d ago A 108 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for exploiting format string bugs where attacker-controlled data reaches the format argument of printf-family functions, enabling stack/memory disclosure (info leaks for ASLR/PIE/canary defeat) and arbitrary write primitives (%n) to hijack control flow via GOT/.finiarray overwrites.

942 2d ago A 69 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for exploiting glibc ptmalloc2 heap vulnerabilities during authorized engagements — use-after-free, double-free, heap overflow, and bin-based attacks (tcache poisoning, fast-bin dup, unsorted/large-bin) — including modern mitigations (tcache key, safe-linking, hook removal) and how to obtain leaks and…

942 2d ago A 84 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for finding and exploiting integer overflow, underflow, truncation, and signedness bugs in native code during authorized engagements, focusing on how wrapped arithmetic in size/length calculations leads to undersized allocations, oversized copies, length-check bypasses, and downstream heap/stack overflows.

942 2d ago A 69 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for discovering and exploiting Linux kernel memory-corruption vulnerabilities (UAF, OOB read/write, race/TOCTOU, type confusion) during authorized engagements, covering reachability analysis, building stable read/write primitives from a single bug, defeating KASLR/SMEP/SMAP/KPTI, slab/buddy heap grooming…

942 2d ago A 96 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for discovering and exploiting stack-based buffer overflows in native binaries during authorized engagements, covering crash triage, offset discovery with De Bruijn patterns, control of the saved return address, and escalation paths (ret2win, stack shellcode, ROP) depending on which mitigations are present.

942 2d ago A 69 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for building Return-Oriented Programming (ROP) chains to bypass NX/DEP by reusing existing code gadgets, covering gadget discovery, calling-convention argument setup, ret2libc, ret2syscall (execve), onegadget, stack alignment, JOP, and stack pivoting across x86/x64/ARM64 during authorized engagements.

942 2d ago A 80 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Methodology for exploiting classic 32-bit Windows stack buffer overflows in network services during authorized engagements (OSCP-level), covering crash reproduction, EIP offset discovery with patterncreate/patternoffset, shellcode space and bad-character enumeration, locating a reliable JMP ESP return address with…

942 2d ago A 82 tokens original Apache-2.0

xalgorix/xalgorix

Skill Claude CodeCodex

Perform static and symbolic analysis of Solidity smart contracts using Slither and Mythril to detect reentrancy, integer overflow, access control, and other vulnerability classes before deployment to Ethereum mainnet.

942 2d ago A 49 tokens original Apache-2.0