Skip to main content
Manusで任意のスキルを実行
ワンクリックで
allsmog
GitHub クリエイタープロフィール

allsmog

9 件の GitHub リポジトリにある 128 件の収集済み skills をリポジトリ単位で表示します。

収集済み skills
128
リポジトリ
9
更新
2026-07-01
リポジトリマップ

skills がある場所

収集済み skill 数が多いリポジトリを、このクリエイターカタログ内の比率と職業範囲とともに表示します。

ここでは上位 8 件のリポジトリを表示しています。完全なリストは下に続きます。
リポジトリエクスプローラー

リポジトリと代表的な skills

deep-hunt
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
このリポジトリの収集済み skills 45 件中、上位 8 件を表示しています。
mobile-android-whitebox-audit
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
このリポジトリの収集済み skills 35 件中、上位 8 件を表示しています。
active-directory-attacks
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
このリポジトリの収集済み skills 17 件中、上位 8 件を表示しています。
archive-and-preserve
その他物理科学者

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
その他物理科学者

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
その他物理科学者

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
ソフトウェア開発者

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
ソフトウェア開発者

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
ソフトウェア開発者

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
ソフトウェア開発者

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
ソフトウェア開発者

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
このリポジトリの収集済み skills 9 件中、上位 8 件を表示しています。
pwn-dynamic-analysis
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
ソフトウェア開発者

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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
情報セキュリティアナリスト

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 件中 9 件のリポジトリを表示
すべてのリポジトリを表示しました