shell bypass 403
GrazzMean-Shell Shell
: /home/d/r/e/dreampi/www/wp-content/plugins/fluent-smtp/app/Services/DB/QueryBuilder/ [ drwxr-xr-x ]
<?php
namespace FluentMail\App\Services\DB\QueryBuilder;
class Transaction extends QueryBuilderHandler
{
/**
* Commit the database changes
*/
public function commit()
{
$this->db->query('COMMIT');
throw new TransactionHaltException();
}
/**
* Rollback the database changes
*/
public function rollback()
{
$this->db->query('ROLLBACK');
throw new TransactionHaltException();
}
}