Bitcoin Forum
June 25, 2024, 01:24:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 »
1  Economy / Micro Earnings / Re: Incluide my faucet en your rotator on: May 13, 2016, 08:01:39 PM
This faucet exceeded it's safety limits!
2  Economy / Micro Earnings / Re: How to block proxies? on: May 06, 2016, 09:16:40 PM
sorry i didnt know where to post this.
how i put that code? and what will happen if i put that?
Basically, you can put 'em(code) in the .htaccess file & it'll block all the ips in that range(you'd block)
it only blocks the ip in proxies?

Look at my ban-list Wink
http://octopus.pp.ua/BAN.txt

It's .htaccess with .txt extention
3  Economy / Micro Earnings / Re: Bots attacked? on: May 06, 2016, 09:14:40 PM
Thanks for help, I create table in DB with your commend.
My site is connected to DB (satoshi are sended and adresses are recorded in DB - so I think it's ok).
So now I have to wait is any IP get catch to my log_faucets table Smiley

So? Have you result?
4  Economy / Micro Earnings / Re: Bots attacked? on: May 05, 2016, 08:42:24 PM
Am I do it right?



I want to ask because I don't have any knowledge about sql and php.

1. Are you create this table (log_faucets) in your database?
2. Are you connect to database in your script? Do not post connection string to forum coz you can lose your money.
3. Move "{" up to string with "$ra = getIP();" - it's border of IF statement (must be "{$ra = getIP();")

1, 2 you can google how to using DB, or i can help
5  Economy / Micro Earnings / Re: Bots attacked? on: May 05, 2016, 07:54:30 PM
Thanks Smiley
Where I can find banned IP list?

You can find it in your webserver's logs (error code 403), or you can use code such as:

Code:
$ra = getIP();
$fname = $_SERVER['SERVER_NAME'];

$sql = "INSERT INTO log_faucets (ip, fname)
VALUES
('$ra', '$fname')";

mysql_query($sql, $link);

in IF statement (when cheked, is user legal, listing posted in first post), and logs with banned IPs will be accumulated in database table 'log_faucets'. Sure, you must create this table before:

Code:
CREATE TABLE IF NOT EXISTS `log_faucets` (
  `ip` varchar(50) NOT NULL,
  `fname` varchar(100) NOT NULL,
  `DT` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Where 'ip' - banned ip
'fname' - faucet's name (if you use some faucets)
'DT' - datetime of impression

And later you can use this list in .htaccess or check IP in future impressions for preventive ban.
6  Economy / Micro Earnings / Re: Bots attacked? on: May 04, 2016, 10:12:35 PM
Can I use this script with 15 second timer?

Sure. Just set timeout:
Code:
if (($_COOKIE['Mortal'] != getIP()) or ((time() - $_COOKIE['Combat']) < 50))

15, not 50.

Recomended set 10 sec, when page loaded
7  Economy / Micro Earnings / Re: Bots attacked? on: May 04, 2016, 07:24:13 PM
This code works well, but I was wondering is there is any way you could use this together with the AntiBotLinks script?

You can use this code with any another AntiBotLinks script
8  Economy / Micro Earnings / Re: FAUCET PROBLEMS BOTS ATACK... on: May 03, 2016, 09:37:44 PM
https://bitcointalk.org/index.php?topic=1448604
9  Economy / Micro Earnings / Re: Faucetbox - Adding very simple login on: May 03, 2016, 09:35:14 PM
Hi!

I had attacked by bots!

But i have make some script!

And that can help against bots!

Just try!

https://bitcointalk.org/index.php?topic=1448604

Good luck!
10  Economy / Micro Earnings / Re: how to find bots on our faucet so we can earn good money on: May 01, 2016, 08:11:16 PM
FaucetBox ready made script and it works a treat for bot traffic lol.

My idea was originally to use Fail2Ban and a custom filter to search logs on my server to limit POST requests within short time frames, it worked to a degree, within a few hours several hundred IPs were banned all similar IPs (thought that was a bit easy) Then incame more IP ranges each IP submitting less often. As it's a POST requests server doesn't log info maybe ModSecurity can be used to look in to the POST requests further  Wink

Something is definitely up

https://bitcointalk.org/index.php?topic=1448604

Mmm?
11  Economy / Micro Earnings / Re: Bots attacked? on: April 27, 2016, 03:37:05 PM
How to install?

Full way, how to install in 12 post: https://bitcointalk.org/index.php?topic=1448604.msg14656996#msg14656996
12  Economy / Micro Earnings / Re: Bots attacked? on: April 27, 2016, 03:36:13 PM
Thank you for this. Over the weekend I got ripped by the bots and need to shut down. I'm taking now all the measures before the relaunch.

U r wellcome %)
13  Economy / Micro Earnings / Re: Bots attacked? on: April 25, 2016, 08:16:51 AM
Will you please show proper coding of this anti-bot you mention above with line number where we have to put it.I really need it because my faucet is full of bots.Faucetbox admin panel show around 6000 claims/day but google adsense show only 800. Sad

I don't wanna refill my wallet till i fix it so please help me & give some advice .

This code insert in 2-3 rows of index.php, after "<?php":

Code:
setcookie("Mortal",$_SERVER['REMOTE_ADDR'], time()+3000);
setcookie("Combat",time(), time()+3000);

Scroll to 1547 row and insert after "// banning
        $ip = ip2long(getIP());
        if($ip) { // only ipv4 supported here
            foreach($security_settings["ip_ban_list"] as $ban) {
                if(ipSubnetCheck($ip, $ban)) {
                    banned();
                }
            }
        }"

Code:
if (($_COOKIE['Mortal'] != getIP()) or ((time() - $_COOKIE['Combat']) < 50))
{
banned();
}

Function "banned()" already in faucetbox script, so, that's all you have to do.

Do not forget use timer on button "Get reward".
14  Economy / Micro Earnings / Re: Bots attacked? on: April 25, 2016, 07:59:07 AM

 Is this for faucetbox script?

Yes, this code for faucetbox script, but it will work in another scripts, if you use appropriate functions such as "getip()".
15  Economy / Micro Earnings / Re: Bots attacked? on: April 25, 2016, 07:55:59 AM

Oh it works! I have seen how much many people have been banned in just under 1 minute. Most of them from Russia. What i did before to block Russians was to block the whole country but i realized i was losing ads revenue and also i was denying innocent people access because Russia Uses the the most spam bots and proxies. But that i have something like this, i don't have to worry about the spammers and their spambots! Thank you, now my ad revenue and page views are picking up, i have had more than 20000pageviews under 6hours! Whoop Whoop!

Good luck in your work Smiley
16  Economy / Micro Earnings / Re: Bots attacked? on: April 24, 2016, 04:50:38 PM
All set now, thank you!

U r wellcome %) I hope, that's can help against bots
17  Economy / Micro Earnings / Re: Bots attacked? on: April 24, 2016, 02:59:59 PM
Hi all!

So, how can i see, bots is the really zaebali (sorry for my french).

I had used antibot script and .htaccess.
My ban list you can see in http://octopus.pp.ua/BAN.txt . It consist proxies and TOR's IP's. Manually checked every day, when i had attacked by bots. Yes, i'm nerd Smiley

And antibot script. I had set timeout in "Get reward" button in 60 sec, and set coockies with time of impression from user. When user click to "Get reward" button, i have check, is 60 sec out. So, when bots attack again, i will change that to save it in session.

If you want, you can use my experience.

1. Open your index file and add in first
Code:
setcookie("Mortal",$_SERVER['REMOTE_ADDR'], time()+3000);
setcookie("Combat",time(), time()+3000);

"Mortal" saved current ip of user
"Combat" saved current time of visit

2. In "POST" section add:
Code:
	if (($_COOKIE['Mortal'] != getIP()) or ((time() - $_COOKIE['Combat']) < 50))
{
banned();
}

Where function banned(); is

Code:
function banned() {
    trigger_error("Banned: ".getIP());
    http_response_code(403);
    die();
}

So, with that code and .htaccess i defence my faucets.

Good luck!

Hey after putting the codes my own IP address gets blocked, What can i do?

U must wait 1 min before claim. Or, you can set another timout in
Code:
setcookie("Mortal",$_SERVER['REMOTE_ADDR'], time()+3000); 

And

Code:
if (($_COOKIE['Mortal'] != getIP()) or ((time() - $_COOKIE['Combat']) < 50))

First code mean lifetime of cookies is 50 min, second - check, is 50 sec is out when user click button
18  Economy / Micro Earnings / Bots attacked? on: April 24, 2016, 01:16:02 PM
Hi all!

So, how can i see, bots is the really zaebali (sorry for my french).

I had used antibot script and .htaccess.
My ban list you can see in http://octopus.pp.ua/BAN.txt . It consist proxies and TOR's IP's. Manually checked every day, when i had attacked by bots. Yes, i'm nerd Smiley

And antibot script. I had set timeout in "Get reward" button in 60 sec, and set coockies with time of impression from user. When user click to "Get reward" button, i have check, is 60 sec out. So, when bots attack again, i will change that to save it in session.

If you want, you can use my experience.

1. Open your index file and add in first
Code:
setcookie("Mortal",$_SERVER['REMOTE_ADDR'], time()+3000);
setcookie("Combat",time(), time()+3000);

"Mortal" saved current ip of user
"Combat" saved current time of visit

2. In "POST" section add:
Code:
	if (($_COOKIE['Mortal'] != getIP()) or ((time() - $_COOKIE['Combat']) < 50))
{
banned();
}

Where function banned(); is

Code:
function banned() {
    trigger_error("Banned: ".getIP());
    http_response_code(403);
    die();
}

So, with that code and .htaccess i defence my faucets.

Good luck!
19  Economy / Micro Earnings / Re: Popisle : Popup Advertising Network ( ✔ Bitcoin Supported ) on: April 17, 2016, 07:24:06 PM
Whats earn rate for every ad size and pop-ads?  is your ad network CPM or CPC model ?

I do not recommend to use banner ads
they do not pay out as much as popups/unders

our share rate is 60%
example if  you have 1000 popups from unique ips (no fraudulent traffic like bots) and world wide
we get about 20c-1.50$ at the beginning (if traffic is good it can go 5 times that)
you will get 60% of it


Calculate:
60% from minimum payment (0.2 USD) per 1000 popups is 0.12 USD.
I had send over 200 impresions in few days:



0.12 / 5 = 0.024 USD

But:



So, where is my 2 cents, man?
20  Economy / Micro Earnings / Re: Popisle : Popup Advertising Network ( ✔ Bitcoin Supported ) on: April 16, 2016, 08:01:43 PM

Hi,
We cannot really do this at this time as our system is set up in US dollars and Bitcoin payout account is not connected to the system. We will be doing conversions live.

It is logical though. I speak Russian but unable to write in Russian. 

Hi, Dimitri
So, if you can't set this at now, we'll be wait Smiley

PS:

Quote
It is logical though. I speak Russian but unable to write in Russian. 
Thnx, I Did It for the Lulz, and i had lot of lulz Smiley
Pages: [1] 2 3 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!