PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/islandpc.ca/wp-content/plugins/wp-automatic/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/islandpc.ca/wp-content/plugins/wp-automatic/ebay_clo.php

<?php  
	if(isset($_GET['challenge_code'])){
				$challengeCode = $_GET['challenge_code'];
				
				//wp-load
				require_once('../../../wp-load.php');
				$endpoint = plugins_url( 'ebay_clo.php' , __FILE__ );
				$endpoint = str_replace('http:/' , 'https:/',$endpoint);
				
				$verificationToken = md5($endpoint);
				 
				
				$hash = hash_init('sha256');
				
				hash_update($hash, $challengeCode);
				hash_update($hash, $verificationToken);
				hash_update($hash, $endpoint);
				
				header("Content-type: application/json; charset=utf-8");
				
				$arr['challengeResponse'] = hash_final($hash);
				
				echo json_encode($arr);
				
				exit;
			
			}else{
				echo 'done';
			}
			
?>