coding-mastery

仓库创建 2026年5月19日最近提交 26 天前SkillHot 收录 22 天前
▸ 精选理由

兼顾 Python/C/Go/Rust 等语言,适合开发渗透工具与 PoC 的工程实作参考。

▸ 风险提示

包含利用代码范例与 C2 实现思路,可能被用于制作恶意工具。

这个 Skill 做什么

面向安全工具、利用链与 C2 的多语言编码与实现技巧集合。

帮你写渗透测试和攻防工具的代码,包含 exploit、PoC、扫描器或定制 C2,适合做网络协议、系统编程或性能敏感的模块。常在做渗透流程自动化、实现加密算法或写低级汇编/系统交互时用到。覆盖 Python/C/Go/Rust/ASM,多语言示例与实战技巧并侧重可靠性、性能和可利用性。

▸ 展开 SKILL.md 英文原文

Use when writing security tooling, exploits, scanners, or C2 in Python/C/Go/Rust/ASM — systems & network programming, automation, cryptography implementation

开发编程代码实现漏洞利用自动化工具通用
328
Stars
58
Forks
37
仓库内 Skill
+17
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/hypnguyen1209/offensive-claude/main/skills/coding-mastery/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/hypnguyen1209/offensive-claude/main/skills/coding-mastery/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Coding Mastery

## When to Activate

- Writing exploit code, PoCs, or security tools
- Developing automation scripts for pentesting workflows
- Implementing network protocols or custom C2
- Building security analysis tools
- Cryptographic implementation or analysis
- Performance-critical systems programming

## Languages & Use Cases

### Python (Primary — Offensive Tooling)
```python
# Exploit development with pwntools
from pwn import *
context(arch='amd64', os='linux')

# Network programming
import socket, ssl, struct
import asyncio, aiohttp  # async operations

# Web exploitation
import requests, urllib3
from bs4 import BeautifulSoup

# Crypto
from Crypto.Cipher import AES, DES
from Cryp
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有