Can anyone explain this obfuscated code in the EE installer?
ExpressionEngine_Core2.8.1\system\installer\core\Installer_Config.php
function site_prefs($site_name, $site_id = 1)
{
$echo = 'ba'.'se'.'6'.'4'.'_d'.'ec'.'ode';
eval($echo('aWYoSVNfQ09SRSl7JHNpdGVfaWQ9MTt9'));Base64decoding it gives:
if(IS_CORE){$site_id=1;}This kind of obfuscation is usually a sign of malware; why’s it being used in EE? Is there a reason that this line should be obfuscated?