Bitcoin Forum
June 04, 2024, 06:09:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 »
221  Economy / Micro Earnings / Re: [XAPO FAUCET] 300 SATOSHI EVERY 20 MINUTES - VIRAL-ALERT on: August 06, 2016, 02:40:29 AM
where is the referral link?

Please check now, referral link will show after you claim.

I think referral system not working

Referrals claim will automatically add to your balance.

Im sure not work, I have many referrals and my balance its the same all time

We've checked the issue and tried in our end and it was working fine.
222  Economy / Micro Earnings / Re: XAPO Script - Hacked on: August 06, 2016, 02:27:59 AM
Can you tell me/us please how you block a browser .. thanx in advance

I'm using this code
Code:
<?php
// Blocks Browser Multiple 
$get_name_browser $_SERVER['HTTP_USER_AGENT']; // Get Name Broswer
$block_browser    = array("Avant Browser","Firefox","Yandex""Opera","ELinks","SeaMonkey","Chromium","Iceweasel","Konqueror","WebKit Nightly","Iron","Pale Moon","Epiphany"); // Name Broswer Block

foreach($block_browser as $new){

    if(
preg_match("/".$new."/",$get_name_browser)){
        die(
"<h2>Browser not supported!</h2>");    
    }

}
//
?>



You must add a message something like this "Browser not supported, Please use google chrome".
223  Economy / Micro Earnings / Re: [XAPO FAUCET] 300 SATOSHI EVERY 20 MINUTES - VIRAL-ALERT on: August 05, 2016, 03:58:35 PM
where is the referral link?

Please check now, referral link will show after you claim.

I think referral system not working

Referrals claim will automatically add to your balance.
224  Economy / Micro Earnings / Re: Please test my xapo faucet on: August 05, 2016, 01:57:24 PM
claimed with my proxy without a problem :-) .. but the site where are the Reward and the referral link is show disapears very fast ...


with my normal connection - can't enter the site:
You have been detected to be using a proxy!
Please contact administrator(viralalert@yahoo.com) if you feel this is incorrect.

May I know what proxy you are using? I think I will put a referral link just above the comment so you can go back to the xapo faucet and see your referral link.
225  Economy / Micro Earnings / Please test my xapo faucet on: August 05, 2016, 01:34:32 PM
Hi, I need everyone's help.

My faucet blocks vpn, tor and proxy.
I have added a  math captcha problem.
When you are able to claim you will be redirected to a page after 10 seconds.

Please visit http://viral-alert.com/xapo

What are the testing you will do?
1. Use vpn, proxy or tor
2. check if math captcha has problems.
3. Check if it will redirect you to a page after claim after 10 seconds.

Let me know if you encounter problems so I can fix. The reason why I want you to test it because I'm trying to fight bots.
226  Economy / Micro Earnings / Re: [XAPO FAUCET] 300 SATOSHI EVERY 20 MINUTES - VIRAL-ALERT on: August 05, 2016, 04:27:51 AM
I see that there is threshold now. Why did you remove xapo instant payment option? Unfortunately i have to remove you faucet from my list.

Thank you Smiley
227  Economy / Micro Earnings / Re: [-XAPO FAUCETS WANTED -] | New Verfied XAPO LIST ! | See me grow on: August 05, 2016, 01:45:11 AM
Good day.

I would really appreciate if you add my faucet -> http://viral-alert.com/xapo
Rewards: 300 satoshi
Duration: 20 minutes
Referral: 15%
Minimum cashout: 15,000 satoshi Instant

Thanks
228  Economy / Micro Earnings / Re: [XAPO FAUCET] 300 SATOSHI EVERY 20 MINUTES - VIRAL-ALERT on: August 04, 2016, 02:43:23 PM
where is the referral link?

Please check now, referral link will show after you claim.
229  Economy / Micro Earnings / Re: XAPO Script - Hacked on: August 04, 2016, 09:19:36 AM
Check my faucet as well and let me know what you think about. http://viral-alert.com/xapo
230  Economy / Micro Earnings / Re: [XAPO FAUCET] 300 SATOSHI EVERY 60 MINUTES - VIRAL-ALERT on: August 04, 2016, 08:51:56 AM
We are back. We have implemented some security features in our faucet. The minimum amount to withdraw is 15,000 satoshi. We give 300 satoshi every 20 minutes.
231  Economy / Micro Earnings / Re: XAPO Script - Hacked on: August 04, 2016, 04:05:34 AM
ok, i think i got it now but not sure if its for all browsers



 Code to stop timer exploit or source
Code:
<script language="JavaScript">

//////////F12 disable code////////////////////////
    document.onkeypress = function (event) {
        event = (event || window.event);
        if (event.keyCode == 123) {
           //alert('No F-12');
            return false;
        }
    }
    document.onmousedown = function (event) {
        event = (event || window.event);
        if (event.keyCode == 123) {
            //alert('No F-keys');
            return false;
        }
    }
document.onkeydown = function (event) {
        event = (event || window.event);
        if (event.keyCode == 123) {
            //alert('No F-keys');
            return false;
        }
    }
/////////////////////end///////////////////////


//Disable right click script

var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
//
function disableCtrlKeyCombination(e)
{
//list all CTRL + key combinations you want to disable
var forbiddenKeys = new Array('u', 'i', 'c', 'x', 'v', 'j' , 'w');
var key;
var isCtrl;
if(window.event)
{
key = window.event.keyCode;     //IE
if(window.event.ctrlKey)
isCtrl = true;
else
isCtrl = false;
}
else
{
key = e.which;     //firefox
if(e.ctrlKey)
isCtrl = true;
else
isCtrl = false;
}
//if ctrl is pressed check if other key is in forbidenKeys array
if(isCtrl)
{
for(i=0; i<forbiddenKeys.length; i++)
{
//case-insensitive comparation
if(forbiddenKeys[i].toLowerCase() == String.fromCharCode(key).toLowerCase())
{
alert('Key combination CTRL + '+String.fromCharCode(key) +' has been disabled.');
return false;
}
}
}
return true;
}

</script>
<script type='text/javascript'>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) &amp;&amp; isCtrl == true)
{
// alert(&#38;#38;#8216;Keyboard shortcuts are cool!&#38;#38;#8217;);
return false;
}
}
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script>
<script language="JavaScript">
        function disableCtrlKeyCombination(e)
        {
                //list all CTRL + key combinations you want to disable
                var forbiddenKeys = new Array("i", "u", "c");
                var key;
                var isCtrl;

                if(window.event)
                {
                        key = window.event.keyCode;     //IE
                        if(window.event.ctrlKey)
                                isCtrl = true;
                        else
                                isCtrl = false;
                }
                else
                {
                        key = e.which;     //firefox
                        if(e.ctrlKey)
                                isCtrl = true;
                        else
                                isCtrl = false;
                }

                //if ctrl is pressed check if other key is in forbidenKeys array
                if(isCtrl)
                {
                    for (i = 0; i < forbiddenKeys.length; i++)
                        {
                                //case-insensitive comparation
                            if (forbiddenKeys[i].toLowerCase() == String.fromCharCode(key).toLowerCase())
                                {
//                                    alert("Key combination CTRL + "
//                                                + String.fromCharCode(key)
//                                                + " has been disabled.");                                    
                                        return false;
                                }
                        }
                }
                return true;
        }
    </script>

You can test here http://www.bitcoinfaucetexchange.com and let me know if it works with what browsers

Great! It's working. Good job!
232  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 31, 2016, 11:21:29 AM
Can't enter my Xapo-Adress because a point in the address before the @ sign is not allowed .. uh ? .. where i am come from the most email-addesses have a point .. like name.surname@blabla.com

Please use other emails that has no special characters before the @sign and you will be fine.

OK i added an other e-Mail to my Xapo-account - and linked your Xapo-Faucet into my Rotator http://cryptocrawl.in .

But let me tell you something .. your restriction with no special characters before the @ sign may be a nice idea but maybe it brings a lot of ppls to the idea
to add some more emails to their xapo account and get the posibility to claim 4 times in a row with just one account ... maybe every xapo user know this option allright - i dont know ..    

Yeah, I know. Multiple account will work on some people who has dynamic ip address but it will not work for those people who has static ip address. If you try to claim on my faucet using vpn, proxy, tor or any anonymity, it will deny the connection.

For me this is not a big problem unlike if I let users use their btc address. Users can create as many as btc addresses. Unlike email, there's a need to verify the email for their xapo account. Maximum email allowed in xapo is 4 emails only.
233  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 30, 2016, 04:54:18 AM
I like it, 500 Satoshi per claim, that's a lot, thanks! Wink

Why you don't put an Anti-Adblocker?

Thanks for your suggestion. It is already implemented.
234  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 30, 2016, 01:24:14 AM
Can't enter my Xapo-Adress because a point in the address before the @ sign is not allowed .. uh ? .. where i am come from the most email-addesses have a point .. like name.surname@blabla.com

Please use other emails that has no special characters before the @sign and you will be fine.
235  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 28, 2016, 12:58:25 AM
today i cant put my email to clain.
error: email must not contain dots or special characters before
But my email xapo account have _@ , then I cant use use your faucet?

We have implemented some security in our faucet because we have seen many users abuse it that's why from now on we do not allow emails with dots before the @ sign. Your email should match this pattern in order to claim from our faucets abc@domain.com or abc21@domain.com.

We have implemented to have no special characters in the email before the @ sign until xapo security is able to solve the issue.
236  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 27, 2016, 02:08:02 PM
today i cant put my email to clain.
error: email must not contain dots or special characters before

We have implemented some security in our faucet because we have seen many users abuse it that's why from now on we do not allow emails with dots before the @ sign. Your email should match this pattern in order to claim from our faucets abc@domain.com or abc21@domain.com.
237  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 27, 2016, 04:47:35 AM
For those who do not know yet. Get 500 satoshi instant to xapo. Good luck
238  Economy / Micro Earnings / Re: Can you go to my website to see if its working plz on: July 27, 2016, 04:27:11 AM
It's working fine now.
239  Economy / Micro Earnings / Re: Can you go to my website to see if its working plz on: July 27, 2016, 03:59:29 AM
403 Forbidden mate.
240  Economy / Micro Earnings / Re: INSTANT 500 SATOSHI EVERY 60 MINUTES TO XAPO ACCOUNT - VIRAL-ALERT on: July 25, 2016, 07:49:52 AM
500 satoshi every hour? This is crazy. Get it now.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!