AttackX v2.11 beta
This updated beta release can now attack from the fight page again. Facebook discussion for this version.
AttackX v2.10 beta only worked from profile pages.
Known issues:
Does not work with Opera or Internet Explorer.
Update: Thanks to Yevgen Silant’yev it works with Opera now. He contributed with code for handling the base64 encoding.
I managed to get it to work with Opera. So if you can add the following after variables declaration it would be really nice:
if (typeof window.atob === “undefined”) {
window.atob= function(input, output, chr1, chr2, chr3, enc1, enc2,enc3, enc4, i) {
b64=”ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=”;
output = “”;
i = 0;
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, “”);
while (i < input.length) {
enc1 = b64.indexOf(input.charAt(i++));
enc2 = b64.indexOf(input.charAt(i++));
enc3 = b64.indexOf(input.charAt(i++));
enc4 = b64.indexOf(input.charAt(i++));
chr1 = (enc1 <> 4);
chr2 = ((enc2 & 15) <> 2);
chr3 = ((enc3 & 3) <> 2;
enc2 = ((chr1 & 3) <> 4);
enc3 = ((chr2 & 15) <> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output = output + b64.charAt(enc1) + b64.charAt(enc2) +
b64.charAt(enc3) + b64.charAt(enc4);
} while (i < input.length);
return output;
};
}
Since I'm running Linux I can't check if it fixes IE issue. Thnx in advance!!!
How do u download?