Einstein

820
reputation
88 views

Unregistered User

name Einstein
member for 1 year
seen 19 hours ago
website
location
age
Dec
1
awarded  Yearling
Nov
23
answered preventing csrf in php
Nov
19
answered practical uses of OOP
Nov
16
answered Importing MD5+Salt Passwords to MD5.
Nov
16
comment Importing MD5+Salt Passwords to MD5.
Using an entire salt shaker and the worlds best hash algorithm does not really buy you anything. It does not effectivly solve the weak password (offline dictionary attack) problem. It can force an attacker to devote more resources to the problem but nothing that anyone should expect would prevent a successful attack.
Oct
30
answered server side db programming: why?
Oct
24
answered How to delta encode a C/C++ struct for transmission via sockets
Oct
17
answered performance of web app with high number of inserts
Oct
11
answered I was asked this in a recent interview
Oct
11
answered Secure random number generation in PHP
Oct
11
answered Difference between 2 indexes with columns defined in reverse order
Oct
6
answered Can the data in a UDP packet be assumed to be correct at the application level?
Oct
3
comment Most Efficient Way to… Unique Random String
For a base 54 random string the table size is 459 million and all your doing is punting the same problem from one table to another unless a predictable sequence is used which is then not "random".
Oct
3
answered Most Efficient Way to… Unique Random String
Sep
30
answered Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
Sep
29
comment Storing partial credit card numbers
I'm sure others are much more qualified to draw a complete threat tree for you. This can occurs by compromising the ecommerce server and installing necessary software. I don't disagree with your sentiment but we must all live within the context of our time. IMHO ideal solution is to replace the current 'take' model with a 'give' system where the user initiates transfer of funds (Essentially PayPal).. Rather than merchants taking funds from the customer.
Sep
28
answered Storing partial credit card numbers
Sep
28
comment Storing partial credit card numbers
See my response to Mitch Wheats response. Storing hashes of card data is exceedingly dangerous.
Sep
28
comment Storing partial credit card numbers
Subscription services where customers are billed automatically on a recurring basis. E-commerce sites which give users convinent funding options. Many respected systems (PayPal..et al) store card data. Your obviously correct however it is possible to mitigate such risks -- not storing them is NO EXCUSE to not have a secure system in the first instance. An attacker could just as easily tap the transactions and "store" them in their own database.
Sep
28
comment Storing partial credit card numbers
I disagree. There are valid reasons to store card data and just saying don't do it does not answer the specific question Joel asked.
Sep
28
comment Storing partial credit card numbers
16-digit card number 111,222,333,444,555 (trillions) -- 15 digits subtracting check bit -- first two-four digits are limited to about a dozen possibilities. subtract another 2-4 digits. This leaves at most 11 to 13 digits of entropy. Which works out to less than 1 trillion checks. This is nothing for a modern computer. Use of salts does nothing.
Sep
28
comment Storing partial credit card numbers
I disagree on all points. Storage of card data is not illegal. Requirements for secure storage and processing are governed by the card industry. The PCI/DSS requirements are available online and apply to you whether you store the data or not!! Use of a hash algorithm alone in this case is generally exceeding dangerous given low entropy of card numbers and covering block size recovery of origional number would be quite easy to accomplish using precomputed tables and other brute force techniques.
Sep
22
awarded  Popular Question
Sep
15
answered does a disaster proof language exist?
Sep
15
answered Java decompiler written in the United States
Sep
10
comment SQL 2008 Mirroring Issues
This is a good question for serverfault.com
Sep
9
comment How to recognize malicious source code?
If my intent wasn't clear I'm sorry. My response was intended to be couched in the context of discovery of malicious code and was not intended to address exploitation.
Sep
7
answered How to recognize malicious source code?
Aug
30
comment reasons NOT to use mysql
Oracle DDL operations themselves are not embarcked in transactions. Both MySQL and Oracle systems are broken. MySQL behavior is much worse. MSSQL has it right in terms of transactional DDL.
Aug
18
answered Processor, OS : 32bit, 64 bit
Aug
12
answered What is preventing widespread use of XSLT for webpages?
Aug
12
answered Best way to store password into sql
Jul
22
answered Does using linux benefit you as a programmer?
Jul
13
answered Preventing multiple daily votes in a contest
Jul
6
answered How can I find the execution time of a section of my program in C?
Jun
29
answered Virtualization and why it is good for programmers
Jun
28
answered How prevalent is UTF-8 really?
Jun
27
awarded  
Jun
25
answered Bitfield manipulation in C
Jun
25
awarded  Student
Jun
25
asked Indexed ranged search algorithm for IP Addresses
Jun
25
comment How to download multiple files with one HTTP request?
Sorry, your comment appeared only after I sent mine. Maybe its not some W3C/IETF sanctioned thing but I do remember doing this myself over a decade ago. At the time it was part of "server side push"
Jun
25
answered How to download multiple files with one HTTP request?
Jun
25
comment How to download multiple files with one HTTP request?
Hu? How do you think file upload from the browser works?
Jun
24
answered What does $1 mean in Perl?
Jun
24
answered Storing Business Hours in a Database
Jun
22
answered Proper Design of a MVC Project
Jun
17
comment SQL Round function not working, any ideas?
ISNULL can generate better execution plans if used in the WHERE clause. It has no tangable effect on performance of result sets.
Jun
15
comment html 5 v/s XHTML
XHTML is not supported by IE (including IE8). You must also use application/xhtml+xml or browsers will treat the XML as HTML and shall not be subject to XML validation rules.