Bitcoin Forum
May 05, 2024, 09:38:28 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 ... 98 »
321  Bitcoin / Hardware wallets / Re: [ESHOP launched] Trezor: Bitcoin hardware wallet on: August 24, 2016, 02:01:35 PM
I guess like that yeh, but I was still thinking on the "seed + keylogger risk" - it wouldn't help for that.
322  Economy / Gambling / Re: DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 24, 2016, 09:19:26 AM
I never looked at them and only had a quick look now:



Hi/Lo freebitco.in game
First of all the house edge is 5%. There is nothing wrong with that, but most sites have a 0.5 - 1% house edge (and SatoshiDice highest with 1.95%.) Since they do give away free money and lottery entries, again I don't think there is anything wrong with it. But a "real dice player" probably should play somewhere else.

Provably fair
They use a "nonce" but yet they change the serverseed after each roll. So I am not sure why they would use that nonce Huh With the "per roll" provably fair implementation, it's important that the site regenerates an unique client seed in the browser after getting the new serverseed hash after each bet. freebitco.in doesn't do this. This means IMO the provably fair implementation of them is "not really" provably fair.

Basically it allows them to serve a serverseed based on bet patterns (if you always go high, they would generate a low result.) The counter argument is that they shouldn't do this, because if they do this - you as a player can heavily cheat them too (bet 10x high, then a big low bet = easy profits.) Of course they could do it more subtle/smart. But besides that, the least they can do is make a result that isn't 8888 (jackpot), to scam jackpot entries completely unnoticeable.

I don't think they do this, but they should still fix this. Rollin had the same and fixed it: https://bitcointalk.org/index.php?topic=687571.msg12122724#msg12122724 You can see more details/fix there too.

Note, that you CAN still bet provably fair on their site. It just takes some time: 1) Click "provably fair" 2) write down "Hash" and "Nonce" 3) change the "Client seed" 4) make bet 5) verify bet (their link seems fine.) You will need to do this for EVERY bet.



Lottery
Lottery is not provably fair at all. So yeh, "house player" can always win everything. If they want to implement a provably fair lottery, they should look into how PevPot used to do it.




TL;DR: personally I would gamble on other sites with proper provably fair implementations (preferably with real nonce-implementation.)
323  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 24, 2016, 08:27:08 AM
What's about Bitsler?
I see that site is growing every day and I like speed of bet in that site!
I think BitSler still doesn't show any wagered statistic, so I cannot add them to my site.
324  Bitcoin / Hardware wallets / Re: [ESHOP launched] Trezor: Bitcoin hardware wallet on: August 24, 2016, 07:02:15 AM
Yeh, even with 10 number PIN it would take a few minutes max, so I guess that's completely useless Tongue (again the device adds big exponentially increasing delay upon every failed PIN, so works fine for that.)
325  Bitcoin / Hardware wallets / Re: [ESHOP launched] Trezor: Bitcoin hardware wallet on: August 24, 2016, 05:22:13 AM
Yeh, seed + keylogger is probably the biggest risk. I think PIN would be somewhat easy to brute-force if it were 25th word (compared to passphrase), but too lazy to do the math. I can still see it could be an advantage for advanced users though (since keylogger is less effective in that situation.)





Anyway, on a different subject, can anyone from SatoshiLabs tell me if an Android version of the TREZOR Password Manager is planned? I love the idea of using Trezor as password manager and would actually encourage others to use it even if they don't have any bitcoins. But Android version seems necessary for me personally. Even if it isn't as advanced as LastPass (easily fills in password in other apps etc), just a simple list + way to get password in Android app would do for now.
326  Bitcoin / Hardware wallets / Re: [ESHOP launched] Trezor: Bitcoin hardware wallet on: August 24, 2016, 04:20:28 AM
Yes. Seed = private key. PIN only protects for not getting into the device (and does a good job on that, because every invalid PIN adds a serious delay.)

You should add a passphrase though which functions as 25th word. This should be pretty long (let's say 8+ characters), otherwise it could be easily brute-forced with the seed. However, if you forget your passphrase, the funds are gone.

Basically it's much more important to keep your backup seed safe than the device.
327  Economy / Services / Re: EmpireCoin: Bug bounty program on: August 12, 2016, 03:45:03 PM

session_id() should not be at risk of SQL injection since it is server side.  I have just escaped it anyways though.


The cookie value support all the alpanums +
Code:
!#$%&'()*+-./:<=>?@[]^_`{|}~
Putting a ' in the PHPSESSID value can be used to SQL Injection.

 
This is incorrect.

From the PHP documentation:
Quote
For example, the file session handler only allows characters in the range a-z A-Z 0-9 , (comma) and - (minus)!

You can also very easily test this yourself. Just echo both session_id() and $_COOKIE["PHPSESSID"]. You can see that the cookie value will be echo-ed even with ' or " in it, however the session_id will be empty. But if you change the cookie with only aZ09-, it will be also returned with the session_id function.
328  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 12, 2016, 12:04:16 PM
Probably Smiley
329  Economy / Services / Re: EmpireCoin: Bug bounty program on: August 12, 2016, 06:21:29 AM
TBH your whole code looks like a lot of security risks. I thought about making a proper list of vulnerabilities, but this would require a lot of time from me (since your site does look complex) and the bounties look a bit "uncertain". So I am not sure if I want to put like a few days of time into it TBH.



Just in general you REALLY should adjust this:

* NEVER ever use the "quote()" shit for protection of SQL injection. Use prepared statements (lookup PDO->prepare()) instead.
* Use CSRF protection probably just ALWAYS whenever there is user input. I am pretty sure I can steal the escrow coins by sending the escrow an URL that loads an iframe/post-form/etc to send the coins to me. This requires user interaction (escrow has to open an URL), but can be pretty easy/doable.
* IMO you shouldn't strip_tags before putting it in the DB. Just always sanitize the output to the user. A template system can help with this, some will HTML encode every variable by default.
* Best to make most scripts NOT public for visitors to access. Basically you should only have .htaccess + bootstrapper (index.php) in your public_html together with CSS/JS/images. All PHP should be outside of it and just loaded by index. In your situation, you could at least hide the cron/classes/includes/libs/scripts. For example I can get your RPC password here: http://empirecoin.org/scripts/getinfo.php That is probably some test file which you forgot to delete (and I assume the bitcoind is not running at the moment), but could be serious problem.
* Just in general your code would be much easier to read (= easier to see bugs) if it's divided into MVC structure.
* Functions like rand() and mt_rand() are not cryptographically secure. It is possible to hack accounts on your site by using the "reset password" function and cracking mt_rand. Search for random_bytes() - I believe that is cryptographically secure in PHP lately.

All of those things, are generally taken care of by a PHP framework. That is why using a PHP framework is pretty great. I really like Laravel lately. But converting your site to a PHP framework might take serious time.



On the positive side: it seems to have a lot of features and I can always appreciate open-source work.



Another SQL Injection is detected in "get_session.php" line 15.
$session_key is not escaped.
I am pretty sure session_id() verifies any session ID from cookie etc? I don't think you can get values with " with that. OP should still use prepared statements though.
330  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 09, 2016, 04:15:42 AM
Could you list some sites that didn't make the cut on your site, but are on the fringe? For example, a site like Bitvest. I'm looking for some more investment options outside of the sites you have already listed.
On new version I will probably add (not all invest-based btw): crypto-games.net, bitinvest, bustabit, luckybit, pocketdice (if they finally fix their PF method) and maybe others. Most of these (and some currently listed) will be hidden by default with some filters. So new visitors see only the "most popular dice sites" while "advanced users" can see more sites.
when are you planning to release new version?
Like a year ago, lol. No, but next month should be realistic Smiley
331  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 08, 2016, 03:36:44 AM
Can you tell me more about the FJ faking false stat? I was around for quite some time but i didnt hear about this before.
The FortuneJack faking stats "discussion" started here: "Are the wagered stats of 14+ million BTC on the homepage correct?", they denied having wrong stats a couple times, so I gave a bit more arguments in this post. Finally they acknowledged it was wrong and claimed it was because of some exchange rate bug and offered me a bug bounty in PM (probably to keep me quite - I refused.) I gave some more arguments on why the wrong stats couldn't be caused by an exchange rate bug. They basically just ignored it from there. Few days later they did lower their stats by 28 times but still basically ignored my arguments.

I know FortuneJack however does have some real players who deposit/withdraw without any problem, so I don't make a huge deal out of it. But it is obviously pretty sketchy and I won't ever list them on my site because of it (impossible for me to trust their stats after that.)

As i am a fan of your site, is it possible to add more gamble site to it? I see that there are other gambling sites but it is not included in your list.
Thanks. I do plan to add several other sites when I finished the new version of my site. Unfortunately that is taking pretty long lol, but it will come eventually.
332  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 08, 2016, 02:21:25 AM
We are using your site as 3rd party verifier to our rolls. At the moment we are linking to Primedice since we use exactly the same generation process, but it would be cool if you could create a page (even if not visible from the homepage or any other section) for this purpose.
@NLNico any comment regarding this?
No, I won't support your site in any way. Problem is that you are obviously faking stats. My site is all about statistics and doesn't make any stupid subjective ratings, but rather lists sites based on wagered stats as "popularity indicator". When sites like FortuneJack and now you, are faking stats, I see that as serious sketchy behavior. I won't list sites that do shit like that.

You are free to have your own opinion, however you cannot make false accusations without any valid fundament or even a justification of that opinion.
True.

To be honest anyone who ever been on a dice site can just go to https://www.betbtc.co/casino/dice and look at the bet list themselves. All those 100% random amounts and chances.. LOL! That should really show enough for anyone who knows the basics of dice (people betting default 2x option, strategies with same payout, strategies with increasing amounts - martingale, etc.)

333  Other / Meta / Re: Tipsters are cancer to the Gambling sections (exceptions apply). on: August 06, 2016, 09:51:03 AM
Yes. There should be a "Gambling discussions" subforum. Both the "Tipsters" and the "Discussion" threads are very low quality (mostly signature and ref spam.) There are "discussions" with thousands of replies on the question "is gambling profitable"... it's just insane really.

I actually made an user script that allows you to "Ignore threads" just because of the insane spam in the Gambling forum (script here: https://bitcointalk.org/index.php?topic=1451483.0) The subforum idea has come up many times, see also this topic from 1 year ago with more arguments: https://bitcointalk.org/index.php?topic=1162790.0;all Right now my Gambling forum looks like this (just see how many are "discussions/tipster" topics):



If the Gambling forum would be only topics with sites (who put effort into making a good website etc), I think the quality would be much better. In the end bitcointalk is still the center of the bitcoin gambling community, but the Gambling forum itself is very disappointing. A simple "Gambling discussion" forum would help. The rule could be simple, no paid domain with real website = in subforum.
334  Economy / Games and rounds / Re: 1000 BTC Giveaway - what might be happening. on: August 06, 2016, 06:19:59 AM
Obviously those new accounts 6102rekcahxfb, hackrekcahxfb, etc. are scammers as well. Can't believe that the troll-hacker actually got 0.46 from it... why would anyone send anything to that address :s Even the original troll said on Slack/Reddit on his confirmed other accounts that he was hacked..

Anyway, leaving this reply so I can use it as reference for new negative trust for those new accounts.


Are the hacked funds in '1BfxSuxa-------------- will share soon.' address?
No. That signed message is from original "bfxhacker" and therefor useless. Blockchain.info screenshot is either just edited HTML but maybe even just "watch address" function. Totally useless.

That new address will be empty. And he will say he is the real "bfxhacker" (which isn't true) and you need to send funds to that new address of his.

Obvious scam is obvious.
335  Economy / Securities / Re: BetKing.io Investor thread - 4939 Bitcoin profit, 4208 Bitcoin invested on: August 06, 2016, 05:04:24 AM
Some losses for investors tonight. Player "norightturnplease" won BTC210: https://i.imgur.com/iTU40ay.png



I invested to Betking.io with 1 BTC in last months and wait for 2 weeks, I didnt get profit.

Could you please share your average monthly profit for investors?

If it is fine now, I can invest with my fund.
Players can win (big) too, so there is no guaranteed winnings. In the long-term you should get a profit of course though. You can look at the graphs here: https://dicesites.com/betking to see how the total profit progresses and what your expected profit is based on wagered amounts.
336  Economy / Gambling / Re: 10 Bitcoin Jackpot on Social Dice @ BetKing.io on: August 06, 2016, 05:00:39 AM
Player "norightturnplease": 40 bets, BTC640 wagered, BTC210 profit. Easy game Smiley

337  Economy / Gambling / Re: 🎲 DiceSites.com - List of dice sites w/ statistics, graphs & verifiers on: August 05, 2016, 03:56:14 PM
We are using your site as 3rd party verifier to our rolls. At the moment we are linking to Primedice since we use exactly the same generation process, but it would be cool if you could create a page (even if not visible from the homepage or any other section) for this purpose.
@NLNico any comment regarding this?
No, I won't support your site in any way. Problem is that you are obviously faking stats. My site is all about statistics and doesn't make any stupid subjective ratings, but rather lists sites based on wagered stats as "popularity indicator". When sites like FortuneJack and now you, are faking stats, I see that as serious sketchy behavior. I won't list sites that do shit like that.



Anyone knows what happened to dicenow.com ?!?
Not sure. Begin June someone posted that most BTC of Dicenow are from a hack. Owner didn't reply, but did change the OP 5 days later saying "Dicenow.com is shutting down at the end of June. Please divest and withdraw all coins ASAP.". So either way, looks like they are gone.

Generally when a site/owner becomes inactive it is a red flag. Ice Dice, Win88, Dicenow, Diggit (was offline for months, no reply from owner), Coinichiwa (owner gone for 6 months now), etc. Always risky to leave coins on a site with inactive owner.



Can you explain more clearly, please?
What's happen if all people or many many people win in a dice site?
More and more people play and the dice site will never die. What's mean that you say?

The maximum profit a player can win per bet, changes after each bet. This should be around 0.5-1% of the bankroll (or the "virtual bankroll" if margin-funding is allowed.) This way the player should never be able to win "all" the money based on the Kelly criterion theory.
338  Economy / Games and rounds / Re: 1000 BTC Giveaway - what might be happening. on: August 04, 2016, 05:41:46 PM
Quote
Is the hacker.. hacked?

1. Password change.
2. His English skills seem to be terrible now.
3. Asking 0.001 entry money.

Do not trust. At minimum he should sign a message with previous address. And still I would question his intentions

Left negative trust for now.

Very strange plot twist.

TBH if he signs messages from 1BfxSux... addy again, I might remove negative trust. In the end if people want to join this very risky "lottery", that is their own choice. But those 3 "changes" do seem really strange indeed.





edit: TBH I really think he used some throwaway password and got hacked.

Quote
Deductive reasoning suggests that you're more likely to hear it from bitfinex than the attacker because the attacker doesn't want to tell bfx anything it doesn't know, or help them expedite their investigation While bfx wouldn't want to shrae their hand to the attacker, ​they​ face brand repercussions the less information they disclose.
Yesterday in Slack he was saying things like above.. which seems like pretty good English to me. But now he talks like this:
Random select 1 address from unique addresses list.
Really? Nah.


Also on Slack:
Quote
I have not provided any evidence I am the bitfinex hacker. Please do not trust random people. Even if they throw around a thousand BTC.
There are scammers already and there will be more. I will NEVER ask you for money.
339  Economy / Games and rounds / Re: 1000 BTC Giveaway - what might be happening. on: August 04, 2016, 03:10:28 AM
His e-mail on slack is: ethereumdefense@yandex.com

So the plot thickens.. Is this hacker an Ethereum Maximalist trying to destroy Bitcoin?

Let me guess, next thing the Ethereum Maximalists are going to hard fork Bitcoin with all hacks/thieves addresses blacklisted and pump all their ETH into BBTC (Bailout-Bitcoin) to pump the price and hurt the Bitcoin price?! Damn Ethereum Maximalists.
340  Economy / Gambling / Re: Primedice 4 ! | Most Popular & Trusted Bitcoin Game | Huge Community | Free BTC on: July 15, 2016, 07:44:01 AM
Why is the site still pingable?
Like most BTC sites they use Cloudflare (which is between you and the actual PD server.) So you are pinging Cloudflare, not their server.
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 ... 98 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!