Bitcoin Forum
April 25, 2024, 07:41:52 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 5 »
41  Bitcoin / Bitcoin Discussion / Re: "BlitCoin": "unmasks one or both ends of a BitCoin transaction"? on: September 09, 2011, 04:15:44 AM
What about generating transactions offline, then sending them from a public location, or uploading them to a website, etc?  Is there a way to do this?
i have a proof of concept/platform for creating transactions using plain text/files/QR codes using the BitcoinJ client. The transaction can be forwarded from a relay client, which could be anywhere with an internet connection. I've been working on it in my spare time for the last couple of months and I've hinted at it on the forums every once in a while. The actual transacting is a bit light on testing and it needs more work on the receiver/relay side. Some of the bigger issues I haven't even begun to address are double spends attempts (accidental or intentional), transaction revocation, and other fun stuff I probably haven't thought of yet. I've been spending the last few weeks setting up tools in preparation of opening up development and doing an initial public release. Look out for in the coming weeks/months.
42  Bitcoin / Project Development / Re: Secure Bitcoin Using Existing "tanJack" Device for Online Banking! on: August 19, 2011, 12:10:17 AM
I like this idea. I don't like the idea of biometrics though. There are lots of discussion about why linking biometrics to anything important are a bad idea (I like to use "Demolition Man" test).

I'm working on something that will partially fill the solution you are proposing, but I may borrow some of your ideas to make it better. I've been working on it in my spare time for over a month now, it's a similar concept but think QR codes/web cams instead of flashing screens. It's a bit clunkier but you can do it with commodity hardware. I believe there is just one more critical bug before the Proof of Concept is complete and it starts moving toward Alpha quality software.
43  Bitcoin / Project Development / Re: WalletCrypt Encryption Explaination on: August 12, 2011, 05:29:05 AM
I know it can be fun to roll your own encryption, but just don't do it. There are just so many attacks possible that regular folk like you or I just don't understand. Until the algorithm AND the implementation have been seriously vetted, it's really just security through obscurity. I'm not sure many around here could take a serious stab at vetting crypto. Do not take comfort in obscurity either as it is rarely obscure enough to be secure. If you are okay with taking risks, that's fine for personal use, but please do not distribute whatever you are planning. You would be doing a great disservice to release something you rolled out yourself, there's a reason the Bitcoin devs are taking their time with the wallet encryption that didn't make it into the last release (0.3.24)
44  Bitcoin / Bitcoin Discussion / Re: Three New Merchants are now up-and-running with Bit-Pay on: August 11, 2011, 04:09:28 AM
Except zero chargeback risk... that's a huge consideration.
I wouldn't say zero risk, that may be a staple of Bitcoin, but not for the periphery services. I like that they are offering this service, and they certainly seem to be committed to achieving that end, but time will tell if there are charge back risks.
45  Bitcoin / Bitcoin Discussion / Re: So, who hasn't lost coins or been scammed? on: August 04, 2011, 05:59:49 AM
Not me. I lost either $100 in the postal service or 140 odd BTC in a scam called bitcoin4cash.com, take your pick. What a welcoming way for my first Bitcoin transaction to go, way back in April. I tried contacting the guy, the only solution he could come up with was effectively "wait for it...wait for it..." until the order got "cancelled" by an "automated system" and he started ignoring my mail. It would have been worth resending for me, but how can I resend to a guy like that? I believe his alias is "Mad Hatter" on the forum.
46  Bitcoin / Project Development / Re: GLBSE's latest updates (an early Christmas present for non-techies) on: August 01, 2011, 05:41:34 AM
Using nginx
Ahh, sorry, well it doesn't seem to change much. If anything it looks a bit easier. There is a http rewrite module for nginx

The most robust rule that applies is probably something like this
Code:
if ($args ^~ post=100){
  server_name www.glbse.com;
  rewrite ^ http://glbse.com/new-address.html? permanent;
}

The wiki says using try files are a good idea, so you might need to look into that if you want better scalability. HTH. Hopefully I didn't miss any other obvious information you've already stated.
47  Bitcoin / Project Development / Re: GLBSE's latest updates (an early Christmas present for non-techies) on: August 01, 2011, 04:29:05 AM
Yeah the www. redirect is a pain in the ASS.

My http server redirects all http traffic to https first, need to add www. to be redirected to non www before it does a https redirect.

I tried just doing the redirect as a cname in dns but hasn't worked.
I've dealt with redirects that were similar in complexity. it shouldn't be too hard if you are using apache, you just need to use the rewrite engine in the .htaccess file, i think.

using google I would say you'd want something like this. just for reference i altered the following example which seemed to be close enough to be workable
Code:
ServerAlias *.glbse.com
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.* [NC]
RewriteCond %{HTTP_HOST} ^([^\.]+)\.glbse\.com
RewriteCond /var/www/vhosts/glbse.com/httpdocs/ -d
RewriteRule ^(.*) /%1/$1 [L]
48  Bitcoin / Project Development / Re: GLBSE's latest updates (an early Christmas present for non-techies) on: August 01, 2011, 03:23:58 AM
With regards the Chrome warning, thats because we've got links to non-ssl resources on the home page (the feedback form for example, possibly even the twitter feed stuff).
as I mentioned earlier in the thread I'm certain it is just the twitter feed, at least with respect to firefox. it's pretty low priority in any case. having a redirect for the www sub-domain to primary domain would be a smidgeon higher on the list for trivial issues.
49  Bitcoin / Project Development / Re: IBB - Islamic Bank of Bitcoin (80.30 BTC ) بنك بتكوين الاسلامي on: August 01, 2011, 03:15:19 AM
Help me understand this please. A guy said you guys refused to loan him some money because he was gonna use the loan to buy computer parts; is that true? Why exactly would that be a sin? Or did you reject the loan for some reason other than what he was gonna do with the money?
if it were parts for Yet Another Mining Project, I'd wholeheartedly agree with the decision. i want to see original business ideas receive loans/investment from IBB. also I believe they require something in the way of a business plan.
50  Bitcoin / Project Development / Re: GLBSE's latest updates (an early Christmas present for non-techies) on: July 31, 2011, 07:17:42 AM
The ssl cert (that's in the git project) isn't used now and the client has been changed to not verify ssl certificates. Try to get the latest version of bmc.py, Ive tried the client on debian and it works.
okay i stand corrected. it was a case of PEBKAC, apparently I still don't fully understand git. the latest commits weren't showing up in the tortoise-git log and doing fetches didn't help either. one of the descriptions of pull I had read made me hesitant to try that again. it's working for me with the latest commits from july 28. thanks.
51  Bitcoin / Project Development / Re: GLBSE's latest updates (an early Christmas present for non-techies) on: July 30, 2011, 10:30:58 PM
Anyone else seeing the following error ? ...
from what I can tell it's because openssl doesn't trust the certificate. I tried adding it to the windows trust store and that certainly did not help. i didn't try very hard, but I wasn't able to find the necessary openssl command. looking at the crt file, I didn't see a trust chain in it, so that might explain why it's not trusted.
52  Bitcoin / Project Development / Re: Website Developers, Stop Scaring Away Your Potential Customers (SSL!) on: July 29, 2011, 05:21:58 AM
Quote
If self-signed certs were the norm and no PKI infrastructure were in place, no matter how poor, MITM and similar attacks would be widespread.

But plaintext http, which is the norm now, is better?
In some ways, plain text is better than a false sense of security, obviously in a pragmatic way it is not. But, why use half measures when the business case for rudimentary security is so easy? You've already done 90% of the work implementing SSL. You can get an entry level signed cert basically for free. One case of fraud due to MITM is going to cost more than a signed cert. You can always upgrade your cert level if there's a business case for it. It's a case of penny-wise, pound foolish. Don't cheap out when you are dealing with money that belongs to someone else. Certs should only be the first step.

@nefai i know you're being sarcastic, but that warning is coming from twitter. I wasn't getting that warning until I enabled that script

@alfred we know, this thread is not directed at glbse in any way any more, at least I hope it's not, they've taken a step. too bad the www subdomain throws a hissy fit, though Nefario could always just create a re-direct.
53  Bitcoin / Project Development / Re: Website Developers, Stop Scaring Away Your Potential Customers (SSL!) on: July 29, 2011, 12:15:50 AM
Just to chime in on this, everything EVERYTHING nafai has said about ssl is 100% correct.
I don't disagree with most of what you or nafai said. If SSL was JUST line encryption, I would accept encryption is better than no encryption. However, it is not, tying it to identity verification is unavoidable. As someone that tries to pay attention to the contents of self-signed certs I feel helpless verifying the identity behind it. I know self signing is "good enough" more than 99% of the time, but with these thing you need to be on top or you will run inevitably run into that less than 1% scenario at a really inconvenient time. I doubt many service providers would eat the cost in the rare case where one of their customers mistakenly accepts a spoofed self-signed cert and are taken advantage of.

I think it's disingenuous to say that signed SSL identity verification is worthless while also saying that the encryption provided by self-signed certs is good enough for production use. Show me one white paper that recommends choosing a self-signed cert over signed cert in a production environment as a best practice and I'll eat my hat. Yes someone could hack a cert authority and issue a valid cert for something spoofing your server. The point is they don't need to hack anything to impersonate a self-signed cert.

Anyway, glad to hear you started using a signed cert Nefario.
54  Bitcoin / Bitcoin Discussion / Re: Bit-Pay.com / Super Boost for Bitcoin Economy on: July 28, 2011, 06:17:23 AM
I think it's a bunch of fucking bullshit and a rip off of the bitcoin community.
Isn't it already a bunch of crap that we pay 3& to credit card companies. They claim to charge that for their "highly protective, massively fraudulent services that use thousands of computers and office buildings thousands of employees etc etc etc.

So why are we expected to pay these guys 2% of every transaction to use this service as a merchant?
What did they do, besides write a simple program, which should give them 2% off all merchants fees? What do they do that qualifies this HUGE EXORBITANT FEE from these guys? I don't get it. I call this a bunch of baloney

I hope another one comes along next month and moves these guys down 2 notches.
Dude, they are a start-up, they need to pay off their initial costs, streamline their offerings, and above all turn in a profit. I don't know bit-pay's fee structure, but if they make it easy for merchants to start using Bitcoins by providing a great service, it's good for everyone. Also, from what I've heard on these forums the credit card companies basically make money every time there is fraud by charging merchants out the ass, so they aren't using their percentages primarily for that purpose. There's no reason competition can't fix the fee "problem" as usage goes up. From what I remember they offer Bitcoin directly to cash equivalent conversions, so those definitely have real costs that need to be covered. Some form of fee seems reasonable at this point and if merchants are willing to pay, that's their prerogative.
55  Bitcoin / Bitcoin Discussion / Re: Bit-Pay.com / Super Boost for Bitcoin Economy on: July 28, 2011, 05:38:56 AM
Can anyone update the list of "Shopping Carts" on the wiki and add Bit-Pay?  I can't see how to do that.
I've added a boilerplate page to the wiki and linked it to the "Shopping Carts" category. I didn't take the time to fill out any of the content. I might squeeze in some basic info before I go to bed.

https://en.bitcoin.it/wiki/Bit-pay
56  Bitcoin / Project Development / Re: Website Developers, Stop Scaring Away Your Potential Customers (SSL!) on: July 23, 2011, 05:45:59 AM
Changing browser behavior is pointless, it is the correct behavior for the current state of SSL. Self-signed certificate are worthless to typical end users unless you have some sort of third party that can vouch for it. An average user has no way of verifying the certificate is issued by whom they intend to communicate with. This is a HUGE problem for wireless connections. The only way self-signed certificates would be practical is with a web-of-trust/plugin as some have linked in this thread. I haven't tried such plugins despite thinking they are a good idea and knowing about them, a regular user doesn't sand a chance evaluating a certificate.

i accept self-signed certificate fingerprints all the time, but I assume the servers I connect to have not been compromised and that I'm not being MITMed. To expect ordinary users to blindly trust a random certificate from a random server is reckless. At least with signed certs you have an iota of assurance which is much better than nothing, cost has nothing to do with the issue, there are free signed certs out there.

Complaining that signed certs are a protection racket and bringing conspiracy theories about snooping just shows you don't understand this issue as much as you think you do. If there are back doors I'll appeal to authority in the absence of any real evidence. Regardless, setting a higher bar is necessary, if you can get browsers to make self-signed certs idiot proof, then I might accept them as superior to signed certs, until that time it is reasonable to expect signed certs.
57  Bitcoin / Project Development / Re: Website Developers, Stop Scaring Away Your Potential Customers (SSL!) on: July 21, 2011, 11:58:39 PM
a number of people have raised this to Nefario, myself included. he was initially reluctant to use a signed cert but he has conceded that using a signed cert is something that needs to be don. after making that decision, he said he was having trouble getting a signed cert while he was living in China, but now that he is in the States I'm sure it's on his to do list after settling down and taking care of some more pressing issues with service.
58  Bitcoin / Project Development / Re: GLBSE stock exchange up and trading. on: July 10, 2011, 04:54:31 PM
I didn't register on GLBSE, but I didn't see any links or info to the companies for which symbol belongs. If I am going to buy shares I would like what the company is about.
The closest thing there is right now is the "asset contracts" page, which you can get to when you click on "Start Trading" on the main page. It's not very the greatest but hopefully Nefario's changes on Monday will give us something better.
59  Bitcoin / Bitcoin Discussion / Re: wallet.dat in KeyPass - good or bad idea? on: July 08, 2011, 12:28:15 AM
Might be a good idea for a spending account, I don't think it would be a good idea for a savings wallet. The biggest problem is there is always a chance of key loggers and malicious code could also target the keepass software.
60  Bitcoin / Bitcoin Discussion / Re: Introducing Bitcoin for Android on: July 08, 2011, 12:23:18 AM
I'm looking forward to looking at certain parts of the source that I'm interested in. This is definitely a boon for people like myself having trouble with the sources of the desktop client. I spent a good amount of my weekend just trying (and failing) to compile the desktop client. This should have the code I need to move forward with a project I've been thinking about and will hopefully be a part of this client in one form or another in the future.
Pages: « 1 2 [3] 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!