Bitcoin Forum
June 16, 2024, 02:32:13 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 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 »
21  Economy / Micro Earnings / Re: FaucetHub Bitcoin Faucet Script - Open your own faucet on: December 19, 2016, 06:25:08 PM
I don't recommend this script:

1. there's a critical vulnerability that can be used to bypass timer (reported in PM)
2. the way it's written is just asking for a SQL Injection vulnerability. Instead of using prepared statements or an ORM, variables are escaped in random places. I've already found an instance of variable that's escaped twice, it's not hard to imagine there is (or will be introduced in an update) a variable that's not escaped at all.
3. superglobal variables are overwritten
4. getipintel have a limit of 500 queries and will be too expensive to be used by faucets, so this bot shield is useless
22  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 18, 2016, 05:16:18 PM
At what time faucetbox is disabling the API?


Probably around 17:00 UTC
23  Economy / Micro Earnings / Re: FaucetHUB.io - Your microwallet - 24/7 support in chat by our staff & community on: December 17, 2016, 07:37:38 PM
Help.
can go with faucetbox on faucet tube, download the latest version of the script (69) .In the admin panel chose faucethub put api key, press save and I wrote


Error connecting to FaucetBOX.com API. Either your hosting provider doesn't support external connections or FaucetBOX.com API is down. Send an email to support@faucetbox.com if you need help.

Please upload this script to your hosting and send me a link to it: https://faucetinabox.com/static/download/tools/test.php

BTW the bug here in Faucet in a BOX script r69 is that is says "FaucetBOX.com" instead of "FaucetHUB.io", but it doesn't change the fact that it's probably your hosting that prevents the script from connecting to faucethub.
24  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 12, 2016, 06:43:44 PM
@OP Have you posted your review of all Faucetbox alternatives? I do not feel comfortable to migrate to these experimental microwallet services which have popped out in recent weeks.

Unfortunately no, things are changing too fast, such a review would be outdated after a week.

However I can recommend one thing: don't use other faucet scripts. I've done small code review of them and I could find serious vulnerabilities in all of them. I'm talking about things that allow bypassing timer and in one case also captcha. I've reported most of them, but I wasn't satisfied in how my reports were handled. And I didn't even do a thorough testing, I just spent 5 minutes looking at code of each script. That doesn't include FaucetHUB.io, as they don't have their own script yet, but it does include elbandi's Minifaucet.

I'll give my random thoughts though:

1. I trust ePay.info the most, but that's only because it seems like there's more than one person behind it. It has highest "Bus factor" (https://en.wikipedia.org/wiki/Bus_factor). However I do have many issues with them. They seem to be adding features too fast and without proper testing since FaucetBOX.com announcement. I don't know how it looks now, but historically their support was terrible. From posts in their topic I suspect they're having problems with data consistency. They're here since 2 years (they claim they have 3 years of experience, but FaucetBOX.com is here for only 2 years and I'm pretty sure FaucetBOX.com launched before them) and didn't steal any coins, thats a good sign too.
2. FaucetSystem.com seems to be run by just one person (Bus factor = 1...), which is a problem. They also made many common mistakes when launching, I don't think it's being run by someone with experience in sysops. Just like with ePay.info, I suspect they're having problems with data consistency. They copied some things directly from FaucetBOX.com, which I don't like (the features for owners/users on main page). They're kinda lying about fees (they claim "No system fees for users" but they do have fees for users). They responded best for my vulnerability reports (both in site itself and script) though, which is a plus.
3. FaucetHub.io seems to be run by just one person (Bus factor = 1), which is a problem. However I must say they their launch was pretty professional and it seems their codebase is well tested. I didn't read anything that would suggest data inconsistencies. They require users to register on FaucetHub.io, which may or may not be a problem for you. Personally I would use FaucetHub.io if only mexicantarget's wasn't the only maintainer. EDIT: I've just read about this: https://bitcointalk.org/index.php?topic=1672870.msg17139016#msg17139016 . So it looks like they're pushing it a little bit too fast, just like ePay.info. That said, bugs huppen and they handled this correctly.

So my best advice is: diversify. Create faucets with each service. And as always, keep only as much coins in services as you need. Your coins are safe only if you, and only you, own the private key.
25  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 04, 2016, 11:25:13 AM
https://faucetinabox.com/static/downloads/tools/test.php  this link is not working !
404
Reason:

Dang, it should be: https://faucetinabox.com/static/download/tools/test.php
26  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 03, 2016, 07:30:49 PM
I wondering, is it possible to put faucetbox script into wordpress "page"?
I want to make blog about cryptocurrency and in additional pages put my few faucets

Simplest and I think the only way currently is to just use an iframe on a Wordpress page:

Code:
<iframe style="width: 500px; height: 500px" src="http://url-to-your-faucet.com">

Adjust width and height to your needs.

Hi, Kazuldur i found your solution for integrating Bitcoin Faucet to Wordpress as an Iframe but here is my problem

Lets say my Faucet host on Claimbits.com/Faucet & i use it as iframe in ClaimBits.com & i successfully did it.But when someone share Referral link he must Promote Claimbits.com/Faucet/r=bitcoin address.So traffic will be on Original page where faucet hosts & it make iframe totally useless.
I tried Rediretion but it doesn't work because it auto redirect iframe Sad
So i wanna ask if there is any possible way to use iframe with referral link so no one can go to directly page where faucet hosts.

Btw sorry for my poor english  Cheesy

You have to somehow pass the parameter to iframe. I don't know Wordpress, but if you can use PHP with it, something like this should help:

Code:
<iframe style="width: 500px; height: 500px" src="http://url-to-your-faucet.com/?r=<?php echo $_GET['r']; ?>">

Then if you visit http://claimbits.com/?r=bitcoin_address it will be passed to the iframe and will be picked up by faucet too.

why when i visit my faucet, always have message that i need to wait xxx min. to claim. But i didnt claim on my faucet, also other users telling me that problem. my faucet http://xoloniex.info , im using latest faucetbox script 69
tnx

Your hosting probably uses a reverse proxy, so for the script it looks like all users are coming from single IP address.

Please upload this script to your server and send me a link to it:
https://faucetinabox.com/static/downloads/tools/test.php
27  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 02, 2016, 05:25:47 PM
SOAP, how can i do that? I mean

Required PHP's extensions:
 cURL
 GD
 PDO
 PDO MySQL
SOAP

I have all top except SOAP

EDIT: Ok guess i need to activate thru my cpanel

Yea, it depends entirely on your hosting.
28  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: December 02, 2016, 03:26:36 PM
Faucet in a BOX r69 now supports FaucetHub.io out of the box. Just select it in the admin panel.
29  Economy / Micro Earnings / Re: [Live!] FaucetHUB.io - Your microwallet on: December 02, 2016, 03:26:20 PM
Faucet in a BOX r69 now supports FaucetHub.io out of the box. Just select it in the admin panel.
30  Economy / Micro Earnings / Re: FaucetHub.io Tutorial - Make money from 0. on: December 02, 2016, 03:25:47 PM
Faucet in a BOX r69 now supports FaucetHub.io out of the box. Just select it in the admin panel.
31  Economy / Micro Earnings / Re: How to migrate from FaucetBOX.com to FaucetHub.io with 7 easy steps on: December 02, 2016, 03:24:38 PM
Faucet in a BOX r69 now supports FaucetHub.io out of the box. Just select it in the admin panel.
32  Economy / Micro Earnings / Re: FaucetHub.io - Alternative to epay, faucetbox, paytoshi. Coming this month! on: December 02, 2016, 02:55:56 PM
thx alamin, but faucetbox r68 already has faucethub.php (but is disabled)
Now i enabled it in services.php it is fine anyway??

It should be fine.
33  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 27, 2016, 11:13:35 AM
@Kazuldur: Do you see my post on previous page?  https://bitcointalk.org/index.php?topic=1094930.msg16969004#msg16969004
Captcha still doesn't show on admin login panel.

Make sure you have $display_errors = true; and PM me your faucet's address.

Also I want to ask when I can expected adding faucets to faucet list?

About a week probably.

Are you using the right key for your captcha?

This captcha doesn't use any keys, it's local.
34  Economy / Micro Earnings / Re: FaucetHub.io - BETA! Prepare your bodies. on: November 25, 2016, 05:31:13 PM
Invalid Bitcoin Address
The address entered is not a valid Bitcoin address

For xapo addresses . Will this be fixed?
I'll see what I can do.

I'm not really a fan of XAPO. I consider it more like a bank, than a wallet.
Bitcoin's philosophy is against such things. Bitcoin requires anonymity ;p

The problem is fixable , you just need to let the faucet accept multi sig addresses that start with 3

Not only Xapo uses P2SH (https://en.bitcoin.it/wiki/Pay_to_script_hash) addresses. Many wallets do and it's a great way to increase security of coins.
There are also P2SH addresses for other currencies. However note that P2SH addresses for Bitcoin and Litecoin are indistinguishable, which means that a valid Bitcoin P2SH address is also valid Litecoin P2SH address. If you expect that address itself can be used as a unique qualifier, that may be problematic.
35  Economy / Micro Earnings / Re: FaucetHub.io - BETA! Prepare your bodies. on: November 24, 2016, 07:27:45 PM
Are you okay with small pentesting during beta? Just random checks for XSS, CSRF etc. (I'm a sysadmin, not a pentester, so don't rely on me finding nothing Tongue)

EDIT:

How long will beta last?
36  Economy / Micro Earnings / Re: my site is hacked any one can help me ? on: November 23, 2016, 11:00:41 AM
You're confusing bots with rotators. You didn't ban bots, you banned legitimate users that use rotators.
I do not confuse
as you think, legitimate users require 1 satoshi, when the button delay 600 seconds?

the whole day  received 4000+  Users get 1 Satoshi

read this message https://bitcointalk.org/index.php?topic=1667647.msg16752536#msg16752536

Rotator users rarely check the reward, they just go through each site showed to them. Bots don't use frames.
That said rotator users also doesn't click ads, so I understand why people may want to block them.
37  Economy / Micro Earnings / Re: my site is hacked any one can help me ? on: November 23, 2016, 10:25:43 AM
try to write to a file htaccess
this code

Code:
Header always append X-Frame-Options DENY

That code how will help againts bots?
the prohibition of opening in frames
at least to me this code helped
it  banned 85%  bots on my site

You're confusing bots with rotators. You didn't ban bots, you banned legitimate users that use rotators.
38  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 23, 2016, 09:46:20 AM
I don't see any errors on this site, also I couldn't find error log files.
(that captcha problem is on my old faucet after updating from v66 to v67 (v66 I updated automaticly when It was possible).
Can you save this script: http://pastebin.com/raw/cfgJgb5u as test-captcha.php on your hosting (the same place where you uploaded faucet script that has captcha problems) and send me a link to it?

On new faucet  (when I set show error=true in config.php) when I want to install v66 on screen with password to admin panel I see this error:
Code:
Notice: crypt(): No salt parameter was specified. You must use a randomly generated salt and a strong hash function to produce a secure hash. in /faucetname.com/public_html/admin.php on line 63

next, when I click "click to continue" I was forwarded to
Code:
http://faucetname.com/admin.php?p=admin
page where I see this error and nothing more:
Code:
Warning: require_once(libs/http-foundation/IpUtils.php): failed to open stream: No such file or directory in /faucetname.com/public_html/script/common.php on line 248 Fatal error: require_once(): Failed opening required 'libs/http-foundation/IpUtils.php' (include_path='.:/usr/local/share/pear') in /faucetname.com/public_html/script/common.php on line 248
This error I see also on main page and that's all on my page.

Something went wrong when you uploaded files, try uploading again.
39  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 22, 2016, 09:37:58 PM
where are error logs? on screen I don't see any information about errors

That depends on hosting. If you don't know where your hosting keeps error logs, you can also set $display_errors = true; in config.php and try visiting http://faucetdomain.com/cool-captcha.php . Then you should see errors on screen (I hope).
40  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 22, 2016, 09:23:47 PM
I did it.  I see login to admin panel page, but captcha window is blank.
Any errors in logs?
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!