Bitcoin Forum
June 21, 2024, 08:42:08 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 156 »
  Print  
Author Topic: FaucetBOX.com Discussion  (Read 236941 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
bitcoinerN
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
July 31, 2015, 03:32:28 PM
 #261

Hello everyone
I got some troubles with adding Google adsense code to faucetbox script, placing banner between captcha and "get reward" button. I tried to paste it between code of captcha and button in index.php of default theme, its not showing, but got some empty place between them. Also tried associate adsense code with variable and echo it, but dont works too. What am I doing wrong, guys?  Sad

You can try this way

Code:
<div>Your ads code here</div>
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
July 31, 2015, 06:08:33 PM
Last edit: July 31, 2015, 06:21:17 PM by Kazuldur
 #262

A once and for all solution would be to set your fee rate dynamically using "estimatefee" command.

We do use the estimatefee. However we use confirm target of 20 blocks and it doesn't always work correctly with such a high target. I see that today's transactions are getting confirmed correctly though.

I'm trying to protect somehow my faucets against bots .. unfortunately poorly it goes.

Changing captcha system every week can be good enough? Any other advice?

Do FaucetBox have plans to introduce some additional security?

There's nothing you could do that I'm aware of. Captcha + timer is pretty much the only way.

Did not help, maybe there are other ways?
It could be something to do with the language set in your MySQL database. I'll wait for Kazuldur before suggesting anything else though, he probably has a better idea than I do.

Thanks, I will wait for new ideas. I wrote to support, got no response, but I hope they will answer.

Did you try reentering everything after doing what minifrij suggested?

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
valdepretium
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
July 31, 2015, 09:29:04 PM
 #263

A once and for all solution would be to set your fee rate dynamically using "estimatefee" command.

We do use the estimatefee. However we use confirm target of 20 blocks and it doesn't always work correctly with such a high target. I see that today's transactions are getting confirmed correctly though.


Here's a payout transaction from FaucetBox that didn't get confirmed by Blockchain.info
(error: Transaction rejected by our node. Reason: The Maximum number of outputs in a single transaction is 200)
https://blockchain.info/tx/a89d0f423ca7ff513deff5f55aa19b33e2c1d4c36e45651eae67d36df18dc0a5
dart vader
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
July 31, 2015, 09:49:40 PM
 #264

I still have hope for a bigger payments history list  Wink
Coef
Hero Member
*****
Offline Offline

Activity: 882
Merit: 1000


Exhausted


View Profile
August 01, 2015, 04:02:03 AM
 #265

A once and for all solution would be to set your fee rate dynamically using "estimatefee" command.

We do use the estimatefee. However we use confirm target of 20 blocks and it doesn't always work correctly with such a high target. I see that today's transactions are getting confirmed correctly though.

I didn't know you were using dynamic fee. Thanks for your clarification. I noticed that as well, which is quite weird tbh, as the fee rate of today's transactions is more or less the same as yesterday at 0.000044 btc per KB.

FaucetWorld
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
August 01, 2015, 04:33:15 AM
 #266

I'm trying to protect somehow my faucets against bots .. unfortunately poorly it goes.

Changing captcha system every week can be good enough? Any other advice?

Do FaucetBox have plans to introduce some additional security?

There's nothing you could do that I'm aware of. Captcha + timer is pretty much the only way.

Thanks for answer Kazuldur Smiley

Just in your opinion - do you think that changing captcha system (every 1-2 weeks) can hinder bots activity?
Salmen
Legendary
*
Offline Offline

Activity: 1059
Merit: 1020


View Profile WWW
August 01, 2015, 11:21:04 AM
 #267

How's about a shield against TOR visitors?

Cheers
Salmen

Young Developer amidst Europe. Specialized in Web Programming and Creating Telegram Bots. Looking for a developer? Feel free to drop a mail to me.
Running JaguarBitcoin - Your Place For Scripts
Werko
Full Member
***
Offline Offline

Activity: 206
Merit: 100


View Profile WWW
August 01, 2015, 05:09:59 PM
 #268

I have a cron job, that create me every 30 minutes a conf with all ip-addresses from Tor-servers

you need in your viruelhost following entry
<Directory /var/www/bigcoin>
   # Include tor ip
   Include /etc/apache2/tor-ip.conf
</Directory>

your conf will create by following sh-command
wget -q https://www.dan.me.uk/torlist/ -O - | sed "s/^/Require not ip /g; 1i\<RequireAll\>\nRequire all granted" | sed '$a\<\/RequireAll\>' > /etc/apache2/tor-ip.conf; /usr/sbin/apachectl graceful

All tor-user will rejected

ragi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500



View Profile
August 02, 2015, 07:16:10 AM
 #269

I have a cron job, that create me every 30 minutes a conf with all ip-addresses from Tor-servers

you need in your viruelhost following entry
<Directory /var/www/bigcoin>
   # Include tor ip
   Include /etc/apache2/tor-ip.conf
</Directory>

your conf will create by following sh-command
wget -q https://www.dan.me.uk/torlist/ -O - | sed "s/^/Require not ip /g; 1i\<RequireAll\>\nRequire all granted" | sed '$a\<\/RequireAll\>' > /etc/apache2/tor-ip.conf; /usr/sbin/apachectl graceful

All tor-user will rejected
How do you do that on a shared hosting plan if you want to use it?

no.
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
August 02, 2015, 10:27:01 PM
 #270

How do you do that on a shared hosting plan if you want to use it?
A rough way to do it with PHP would be this:
Code:
$userIP = $_SERVER['REMOTE_ADDR'];
$proxyIP = $_SERVER['HTTP_X_FORWARDED_FOR'];
$torIP = file('https://www.dan.me.uk/torlist/');

if(in_array($userIP, $torIP) || in_array($proxyIP, $torIP)){
     die('You appear to be accessing the site through TOR. Please go through the clearweb to access this site.');
}
The problem comes with getting the user's IP, as there are a few problems using REMOTE_ADDR (detailed here (May be outdated by now)) and HTTP_X_FORWARDED_FOR is a HTTP header and can be changed by the user. Obviously the code should be fine-tuned before main use, but it should catch out a few TOR users at least.
ragi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500



View Profile
August 03, 2015, 07:51:09 AM
 #271

How do you do that on a shared hosting plan if you want to use it?
A rough way to do it with PHP would be this:
Code:
$userIP = $_SERVER['REMOTE_ADDR'];
$proxyIP = $_SERVER['HTTP_X_FORWARDED_FOR'];
$torIP = file('https://www.dan.me.uk/torlist/');

if(in_array($userIP, $torIP) || in_array($proxyIP, $torIP)){
     die('You appear to be accessing the site through TOR. Please go through the clearweb to access this site.');
}
The problem comes with getting the user's IP, as there are a few problems using REMOTE_ADDR (detailed here (May be outdated by now)) and HTTP_X_FORWARDED_FOR is a HTTP header and can be changed by the user. Obviously the code should be fine-tuned before main use, but it should catch out a few TOR users at least.
Thanks for this. It may come handy in some situations. Looks like I can make a personal list too.

no.
joele
Legendary
*
Offline Offline

Activity: 1022
Merit: 1000



View Profile
August 03, 2015, 12:58:27 PM
 #272

website is offline
Buziss
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


View Profile
August 03, 2015, 01:14:01 PM
 #273

website is offline

Same here. I got the "Error 522 Ray ID: 210243f7a1c3022c • 2015-08-03 13:11:12 UTC Connection timed out" message.

Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
August 03, 2015, 01:14:18 PM
 #274

website is offline
Working on it already.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
Crystyan
Member
**
Offline Offline

Activity: 99
Merit: 10


View Profile WWW
August 03, 2015, 01:19:30 PM
 #275

website is offline
Working on it already.
why is down?
LuckyYOU
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250



View Profile
August 03, 2015, 01:24:43 PM
 #276

is it going to be a long maintenance or short one? thanks

Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
August 03, 2015, 01:34:54 PM
 #277


Looks like routing problems at our datacenter. Too early to say for sure.

is it going to be a long maintenance or short one? thanks

No idea.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
August 03, 2015, 01:37:46 PM
 #278

I've worked around the problem so it should work for now, but it can stop working again for a couple minutes later today.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
winspiral
Legendary
*
Offline Offline

Activity: 1778
Merit: 1026


Free WSPU2 Token or real dollars


View Profile WWW
August 03, 2015, 01:40:01 PM
 #279

we have "unknow problem" message after faucet claim.

Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
August 03, 2015, 01:46:53 PM
 #280

we have "unknow problem" message after faucet claim.

Other faucets seem to work correctly. Can you upload this to your server and send me a link to it: http://pastebin.com/raw.php?i=JzMjX3AX ? It will tell something more I hope.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 156 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!