Hunting Web Backdoors
This is not a vulnerability audit. You are looking for code an attacker
already planted — a webshell, a one-line eval backdoor, a fake plugin, a
malicious line appended to a legitimate file. The weakness that let them in is
auditing-php-applications' job; this skill finds what they left behind.
Two things make it hard. The malicious code is deliberately hidden — obfuscated,
split, or buried in a tree of thousands of legitimate files — so a naive grep
misses it. And the tells (eval, base64_decode, dynamic calls) appear in
plenty of benign code, so a naive grep also drowns you in false positives. The
work is the discrimination.
When to Use
- A web server is suspected or confirmed compromised and you need every shell
- Cleaning a hacked WordPress, Magento, Joomla, or custom PHP site
- Vetting a downloaded plugin, theme, or codebase before deploying it
- A file contains
eval, assert, or system on decoded or request-derived input
- Triaging a web root full of unfamiliar PHP for planted malice
When NOT to Use
- Finding the vulnerability that allowed the upload — use
auditing-php-applications
- Deep single-sample analysis (a specific shell you want to fully reverse,
its C2, its capabilities) — use
analyzing-malware
- The broader incident (scoping, timeline, containment) — use
responding-to-incidents; this skill is the source-tree sweep within it
- Malicious dependencies / package install scripts — use
auditing-supply-chain
- Host-level persistence (cron, systemd, LD_PRELOAD) — use
analyzing-linux-persistence
Never Execute to Deobfuscate
The single rule that must not bend: the obfuscated code is the payload. Do
not run it, do not "just let PHP decode it," do not replace eval( with
echo( and execute the file, do not paste it into an online sandbox that runs
it. Deobfuscation is a static transformation:
- Decode the layers by hand or with a decode-only tool (
base64_decode,
gzinflate, gzuncompress, str_rot13, hex/\xNN, strrev) applied as
string operations, not as executed PHP.
- If you must automate, use a de-obfuscator that decodes without executing
(UnPHP's decoder, a Python reimplementation of the decode chain) — never the
PHP interpreter on the sample.
- Replacing the final
eval( with file_put_contents('out.php', ...) and
running it is executing the payload if any prior layer has side effects.
Decode statically, then read.
"Most webshells are three or four layers of encoding around ten lines of logic"
— peel to the logic, do not detonate the wrapper.
Triage a Directory at Scale
You cannot read every file. Rank candidates by cheap signals, then read the
top of the list:
# 1. PHP where PHP should not be — uploads, cache, images, media dirs
find wp-content/uploads -name '*.php' -o -name '*.php[0-9]' -o -name '*.phtml' 2>/dev/null
# 2. Recently modified, clustered in time (attackers touch many files at once)
find . -name '*.php' -newermt '2026-07-01' -printf '%T+ %p\n' | sort
# 3. High entropy / long single lines — the shape of packed obfuscation
find . -name '*.php' -exec awk 'length>1000{print FILENAME": "length; nextfile}' {} \;
# 4. The dangerous-sink grep — leads, NOT verdicts (see the FP problem below)
grep -rnE '\b(eval|assert|system|passthru|shell_exec|proc_open|popen|create_function)\s*\(' --include='*.php' .
grep -rnE '(base64_decode|gzinflate|gzuncompress|str_rot13|hex2bin)\s*\(' --include='*.php' .
# 5. Request-driven code execution — the webshell core
grep -rnE '\$_(GET|POST|REQUEST|COOKIE|SERVER)\s*\[[^]]*\]\s*\(' --include='*.php' .
grep -rnE '(eval|assert|system|passthru)\s*\(\s*\$_(GET|POST|REQUEST|COOKIE)' --include='*.php' .
The most reliable single lead is variable execution of request data —
$_POST['x'](), ev[a]l($_GET[...]), ass[e]rt($_REQUEST[...]),
call_user_func($_GET['f'], ...). Legitimate code almost never dispatches a
function name straight from a superglobal.
The Grep Is Not Clean Just Because It Is Empty
A source tree that returns nothing for grep eval can still be backdoored.
Attackers defeat the obvious grep deliberately:
- Concatenation:
$a='ev'.'al'; $a($code); or ('e'.'v'.'a'.'l')(...).
- Variable variables / indirection:
$f='system'; $f($_GET['c']);,
${'_'.'GET'}, $$x.
- Char/hex/octal escapes:
"\x65\x76\x61\x6c" is eval;
chr(101).chr(118)....
- Callback sinks:
array_map, array_filter, usort,
preg_replace_callback, register_shutdown_function,
ob_start with a user-controlled callback.
- String-eval that is not
eval: assert($str) (pre-8.0),
preg_replace('/./e', $str, ...) (pre-7.0), create_function('', $str)
(pre-8.0), mb_ereg_replace with e.
- Comment and whitespace insertion between token pieces to break naive
regex.
So grep is a lead generator, not a coverage guarantee. When grep is empty and
you still suspect infection, fall back to: entropy/long-line ranking, mtime
clustering, and diffing against a known-good copy (below).
Append-Infections Are the Ones You Miss
The hardest infection is a backdoor appended to or inserted into a legitimate
file — index.php, wp-config.php, a theme's functions.php, vendor/
autoloaders. The file is 99% real, so it does not stand out by name, location,
or entropy overall. Find these by comparison, not by inspection:
# Diff the tree against a pristine copy of the same CMS/plugin version
# (download the exact version from wordpress.org / the vendor)
diff -rq ./site /known-good/wordpress-6.x/
# WordPress core/plugin integrity via checksums
wp core verify-checksums; wp plugin verify-checksums --all
# git/composer/npm: what changed vs the committed/locked state
git status --porcelain; git diff
If you have no known-good baseline, the tells are: code after the closing
?> of an otherwise-normal file, a lone eval/base64_decode line wedged at
the top of a config file, or a <?php ... ?> block whose style clashes with
the surrounding file.
Version-Gated Tells Date the Code
The presence of a removed language feature tells you something:
preg_replace with the /e modifier — removed in PHP 7.0. Its presence
means the backdoor targets (or predates) PHP 5.x.
create_function() and string-argument assert() as code execution —
removed in PHP 8.0. Common in older shells; on a PHP 8 server they would
fault, which is itself a signal about when the code was planted.
Known Families Are Leads, Not Verdicts
Fingerprints speed triage but do not replace reading the code:
IOC strings in this section are bracket-broken — ev[a]l is eval,
ass[e]rt is assert. Written literally they match Backdoor:PHP/Chopper
and this file, a defensive hunting skill, gets quarantined on download.
The grep patterns above are intact and safe to copy. See "Antivirus false
positives" in the repo README.
- China Chopper — a one-liner:
<?php @ev[a]l($_POST['pass']);?> (or
assert), often under 30 bytes. Tiny, so easy to miss and easy to append.
- WSO, b374k, c99, r57, indoxploit — full-featured panels; grep their
banner strings, characteristic function names, or auth-cookie names as leads.
- Weevely — generates obfuscated, password-gated shells that change per
build; signature matching is weak, so rely on the request-driven-execution
and obfuscation signals instead.
A signature hit confirms a shell. It does not confirm you found them all —
attackers plant several, and the second one rarely matches the first's family.
When You Confirm One, Assume More
- Preserve before you delete. A confirmed shell is evidence — copy it
(hash it) to a holding location before removing it, per
responding-to-incidents. Deletion alone loses the timeline and, if you
miss the entry point, the attacker re-plants within hours.
- Find the entry point. A shell got there somehow — a vulnerable upload,
a known-CVE plugin, stolen credentials. Hand that to
auditing-php-applications (source) or responding-to-incidents
(logs); a cleaned site with the hole still open is re-infected by morning.
- Keep hunting. One shell found is a reason to raise suspicion of the
whole tree, not to close the case. Re-run the sweep after removing the
obvious one.
Rationalizations to Reject
- "grep for eval came back clean, so the tree is clean." Concatenation, hex
escapes, and callback sinks all evade it. Empty grep is not coverage — fall
back to entropy, mtime, and diff-against-known-good.
- "I'll just run it to see what it decodes to." That is executing the
payload. Decode statically, always.
- "It uses
eval, so it's a backdoor." Templating engines, caches, and
frameworks use eval legitimately. The tell is eval on decoded or
request-derived input, not eval itself.
- "It's heavily obfuscated, so it's malicious." Commercial plugins ship
obfuscated (ionCube, Zend Guard, licensing). Obfuscation raises suspicion;
it does not convict. Decode and read the logic.
- "I found the shell and deleted it, done." You found a shell. Preserve it,
find the entry point, and re-sweep — attackers plant redundancy.
- "The file is a core CMS file, it must be safe." Append-infections live in
exactly those files precisely because you assume that. Verify by checksum.
- "No known-shell signature matched." Weevely and custom shells match
nothing. Signatures are leads; behaviour (request-driven execution,
obfuscation) is the evidence.
Reading External Sources
Fetch public advisories, specifications, and vendor reports as Markdown:
curl -sL "https://defuddle.md/<url>" # scheme in the path is optional
This strips page boilerplate — roughly 78% fewer tokens on a prose page — and
returns the full text rather than a summary, so you can grep it and trust a
negative result.
Three things it is not for. Fetch JSON and API responses raw, because
readability extraction mangles structured data. Fetch authenticated or
JavaScript-rendered pages directly, because it retrieves them anonymously. And
never route adversary infrastructure (phishing links, C2, malware hosting),
client-owned hosts, or engagement URLs through it — the request leaves
your machine to a third party, and for live adversary infrastructure it also
tips off the operator.
Some sites block the extractor and return an error blob rather than the page —
{"error":"Failed to fetch: 418 I'm a teapot"} from freedesktop.org, for
instance. That is the fetch being refused, not the source saying the thing
does not exist. Re-fetch the URL directly before drawing any conclusion from
it.
References
auditing-php-applications — the vulnerability that let the shell in
analyzing-malware — deep reverse of a single recovered shell, its C2 and
capabilities
responding-to-incidents — evidence handling, scoping, and the wider IR this
sweep sits inside
analyzing-linux-persistence — host-level persistence beyond the web root
writing-yara-rules — turning a confirmed family into a reusable signature
1---2name: hunting-web-backdoors3description: Hunt planted webshells and backdoors across a web source tree — PHP first (also JSP, ASP, Node) — triaging a directory at scale, statically decoding obfuscation layers without ever executing the payload, finding append-infections and fake plugins, and treating known shell families as leads rather than verdicts. Use when a web server is suspected compromised, cleaning a hacked WordPress/Magento/CMS site, vetting a downloaded PHP codebase or plugin for hidden malicious code, or when a file contains eval on decoded input.4---56# Hunting Web Backdoors78This is not a vulnerability audit. You are looking for code an attacker9**already planted** — a webshell, a one-line eval backdoor, a fake plugin, a10malicious line appended to a legitimate file. The weakness that let them in is11`auditing-php-applications`' job; this skill finds what they left behind.1213Two things make it hard. The malicious code is deliberately hidden — obfuscated,14split, or buried in a tree of thousands of legitimate files — so a naive grep15misses it. And the tells (`eval`, `base64_decode`, dynamic calls) appear in16plenty of benign code, so a naive grep also drowns you in false positives. The17work is the discrimination.1819## When to Use2021- A web server is suspected or confirmed compromised and you need every shell22- Cleaning a hacked WordPress, Magento, Joomla, or custom PHP site23- Vetting a downloaded plugin, theme, or codebase before deploying it24- A file contains `eval`, `assert`, or `system` on decoded or request-derived input25- Triaging a web root full of unfamiliar PHP for planted malice2627## When NOT to Use2829- **Finding the vulnerability that allowed the upload** — use30 `auditing-php-applications`31- **Deep single-sample analysis** (a specific shell you want to fully reverse,32 its C2, its capabilities) — use `analyzing-malware`33- **The broader incident** (scoping, timeline, containment) — use34 `responding-to-incidents`; this skill is the source-tree sweep within it35- **Malicious dependencies / package install scripts** — use36 `auditing-supply-chain`37- **Host-level persistence** (cron, systemd, LD_PRELOAD) — use38 `analyzing-linux-persistence`3940## Never Execute to Deobfuscate4142The single rule that must not bend: **the obfuscated code is the payload.** Do43not run it, do not "just let PHP decode it," do not replace `eval(` with44`echo(` and execute the file, do not paste it into an online sandbox that runs45it. Deobfuscation is a **static** transformation:4647- Decode the layers by hand or with a decode-only tool (`base64_decode`,48 `gzinflate`, `gzuncompress`, `str_rot13`, hex/`\xNN`, `strrev`) applied as49 string operations, not as executed PHP.50- If you must automate, use a de-obfuscator that decodes without executing51 (UnPHP's decoder, a Python reimplementation of the decode chain) — never the52 PHP interpreter on the sample.53- Replacing the final `eval(` with `file_put_contents('out.php', ...)` and54 running it *is* executing the payload if any prior layer has side effects.55 Decode statically, then read.5657"Most webshells are three or four layers of encoding around ten lines of logic"58— peel to the logic, do not detonate the wrapper.5960## Triage a Directory at Scale6162You cannot read every file. Rank candidates by cheap signals, then read the63top of the list:6465```bash66# 1. PHP where PHP should not be — uploads, cache, images, media dirs67find wp-content/uploads -name '*.php' -o -name '*.php[0-9]' -o -name '*.phtml' 2>/dev/null6869# 2. Recently modified, clustered in time (attackers touch many files at once)70find . -name '*.php' -newermt '2026-07-01' -printf '%T+ %p\n' | sort7172# 3. High entropy / long single lines — the shape of packed obfuscation73find . -name '*.php' -exec awk 'length>1000{print FILENAME": "length; nextfile}' {} \;7475# 4. The dangerous-sink grep — leads, NOT verdicts (see the FP problem below)76grep -rnE '\b(eval|assert|system|passthru|shell_exec|proc_open|popen|create_function)\s*\(' --include='*.php' .77grep -rnE '(base64_decode|gzinflate|gzuncompress|str_rot13|hex2bin)\s*\(' --include='*.php' .7879# 5. Request-driven code execution — the webshell core80grep -rnE '\$_(GET|POST|REQUEST|COOKIE|SERVER)\s*\[[^]]*\]\s*\(' --include='*.php' .81grep -rnE '(eval|assert|system|passthru)\s*\(\s*\$_(GET|POST|REQUEST|COOKIE)' --include='*.php' .82```8384The most reliable single lead is **variable execution of request data** —85`$_POST['x']()`, `ev[a]l($_GET[...])`, `ass[e]rt($_REQUEST[...])`,86`call_user_func($_GET['f'], ...)`. Legitimate code almost never dispatches a87function name straight from a superglobal.8889## The Grep Is Not Clean Just Because It Is Empty9091A source tree that returns nothing for `grep eval` can still be backdoored.92Attackers defeat the obvious grep deliberately:9394- **Concatenation:** `$a='ev'.'al'; $a($code);` or `('e'.'v'.'a'.'l')(...)`.95- **Variable variables / indirection:** `$f='system'; $f($_GET['c']);`,96 `${'_'.'GET'}`, `$$x`.97- **Char/hex/octal escapes:** `"\x65\x76\x61\x6c"` is `eval`;98 `chr(101).chr(118)...`.99- **Callback sinks:** `array_map`, `array_filter`, `usort`,100 `preg_replace_callback`, `register_shutdown_function`,101 `ob_start` with a user-controlled callback.102- **String-eval that is not `eval`:** `assert($str)` (pre-8.0),103 `preg_replace('/./e', $str, ...)` (pre-7.0), `create_function('', $str)`104 (pre-8.0), `mb_ereg_replace` with `e`.105- **Comment and whitespace insertion** between token pieces to break naive106 regex.107108So grep is a *lead generator*, not a coverage guarantee. When grep is empty and109you still suspect infection, fall back to: entropy/long-line ranking, mtime110clustering, and diffing against a known-good copy (below).111112## Append-Infections Are the Ones You Miss113114The hardest infection is a backdoor **appended to or inserted into a legitimate115file** — `index.php`, `wp-config.php`, a theme's `functions.php`, `vendor/`116autoloaders. The file is 99% real, so it does not stand out by name, location,117or entropy overall. Find these by comparison, not by inspection:118119```bash120# Diff the tree against a pristine copy of the same CMS/plugin version121# (download the exact version from wordpress.org / the vendor)122diff -rq ./site /known-good/wordpress-6.x/123124# WordPress core/plugin integrity via checksums125wp core verify-checksums; wp plugin verify-checksums --all126127# git/composer/npm: what changed vs the committed/locked state128git status --porcelain; git diff129```130131If you have no known-good baseline, the tells are: code *after* the closing132`?>` of an otherwise-normal file, a lone `eval`/`base64_decode` line wedged at133the top of a config file, or a `<?php ... ?>` block whose style clashes with134the surrounding file.135136## Version-Gated Tells Date the Code137138The presence of a removed language feature tells you something:139140- `preg_replace` with the `/e` modifier — **removed in PHP 7.0**. Its presence141 means the backdoor targets (or predates) PHP 5.x.142- `create_function()` and string-argument `assert()` as code execution —143 **removed in PHP 8.0**. Common in older shells; on a PHP 8 server they would144 fault, which is itself a signal about when the code was planted.145146## Known Families Are Leads, Not Verdicts147148Fingerprints speed triage but do not replace reading the code:149150> IOC strings in this section are bracket-broken — `ev[a]l` is `eval`,151> `ass[e]rt` is `assert`. Written literally they match `Backdoor:PHP/Chopper`152> and this file, a *defensive* hunting skill, gets quarantined on download.153> The grep patterns above are intact and safe to copy. See "Antivirus false154> positives" in the repo README.155156- **China Chopper** — a *one-liner*: `<?php @ev[a]l($_POST['pass']);?>` (or157 `assert`), often under 30 bytes. Tiny, so easy to miss and easy to append.158- **WSO, b374k, c99, r57, indoxploit** — full-featured panels; grep their159 banner strings, characteristic function names, or auth-cookie names as leads.160- **Weevely** — generates obfuscated, password-gated shells that change per161 build; signature matching is weak, so rely on the request-driven-execution162 and obfuscation signals instead.163164A signature hit confirms *a* shell. It does not confirm you found them all —165attackers plant several, and the second one rarely matches the first's family.166167## When You Confirm One, Assume More1681691. **Preserve before you delete.** A confirmed shell is evidence — copy it170 (hash it) to a holding location before removing it, per171 `responding-to-incidents`. Deletion alone loses the timeline and, if you172 miss the entry point, the attacker re-plants within hours.1732. **Find the entry point.** A shell got there somehow — a vulnerable upload,174 a known-CVE plugin, stolen credentials. Hand that to175 `auditing-php-applications` (source) or `responding-to-incidents`176 (logs); a cleaned site with the hole still open is re-infected by morning.1773. **Keep hunting.** One shell found is a reason to raise suspicion of the178 whole tree, not to close the case. Re-run the sweep after removing the179 obvious one.180181## Rationalizations to Reject182183- *"grep for eval came back clean, so the tree is clean."* Concatenation, hex184 escapes, and callback sinks all evade it. Empty grep is not coverage — fall185 back to entropy, mtime, and diff-against-known-good.186- *"I'll just run it to see what it decodes to."* That is executing the187 payload. Decode statically, always.188- *"It uses `eval`, so it's a backdoor."* Templating engines, caches, and189 frameworks use `eval` legitimately. The tell is `eval` on *decoded or190 request-derived* input, not `eval` itself.191- *"It's heavily obfuscated, so it's malicious."* Commercial plugins ship192 obfuscated (ionCube, Zend Guard, licensing). Obfuscation raises suspicion;193 it does not convict. Decode and read the logic.194- *"I found the shell and deleted it, done."* You found *a* shell. Preserve it,195 find the entry point, and re-sweep — attackers plant redundancy.196- *"The file is a core CMS file, it must be safe."* Append-infections live in197 exactly those files precisely because you assume that. Verify by checksum.198- *"No known-shell signature matched."* Weevely and custom shells match199 nothing. Signatures are leads; behaviour (request-driven execution,200 obfuscation) is the evidence.201202## Reading External Sources203204Fetch public advisories, specifications, and vendor reports as Markdown:205206```bash207curl -sL "https://defuddle.md/<url>" # scheme in the path is optional208```209210This strips page boilerplate — roughly 78% fewer tokens on a prose page — and211returns the full text rather than a summary, so you can grep it and trust a212negative result.213214Three things it is not for. Fetch JSON and API responses raw, because215readability extraction mangles structured data. Fetch authenticated or216JavaScript-rendered pages directly, because it retrieves them anonymously. And217never route **adversary infrastructure** (phishing links, C2, malware hosting),218**client-owned hosts**, or **engagement URLs** through it — the request leaves219your machine to a third party, and for live adversary infrastructure it also220tips off the operator.221222Some sites block the extractor and return an error blob rather than the page —223`{"error":"Failed to fetch: 418 I'm a teapot"}` from freedesktop.org, for224instance. That is the fetch being refused, **not** the source saying the thing225does not exist. Re-fetch the URL directly before drawing any conclusion from226it.227228## References229230- `auditing-php-applications` — the vulnerability that let the shell in231- `analyzing-malware` — deep reverse of a single recovered shell, its C2 and232 capabilities233- `responding-to-incidents` — evidence handling, scoping, and the wider IR this234 sweep sits inside235- `analyzing-linux-persistence` — host-level persistence beyond the web root236- `writing-yara-rules` — turning a confirmed family into a reusable signature