jvoisin
snuffleupagus
C

Security module for php7 and php8 - Killing bugclasses and virtual-patching the rest!

Last updated Jun 26, 2026
836
Stars
95
Forks
21
Issues
0
Stars/day
Attention Score
92
Language breakdown
No language data available.
โ–ธ Files click to expand
README


Snuffleupagus' logo
Snuffleupagus

Security module for php7 and php8 - Killing bugclasses and virtual-patching the rest!

Testing PHP7 on various Linux distributions Testing PHP8 on various Linux distributions Coverity CII Best Practises readthedocs.org coveralls twitter Packaging status CodeQL

Key Features โ€ข Download โ€ข Examples โ€ข Documentation โ€ข License โ€ข Thanks

Snuffleupagus is a PHP 7+ and 8+ module designed to drastically raise the cost of attacks against websites, by killing entire bug classes. It also provides a powerful virtual-patching system, allowing administrator to fix specific vulnerabilities and audit suspicious behaviours without having to touch the PHP code.

Key Features

* Unserialize-based code execution * mail-based code execution * Cookie-stealing XSS * File-upload based code execution * Weak PRNG * XXE * Filter based remote code execution and assorted shenanigans
  • Several hardening features
* Automatic secure and samesite flag for cookies * Bundled set of rules to detect post-compromissions behaviours * Global strict mode and type-juggling prevention * Whitelisting of stream wrappers * Preventing writeable files execution * Whitelist/blacklist for eval * Enforcing TLS certificate validation when using curl * Request dumping capability
  • A relatively sane code base:
* A comprehensive test suite close to 100% coverage * Every commit is tested on several distributions * An clang-format-enforced code style * A comprehensive documentation * Usage of coverity, codeql, scan-build, โ€ฆ

Download

We've got a download page, where you can find packages for your distribution, but you can of course just git clone this repo, or check the releases on github.

Examples

We're providing various example rules, that are looking like this:

# Harden the chmod function
sp.disablefunction.function("chmod").param("mode").valuer("^[0-9]{2}[67]$").drop();

Mitigate command injection in system

sp.disablefunction.function("system").param("command").valuer("[$|;&`\\n]").drop();

Upon violation of a rule, you should see lines like this in your logs:

[snuffleupagus][0.0.0.0][disabled_function][drop] The execution has been aborted in /var/www/index.php:2, because the return value (0) of the function 'strpos' matched a rule.

Documentation

We've got a comprehensive website with all the documentation that you could possibly wish for. You can of course build it yourself.

Thanks

Many thanks to:

experimentations and contributions, as well as NLNet for sponsoring it
๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท jvoisin/snuffleupagus ยท Updated daily from GitHub