Bitcoin Forum

Other => Meta => Topic started by: TryNinja on April 01, 2023, 03:04:34 PM



Title: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: TryNinja on April 01, 2023, 03:04:34 PM
https://talkimg.com/images/2023/05/13/blobb2a1de6ab58f18f3.png


New Captcha CRACKER by TryNinja The H4CK3R1337
WE DO NOT LIKE THE BIRD!


Quote

- How to install -

1. Download the Tampermonkey or ViolentMonkey extension.
2. Add the following script.


Code:
// ==UserScript==
// @name        New Captcha CRACKER
// @author      TryNinja The H4CK3R1337 8)
// @match       https://bitcointalk.org/index.php?action=post*
// @grant       none
// @version     1.1
// ==/UserScript==
(() => {
function solve(key) {
function S(a, c) {
return ((a << c) | (a >>> (32 - c))) & 4294967295;
}

function sha1(key) {
var e = new ArrayBuffer(64),
d = new DataView(e);
e = new Uint8Array(e);

e.set(key);
e[key.length] = 128;

d.setUint32(60, 8 * key.length);
var schedule = Array(80);

for (var i = 0; i < 80; i++) {
if (i < 16) {
schedule[i] = d.getUint32(4 * i);
} else {
schedule[i] = S(
schedule[i - 3] ^
schedule[i - 8] ^
schedule[i - 14] ^
schedule[i - 16],
1
);
}
}

var roundFunctions = [
function(t, v, w) {
return (t & v) | (~t & w);
},
function(t, v, w) {
return t ^ v ^ w;
},
function(t, v, w) {
return (t & v) | (t & w) | (v & w);
},
function(t, v, w) {
return t ^ v ^ w;
},
];
var hash = [1732584193, 4023233417, 2562383102, 271733878, 3285377520];

for (var i = 0; i < 80; i++) {
var f = Math.floor(i / 20);
var temp =
S(hash[0], 5) +
roundFunctions[f](hash[1], hash[2], hash[3]) +
hash[4] +
schedule[i] + [1518500249, 1859775393, 2400959708, 3395469782][f];
hash[4] = hash[3];
hash[3] = hash[2];
hash[2] = S(hash[1], 30);
hash[1] = hash[0];
hash[0] = temp & 4294967295;
}

d.setUint32(0, (1732584193 + hash[0]) & 4294967295);
d.setUint32(4, (4023233417 + hash[1]) & 4294967295);
d.setUint32(8, (2562383102 + hash[2]) & 4294967295);
d.setUint32(12, (271733878 + hash[3]) & 4294967295);
d.setUint32(16, (3285377520 + hash[4]) & 4294967295);

return e.slice(0, 20);
}

let d = [114, 117, 106, 121, 119, 106, 115, 100, 107, 101, 114, 100];
for (f = 0; 8 > f; f++) d[12 + f] = key.charCodeAt(2 + f);
let hash = sha1(d);
let answer = "";
for (f = 0; 20 > f; f++) {
const k = hash[f].toString(16).padStart(2, "0");
answer += k;
}

return answer;
}

const input = document.querySelector("input[name=h4cfb47325c1907ed]");
const captchaAnswer = solve(input.value);
input.value = captchaAnswer;
input.setAttribute("value", captchaAnswer);
document.querySelector("canvas").outerHTML = '<p style="font-weight: bold; font-size: 24px">Captcha cracked by TryNinja The H4CK3R1337!</p>';
})();


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: o_solo_miner on April 01, 2023, 03:52:45 PM
Nice, but to risky for me to  install, anyway good work!

 ;D I like the flappy bird, even I am not good at it.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: Xal0lex on April 01, 2023, 03:52:51 PM
Ha ha ha. It works! ;)

Nice, but to risky for me to  install, anyway good work!

Do you really think that such a respected user as TryNinja will slip users some kind of virus in the script? I don't think he would stoop to that. I doubt it very much. But, of course, it is your right to use this script or not.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: TryNinja on April 01, 2023, 03:58:53 PM
Nice, but to risky for me to  install, anyway good work!

 ;D I like the flappy bird, even I am not good at it.
Code is too obfuscated, right? ;D

This is so the other hackers can't copy the code and leech from me, the original and top 1 hackzor. 8)


But seriously, you can check that 99% of the code is original from the forum itself. Looks like theymos tried to hide the code so no one could bypass it? Not enough to stop me, though. 8)

E.g: https://talkimg.com/images/2023/05/13/blob16369cc20b448e93.png


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: rdluffy on April 01, 2023, 04:16:49 PM
Hehehe, weel done Mr. H4CK3R1337

If I remember correctly you already did some "hack" on an April 1st, I don't remember if it was in 2022 (I think it was about IQ) or 2021 (maybe NFTs?), but I remember you hacked the system hahaha
Is it a cat-and-mouse game going on around here?  :D

Up to 7 or 10 coins I can collect, more than that I think it is better to use the hack and not get marked as a spammer  8) 8) 8)


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: dkbit98 on April 01, 2023, 04:24:13 PM
Developer war is on! Let the best one win!
I think TryNinja is trying to take over the new role of main forum developer from PowerGlove, and he had to kill the bird first  :D
In all my years in bitcointalk forum years this was probably one of the best April 1st day I remember, and I just hope hangover won't be so bad tomorrow.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: TryNinja on April 01, 2023, 05:11:26 PM
Updated the code to make it smaller and more readable. The biggest chunk of the code is the SHA1 function, so any dev can check there are no hidden shenanigans. ;D


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: Accardo on April 01, 2023, 08:09:44 PM
Good to see the new cheat code, the forum is becoming a fun place lol. But the captcha is easier on this thread, seems the more responses on a thread the harder the captcha gets. Though the game is interesting and helps brain power too, but whenever it stresses me I'll definitely click on install  ;D


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: Crypto Library on April 01, 2023, 08:18:58 PM
Updated the code to make it smaller and more readable. The biggest chunk of the code is the SHA1 function, so any dev can check there are no hidden shenanigans. ;D
Nice Boss! it's working! 
This game was very tough for me too and repeatedly the bird would come forward with a big screen despite not wanting to. However now that the game is tough I was able to beat it with your script
And I have already shared your script in my local thread.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: NeuroticFish on April 01, 2023, 08:23:40 PM
WE DO NOT LIKE THE BIRD!

LoL nice one!

I managed to just ignore the game and hence getting painted as spammer for today, but that shall pass.
Still, a nice achievement to manage bypassing it this very day  :D


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: _BlackStar on April 01, 2023, 08:32:23 PM
Updated the code to make it smaller and more readable. The biggest chunk of the code is the SHA1 function, so any dev can check there are no hidden shenanigans. ;D
Nice Boss! it's working! 
This game was very tough for me too and repeatedly the bird would come forward with a big screen despite not wanting to. However now that the game is tough I was able to beat it with your script
And I have already shared your script in my local thread.
But why can I still see this word from your post, is it because I haven't installed it yet?  :D

This user is a suspected spammer!

But anyway, I just solved another CAPTCHA before posting this one. I think I should get used to it too. Happy April Fool everyone.
Did someone say the bird looks like chicken?  ;D


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: hyudien on April 01, 2023, 09:00:02 PM
Nice try, you have the intention to finish it.

hack sure is your ninja way, it's hard if a ninja has come down the mountain. btw, so far I've only been able to get 94 coins and now I'm still trying to conquer 99 coins. >:(


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: nakamura12 on April 01, 2023, 09:05:02 PM
One thing that makes it more interesting and funny because of we are required to complete CAPTCHA before we can post is that TryNinja find a way to hack it or bypass the CAPTCHA. Yeah, WE DON'T LIKE THE BIRD! I am always losing with the bird game and been trying for quite some time to get 20 and no chance at getting it to 20. Got 12 coins this and and solved it.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: ajiz138 on April 01, 2023, 09:12:33 PM
https://i.gyazo.com/a08f399e07da9e890729e7c515559508.png

I did it for this script, I don't like bird games it's more complicated and can't be more than 10 coins, there are CAPTCHA that must be completed post.

The CAPTCHA will disappear in a few hours? Forum will be normal again?


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: Cryptomiles1 on April 01, 2023, 09:28:36 PM
This is a good initiative by creating a means to bypass this Captcha that have been eating up my mind since morning, you know whenever I posted and I see this flag that shows up my mind kept flying away thinking I have been banned. You know what that mean seeing a red flag comes when someone might have violated the rules or something else. I want to know @TryNinja if there is any way I can implement this to my mobile phone or does this only work desktop and pc?

Please don't be mad at me, I am not a programmer or a dev like you lol.
I am just a typist who types in a business center.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: PowerGlove on April 01, 2023, 09:47:31 PM
https://i.postimg.cc/tyJMZYJm/th-2566104160.jpg

Nice job, TryNinja! Please remember to take the time to properly enjoy this feeling, because next time I won't be playing around... ;D

There's some really cool stuff planned for the final version, including much harder game modes and a pretty sophisticated anti-cheat system based on a polymorphic transpiler that mutates the JavaScript every few hours.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: Ryu_Ar1 on April 01, 2023, 11:50:57 PM
Finally in this case i didn't look back at the bird lol.
This is something good and I like this solution but not the bird :D


WE DO NOT LIKE THE BIRD!

I like these words and I won't do the bird game again next time because I was quite stressed out clicking the mouse  :o


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: theymos on April 02, 2023, 12:25:16 AM
Congrats! How long did it take you? I estimated that it'd take an hour or two to reverse engineer, and honestly I didn't expect anyone to go to the trouble in the 24 hours available. I'm glad it was interesting enough to somebody that I was proven wrong here!


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: joker_josue on April 02, 2023, 12:41:45 AM
But seriously, you can check that 99% of the code is original from the forum itself. Looks like theymos tried to hide the code so no one could bypass it? Not enough to stop me, though. 8)

E.g: https://i.imgur.com/ELtLbE8.png

I've been looking for it too and haven't found it.
I didn't delve as deeply as you did, but he really had to be somewhere.

Congrats on finding him. Maybe that was the second challenge of this game: getting coins with the bird, and finding the game code.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: TryNinja on April 02, 2023, 12:46:22 AM
Congrats! How long did it take you? I estimated that it'd take an hour or two to reverse engineer, and honestly I didn't expect anyone to go to the trouble in the 24 hours available.
To get it working around 1 hour, yep. Took me longer to actually understand the code and clean it up a little bit so it doesn't look like a keylogger. ;D

I'm glad it was interesting enough to somebody that I was proven wrong here!
My favorite part of the Aprils Fool's joke every year is trying to create whatever (https://bitcointalk.org/index.php?topic=5327661.msg56694325#msg56694325) I can around your inventions, so I couldn't miss it.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: NotATether on April 02, 2023, 01:34:33 AM
Congratulations @TryNinja, welcome to the hacker society. :)

I was thinking of doing something like this yesterday, but I didn't want to mess around with what will eventually become roast turkey.


Title: Re: [SCRIPT] New Captcha CRACKER by TryNinja The H4CK3R1337 8)
Post by: vapourminer on April 02, 2023, 03:24:11 PM
My favorite part of the Aprils Fool's joke every year is trying to create whatever (https://bitcointalk.org/index.php?topic=5327661.msg56694325#msg56694325) I can around your inventions, so I couldn't miss it.

half the fun of april fools here is the insta-cottage industry type stuff that pops up with a few hours of these. cheats, alliances, answers, pump and dumps, you name it its been done it seems... all crystalized in 24 hours, and then dissolved just as fast.

good times