tool-usage

Installation
SKILL.md

Security Tool Reference

pwntools

Setup

from pwn import *

context.arch = 'amd64'       # or 'i386'
context.os = 'linux'
context.log_level = 'debug'  # Verbose output

Connections

# Local process
p = process('./target')
p = process('./target', env={'VAR': 'value'})
Installs
Repository
smithery/ai
First Seen
tool-usage — smithery/ai