Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
allsmog
Profil créateur GitHub

allsmog

Vue par dépôt de 128 skills collectés dans 9 dépôts GitHub.

skills collectés
128
dépôts
9
mis à jour
2026-07-01
carte des dépôts

Où se trouvent les skills

Principaux dépôts par nombre de skills collectés, avec leur part dans ce catalogue créateur et leur couverture métier.

Les 8 principaux dépôts sont affichés ici ; la liste complète continue ci-dessous.
explorateur de dépôts

Dépôts et skills représentatifs

deep-hunt
Analystes en sécurité de l'information

Interprocedural, hypothesis-driven hunt — finds the multi-file source→sink bugs that pattern-gating and same-file taint miss. Ranks trace anchors (entry points + dangerous sinks), then the deep-hunter agent walks each flow ACROSS files (forward/backward call-graph CLIs) over multiple rounds, confirming propagation and defeating guards, and promotes confirmed cross-file flows into findings.json with the path stored as evidenceGraph. Token-expensive, budget-bounded. Part of the HUNT phase (run via /sweep --deep, or ask for it); leads flow to /verify (panel).

2026-06-11
deep-scan
Analystes en sécurité de l'information

Whole-file deep reader — finds bugs by READING risk-ranked files in full and reasoning from first principles, not by grepping for known patterns. Catches the long tail (project-specific wrappers, business logic, cross-function flaws) that pattern-gated producers structurally miss. Token-expensive; budget-bounded and risk-ranked. Promotes leads into .kuzushi/findings.json (source "deep-scan").

2026-06-11
taint-analysis
Analystes en sécurité de l'information

IRIS-style source→sink taint hunt. Ranks a typed CWE catalog for the repo, then drives subagents to label dangerous sinks, label sources of user input, run Joern/CodeQL dataflow queries (or same-file linking) to connect them, and triage each flow as finding/candidate/rejected. Promotes verdicts into .kuzushi/findings.json. Benefits from a prebuilt CodeQL DB / Joern CPG but degrades gracefully.

2026-06-11
threat-hunt
Analystes en sécurité de l'information

Adversarial per-threat review (Carlini doctrine). For each threat in .kuzushi/threat-model.json, state attacker capabilities, walk source→sink, attempt to bypass every guard, and assign a verdict with evidence. Promotes findings into .kuzushi/findings.json. Requires /threat-model first.

2026-06-11
partition
Analystes en sécurité de l'information

Split the attack surface into parallel-discovery partitions so fan-out hunters explore different subsystems instead of converging on the same shallow bug. Deterministic grouping of /x-ray entry points by component → .kuzushi/partitions.json, which a hunt coordinator hands to one subagent per partition. Run /x-ray first.

2026-06-10
poc
Analystes en sécurité de l'information

Empirical proof-of-concept for the PoC-ready findings. For each finding /verify marked confirmed-exploitable or inconclusive, synthesize a minimal harness that triggers the bug; a host script then runs it in a sandbox (Docker --network none when present, else a gated local run) and classifies the crash into a proof verdict. Attaches a poc block onto each finding. Requires /verify first.

2026-06-10
benchmark
Analystes en sécurité de l'information

Measure recall / precision / false-proof rate of the pipeline against a ground-truth manifest. Scores either the bundled planted-vulnerability corpus (regression) or a live run's findings.json against a manifest you supply. Deterministic — no agent, no network. Use to prove a change to the producers helps rather than hurts.

2026-06-10
logic-hunt
Analystes en sécurité de l'information

Adversarial business-logic and invariant-violation hunt. For each intended-behavior invariant (from /deep-context) and logic-bug code shape, the logic-hunter agent tries to construct an operation sequence that violates the property — broken atomicity, out-of-order state transitions, authorization-by-omission, replay, business-rule abuse — then assigns a verdict from a closed set with file:line evidence. Promotes violations into findings.json. Strongest after /deep-context.

2026-06-10
Affichage des 8 principaux skills collectés sur 45 dans ce dépôt.
mobile-android-whitebox-audit
Analystes en sécurité de l'information

Use this skill when the user is auditing a decompiled Android application — directory structure includes `jadx_out/` / `apktool_out/`, files end in `.smali` / are jadx-renamed to `defpackage/*.java`, or the conversation mentions an APK / xAPK / `com.example.*` package. Covers the high-signal vulnerability classes vuln-scout detects in decompiled APKs and the conventions for running the unified mobile-audit workflow.

2026-05-21
mobile-ios-whitebox-audit
Analystes en sécurité de l'information

Use this skill when the user is auditing an iOS application — directory contains `.ipa`, `Info.plist`, `*.swift`, `*.m`, `*.mm`, or an `xcodeproj`. Also activates when the conversation mentions WKWebView, NSURLSession, Keychain, App Transport Security, or any `com.apple.*` / `bundleidentifier`-style iOS package name.

2026-05-21
mobile-payment-tokenization-patterns
Analystes en sécurité de l'information

Use this skill when reviewing mobile code that handles card data, payment tokenization, or third-party payment SDK integrations (Braintree, Stripe, Adyen, Google Pay, Apple Pay, FirstData-style iframe encryptors). The skill catalogues the high-signal attack patterns vuln-scout detects in mobile payment flows — server-controlled tokenization URLs, JavaScript-injection-into-WebView card-data exfiltration, JS-bridge token construction, and payment scope mismatches — and maps each to the detector that fires.

2026-05-21
business-logic-analysis
Analystes en sécurité de l'information

This skill should be used when the user asks about "business logic", "workflow vulnerability", "trust boundary", "state machine", "authorization bypass", "multi-step process", "workflow bypass", "application logic flaw", or needs to identify business logic vulnerabilities during whitebox security review.

2026-05-21
cache-poisoning
Analystes en sécurité de l'information

This skill should be used when the user asks about "cache poisoning", "web cache deception", "CDN cache", "proxy cache", "nginx cache", "varnish", "cache key manipulation", "response caching", or needs to find cache-related vulnerabilities during whitebox security review.

2026-05-21
cloud-native-security
Analystes en sécurité de l'information

This skill should be used when the user asks about "cloud security", "AWS security", "GCP security", "Azure security", "Kubernetes security", "IMDS", "instance metadata", "S3 bucket policy", "IAM", "serverless security", "Lambda security", "container security", "cloud misconfiguration", "SSRF to cloud metadata", or needs to identify cloud-native security issues during whitebox security review.

2026-05-21
cryptographic-failures
Analystes en sécurité de l'information

This skill should be used when the user asks about "cryptographic failures", "weak encryption", "hardcoded secrets", "insecure random", "MD5", "SHA1", "weak hashing", or needs to find crypto-related vulnerabilities during whitebox security review.

2026-05-21
dangerous-functions
Analystes en sécurité de l'information

This skill should be used when the user asks about "dangerous functions", "security sinks", "what functions are dangerous in PHP/Java/Python", "find vulnerable functions", "code execution functions", "command injection sinks", "SQL injection functions", or needs to identify security-sensitive functions in source code during whitebox security review.

2026-05-21
Affichage des 8 principaux skills collectés sur 35 dans ce dépôt.
active-directory-attacks
Analystes en sécurité de l'information

This skill should be used when the user asks about "Active Directory", "Kerberoasting", "AS-REP roasting", "LDAP enumeration", "BloodHound", "DCSync", "Pass-the-Hash", "Golden Ticket", or needs guidance on attacking Windows domain environments.

2026-02-23
cacti-exploitation
Analystes en sécurité de l'information

This skill covers Cacti network monitoring tool exploitation including authenticated RCE via graph templates (CVE-2025-24367), unauthenticated command injection (CVE-2022-46169), and authentication bypass techniques.

2026-02-23
common-exploits
Analystes en sécurité de l'information

This skill should be used when the user asks about "searchsploit", "CVE exploits", "exploit database", "common vulnerabilities", "reverse shells", "webshells", or needs guidance on exploiting common vulnerabilities and services.

2026-02-23
container-escapes
Analystes en sécurité de l'information

This skill covers container escape techniques for Docker, LXC/LXD, and Kubernetes environments. Includes Docker socket escape, Docker Desktop API escape (192.168.65.7:2375), privileged container breakout, and capability-based escapes.

2026-02-23
credential-attacks
Analystes en sécurité de l'information

This skill should be used when the user asks about "password cracking", "brute force", "hydra", "hashcat", "john", "credential stuffing", "password spraying", or needs guidance on credential-based attacks.

2026-02-23
ctf-writeup-lookup
Analystes en sécurité de l'information

This skill should be used when stuck on a CTF challenge or when the user asks to look up a writeup. Use EARLY when brute forcing or guessing seems like the only option - writeups often reveal the intended path. Trigger on: "look up writeup", "how do others solve", "stuck", "what's the intended path", machine names like "Soulmate", "Headless".

2026-02-23
database-credential-extraction
Analystes en sécurité de l'information

This skill should be used when the user asks about "dump database", "extract credentials", "sqlite", "mysql credentials", "database passwords", or needs to extract user data from common database systems.

2026-02-23
erlangotp-exploitation
Analystes en sécurité de l'information

This skill should be used when Erlang/OTP services are detected: - Port 4369 (EPMD - Erlang Port Mapper Daemon) - Erlang SSH (usually port 2222) - RabbitMQ, CouchDB, or other Erlang-based services Covers CVE-2025-32433 pre-auth RCE and other Erlang attack vectors.

2026-02-23
Affichage des 8 principaux skills collectés sur 17 dans ce dépôt.
archive-and-preserve
Autres scientifiques en sciences physiques

Preserve web, social, image, video, and document evidence in an OSINT investigation. Use when URLs, posts, pages, media, or search results need archiving, hashing, screenshots, Wayback/archive.today/Hunchly/Auto Archiver handling, or an audit trail.

2026-07-01
contradiction-review
Autres scientifiques en sciences physiques

Review conflicting OSINT claims, separate evidence from inference, identify source circularity, compare support and contradiction rows, and produce confidence judgments with caveats.

2026-07-01
geolocation
Autres scientifiques en sciences physiques

Geolocate or assess geolocation readiness for images, videos, facilities, routes, conflict footage, proof-of-life scenes, transport sightings, or environmental observations using maps, OSM, Search Grid, satellite imagery, shadows, and visual clues.

2026-07-01
osint-triage
Développeurs de logiciels

Start or continue a target-agnostic OSINT investigation by defining claims, source tiers, evidence requirements, archive needs, and collection priorities. Use when the user asks to investigate a person, organization, event, conflict, location, company, network, or disputed claim using open sources.

2026-07-01
proof-of-life
Développeurs de logiciels

Assess whether a person is alive, dead, hidden, incapacitated, or represented only by an office or intermediary. Use for proof-of-life investigations involving recent public appearances, dated audio/video, official statements, rumors, succession language, or biometric/visual evidence.

2026-07-01
sanctions-and-finance
Développeurs de logiciels

Map companies, sanctions records, beneficial ownership leads, aliases, financial nodes, procurement networks, politically exposed persons, crypto addresses, and linked entities in an OSINT investigation.

2026-07-01
social-media-tracing
Développeurs de logiciels

Trace social-media and messaging-platform rumors, first appearances, repost networks, account provenance, and source cascades. Use for Telegram, X, YouTube, TikTok, Instagram, Facebook, or other social claims in OSINT work.

2026-07-01
visual-verification
Développeurs de logiciels

Verify OSINT images or videos for recency, reuse, manipulation, source provenance, metadata, keyframes, and geolocation readiness. Use for alleged proof-of-life media, conflict footage, official meeting images, incident videos, or disputed screenshots.

2026-07-01
Affichage des 8 principaux skills collectés sur 9 dans ce dépôt.
pwn-dynamic-analysis
Analystes en sécurité de l'information

This skill should be used when the user asks to "debug binary", "find offset", "calculate padding", "use gdb", "attach debugger", "crash analysis", "cyclic pattern", "test exploit", "bad characters", "find bad chars", or needs to perform runtime analysis of a binary. Provides methodology for dynamic debugging with GDB/pwndbg including bad character detection.

2026-02-23
pwn-environment-setup
Analystes en sécurité de l'information

This skill should be used when the user asks to "setup pwn environment", "install pwntools", "check pwn tools", "verify exploitation tools", "create exploit workspace", "initialize pwn project", or needs to verify binary exploitation tool availability. Provides guidance for detecting, installing, and configuring pwn tools.

2026-02-23
pwn-exploit-development
Analystes en sécurité de l'information

This skill should be used when the user asks to "write exploit", "build payload", "create rop chain", "exploit binary", "pwn challenge", "get shell", "ret2libc", "bypass protection", or needs guidance on constructing exploitation payloads. Provides protection-aware exploitation techniques and payload construction.

2026-02-23
heap-exploitation
Analystes en sécurité de l'information

This skill should be used when the user asks to "exploit heap", "heap overflow", "tcache poison", "fastbin attack", "double free", "use after free", "UAF exploit", "house of force", "heap feng shui", "malloc exploit", "free hook", or needs guidance on heap-based memory corruption vulnerabilities. Provides comprehensive heap exploitation techniques for glibc.

2026-02-23
libc-identification
Analystes en sécurité de l'information

This skill should be used when the user asks to "identify libc", "find libc version", "libc database", "leak libc address", "determine libc", "fingerprint libc", or needs to identify the remote libc version from leaked addresses. Provides methodology for libc fingerprinting and offset calculation.

2026-02-23
pwn-reconnaissance
Analystes en sécurité de l'information

This skill should be used when the user asks to "analyze binary", "run checksec", "check binary protections", "identify architecture", "find strings in binary", "extract symbols", "recon binary", or needs initial binary analysis before exploitation. Provides methodology for the reconnaissance phase of binary exploitation.

2026-02-23
pwn-static-analysis
Analystes en sécurité de l'information

This skill should be used when the user asks to "disassemble binary", "analyze functions", "find vulnerability", "reverse engineer", "identify buffer size", "find dangerous functions", "analyze stack layout", or needs to perform static code analysis on a binary. Provides methodology for identifying vulnerabilities through disassembly.

2026-02-23
attack-tree-generation
Analystes en sécurité de l'information

This skill should be used when building attack trees, when the user mentions "attack tree", "attack path", "AND/OR tree", "threat tree", "multi-step attack", or needs to construct structured attack decompositions.

2026-03-24
dfd-generation
Développeurs de logiciels

This skill should be used when creating data flow diagrams, when the user mentions "DFD", "data flow diagram", "trust boundaries", "data flows", "Mermaid diagram", or needs to visualize how data moves through the system.

2026-03-24
mitre-attck-mapping
Analystes en sécurité de l'information

This skill should be used when mapping threats to MITRE ATT&CK techniques, when the user mentions "ATT&CK", "MITRE", "T-codes", "attack techniques", "tactics and techniques", "kill chain", or needs to reference the ATT&CK Enterprise framework for threat classification.

2026-03-24
pasta-methodology
Analystes en sécurité de l'information

This skill should be used when the user mentions "PASTA", "threat modeling methodology", "Process for Attack Simulation", "7-stage threat model", "OWASP threat modeling", or needs to understand the PASTA framework stages, outputs, and how they connect.

2026-03-24
stride-classification
Analystes en sécurité de l'information

This skill should be used when classifying threats using STRIDE methodology, when the user mentions "STRIDE", "spoofing threats", "tampering threats", "repudiation", "information disclosure", "denial of service", "elevation of privilege", or needs to categorize security threats by type.

2026-03-24
9 dépôts affichés sur 9
Tous les dépôts sont affichés