Bitcoin Forum
June 22, 2024, 04:05:35 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 »
361  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 22, 2015, 02:22:07 PM
My button get reward doesn't work after adding antibot, do you know the problems? i checked the code are all ok

Any details (link) to the place you added the code? I may be able to help you.
362  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 21, 2015, 04:48:58 PM
...

Somebody more expert in programming than me would like to fix the code for us?



Got little conversation with Luke. And he explained to me how the system works.

I have few ideas. Hope next week I'll be able to make a FB "plugin", that:
1. does not stop good users.
2. stops many of the proxies.
3. does not flood his website.
4. complies with his license.
363  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: October 19, 2015, 04:30:58 PM
Great friend

Go here is code?

Code:
snip
Yes, but you will need to edit it slightly due to what NeedIfFindIt pointed out.

Since you can only access the list once every 30 minutes, you will need to set up a CRON job every 30 minutes to 1 hour or so to get an up to date list. Luckily this is fairly simple to do.
You will just need a file with this code inside (call it tor.php or something similar):
Code:
<?php
$torList 
file_get_contents('https://www.dan.me.uk/torlist/');
file_put_contents('torlist.txt'$torList);
?>

This will get the code from the torlist and store it in your server under torlist.txt. To set up a CRON job, you will have to look on your cPanel and find where 'CRON Jobs' or 'Scheduled Tasks' are. Simply link that to tor.php and set it to run every hour or so.

Next, you will need to edit the check slightly. Instead of this:
Code:
foreach(file('https://www.dan.me.uk/torlist/') as $torIP){
It will have to be this:
Code:
foreach(file('torlist.txt') as $torIP){

Here is little correction to your idea:

Code:
<?php
$torList 
file_get_contents('https://www.dan.me.uk/torlist/');
if (
strpos($torList'You can only fetch')===false) {
  
file_put_contents('torlist.txt'$torList);
}
?>


This is to make sure it does not replace old but good file with junk.
364  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 19, 2015, 03:19:23 PM
Code:
// ABC

and

Code:
/*
ABC
*/

means commented out (non-active).

I've made non active the:
Code:
//if(@fsockopen($_SERVER['REMOTE_ADDR'], 80, $errstr, $errno, 1))
//die("It would apprear you're using a proxy, so please, contact us: support@freebtsocean.com!");
because it is plainly wrong.

I've copied and edited:
Code:
$banOnProability=0.99;

to

Code:
$banOnProability=0.99999;

But also left the original (for comparison).

Also added commented-out (inactive) example how to "whitelist" someone.
365  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 19, 2015, 09:31:35 AM
@NeedIfFindIt

Hello dude, my faucet was removed from his rotator. I do not understand why.

I just write an email.

My faucet is: http://freebtsocean.com/

Sorry, yesterday I responded to over 120 messages.

For some reason the anti-proxy code blocks also non-proxies that have open ports.
http://getipintel.net/ actually tracks IPs with multiple open ports.
Just think about simple IM like Skype opens 2 ports (one of them is port 80) if you have 3 PCs at home = 4 open ports by Skype. If you add one or two torrent clients and a VNC = 8 open ports in total. And you are already in the 0.99+ club.

For now I would suggest using
Code:
$banOnProability=0.99999;

instead of

Code:
$banOnProability=0.99;

I tested with free proxy list and it still works for 95%+ of the addresses.

Also find a way to cache the IPs since getipintel.net allows up to 1000 requests/day.

Code:
<?php
//if(@fsockopen($_SERVER['REMOTE_ADDR'], 80, $errstr, $errno, 1))
//die("It would apprear you're using a proxy, so please, go f* yourself!");

function checkProxy($ip){
/*
                /// Uncomment to allow bit.makejar.com autochecker
if ($ip=='188.166.12.134') {
                  return false;
                }
                //
*/
$contactEmail="EMAIL";
$timeout=3
// $banOnProability=0.99;
                
$banOnProability=0.99999;// <---------------------------------------------------

$ch curl_init();
curl_setopt($chCURLOPT_RETURNTRANSFER1);
 
curl_setopt($chCURLOPT_TIMEOUT$timeout);
curl_setopt($chCURLOPT_URL"http://check.getipintel.net/check.php?ip=$ip");
$response=curl_exec($ch);

curl_close($ch);


if ($response $banOnProability) {
return true;
} else {
if ($response || strcmp($response"") == ) {
//The server returned an error, you might want to do something
//like write to a log file or email yourself
//This could be true due to an invalid input or you've exceeded
//the number of allowed queries. Figure out why this is happening
//because you aren't protected by the system anymore
//Leaving this section blank is dangerous because you assume
//that you're still protected, which is incorrect
//and you might think GetIPIntel isn't accurate anymore
//which is also incorrect.
//failure to implement error handling is bad for the both of us
}
return false;
}
}
$ip=$_SERVER['REMOTE_ADDR'];
if (
checkProxy($ip)) {
echo "It would apprear you're using a proxy, so please, go f* yourself! <br />";
}
?>

366  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: October 18, 2015, 04:41:36 PM
Can i do this to block tor ips?
By going to https://www.dan.me.uk/torlist/, can I copy and paste these IPs into my IP blacklist in the security tab on my faucetinabox admin page? Or do I have to do something more?
If you're planning to do this, I would suggest having your code do it automatically to save you trouble and increase security.
To do this, I believe that you can just input this code at line 1512:
Code:
foreach(file('https://www.dan.me.uk/torlist/') as $torIP){
     if(ipSubnetCheck($ip, $torIP)){
          banned();
     }
}
If this is incorrect, please correct me Kazul; I'm having trouble understanding the code lol.

Do you read that at the header of the list.

" Please keep in mind that this list is not moderated by FaucetBOX.com Staff."
That is irrelevant to his question.

I think it depends on how many people are visiting.
I was going to say that it might be on the like to dislike ratio, but looking at the list that doesn't seem like it would work.

https://www.dan.me.uk/torlist/ will return the tor list once every 30 minutes.

You need to make a script to download the list locally every 35 minutes. Then use your local file to compare.

Otherwise you are not really stopping the tor users.
367  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 18, 2015, 04:23:55 PM
The order links have to be clicked should also be randomized

They are, but since they are only 3 sometimes it happens they are not.

This is good, did you applied it on a working faucet, with users?

Nope. Unfortunately I stopped doing faucets since a massive bot attack has killed my adsense account.

But I'm still in the community and happy to help with my 14 years experience in PHP LOL.

If every faucet owner do his own unique 100 word universes I assume the "someone" that makes the bots will just give-up.

If you rely on the 7 example ones ... they probably will be botted in a week or less ... unless I make new version that introduces "noise" in the image at the top. Then he will need to use OCR or (second) captcha solving service.

So better roll your own 100+ puzzles
368  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 18, 2015, 03:55:16 PM
The order links have to be clicked should also be randomized

They are, but since they are only 3 sometimes it happens they are not.
369  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 18, 2015, 12:45:39 PM
I would also want the anti bot script developed by makejar's owner. I'm a faucet owner so you don't have to worry about that.

Since I got over 10 PMs and e-mails that will take ages to respond. I decided to make v2 that is easier to integrate + make it public.

Instructions how to install:
http://bit.makejar.com/labs/anti-bot-links-201/install.php
Code:
Download & unpack:
http://bit.makejar.com/labs/anti-bot-links-201/antibotlinks.zip


Files to add:
/libs/antibotlinks.php


Files to edit:
/index.php
/templates/*theme-name*/index.php


Ok, let's start.

First make a backup of your faucet (everything could go wrong, better safe than sorry).

Then

Copy:
antibotlinks.php

To:
/libs/antibotlinks.php


Now you will need to edit 2 files. I suggest using Notepad++ https://notepad-plus-plus.org/ to edit files but any good editor will do the job.
This is based on FB R60 but should work with newer/older versions.

Open:
/index.php

Find:
        $data['captcha_info'] = $captcha;

add after:
        # AntiBotLinks
        require_once('libs/antibotlinks.php');
        $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure
        if (array_key_exists('address', $_POST)) {
          if (!$antibotlinks->check()) {
            $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true
          }
        } else {
          $antibotlinks->generate(3);// initial number of links min 3 - max 5
        }


Find:
           $data['captcha_valid'] &&

add after:

           # AntiBotLinks
           $antibotlinks->is_valid() &&
          

Open:
/templates/*theme-name*/index.php

Find:
</head>

Add before:
<?php
# AntiBotLinks START
?>

<script style="text/javascript">
$(function() {
  var clicks = 0;
  $('.antibotlinks').click(function() {
    clicks++;
    $('#antibotlinks').val($('#antibotlinks').val()+' '+$(this).attr('rel'));
    if(clicks == <?php echo $antibotlinks->get_link_count(); ?>) {
      var rand = Math.floor((Math.random() * clicks) + 1);
      var button = '<input type="submit" class="btn btn-primary btn-lg" value="Get Reward!">';
      var z=0;
      $('.antibotlinks').each(function(){
        z++;
        if (z==rand) {
          $(this).replaceWith(button);
        }
      });
      
    }
    $(this).hide();
    return false;
  });
});
</script>
<?php
# AntiBotLinks END
?>



Find:
                            <?php if(!$data["captcha_valid"]): ?>
                            <p class="alert alert-danger">Invalid captcha code!</p>
                            <?php endif; ?>


Add after (the input field must be between <form> and </form>):

<?php
# AntiBotLinks START
?>

                            <input type="hidden" name="antibotlinks" id="antibotlinks" value="" />
                            <?php if(!$antibotlinks->is_valid()): ?>
                            <p class="alert alert-danger">Invalid AntiBot verification!</p>
                            <?php endif; ?>
<?php
# AntiBotLinks END
?>


After the next:

</div>


Add:

<?php
# AntiBotLinks START
?>

                        <?php echo $antibotlinks->show_info(); ?>
<?php
# AntiBotLinks END
?>


Somewhere between <form> and </form> add (you need to do it 5 times, this is where the links will appear):

<?php
# AntiBotLinks START
?>

                        <?php echo $antibotlinks->show_link(); ?>
<?php
# AntiBotLinks END
?>


And finally remove the default CLAIM button :)



What's the idea behind?

The idea is to make each faucet unique. It is easy for a faucet owner to add new unique logical puzzles by editing antibotlinks.php (line 32-38). Just watch the lines above and try to make yours.

Live demo:
http://bit.makejar.com/labs/anti-bot-links-201/

If anybody has difficulties installing please contact me.
370  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 17, 2015, 10:34:53 PM

Scammer Address:

Code:
15ohWaaQPVVCy7tniNRKWK1efXBYPHwLwT
1E21q4XZhthSyv7osSEfr9mmxvjj7bKvn1
12z8USFahzbMEPqgycfA6NjnZDmc2HmpbJ
1EbNqfydaDU8CGwSt9MVWJBhwPvoct5Rdv
131q9hcEgojytBL9FYy9YYCBjEZ3MT9465
16EsNiZRa7LFLwmtJEfc4JKPp7U5aJwtjw
17Fb5vKbuoPAh3SYhVUaLYAQ6QQBv6Yeqd
124SxworVEdWB7f7JQg18zNP1MNvbJrQ61
1JrvXhwH8EDBmcJxjJpA13rqiLRbfYKZ3T
168wiQjTdVoENBwEbuENQERg9xSFdP6Hmr
1ABj5tJprjWG5Gcb9i8LCJMso544tX1uqQ
1K6ZaFnddC8JcmH26CxdnkAx8d7PU65T5T
199F43VxAnNJFW5vhbfkSnw6vMyJxp6K9j
164bqQY2pLLmZ8BT2uZPHSK4a2FecTLmTQ
1J1UUtig9aogvLn7o7yvA4MGYucD3LPAU
1LG6PLXVCodeM95C7atrsm4Aiq3kfdqGVz
18euKkAzUDTzE27ZydvcUqVEuTK6TMa4np
1B45mRwmh71tMzzeieYKX8rAkhkq3YdLUt
15bXFUgTfkgcDfam7SVhfa9dtTFBzaUam5
1FrwyhpMncSsjSY3AtZUrrKf7WRu1rNEQo
1LdxwfXomWR72PMdNJZtpFzdDgQpacscCH
12e8xsunnmZPL6AcqbtAcaQFfAzhynmh59
1mf8XF6cM777vkGm47KVMsSRgkmaApt9f
1BgQKKqWLXHjUXq8k8858pr9UjLcdzMUMi
1Gp2QWrYSPk6Pu3A2GkNFKMnQgzBETibp9
13XmtR58jkqn7hMe3NoeYsECjtxy7t1RjK
1PE2mHernjcB1QQmsb3tTdeqCXnAE56MoC
1ErEm77XH9gUhsVssp9Q1Mqz1A78vNqsku
1MTJ9Bi8f7JjfPceHAHJX6RoFnSJ724WrR
36KEEAhFjTTujBexuJcNUBH2GrTbZofwhM
17NTVnszA78fR8cKpzA72uKwMTMYorwyyp
16kAknx1kmzvH8SwNABnDMDcKvp2ApaLik
1N1VwbyfRuDWSvAnuC9fdtZ1L1pqggqFUT
1HraSUDGSKj1BzCuK6wvbBE3BjvwPuS5cW
13y7HqH7rHH5E89LfGLEJdiZPJqyC962Qu
14MGpGd3NKmuVvGRxKoQHnfW3FdaC4W1C1
1F848G2TE4wGRijgrB3GMRbFHdvup13GNr
18g6Bx1X4P31nLKn6XkEPTcA2fB3WDsEQD
1DChpiVMMs52Ly7G46rFTzr7QcgUefeVKC
14n2e77DtLpVs13qGKTAmmB1zR8evmb7SQ
1B25fpXQAvV9963N16ceiQcAAEnerWZNYa
1PFBNvBtK8Jwnb1ai7CmbtJ82wvYBMBsJr
1BinN3oo4h49mLfMvfV3HmR9GZ1WJ8JHHM
18g41BgopiuoFRUNFuDeFN7dWwJT436p3J
1AmPe9YvEY9PiyFAX4G9RFu37xkrNRoZD1
15wd42d2LDdK6c9tRxRjbNoRAAhBUwXj4E
16FbRbrcmJBBK47Cw6ZqjKUVJprjioKaXa
1EkjsXjLwp3pbsNnJMccE8DXiCgAsPjLnP
14C9AhNBnYKgtfhqPzyX8n7LshVVZBW8kc
126BzQsoqnSwncea6jayf8V6ebRCZgkFqp
1CFxsBUtwt6BbzL58tKXjnFqm2S8J8GdUk
18Noh57AgrFmDR3GKZCNSdLQwsEJ5XdoG2
1BVpvTLx5k6935UL2jkD6C545rYbN9F4KX
1EcRkqy9TkpQLiiUdzzVxsr9Ayso1upK8R
1d4qtqi5AYmEepEB67Zw9UX42CV5ygfSF
1A68noQGgsGX64cxsRMnt6Ff4VrAMPieZT
1KkBgv9LfzGKURCKnnmzfHLppnbZLPeZgd
1PjsX1Koyfok6SxX5PRXC4Ai6CBfQH49ic
1GEZpGYPJR3mSVhLeUcyKiPFt2PVPM3qsK
1KmWHPWJrqfJpdS1Xj54p1P9wESjxGYsm9
1PFqXAQbwP422vNMw17GtnmDZhFTm9twnJ
1BBMMtpDcyiDwxyAqiBdtGjtXcYy3hNyeg
1Q5cVZksXyhRhTrSCnepWjmxoADyY59Aej
1MCmVeLDeUGSZ8wRKXCpJxXP5oGGP7C6n7
18sAEeJNnpjL8v8KYQUen3HvRNjpmZ5drX
12GghuLWxKgYKYB2XwU8uq9BcXDTUZBQh4
19ewGskiq9xDjNk1baji1PQbun3R4dxSw8
16yU4W6XJj1Eb2YMhkuTiFZxNahLQ93xiH
15EwRbSBJaPYN8DGtsEWUxBUd4BcwyQxEF
12Dxsgdif9nmaXqQx7uNctPn1kK5VJ42LM
16DPvMy8qFBn4c3xmgWFoGXwqwcWaboZ7W
18M98igpLTGyEe7HYenkxsTCE9Nb8RLyrE
1CMLkMSbAohLbYtDqUGdwpdPokqnNjN96M
1NaB3fmwE4GMEBoUzUoQN99NM8ScLEXtts
12PhRgboPtacixWPwUuM8C5UEHP8aetouq
1Dxe8BHNKg882S5PUeXBh4o9pdwpx6opoT
1MV27W96Tuqrem2R1NJpBWE9hXdvbHGkrs
1CxgK7jkE2Yme8pjZymiGEkhcKhkeNBivM
1JKo6PYG2SRaxdUiPjWCxY72n67vxM4cXS
1GMPtBgDmZABCTZkc8GCGV72UAqcAV8jFJ
3QpqutTQkDh1aigwNY6FcQmcR4kxV9jKuC
1PErAMnCbswU5cHNAJEUPBvWfhpw4YDjhG
1KwXDkg3XVKpszek7L1PoUd7MaFawgzKPG
12fMSfKccsnCndBfrrGZB912LGUbZxsLyb
172GQ2HquPiV5Um916G47WWCQQcZ66uJKW
1KFB8bRWhioqv5o7ih6qZozJD1u4bjZ3ph
1EsMRQZAypdy4KptS7FwA9x1qZKk5cZKui
13rJyjmwe57AUTvCmce97UqFxnTRmuc9Ry
1CJCf3W2PQFvgGxGx5Dzaw4yjtzTsCCkSU
356FdDkXqR1GrLoJecN91viNo6AR5yaJ7K
1erjbfa2kmX7BmVdDqDhmWbEUAukzjESo
1AEXnb2ehWo3RHWs5outYiqVDFUnmSu4z6
178sXzQiVudMKdiamobpQoeq5cmbayMTkU
1Ea91UZYYmX9RsQ74Bz6mVhsBqwJQfHSC7
1CSWyFQc38H449os3T46tmhPT5mbSQSjS6
1AciRhncHKh78vK5ozhLTrYKmcJ3nWk3ex
18hA927ZqRGHdWJGgS9SV6xHPpfZmn3yHz
12Li8KjsVmb7Lh9DnyrzRv3dBpRvHjqRfD
134tqQwnhsbjkuGYRXwgwTWogzftqSaT55
14i4Xzxf9TmgKy14MkSGaNQF1ok7BXGUxu
17Jfm27EhK2PSuVJSogizC4i52H1hVHLbr
18eNbGypdoPb6TPTXg8o3eovFtFJJiQ8L9
1LUcH5i68dyLPyNJkWvJjWXQuiZSwX9UWn
14no7rcE2UU9h9HUankEmcAN3zuBLD8j73
13zNpv9sMV6PmfqFCtvNQwum3J4b2Ybh1s
1G6QZFEpWZF4RM4sUeW6CjngcWHgxdquG9
1HbM1NrFucBpT83X17MKSS33A34iZPLW44
1JH5rxeVPJDJgWFRiMtVKf6CknC3SoAFmx
1FkRZaS2SPQj4p6ciASufgENyt2Qb1oRq9
1MrwTt8vN8UZ3zBeeC7squ9oeBLcjJan6G
16ukZMdMBLHPEa3Lh7euNTumhjSNTQkCLM
1DJhTYjppYiVsgJrMHSDKSAcZf2X5DCK54
1AVAYEtguGp5mGNAZazMkvRPDG4c459rea
1E2hMQuFjxgu4CLg6MJRHZnkv6YxqQDyt3
1NQjxoqoBsmqTHPLHh4ev2ad8kfHKUaZv6
1NLt1b3N2zDEQ27YjFK6JPUXpFfEbJaViP
17t4wurKNTyK7deBixfFeTXuQYU87gw4Nn
1GuA3YkaAEYf2VUf6tW3vXhwNbXZFpEBkw
19hYJjVSSPKwCFGwXDjxhEmLHE4VTpGwRt
19WfyWEYg798LmarJ7wWJMJu6Jwp9xctrc
1M8CEwrNPqkFwdnEUAFZQdsmXtjMS48FP8
1ExPYmjdNp8MfVmJ7UNSJUNxqYFPE463rd
12Pq9dzeuwMG8svB8BKZHE4dvXNFdBk6ww
16wY1Je7rmP5eAecbG2m2BHYMDcXQQM8yT
13Nhir2KMbZX8URWnfS8Po2VRFbuv32dPS
34cyLWN3MkdV7Rb6pvYhDKWuJ6ND48GLvE
3QmKe1pTHMkzSPpT1CLHAV6ELeGc3YwkoQ
3KUxwuWphZW6majDnSBzVv8bP2v8ZWpfwC
399qr86jRPW88kVD5FYLvLzKNAgk72yeUL
3Jn9ps7WPjLg5XRfHFTkotXAER1PoCcVar
35fDRJiKWvr7UrYapXLRxVQ6inGtccJXca
1CB6QHMiNmhsDFupnhmAEiZ9Fxm1FZrRZy
37kQ54s7J3HgqpdTyTepn48yhNza58k2qT
3KinrDP6rgUWNQWNQhZvLrUnTHvB9PQMpV
3MST3ABNeLcbj7aEeDrUhLkYFY4NxZDAMs
3Mopyhz5QVm35oB2U7sqCZNHj4ffbCzD2K
3KZuYi54GPzyU9XorraDtQaUnAeNiyw4Th
37bPx3LRuhXhFtX2VjBdjdbwTP7kQWj6fT
34bVfEXHMia7PPFKukLRiNUzEWd89Y9pJx
3DD9eUpEg5P9HRz8WKZmoSYvhqG8hjihyU
3FSzwrYLucfu2fKYzB6Ry8DuPAABbj8v8w
39T7vi7dnFHQjEo5wfDiDx82wAdxXUrbNn
36X1g7ehbgPy7vuq52fgqqUxEQw8hLWtFi
35dGXZZGAzLvQdGsLRwQsT3sZusBYAWQJu
3JGnEf2TSBnNcJmeKbYRQcv1BpUUyBPc8K
3FRKqviSQUNHuQKGigtbXwHQj81i2ghyGM
3P9bXGRTwfie9hgLRxfVY5oSdydKqWUMNX
3BTnhdUuRd1sAWYETL56UFa1pNv13gbHmX
16KZ15Ts16GCcUS2iYDakaUc5w47pzh1GD
1ED17XaNZBCeY3UfYA5tWrYp3xS6pfb1Rg
1CcoFeAuSgkdY6oK2Fz5d7RKxWe81T8qUn
16sptKzboeK7Ho7Ax35yuCdmLKnE4Mac7R
19bCZJFMVsGo9bpLfpayirhQ9DvEGnxZ1Y
13zRz4Xn2FL5cENjVT646SgSF1BV1UzXg2
1F1rHRBpm6UFUgj1M6EKFqMbqNPazRZetL
1HFovJJLwnTwifp8zBNHQP83iEKpjUena
15NaMTexE3vpzu5PJae4kfVmes2pPv7zA6
177N4s5DmYZ4MZjwgyYyfGkEDN3UvUejL7
1An7Sn133GW7dq7eMHAkPt8WQ2zwR4QkSG
1FrHC7xgc3dCwg2uM4kbye4VwQYxZjY7Vc
1pDxLk3iY5fVafLmSPA9RjStDG7CGFNN2
1F6MoyBy1GjNjvWk33tKvsKjcmC9hJHMhx
1F5my1bDLnJYfSyLNGwEVajb31cstFoEt1
1QG8RhWnb2c82icZWqPkNQn8ssf2pVMCzJ
18p9xq9KmQoXeGmcXjy67EQcTvjWuMM3JV
1MJrpCcNZiYqZZ5WTMrNVJZwZUyRKAzX7T
1C8NyoWSWgLhnDeFdf5NNkMdC4WQWZ9ncx
1NcMBg2bfox5KghT4CTNLRTseWEJXTBPwQ
1DqVWSYX5pGSDg3bpgn5QURxbuwpv4EMoR
13aBW9NK4ezsHANTojgpKXwXiPcqBFhSVV
19qgWGNF5u7ifngPvCmmHejNjS4CGGXnNo
1KPKTJHjoW4EvzLqQFZEMMzXTNrQZgAbAM
1EEbsHWchitNRM6kS58PqtQ1j5zyvG5hv9
1KtuMLCeDZGAYZwbjq7tXDD2MtDxkrozfP
1AzCjAh68WAxBz4cAhWayV1dYHWPtCVScd
1Cum2k9g6gBRhqFk2yvut67oTi8RZVM8K5
1HXi6j24jFADn8vBFJpqJSa95ZoNWPkmoK
14DgPFJaAUSHber8psmvAY72j3X46Kp5Rz
162fhBrTGuor1Wf7qnkDUdrQAFfTWkMFgX
1EGqg5eeu1gmGmyLSnHjt35hJTLBKh16mN
1EuPUPDsAENL5i6qsvAAq1WmUSbc1q5cf9
1DApwG3YUKNioegxdkA94QkGDRnJqwVCys
12tgHNHqjjUxDL7sdCDgYjHcWonhZG9KoX
1J7VMfpFVqvYx97LR9H2K6QAcvdxAwguSq
1Pr1vLjakEAe9XhtyqS4W7XicUtBQvuoog
113TsTuKdxBUDbDi6fjJJsZADX7vdEC4Rg
1GeMfRoyKvyTy19Lb495KfR1RVz7VsLhSr
1HrwMjjtCA5tSeZNXSDh8jmHZ3CNd9PfYA
19Dm1dBDqukxPhYgdajTPo43yGFdEhZpx
1MMH3QBBQtKYq4MH6bdoJnQVt6SW2ytCGg
18FTHnCqD2WcmEETD2ntsi6J8VcRFgDCjV
1LGbtruuVXLzDGrrvMfAbZFfer6GZUjfoi
1NzTs5F5YyrPP9c4R1DU1UD7Q6pv3WPZX5
1JhcfQDU5JH7pxcNrGjEuym7Z3pwRYwvHK
1KWV31rNgKmSopLBMYkyjgDUgXfieTpjzD
18f6ipMR1j3ySrCZFzjGTLLcaLE2r4L2ik
12CRjAwUUh8YgUSP9hMHbr88Lq2kALcTsf
1P5WRs8KbrNkKJ8hfK695jrFNaa7zY1JAp
133ivm3QYmR3nmnphM4LRX1WkWmjzKE7Rk
3NTm9L7URqsaEzwpsjAhuafZ6hT4s6eTtt
3FAPuNnWDCQv3METY7y1KddwrSZ9rKjBA2
18AvhyiDhioy7k1TSsg8Qzoq1TAopYha3r
1NZzYLM9LcUPYbAZP2y1kMrAcCrmiB1tcG
3868c2Xdgyr95psPDncPKRf7YbcUV7iWhV
1EcRkqy9TkpQLiiUdzzVxsr9Ayso1upK8R
1CSWyFQc38H449os3T46tmhPT5mbSQSjS6
14no7rcE2UU9h9HUankEmcAN3zuBLD8j73
13zNpv9sMV6PmfqFCtvNQwum3J4b2Ybh1s
1CB6QHMiNmhsDFupnhmAEiZ9Fxm1FZrRZy
1EaHa6BCV7twxnPJuyPYaKi4fb5ZuGWUHp
1K2vpdMxkFpCG9sJzUpPCkQr9uBdUdkudk
1EaHa6BCV7twxnPJuyPYaKi4fb5ZuGWUHp
1B7zdWHxrQF6nHWwJ8jvBrJ2gmQ6zHZwz4

EDIT: The 1Po9cWPPqfykFG1Zdrba7bkEcnkbq98BVD is not a bot/scam address. If you have this address blocked, please unblock.

Friend, I just removed your address from the scammers list. We are sorry for that mistake.

As you can see above, I added a note asking to not blacklist your address anymore.

In addition too I would like to ask you to add my faucet to your list ( http://bitcoin-catcher.com/faucet ). I guess you didn't add it before because my faucet had a mandatory share gate. Now that action is not needed anymore.

Thank you.

Thanks.

I'm unable to see your faucet (it redirects). My partner don't see it too. So probably our both IPs are in your blacklist, lol.

Give me a minute, please. I will see what happens.

Are you using proxy? TOR Navigator?

Lol, no. We have port 80 open on my partner's IP (because the local test server we use is there), but not on mine.

Anyway http://check.getipintel.net/check.php?ip=89.106.108.217 shows me as 0.99518430233002
371  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 17, 2015, 10:19:01 PM

Scammer Address:

Code:
15ohWaaQPVVCy7tniNRKWK1efXBYPHwLwT
1E21q4XZhthSyv7osSEfr9mmxvjj7bKvn1
12z8USFahzbMEPqgycfA6NjnZDmc2HmpbJ
1EbNqfydaDU8CGwSt9MVWJBhwPvoct5Rdv
131q9hcEgojytBL9FYy9YYCBjEZ3MT9465
16EsNiZRa7LFLwmtJEfc4JKPp7U5aJwtjw
17Fb5vKbuoPAh3SYhVUaLYAQ6QQBv6Yeqd
124SxworVEdWB7f7JQg18zNP1MNvbJrQ61
1JrvXhwH8EDBmcJxjJpA13rqiLRbfYKZ3T
168wiQjTdVoENBwEbuENQERg9xSFdP6Hmr
1ABj5tJprjWG5Gcb9i8LCJMso544tX1uqQ
1K6ZaFnddC8JcmH26CxdnkAx8d7PU65T5T
199F43VxAnNJFW5vhbfkSnw6vMyJxp6K9j
164bqQY2pLLmZ8BT2uZPHSK4a2FecTLmTQ
1J1UUtig9aogvLn7o7yvA4MGYucD3LPAU
1LG6PLXVCodeM95C7atrsm4Aiq3kfdqGVz
18euKkAzUDTzE27ZydvcUqVEuTK6TMa4np
1B45mRwmh71tMzzeieYKX8rAkhkq3YdLUt
15bXFUgTfkgcDfam7SVhfa9dtTFBzaUam5
1FrwyhpMncSsjSY3AtZUrrKf7WRu1rNEQo
1LdxwfXomWR72PMdNJZtpFzdDgQpacscCH
12e8xsunnmZPL6AcqbtAcaQFfAzhynmh59
1mf8XF6cM777vkGm47KVMsSRgkmaApt9f
1BgQKKqWLXHjUXq8k8858pr9UjLcdzMUMi
1Gp2QWrYSPk6Pu3A2GkNFKMnQgzBETibp9
13XmtR58jkqn7hMe3NoeYsECjtxy7t1RjK
1PE2mHernjcB1QQmsb3tTdeqCXnAE56MoC
1ErEm77XH9gUhsVssp9Q1Mqz1A78vNqsku
1MTJ9Bi8f7JjfPceHAHJX6RoFnSJ724WrR
36KEEAhFjTTujBexuJcNUBH2GrTbZofwhM
17NTVnszA78fR8cKpzA72uKwMTMYorwyyp
16kAknx1kmzvH8SwNABnDMDcKvp2ApaLik
1N1VwbyfRuDWSvAnuC9fdtZ1L1pqggqFUT
1HraSUDGSKj1BzCuK6wvbBE3BjvwPuS5cW
13y7HqH7rHH5E89LfGLEJdiZPJqyC962Qu
14MGpGd3NKmuVvGRxKoQHnfW3FdaC4W1C1
1F848G2TE4wGRijgrB3GMRbFHdvup13GNr
18g6Bx1X4P31nLKn6XkEPTcA2fB3WDsEQD
1DChpiVMMs52Ly7G46rFTzr7QcgUefeVKC
14n2e77DtLpVs13qGKTAmmB1zR8evmb7SQ
1B25fpXQAvV9963N16ceiQcAAEnerWZNYa
1PFBNvBtK8Jwnb1ai7CmbtJ82wvYBMBsJr
1BinN3oo4h49mLfMvfV3HmR9GZ1WJ8JHHM
18g41BgopiuoFRUNFuDeFN7dWwJT436p3J
1AmPe9YvEY9PiyFAX4G9RFu37xkrNRoZD1
15wd42d2LDdK6c9tRxRjbNoRAAhBUwXj4E
16FbRbrcmJBBK47Cw6ZqjKUVJprjioKaXa
1EkjsXjLwp3pbsNnJMccE8DXiCgAsPjLnP
14C9AhNBnYKgtfhqPzyX8n7LshVVZBW8kc
126BzQsoqnSwncea6jayf8V6ebRCZgkFqp
1CFxsBUtwt6BbzL58tKXjnFqm2S8J8GdUk
18Noh57AgrFmDR3GKZCNSdLQwsEJ5XdoG2
1BVpvTLx5k6935UL2jkD6C545rYbN9F4KX
1EcRkqy9TkpQLiiUdzzVxsr9Ayso1upK8R
1d4qtqi5AYmEepEB67Zw9UX42CV5ygfSF
1A68noQGgsGX64cxsRMnt6Ff4VrAMPieZT
1KkBgv9LfzGKURCKnnmzfHLppnbZLPeZgd
1PjsX1Koyfok6SxX5PRXC4Ai6CBfQH49ic
1GEZpGYPJR3mSVhLeUcyKiPFt2PVPM3qsK
1KmWHPWJrqfJpdS1Xj54p1P9wESjxGYsm9
1PFqXAQbwP422vNMw17GtnmDZhFTm9twnJ
1BBMMtpDcyiDwxyAqiBdtGjtXcYy3hNyeg
1Q5cVZksXyhRhTrSCnepWjmxoADyY59Aej
1MCmVeLDeUGSZ8wRKXCpJxXP5oGGP7C6n7
18sAEeJNnpjL8v8KYQUen3HvRNjpmZ5drX
12GghuLWxKgYKYB2XwU8uq9BcXDTUZBQh4
19ewGskiq9xDjNk1baji1PQbun3R4dxSw8
16yU4W6XJj1Eb2YMhkuTiFZxNahLQ93xiH
15EwRbSBJaPYN8DGtsEWUxBUd4BcwyQxEF
12Dxsgdif9nmaXqQx7uNctPn1kK5VJ42LM
16DPvMy8qFBn4c3xmgWFoGXwqwcWaboZ7W
18M98igpLTGyEe7HYenkxsTCE9Nb8RLyrE
1CMLkMSbAohLbYtDqUGdwpdPokqnNjN96M
1NaB3fmwE4GMEBoUzUoQN99NM8ScLEXtts
12PhRgboPtacixWPwUuM8C5UEHP8aetouq
1Dxe8BHNKg882S5PUeXBh4o9pdwpx6opoT
1MV27W96Tuqrem2R1NJpBWE9hXdvbHGkrs
1CxgK7jkE2Yme8pjZymiGEkhcKhkeNBivM
1JKo6PYG2SRaxdUiPjWCxY72n67vxM4cXS
1GMPtBgDmZABCTZkc8GCGV72UAqcAV8jFJ
3QpqutTQkDh1aigwNY6FcQmcR4kxV9jKuC
1PErAMnCbswU5cHNAJEUPBvWfhpw4YDjhG
1KwXDkg3XVKpszek7L1PoUd7MaFawgzKPG
12fMSfKccsnCndBfrrGZB912LGUbZxsLyb
172GQ2HquPiV5Um916G47WWCQQcZ66uJKW
1KFB8bRWhioqv5o7ih6qZozJD1u4bjZ3ph
1EsMRQZAypdy4KptS7FwA9x1qZKk5cZKui
13rJyjmwe57AUTvCmce97UqFxnTRmuc9Ry
1CJCf3W2PQFvgGxGx5Dzaw4yjtzTsCCkSU
356FdDkXqR1GrLoJecN91viNo6AR5yaJ7K
1erjbfa2kmX7BmVdDqDhmWbEUAukzjESo
1AEXnb2ehWo3RHWs5outYiqVDFUnmSu4z6
178sXzQiVudMKdiamobpQoeq5cmbayMTkU
1Ea91UZYYmX9RsQ74Bz6mVhsBqwJQfHSC7
1CSWyFQc38H449os3T46tmhPT5mbSQSjS6
1AciRhncHKh78vK5ozhLTrYKmcJ3nWk3ex
18hA927ZqRGHdWJGgS9SV6xHPpfZmn3yHz
12Li8KjsVmb7Lh9DnyrzRv3dBpRvHjqRfD
134tqQwnhsbjkuGYRXwgwTWogzftqSaT55
14i4Xzxf9TmgKy14MkSGaNQF1ok7BXGUxu
17Jfm27EhK2PSuVJSogizC4i52H1hVHLbr
18eNbGypdoPb6TPTXg8o3eovFtFJJiQ8L9
1LUcH5i68dyLPyNJkWvJjWXQuiZSwX9UWn
14no7rcE2UU9h9HUankEmcAN3zuBLD8j73
13zNpv9sMV6PmfqFCtvNQwum3J4b2Ybh1s
1G6QZFEpWZF4RM4sUeW6CjngcWHgxdquG9
1HbM1NrFucBpT83X17MKSS33A34iZPLW44
1JH5rxeVPJDJgWFRiMtVKf6CknC3SoAFmx
1FkRZaS2SPQj4p6ciASufgENyt2Qb1oRq9
1MrwTt8vN8UZ3zBeeC7squ9oeBLcjJan6G
16ukZMdMBLHPEa3Lh7euNTumhjSNTQkCLM
1DJhTYjppYiVsgJrMHSDKSAcZf2X5DCK54
1AVAYEtguGp5mGNAZazMkvRPDG4c459rea
1E2hMQuFjxgu4CLg6MJRHZnkv6YxqQDyt3
1NQjxoqoBsmqTHPLHh4ev2ad8kfHKUaZv6
1NLt1b3N2zDEQ27YjFK6JPUXpFfEbJaViP
17t4wurKNTyK7deBixfFeTXuQYU87gw4Nn
1GuA3YkaAEYf2VUf6tW3vXhwNbXZFpEBkw
19hYJjVSSPKwCFGwXDjxhEmLHE4VTpGwRt
19WfyWEYg798LmarJ7wWJMJu6Jwp9xctrc
1M8CEwrNPqkFwdnEUAFZQdsmXtjMS48FP8
1ExPYmjdNp8MfVmJ7UNSJUNxqYFPE463rd
12Pq9dzeuwMG8svB8BKZHE4dvXNFdBk6ww
16wY1Je7rmP5eAecbG2m2BHYMDcXQQM8yT
13Nhir2KMbZX8URWnfS8Po2VRFbuv32dPS
34cyLWN3MkdV7Rb6pvYhDKWuJ6ND48GLvE
3QmKe1pTHMkzSPpT1CLHAV6ELeGc3YwkoQ
3KUxwuWphZW6majDnSBzVv8bP2v8ZWpfwC
399qr86jRPW88kVD5FYLvLzKNAgk72yeUL
3Jn9ps7WPjLg5XRfHFTkotXAER1PoCcVar
35fDRJiKWvr7UrYapXLRxVQ6inGtccJXca
1CB6QHMiNmhsDFupnhmAEiZ9Fxm1FZrRZy
37kQ54s7J3HgqpdTyTepn48yhNza58k2qT
3KinrDP6rgUWNQWNQhZvLrUnTHvB9PQMpV
3MST3ABNeLcbj7aEeDrUhLkYFY4NxZDAMs
3Mopyhz5QVm35oB2U7sqCZNHj4ffbCzD2K
3KZuYi54GPzyU9XorraDtQaUnAeNiyw4Th
37bPx3LRuhXhFtX2VjBdjdbwTP7kQWj6fT
34bVfEXHMia7PPFKukLRiNUzEWd89Y9pJx
3DD9eUpEg5P9HRz8WKZmoSYvhqG8hjihyU
3FSzwrYLucfu2fKYzB6Ry8DuPAABbj8v8w
39T7vi7dnFHQjEo5wfDiDx82wAdxXUrbNn
36X1g7ehbgPy7vuq52fgqqUxEQw8hLWtFi
35dGXZZGAzLvQdGsLRwQsT3sZusBYAWQJu
3JGnEf2TSBnNcJmeKbYRQcv1BpUUyBPc8K
3FRKqviSQUNHuQKGigtbXwHQj81i2ghyGM
3P9bXGRTwfie9hgLRxfVY5oSdydKqWUMNX
3BTnhdUuRd1sAWYETL56UFa1pNv13gbHmX
16KZ15Ts16GCcUS2iYDakaUc5w47pzh1GD
1ED17XaNZBCeY3UfYA5tWrYp3xS6pfb1Rg
1CcoFeAuSgkdY6oK2Fz5d7RKxWe81T8qUn
16sptKzboeK7Ho7Ax35yuCdmLKnE4Mac7R
19bCZJFMVsGo9bpLfpayirhQ9DvEGnxZ1Y
13zRz4Xn2FL5cENjVT646SgSF1BV1UzXg2
1F1rHRBpm6UFUgj1M6EKFqMbqNPazRZetL
1HFovJJLwnTwifp8zBNHQP83iEKpjUena
15NaMTexE3vpzu5PJae4kfVmes2pPv7zA6
177N4s5DmYZ4MZjwgyYyfGkEDN3UvUejL7
1An7Sn133GW7dq7eMHAkPt8WQ2zwR4QkSG
1FrHC7xgc3dCwg2uM4kbye4VwQYxZjY7Vc
1pDxLk3iY5fVafLmSPA9RjStDG7CGFNN2
1F6MoyBy1GjNjvWk33tKvsKjcmC9hJHMhx
1F5my1bDLnJYfSyLNGwEVajb31cstFoEt1
1QG8RhWnb2c82icZWqPkNQn8ssf2pVMCzJ
18p9xq9KmQoXeGmcXjy67EQcTvjWuMM3JV
1MJrpCcNZiYqZZ5WTMrNVJZwZUyRKAzX7T
1C8NyoWSWgLhnDeFdf5NNkMdC4WQWZ9ncx
1NcMBg2bfox5KghT4CTNLRTseWEJXTBPwQ
1DqVWSYX5pGSDg3bpgn5QURxbuwpv4EMoR
13aBW9NK4ezsHANTojgpKXwXiPcqBFhSVV
19qgWGNF5u7ifngPvCmmHejNjS4CGGXnNo
1KPKTJHjoW4EvzLqQFZEMMzXTNrQZgAbAM
1EEbsHWchitNRM6kS58PqtQ1j5zyvG5hv9
1KtuMLCeDZGAYZwbjq7tXDD2MtDxkrozfP
1AzCjAh68WAxBz4cAhWayV1dYHWPtCVScd
1Cum2k9g6gBRhqFk2yvut67oTi8RZVM8K5
1HXi6j24jFADn8vBFJpqJSa95ZoNWPkmoK
14DgPFJaAUSHber8psmvAY72j3X46Kp5Rz
162fhBrTGuor1Wf7qnkDUdrQAFfTWkMFgX
1EGqg5eeu1gmGmyLSnHjt35hJTLBKh16mN
1EuPUPDsAENL5i6qsvAAq1WmUSbc1q5cf9
1DApwG3YUKNioegxdkA94QkGDRnJqwVCys
12tgHNHqjjUxDL7sdCDgYjHcWonhZG9KoX
1J7VMfpFVqvYx97LR9H2K6QAcvdxAwguSq
1Pr1vLjakEAe9XhtyqS4W7XicUtBQvuoog
113TsTuKdxBUDbDi6fjJJsZADX7vdEC4Rg
1GeMfRoyKvyTy19Lb495KfR1RVz7VsLhSr
1HrwMjjtCA5tSeZNXSDh8jmHZ3CNd9PfYA
19Dm1dBDqukxPhYgdajTPo43yGFdEhZpx
1MMH3QBBQtKYq4MH6bdoJnQVt6SW2ytCGg
18FTHnCqD2WcmEETD2ntsi6J8VcRFgDCjV
1LGbtruuVXLzDGrrvMfAbZFfer6GZUjfoi
1NzTs5F5YyrPP9c4R1DU1UD7Q6pv3WPZX5
1JhcfQDU5JH7pxcNrGjEuym7Z3pwRYwvHK
1KWV31rNgKmSopLBMYkyjgDUgXfieTpjzD
18f6ipMR1j3ySrCZFzjGTLLcaLE2r4L2ik
12CRjAwUUh8YgUSP9hMHbr88Lq2kALcTsf
1P5WRs8KbrNkKJ8hfK695jrFNaa7zY1JAp
133ivm3QYmR3nmnphM4LRX1WkWmjzKE7Rk
3NTm9L7URqsaEzwpsjAhuafZ6hT4s6eTtt
3FAPuNnWDCQv3METY7y1KddwrSZ9rKjBA2
18AvhyiDhioy7k1TSsg8Qzoq1TAopYha3r
1NZzYLM9LcUPYbAZP2y1kMrAcCrmiB1tcG
3868c2Xdgyr95psPDncPKRf7YbcUV7iWhV
1EcRkqy9TkpQLiiUdzzVxsr9Ayso1upK8R
1CSWyFQc38H449os3T46tmhPT5mbSQSjS6
14no7rcE2UU9h9HUankEmcAN3zuBLD8j73
13zNpv9sMV6PmfqFCtvNQwum3J4b2Ybh1s
1CB6QHMiNmhsDFupnhmAEiZ9Fxm1FZrRZy
1EaHa6BCV7twxnPJuyPYaKi4fb5ZuGWUHp
1K2vpdMxkFpCG9sJzUpPCkQr9uBdUdkudk
1EaHa6BCV7twxnPJuyPYaKi4fb5ZuGWUHp
1B7zdWHxrQF6nHWwJ8jvBrJ2gmQ6zHZwz4

EDIT: The 1Po9cWPPqfykFG1Zdrba7bkEcnkbq98BVD is not a bot/scam address. If you have this address blocked, please unblock.

Friend, I just removed your address from the scammers list. We are sorry for that mistake.

As you can see above, I added a note asking to not blacklist your address anymore.

In addition too I would like to ask you to add my faucet to your list ( http://bitcoin-catcher.com/faucet ). I guess you didn't add it before because my faucet had a mandatory share gate. Now that action is not needed anymore.

Thank you.

Thanks.

I'm unable to see your faucet (it redirects). My partner don't see it too. So probably our both IPs are in your blacklist, lol.
372  Economy / Micro Earnings / Re: [Updated 17/oct/2015] Faucet Owners Against Scammers and Bots on: October 17, 2015, 10:03:56 PM
Calm down friend, sure is a mistake that has solution.

I was watching your demo ANTI-BOT and wow is impressive, excellent work. I would like to try.

Yep, but it is a costy mistake. Usually I pay 0.01+BTC a day for ads to provide good traffic ... and today about 5 faucets told me to f* myself. Nope, it is not funny at all. We don't have ads so we rely only on the ref.

P.M. me your faucet url address. I'm preparing the docs to easily modify FB script. Since FB released their script under license so it can't be shared.
373  Economy / Micro Earnings / Re: [Updated 16/oct/2015] Faucet Owners Against Scammers and Bots on: October 17, 2015, 09:09:24 PM
Thanks for the infos..

Here's some addresses i found in my DB and their associated ips:

1EcRkqy9TkpQLiiUdzzVxsr9Ayso1upK8R       178.150.176.16
1CSWyFQc38H449os3T46tmhPT5mbSQSjS6   5.77.2.67
14no7rcE2UU9h9HUankEmcAN3zuBLD8j73    46.151.107.238
13zNpv9sMV6PmfqFCtvNQwum3J4b2Ybh1s    31.180.239.112
1CB6QHMiNmhsDFupnhmAEiZ9Fxm1FZrRZy   70.39.187.242
1Po9cWPPqfykFG1Zdrba7bkEcnkbq98BVD      89.106.108.217
1EaHa6BCV7twxnPJuyPYaKi4fb5ZuGWUHp     189.253.92.202

Dunno if it can help but that's what i found..



Please could you explain why you don't like my address 1Po9cWPPqfykFG1Zdrba7bkEcnkbq98BVD 89.106.108.217

Just yesterday you wanted me to include your faucet in our list?

I'm definitely not a bot, nor a scammer. http://bit.makejar.com/ has just turned 1 year, the addresses we use for ref are at the bottom of the page. We try to stay open and clear with both faucet users and faucet owners. If you don't like being on our website just send us a message and we will remove you from our list but please don't report us as scammers because WE ARE NOT!

Actually I'm currently working on a new anti-bot add-on. If someone want to try it shoot me a message. Demo: http://bit.makejar.com/labs/fbab/ I'm not going to share it in public because I don't want bot users to get the source but I would be happy to share for free with any faucet owner that is fine to be on our list.
374  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: October 16, 2015, 09:54:51 AM

There is another bug in r60 and older.

In /index.php it says:
Code:
$eligible = $time > intval($data['timer']);

must be
Code:
$eligible = $time >= intval($data['timer']);

This is related to the claiming interval issue you partially fixed around:
https://bitcointalk.org/index.php?topic=844119.msg10844204#msg10844204
375  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: October 08, 2015, 05:20:25 PM
Hey Kazuldur

Could you move the legend saying
[Referral payouts]
[Normal payouts ]
from top-right to bottom-left or top-left?

It is annoying if you try to get better every day ... the latest day is always below the legend.


Also could you also make:
Faucets payouts history: contain 30 rows instead of 15?
376  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: October 07, 2015, 07:36:37 PM
http://ark.intel.com/products/80910/Intel-Xeon-Processor-E3-1231-v3-8M-Cache-3_40-GHz

I don't have internal gpu

there's a slight difference/2-3% with turbo boost, which is 3800 on two threads, but that is rare as OS consumes some cycles and it goes to 3700Mhz, on four threads it goes down to 3600 and stays there.

I am comparing equal % of total CPU load when running sweetspot to individually running 2-8 threads on 100% core load

When running ALL the threads at % your CPU goes below 3600MHz and the percentage is based on that value. So if you compare 50% of 4 threads running at 1000MHz to 100% of 2 threads running at 3600MHz you will get lower hash rate but you will get also lower power usage. 60% and 70% are not great savers on some CPUs but the only reason I included them was because someone wanted them there Smiley

The deal is to save energy when it is not profitable to mine, right Grin

Anyway it is impossible for an external app to stop/start threads of the miner without restarting the miner. It is possible to pause them, but if the pause is greater than 2s then they will disconnect from the stratum.
377  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: October 07, 2015, 09:43:20 AM
One of the things that make Coin Magi unique is that it is very resistant to ASICs and GPUs. That makes my life easier than having to purchase an ASIC or set up a GPU mining rig and compete with other's hashrate. With Magi's unique block reward, it gives control and flexibility to the rewards that you could earn by mining on a CPU. Therefore, that's why I chose Magi as my top CPU mining coin. I mine it everyday!  Cheesy

Magi is not only resistant to ASICs and GPUs but it is resistant to multiple CPU threads, as it seems my Xeon E3(=~i7 4770 non K) has a bottleneck when starting more threads:

2-19,5=39kh/s
3-18=54
4-16=64
5-14=70
6-13=78
7-11,25=78,75
8-10=80kh/s

p.s. seems that Sweetspot strategy is not efficient with my CPU as it seems that I get less kh/s when I get more threads with reduced core load 10%-70% than if I start a few threads on 100% core load, anyone help with i7?

~i7 4770 is a 4 core CPU it is normal that at 8 threads you are not getting the double of what you are getting at 4 threads.
The strange thing is that at 4 threads you are not getting the double of 2 threads. How are the CPU temps while mining at 4 threads? Also are you using the internal GPU?

About the 10%-70% (especially the 10%-50% range) you are getting worse results but you are also getting less power waste because your CPU is idling at the lower frequencies.
378  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: October 05, 2015, 03:18:12 PM
I am creating a btc faucet through a faucetbox script but at that time I receive an error " Parse error: syntax error, unexpected '[' in /home/u953702383/public_html/index.php on line 131 " Can you help me please!!!

Open index.php with Notepad++

Replace
Code:
58 => ["DELETE FROM `Faucetinabox_Settings` WHERE `name` IN ('captchme_public_key', 'captchme_private_key', 'captchme_authentication_key', 'reklamper_enabled')"],

with

Code:
58 => array("DELETE FROM `Faucetinabox_Settings` WHERE `name` IN ('captchme_public_key', 'captchme_private_key', 'captchme_authentication_key', 'reklamper_enabled')")
379  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: September 28, 2015, 04:03:40 PM
Hello All,

Two news for me today.

1. Got new version of Sweet Spot

I can't mine solo with that, it sends prefix "stratum+tcp://" to the miner

Sorry for the delay. In 1.0.2 I've added "Solo" checkbox that adds http:// instead of stratum+tcp://.
380  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: September 09, 2015, 09:43:34 AM
... My cpu always seems to overheat and crash if I dedicate any higher than 30% of cpu to mining.  I just think it would be really cool if sweetspot could automatically switch over some % cpu to a multialgo cpu miner that you could set up to mine whatever is more profitable than XMG when the XMG block reward falls to 1.

It is way better to fix the overheating issue than to search another ways to go around.
- if you are overclocking - stop it
- if your cooling is dirty - clean it and/or replace the thermal grease
- if your PSU is too low - replace it with better one
- if nothing helps - disable the turbo core and try undervolting (you can save up to 20% in terms of power usage)

If you don't fix the issue in time you will end-up with dead motherboard.

Really if SweetSpot is used to balance 2 miners within the 30% of the total CPU power ... it will need to "eat" another 10% just to do it.

"Switching" to another miner (and totally stopping magi) is not an option and will never be. I don't want a centralized peace of software (like SweetSpot) to have that high control over magi network.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!