Home / iammm0 / secbot · server/skills/base/command-execution/SKILL.md · GitHub

command-execution skillA

command-execution is agent-read markdown (skill) from iammm0/secbot: Security-focused command execution techniques for penetration testing. Use this skill when executing system commands during authorized security assessments. Covers Windows and Linux command execution, common security testing commands, and best practices for avoiding detection..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Command Execution in Security Testing

## Overview

This skill provides guidance on executing system commands effectively during penetration testing engagements.

## Windows Commands

### Network Discovery
```cmd
# Local IP configuration
ipconfig /all

# Network connections
netstat -ano

# Active connections
netstat -ano | findstr ESTABLISHED

# ARP table
arp -a

# DNS lookup
nslookup target.com
```

### Process Management
```cmd
# List processes
tasklist /v

# Find specific process
tasklist | findstr python

# Kill process
taskkill /F /PID <pid>
```

### File System
```cmd
# List directory
dir /a /s

# Find files
dir /s /b *.exe

# File attributes
attrib
```

### User & Group
```cmd
# User accounts
net user

# Current user
whoami /all

# Local groups
net localgroup

# User info
net user <username>
```

## Linux Commands

### Network Discovery
```bash
# Network interfaces
ip addr show

# Listening ports
netstat -tulpn

# Active connections
ss -tulwn

# ARP table
arp -a

# DNS resolution
dig target.com
```

### Process Management
```bash
# List processes
ps aux

# Find process
ps aux | grep python

# Kill process
kill -9 <pid>

# Process tree
pstree
```

### File System
```bash
…

Read the whole file at its exact version.

How to install

Latest version
mdr add iammm0/secbot/command-execution@v1.0.0
Exact content
mdr add iammm0/secbot/command-execution@sha256:fe0337e19c2ffa8c

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_e7wsmq5fnw6hnr5v.svg)](https://markdownregistry.com/a/art_e7wsmq5fnw6hnr5v)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
v1.0.0 latest2026-09-23 3f08243 3,441 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (3441 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

iammm0/secbot · 74 stars · license NOASSERTION · pushed 2026-09-23 · branch release

API

GET https://markdownregistry.com/api/v1/artifacts/art_e7wsmq5fnw6hnr5v
GET https://markdownregistry.com/api/v1/resolve?ref=iammm0/secbot/command-execution
GET https://markdownregistry.com/api/v1/blob/fe0337e19c2ffa8c81bd851a28e606a7c4d9e120ffb1aca6900b4f33b9150c08

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from iammm0/secbot

AGENTS.md agents
iammm0/secbot · AGENTS.md
git:20260923.9b9efc0 · audit A · 74 stars
CLAUDE.md claude
iammm0/secbot · CLAUDE.md
git:20260923.9b9efc0 · audit A · 74 stars
nmap-usage skill
iammm0/secbot · server/skills/base/nmap-usage/SKILL.md · Professional nmap scanning techniques and optimization for penetration testing. Use this skill when you need to perform…
v1.0.0 · audit A · 74 stars
system-commands skill
iammm0/secbot · server/skills/base/system-commands/SKILL.md · System-level commands for security assessment and system enumeration. Use this skill when performing local system…
v1.0.0 · audit A · 74 stars
system-control skill
iammm0/secbot · server/skills/base/system-control/SKILL.md · Comprehensive system control operations for security testing. Use this skill when you need unified access to file…
v1.0.0 · audit A · 74 stars
terminal-session skill
iammm0/secbot · server/skills/base/terminal-session/SKILL.md · Persistent terminal session management for security testing. Use this skill when you need an interactive shell session…
v1.0.0 · audit A · 74 stars
execgo-agent-bridge skill
iammm0/secbot · server/skills/custom/execgo-agent-bridge/SKILL.md · Route shell, runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit work through Secbot's…
v1.0.0 · audit B · 74 stars

Every file in iammm0/secbot

Other files named command-execution

command-execution skill
metraton/gaia · skills/command-execution/SKILL.md · Use when executing any bash command, CLI tool, or shell operation
git:20260923.a5cda93 · audit A · 3 stars

Browse by kind, by grade A, or by owner.