Clicking rocks is fun, but I wanted to automate the process of mining unicoins.
I found the following code while googling for "Satoshi Nakamoto". It will exploit a flaw in the Unicoin protocol called "rock malleability". Somehow, rainbow tables are used as well.
It's easy to use, just bring up your developer's console in Chrome and enter the following:
setInterval(
function(){
$.get(
"/unicoin/rock?_=" + String(new Date().getTime()),
function(rainbowTable){
$.post(
"/unicoin/mine?rock=" + rainbowTable.rock,
{"fkey": $("#fkey").val()},
function(malleableRock){
console.log(
"Mined " + malleableRock.value + " unicoin(s)");
}
)
}
)
}, 11000)
The problem is that I'm getting an HTTP error -- HTTP 418 to be specific. What am I doing wrong?