Pages:
Author

Topic: [Updated 19/Jul/2016] Faucet Owners Against Scammers and Bots - page 7. (Read 36679 times)

hero member
Activity: 728
Merit: 500
Hello,
I'm using faucetbox script for my faucet.

1. What will be difference between blocking Ip's with .htaccess file and by blocking via the admin panel, security tab?
    Option: List of IP addresses or IP networks in CIDR notation to ban (one value per line)  Huh

2. Can I block addresses via admin panel, security tab?
    Option: List of cryptocurrency addresses to ban (one address per line)  Huh

I have implemented the proxy prevention code already. And now I need to complete above protection before launching my faucet.

And one thing more, If it is highly advisable to block Ip's by .htaccess file than how I will do it? Because I don't have any .htaccess file in my root directory.

B. regards

Who's your host provider? Are you sure you don't have access to the htaccess file? The proxy prevention is what I implemented as well as the antibot seem to mess up with my faucet like the faucet list can no longer see my faucet as active and the satoshis cannot be claimed even if the captcha is correct.
hero member
Activity: 1498
Merit: 596
Hello,
I'm using faucetbox script for my faucet.

1. What will be difference between blocking Ip's with .htaccess file and by blocking via the admin panel, security tab?
    Option: List of IP addresses or IP networks in CIDR notation to ban (one value per line)  Huh

2. Can I block addresses via admin panel, security tab?
    Option: List of cryptocurrency addresses to ban (one address per line)  Huh

I have implemented the proxy prevention code already. And now I need to complete above protection before launching my faucet.

And one thing more, If it is highly advisable to block Ip's by .htaccess file than how I will do it? Because I don't have any .htaccess file in my root directory.

B. regards
hero member
Activity: 728
Merit: 500
I tried all these steps and It seems my site is no longer accessible via Proxy. My payout expenses are lesser as well so thanks for this. However, it seems my faucet list ranking is not working as my faucet appears broken based on the faucet rank list of faucetbox even though it is actually working.
full member
Activity: 210
Merit: 100

I can not add any more site on the faucet . What do I do now?
sr. member
Activity: 952
Merit: 267
CAN ANYONE HELP ME
I WANT TO ADD ANTIBLOCK ON MY SITE
ANY ONE ONE HELP ME   Roll Eyes Roll Eyes Roll Eyes Roll Eyes Roll Eyes
newbie
Activity: 58
Merit: 0
thanks for the info and the ips, i added most of them to my faucetbox faucet.

can anyone get me the ips for proxy.sh VPN servers?
newbie
Activity: 30
Merit: 0
I had one wallet trying to claim with 8 different IP addresses today.... for a lousy 500 satoshi.


I'm barely breaking even. Thinking about getting rid of the site. :/

Have you tried to reduce your reward in specific countries?

I'm doing and I'm doing relatively well


I don't believe that honest people should be getting less btc because some of them are scammers.
No matter what country they come from. Smiley

I do not think that honest people should have less reward, but it is a solution that has worked very well.
hero member
Activity: 1218
Merit: 534
I had one wallet trying to claim with 8 different IP addresses today.... for a lousy 500 satoshi.


I'm barely breaking even. Thinking about getting rid of the site. :/

Have you tried to reduce your reward in specific countries?

I'm doing and I'm doing relatively well


I don't believe that honest people should be getting less btc because some of them are scammers.
No matter what country they come from. Smiley
newbie
Activity: 30
Merit: 0
I had one wallet trying to claim with 8 different IP addresses today.... for a lousy 500 satoshi.


I'm barely breaking even. Thinking about getting rid of the site. :/

Have you tried to reduce your reward in specific countries?

I'm doing and I'm doing relatively well
hero member
Activity: 1218
Merit: 534
I had one wallet trying to claim with 8 different IP addresses today.... for a lousy 500 satoshi.


I'm barely breaking even. Thinking about getting rid of the site. :/
newbie
Activity: 30
Merit: 0
thanks guys Smiley

How I can follow by banning ips, if my .htaccess file is full?

Hello, what you can do is collect the ips that are blocked and thus free up the space in the htaccess.

For example to create a php page

Name blocked.php
Code:
$Fichero = "blockips.txt"; //name of the file where we keep the reports
$ip = $_SERVER["REMOTE_ADDR"]; //stored in the variable ip
$log = "$ip\n";
$fp = fopen($Fichero, "a" );
fwrite($fp, $log);
fclose($fp);
?>



Blocked




the first code saves the ips in a blockips.txt text file

Then in htaccess should put this
ErrorDocument 403 /blocked.php

The blocked.php should be in the main directory where is the config.php

Then in the main index.php search

Code:
// banning
        $ip = ip2long(getIP());
        if($ip) { // only ipv4 supported here
            foreach($security_settings["ip_ban_list"] as $ban) {
                if(ipSubnetCheck($ip, $ban)) {
                    banned();
                }
            }
        }

And put it so

Code:
// banning
        $ip = ip2long(getIP());
        if($ip) { // only ipv4 supported here
            foreach($security_settings["ip_ban_list"] as $ban) {
                if(ipSubnetCheck($ip, $ban)) {
                    banned();
                }
            }
foreach(file('http://yourweb.com/blockips.txt') as $blockips){
                if(getIP() == trim($blockips)){
         header('Location: http://yourweb.com/blocked.php');
exit();
}
                     }
        }

Once you go collecting ips may be changing the ips of the htaccess.

thank you Smiley
sr. member
Activity: 350
Merit: 250
thanks guys Smiley

How I can follow by banning ips, if my .htaccess file is full?

Hello, what you can do is collect the ips that are blocked and thus free up the space in the htaccess.

For example to create a php page

Name blocked.php
Code:
$Fichero = "blockips.txt"; //name of the file where we keep the reports
$ip = $_SERVER["REMOTE_ADDR"]; //stored in the variable ip
$log = "$ip\n";
$fp = fopen($Fichero, "a" );
fwrite($fp, $log);
fclose($fp);
?>



Blocked




the first code saves the ips in a blockips.txt text file

Then in htaccess should put this
ErrorDocument 403 /blocked.php

The blocked.php should be in the main directory where is the config.php

Then in the main index.php search

Code:
// banning
        $ip = ip2long(getIP());
        if($ip) { // only ipv4 supported here
            foreach($security_settings["ip_ban_list"] as $ban) {
                if(ipSubnetCheck($ip, $ban)) {
                    banned();
                }
            }
        }

And put it so

Code:
// banning
        $ip = ip2long(getIP());
        if($ip) { // only ipv4 supported here
            foreach($security_settings["ip_ban_list"] as $ban) {
                if(ipSubnetCheck($ip, $ban)) {
                    banned();
                }
            }
foreach(file('http://yourweb.com/blockips.txt') as $blockips){
                if(getIP() == trim($blockips)){
         header('Location: http://yourweb.com/blocked.php');
exit();
}
                     }
        }

Once you go collecting ips may be changing the ips of the htaccess.
newbie
Activity: 30
Merit: 0
thanks guys Smiley

How I can follow by banning ips, if my .htaccess file is full?
sr. member
Activity: 350
Merit: 250
Hi, there are several that are servers, visit the url to confirm it.
Keep in mind that the .htaccess files should not exceed 250 kb more or less.
hero member
Activity: 1218
Merit: 534
sr. member
Activity: 502
Merit: 250
CryptoTalk.Org - Get Paid for every Post!
Hi,
I just followed the guide. But I have some questions  Huh

1) [regarding blocking proxy] First of all I added both the  "Less effective way" (with .htaccess) and the "More effective way" (placing the code after in the YOURTEMPLATE/index.php directory. I can see my faucet correctly while using some of the web Proxy, but when I try to get the reward appears that I inserted an Invalid Address. Is it working what I've done for blocking proxies?

2)  [blocking TOR uses] I have found all the IP address with that link in the guide. Is there a method to put  "Deny from"  Before every single IPs? Or Can I paste all the IPs after  
"#TOR IP Blocking
Order allow,deny" ?
What If I paste all the IPs in the security page of the Admin Panel of my faucet (i'm using FaucetBox Version 62)?

Maybe I can send my faucet address to some of you via PM, so you can check If I've done the "proxy Block" correctly   Smiley

I think you should put proxy blocking code before


Invalid bit coin address or if your bit coin address is correct then check while pasting in text area there might be space before address or at the end of address.

The address is correct.
If I try to get the reward without using a proxy -> I get the reward
If I try to get the reward while I'm using a proxy -> I get "Invalid Address" Error

If you want I can send you the link of my faucet, so you can check and tell me if I installed it correctly Smiley


this is not what should be happen Cheesy
you use the orginal faucetbox script ?


kind regrads

Yes, I'm using the original script. At the moment I have only modified it Installing the anti Bot Links and Some banners in the top/left/right box (via Admin Panel).

EDIT: By the way it's nice to see (from Faucetbox Payouts pages) that I have stopped the bots since the installation of the Antibot Links Smiley
legendary
Activity: 1582
Merit: 1031
Hi,
I just followed the guide. But I have some questions  Huh

1) [regarding blocking proxy] First of all I added both the  "Less effective way" (with .htaccess) and the "More effective way" (placing the code after in the YOURTEMPLATE/index.php directory. I can see my faucet correctly while using some of the web Proxy, but when I try to get the reward appears that I inserted an Invalid Address. Is it working what I've done for blocking proxies?

2)  [blocking TOR uses] I have found all the IP address with that link in the guide. Is there a method to put  "Deny from"  Before every single IPs? Or Can I paste all the IPs after  
"#TOR IP Blocking
Order allow,deny" ?
What If I paste all the IPs in the security page of the Admin Panel of my faucet (i'm using FaucetBox Version 62)?

Maybe I can send my faucet address to some of you via PM, so you can check If I've done the "proxy Block" correctly   Smiley

I think you should put proxy blocking code before


Invalid bit coin address or if your bit coin address is correct then check while pasting in text area there might be space before address or at the end of address.

The address is correct.
If I try to get the reward without using a proxy -> I get the reward
If I try to get the reward while I'm using a proxy -> I get "Invalid Address" Error

If you want I can send you the link of my faucet, so you can check and tell me if I installed it correctly Smiley


this is not what should be happen Cheesy
you use the orginal faucetbox script ?


kind regrads
hero member
Activity: 868
Merit: 500
Hi,
I just followed the guide. But I have some questions  Huh

1) [regarding blocking proxy] First of all I added both the  "Less effective way" (with .htaccess) and the "More effective way" (placing the code after in the YOURTEMPLATE/index.php directory. I can see my faucet correctly while using some of the web Proxy, but when I try to get the reward appears that I inserted an Invalid Address. Is it working what I've done for blocking proxies?

2)  [blocking TOR uses] I have found all the IP address with that link in the guide. Is there a method to put  "Deny from"  Before every single IPs? Or Can I paste all the IPs after  
"#TOR IP Blocking
Order allow,deny" ?
What If I paste all the IPs in the security page of the Admin Panel of my faucet (i'm using FaucetBox Version 62)?

Maybe I can send my faucet address to some of you via PM, so you can check If I've done the "proxy Block" correctly   Smiley

I think you should put proxy blocking code before


Invalid bit coin address or if your bit coin address is correct then check while pasting in text area there might be space before address or at the end of address.

The address is correct.
If I try to get the reward without using a proxy -> I get the reward
If I try to get the reward while I'm using a proxy -> I get "Invalid Address" Error

If you want I can send you the link of my faucet, so you can check and tell me if I installed it correctly Smiley


then this shouldn't be the issue Smiley
sr. member
Activity: 502
Merit: 250
CryptoTalk.Org - Get Paid for every Post!
Hi,
I just followed the guide. But I have some questions  Huh

1) [regarding blocking proxy] First of all I added both the  "Less effective way" (with .htaccess) and the "More effective way" (placing the code after in the YOURTEMPLATE/index.php directory. I can see my faucet correctly while using some of the web Proxy, but when I try to get the reward appears that I inserted an Invalid Address. Is it working what I've done for blocking proxies?

2)  [blocking TOR uses] I have found all the IP address with that link in the guide. Is there a method to put  "Deny from"  Before every single IPs? Or Can I paste all the IPs after  
"#TOR IP Blocking
Order allow,deny" ?
What If I paste all the IPs in the security page of the Admin Panel of my faucet (i'm using FaucetBox Version 62)?

Maybe I can send my faucet address to some of you via PM, so you can check If I've done the "proxy Block" correctly   Smiley

I think you should put proxy blocking code before


Invalid bit coin address or if your bit coin address is correct then check while pasting in text area there might be space before address or at the end of address.

The address is correct.
If I try to get the reward without using a proxy -> I get the reward
If I try to get the reward while I'm using a proxy -> I get "Invalid Address" Error

If you want I can send you the link of my faucet, so you can check and tell me if I installed it correctly Smiley
Pages:
Jump to: