Bitcoin Forum
December 12, 2025, 09:54:39 AM *
News: Latest Bitcoin Core release: 30.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Micro Earnings / Faucet Fortuna.Online 100 Satoshi every 720 min. on: January 09, 2016, 02:24:29 AM
100 Satoshi every 720 min.
Any questions, suggestions or problems as you know.
If you have login problems please send me your IP by private message.
http://fortuna.online/
2  Economy / Micro Earnings / Help Faucet on: January 07, 2016, 11:14:36 PM
Hello, I ask for your help, it is that I've been getting messages that my faucet fails or does not pay, I do not know why.
Can they try and tell me if you have error?
Thank you friends
http://bitcoincoin.online/
3  Local / Español (Spanish) / Consulta Dirección BTC on: November 11, 2015, 12:37:17 PM
Hola, a ver si alguien me puede sacar de la duda.

Es posible desde mi propia faucet y con mi dirección de btc cobrar referido?

Es que veo en mi cuenta como que desde mi sitio y mi propia dirección de btc se me pago el referido.

Adjunto captura muchas gracias.

4  Economy / Micro Earnings / List of IPS to blocked on: October 28, 2015, 04:37:58 PM
Hello, in this thread I will post the Ips that I am personally blocking, I was doing here, but already they do not fit more characters and have updated the list I'm going to publish on pastebin.

This list includes Tor Ips, VPN, Vps etc...
The list must be in the .htaccess

List of IPS Blocked service and getIPIntel blocked by ranges
Code:
http://pastebin.com/J91Lj6ce

List of IPS Tor
Code:
http://pastebin.com/af0WxMwA

The blocking of these IPS will generate a 403 error which means? they will not have access to the web, but we can make a custom page if we want to and divert that traffic or thus blocking full access.

To direct traffic to a page customized just put in the .htaccess this rule:
Code:
ErrorDocument 403 /pagecustomized.html
Either
ErrorDocument 403 http://www.pagecustomized.com

As this code is used to block some proxies also it is counterproductive if you use Cloudflare if I am not mistaken.
Code:
RewriteEngine on
RewriteCond %{HTTP:VIA}                 !^$ [OR]
RewriteCond %{HTTP:FORWARDED}           !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA}       !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR}     !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION}    !^$ [OR]
RewriteCond %{HTTP:XPROXY_CONNECTION}   !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP}      !^$
RewriteRule ^(.*)$ - [F]

Similar to the 403 can take advantage and put a destination url as well
Code:
RewriteEngine on
RewriteCond %{HTTP:VIA} !^$ [OR]
RewriteCond %{HTTP:FORWARDED} !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$
RewriteRule ^(.*)$ http://www.pagecustomized.com/ [R=302,L]

I particularly also add this in the head of the template index.php on <!DOCTYPE html>
Code:
<?php if( @fsockopen$_SERVER['REMOTE_ADDR'], 80$errstr$errno) )
{
echo 
'<META HTTP-EQUIV="Refresh" Content="0; URL=http://www.pagecustomized.com/">';
   exit;
}
?>


Other herbs:
Protecting the .htaccess
Code:
<Files ~ "^.*\.([Hh][Tt][Aa])">
 order allow,deny
 deny from all
 satisfy all
</Files>

And the config.php
Code:
<Files config.php>
order allow,deny
deny from all
</Files>

Use it under your responsibility, if you see an IP that should not be there please advise.
5  Economy / Micro Earnings / Help please on: October 22, 2015, 10:59:24 AM
Can someone explain me this movement?
The date 2015-10-19 20:06:28
https://blockchain.info/es/address/123KDU1b3PNfP7PHDvcXsgGVxHvMdskh2Y

Does it mean that I've paid that?
6  Economy / Micro Earnings / [Tutorial] How to avoid visits by Proxies on: October 16, 2015, 04:49:41 PM
Hi, I think that owners of faucets that are one of the things that do not hurt are the use of proxies, as yesterday looking for and looking for found this site that helps us quite the truth.

http://getipintel.net/

It is insert this code at the top of the index.php of the template we are using.

Where $contactEmail="Your mail";

Then where <meta HTTP-EQUIV="Refresh" Content="0; URL=web.html"> web.html is a text file that is made with Notepad and we put inside for example (It appears you're a Proxy / VPN / bad IP, please contact [Your mail] for more information) and we got it to the main directory where you will find the config.php.

This is what makes redirect proxies to web.html visits

Sorry the code is incomplete, go to github
https://github.com/blackdotsh/getIPIntel
Code:
<?php
/*
* A PHP function that interacts with http://getIPIntel.net to look up an IP address
* returns TRUE if the IP returns a value greater than $banOnProability,
* FALSE otherwise, including errors
* HTTP error codes are NOT explicitly implemented here
* This should be used as a guide, be sure to edit and test it before using it in production

* MIT License
*/ 


//function requires curl
function checkProxy($ip){
$contactEmail="Your mail";
$timeout=3//by default, wait no longer than 3 secs for a response
$banOnProability=0.99//if getIPIntel returns a value higher than this, function returns true, set to 0.99 by default

//init and set cURL options
$ch curl_init();
curl_setopt($chCURLOPT_RETURNTRANSFER1);
curl_setopt($chCURLOPT_TIMEOUT$timeout);

//if you're using custom flags (like flags=m), change the URL below
curl_setopt($chCURLOPT_URL"http[Suspicious link removed]c($ch);

curl_close(
$ch);


if (
$response > $banOnProability) {
return true;
} else {
if (
$response < 0 || strcmp($response, "") == 0 ) {
//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
}
return false;
}
}


$ip=$_SERVER['REMOTE_ADDR'];

if (checkProxy(
$ip)) {
/* A proxy has been detected based on your criteria
 * Do whatever you want to here
 */
echo '<META HTTP-EQUIV="
Refresh" Content="0URL=web.html">';    
    exit;
}

?>


I am new to this scene so they will be welcomed the recommendations and suggestions, sorry for my language, I am Spanish.

########################################

########################################

Another way to block proxies

Put this in your .htaccess, remove RewriteEngine on in the event that already is in the .htaccess

Code:
RewriteEngine on

RewriteCond %{HTTP:VIA} !^$ [OR]
RewriteCond %{HTTP:FORWARDED} !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$
RewriteRule ^(.*)$ – [F]

Then in the index.php of the template on <!DOCTYPE html>

Code:
<?php if(@fsockopen($_SERVER['REMOTE_ADDR'], 80$errstr$errno1))
die(
"Here a message, for example prohibited use proxies");
?>


Source http://forum.youhosting.com/topic3516-block-proxy-server-customize-your-htaccess-and-php-code.html

########################################

Friends I am new and I don't know much php only try to help us all, sorry for my mistakes.

By the way I sell advertising space on my website I would be helpful https://bitcointalk.org/index.php?topic=1208325.msg12703029.
7  Economy / Micro Earnings / Weekly payments? on: October 14, 2015, 03:59:23 PM
Hello, I've seen sites that have the weekly reward payment, how is faucetbox?
Greetings thank you.
8  Economy / Services / I sell space on my faucet on: October 14, 2015, 03:00:06 PM
Hi, I sell space on my faucet or a notice yours on my site, here are the stats for this month:





I tend to be in the top 10 in ifaucet, although right now I am not and do not understand why.
http://bitcoincoin.online/

Time? 1 month.
Size of the ad? 468x60 or size that suits the site.
Where? Where you say.
Is price? $ 10 or the equivalent in satoshi, would prefer in satoshi.
You pay in advance.
The offer includes also share your website on social networks.
https://twitter.com/BitcoinSatoshis
https://www.facebook.com/bitcoincoin.online
https://plus.google.com/114587430903274435022/posts

I reserve the right to refuse any offer, please do me not waste time.

Although I'm new to the Forum I am a honest person.

Greetings and thanks.
9  Other / Archival / Your ad on my website on: October 11, 2015, 02:03:44 AM
Edit
10  Other / Off-topic / Are You A Human error on: October 10, 2015, 06:38:01 AM
Hello, I apologize if this thread will not be in this area, I'm getting this message in the error_log in the captcha and I don't know what it means.

Code:
AYAH::doHttpsPostReturnJSONArray: Post to https://ws.areyouahuman.com/ws/scoreGame returned no result.

Thanks for the help greetings
11  Economy / Micro Earnings / Free Satoshi Bitcoincoin.online 50 satoshi 5% Commission on: October 08, 2015, 11:07:31 PM
Hi, update the thread seeing there new rotators.
50 satoshi every 720 minutes and 5% of reference.
Things have gone wrong, the reward is lowered until further notice, sorry.
Any problems or questions feel free to comment or send private message.

Free satoshi
12  Other / Off-topic / Where to advertise my faucet on: October 08, 2015, 10:46:23 PM
Hi, I'm looking on the Forum but not meeting where advertise my faucet, I do not mean to pay for advertising, but add it to rotator cuff exchange of banners etc...

This is my site http://bitcoincoin.online/

Greetings thank you friends
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!