active questions tagged credit-card - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:38:33Z http://stackoverflow.com/feeds/tag/credit-card http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864208/is-42-a-valid-credit-card-number-jquery-validator-thinks-it-is 4 Is 42 a valid credit card number? jQuery validator thinks it is Simon 2009-12-08T02:23:21Z 2009-12-08T14:56:03Z <p>We all know that <a href="http://entertainment.howstuffworks.com/hitchhikers-history.htm" rel="nofollow">42 is the answer to everything</a>, but it's news to me that it is a valid credit card number.</p> <p>Try entering '42' or '42176' into this <a href="http://docs.jquery.com/Plugins/Validation/Methods/creditcard" rel="nofollow">jQuery Validation testing page</a> and click OK.</p> <p>What's going on? I thought this was supposed to be the de-facto validation library. Even Microsoft is using it now, but it thinks '42' and '42176' are valid credit card numbers?! It's not even doing a length check. Surely I'm not responsible for adding a length check too? It's called 'creditcard' validator and not 'luhn' validator.</p> <p><strong>Edit</strong>: hitchhiker humor aside - how would I go about patching the validation plugin to check length. is that easy?</p> http://stackoverflow.com/questions/1861696/paypal-pro-direct-credit-cart-expiration-date-verification-in-magento 0 PayPal Pro (Direct) Credit Cart expiration date verification in Magento mylonov 2009-12-07T17:51:17Z 2009-12-07T17:51:17Z <p>Hi all.</p> <p>i have an installation of Magento shop on my development server and as a payment gateway we are using PayPal Pro (PayPal Direct) which is able to accept users' credit cards.</p> <p>it was fine in sandbox mode, but after switching into 'live' mode and testing with $0.01 transactions, it came out that PayPal seem to accept CCs w/o checking expiration date, but CC number and CVV are checked.</p> <p>so here are the questions: 1. how insecure is to leave CC processing to work w/o expire date check? 2. how to get this fixed? :)</p> <p>thanks.</p> http://stackoverflow.com/questions/1479363/how-tell-the-difference-between-a-debit-card-and-a-credit-card -1 How tell the difference between a Debit Card and a Credit Card Mike Wills 2009-09-25T20:15:08Z 2009-12-07T17:04:23Z <p>How does one determine that the card a person is entering is a debit card, check card, or credit card?</p> <p>I am looking at this for web payments in the US only. This is for utility billing.</p> http://stackoverflow.com/questions/1860443/best-books-for-web-site-security-best-practice 1 Best books for web site security best practice? opsb 2009-12-07T14:51:10Z 2009-12-07T16:40:28Z <p>I'm looking for a good overview of security best practices for web sites. In particular handling storing customer payment details for credit/debit cards. What are the best books/blogs?</p> <p>Specifically I'm looking to store payment details for users' so that when they make their next purchase they don't need to enter them again.</p> http://stackoverflow.com/questions/1780538/minimizing-pci-compliance-when-my-checkout-flow-has-a-confirmation-page 0 Minimizing PCI compliance when my checkout flow has a confirmation page Simon 2009-11-23T00:19:22Z 2009-12-04T15:18:19Z <p>I have a shopping cart flow like this:</p> <ul> <li><strong>Page 1</strong>. Choose Products</li> <li><strong>Page 2</strong>. Enter address, shipping, credit card details on a single page checkout.</li> <li><strong>Page 3</strong>. User confirms the order - but we want a final opportunity to upsell, so we must be able to change the amount charged. If the user abandons this page they should not be charged OR authorized anything, but we must be able to call them and convince them to order without having to ask for their number again.</li> <li><p><strong>Page 4</strong>. Receipt page</p></li> <li><p>Repeat billing is a requirement for later, with variable amounts and schedules. (The user must be able to come back and change their schedule without entering CC number again).</p></li> </ul> <p>Here's what I <strong>dont</strong> want to do :</p> <ul> <li>Send the user to a third party page (because I want a single page checkout and retain branding)</li> <li>Minimize PCI compliance requirements</li> <li>Authorize payments and cancel them if the user doesn't confirm. This is asking for trouble on many levels!</li> </ul> <p>Since I need a confirmation page I think I will need to use some kind of tokenization system such as offered by <a href="http://www.braintreepaymentsolutions.com/pci-dss-compliance/" rel="nofollow">braintreepayments</a>. You basically store the credit card number on their service and they give you back a token that represents that number. You can then make a charge against that card at any time for any amount. This certainly seems the most flexible solution.</p> <p>I'm kind of going round in circles trying to figure out if this is the best solution or not :</p> <ul> <li>I don't know if BrainTree is the only company that offers such a service, but I'm also not convinced its really necessary.</li> <li>If I temporarily store the CC in session until the user confirms it I can still use pretty much any payment gateway. Therefore the question becomes 'does it matter if I store the CC in memory temporarily' and to what degree.</li> </ul> <p>The 'purest' safest approach seems to be to redirect to braintree (or someone else that offers a similar gateway). </p> <p><strong>Edit (after assigning bounty):</strong></p> <p>I've concluded that I absolutely have to have a system where we only need to meet level A for <a href="https://www.pcisecuritystandards.org/saq/instructions%5Fdss.shtml#instructions" rel="nofollow">PCI</a>. Been studying PCI in more detail and these questionnaires are the relevant ones for card-not-present merchants (i.e. e-commerce).</p> <p><a href="https://www.pcisecuritystandards.org/docs/pci%5Fsaq%5Fa.doc" rel="nofollow">SAQ A</a> : (when CC numbers don't even touch our server). You still have to fill out this questionnaire if you're selling online, but it is pretty easy.</p> <p><a href="https://www.pcisecuritystandards.org/docs/pci%5Fsaq%5Fd.doc" rel="nofollow">SAQ D</a> : (where CC numbers touch our server EVEN IF WE DONT STORE THEM)</p> <p>Take a look at these questionnaires reveals a huge delta between requirements. The PCI requirments are often misrepresented as being a simple list such as 'maintain a firewall', 'security policy', 'limit physical access' - but if you actually read questionnaire D you'll see it has order of magnitute more questions and requirments. For instance you have to answer whether or not your server is protected by a video camera, and what kind of data encryption you have on your server.</p> <p>I'd really appreciate knowing what <strong>actual products or providers</strong> out there that will facilitate me doing what I want to do. If there really is only 1 or 2 companies out there that let me do this then I need to know. </p> <p>I've got no relationship to Braintree except I've managed to get on their email marketing list. They're just the only company I've managed to find that does this. If you are running another company doing the same then by all means blow your own trumpet. PCI requirements are only going to become more stringent over time and anyone who has got this far reading my question probably already realizes that.</p> http://stackoverflow.com/questions/166639/what-kind-of-damage-could-one-do-with-a-payment-gateway-api-login-and-transaction 3 What kind of damage could one do with a payment gateway API login and transaction key? Lauren 2008-10-03T12:45:44Z 2009-11-27T14:31:26Z <p>Currently, I'm in the process of hiring a web developer who will be working on a site that processes credit cards. While he won't have the credentials to log into the payment gateway's UI he will have access to the API login and transaction key since it's embedded in the application's code.</p> <p>I'd like to be aware of all the "what if" scenarios pertaining to the type of damage one could do with that information. Obviously, he can process credit cards but the money goes into the site owner's bank account so I'm not sure how much damage that could cause. Can anyone think of any other possible scenarios?</p> <p>UPDATE: The payment gateway being used is Authorize.net.</p> http://stackoverflow.com/questions/1308194/determine-credit-card-type-by-number 8 Determine credit card type by number? Henry 2009-08-20T19:03:07Z 2009-11-22T23:19:00Z <p>Can credit card type be determined solely from the credit card number?</p> <p>Is this recommended or always ask client for the type of credit card they're using?</p> <p>I googled about it and found this algorithm: <a href="http://cuinl.tripod.com/Tips/o-1.htm" rel="nofollow">http://cuinl.tripod.com/Tips/o-1.htm</a> , is this reliable?</p> <p>Thanks</p> http://stackoverflow.com/questions/1721053/c-visa-3d-secure-implementation -2 c# Visa 3d Secure Implementation Fleents 2009-11-12T09:37:07Z 2009-11-21T18:11:07Z <p>can someone give a sample implementation of 3d secure for an ecommerce application?</p> http://stackoverflow.com/questions/1763306/credit-card-purchase-of-physical-goods-via-an-iphone-application 0 Credit card purchase of physical goods via an iPhone application teabot 2009-11-19T13:29:48Z 2009-11-19T20:51:54Z <p>I'd like to add a means for users do make payments for <strong>physical goods</strong> using credit cards via an iPhone application. Are there any guidelines regarding such functionality in iPhone apps? I'm mostly thinking of Apple's opinions on this.</p> <p>Clearly, such data would have to be submitted securely but must this be done within Safari? If not, then how can a 'padlock level of trust' be established with the user? Would Apple even allow this?</p> http://stackoverflow.com/questions/1753583/payment-gateways-for-mid-sized-business 0 Payment Gateways for Mid-Sized Business? Eric 2009-11-18T04:14:50Z 2009-11-18T21:13:10Z <p>My company is a bit unhappy with the support we've been getting from Cybersource and we're about to embark on a billing re-write so we're taking the opportunity to look at other gateways. Anyone have any positive or negative experiences they'd like to share?</p> <p>I'd rather not hear about small website gateways like paypal, we run tens of thousands of transactions and millions a year. If you know, I'd love to hear how much you're paying in transaction/gateway fees too.</p> <p>We're primarily a .NET shop if you'd like to speak to a particular API. Gateway must support the big 4 credit cards (mc, visa, disc, amex) and ACH.</p> <p>Thanks in advance for the help from the hive mind. :)</p> http://stackoverflow.com/questions/1731772/credit-card-expiration-dates-in-which-timezone 6 Credit card expiration dates in which timezone? Henry 2009-11-13T20:42:22Z 2009-11-18T19:43:02Z <p>We know from <a href="http://stackoverflow.com/questions/54037/credit-card-expiration-dates-inclusive-or-exclusive">Credit card expiration dates - Inclusive or exclusive?</a> that credit card expires on the last day. However, in which time zone?</p> http://stackoverflow.com/questions/738396/low-cost-online-payment-processing-solution-for-public-schools 2 Low cost online payment processing solution for public schools? Sajee 2009-04-10T18:11:24Z 2009-11-18T19:14:40Z <p>Via a website, my local school Parent Teacher Association would like to enable parents to sign-up for various activities and pay for these activities via credit card. In my initial research, there seems to be a pretty high fee (~2%) per transaction. Since the PTA is a non-profit, are there any low cost option or solutions that provide discounts to non-profits like public schools? The school is in a small suburb in NJ.</p> http://stackoverflow.com/questions/1668210/what-is-the-best-way-to-determine-duplicate-credit-card-numbers-without-storing-t 3 What is the best way to determine duplicate credit card numbers without storing them? TheSoftwareJedi 2009-11-03T15:53:13Z 2009-11-12T02:53:16Z <p>I run a website where we mark certain accounts as scammers, and "flag" their account and all credit cards used as being bad. We don't store actual credit card values, but are storing a checksum/MD5 algorithm of it instead. </p> <p>We are hitting collisions all the time now. What is the best way to store these values - non reversible, but able to do comparisons on future values.</p> <p>I thought MD5 would be the best, but we've got a debate going on here...</p> http://stackoverflow.com/questions/1707701/receiving-payments-trough-paypal-and-credit-card 0 Receiving payments trough PayPal and Credit Card andreeib 2009-11-10T12:45:13Z 2009-11-11T12:09:18Z <p>Hi, I am developing a website and I need to receive payments from PayPal and Credit Card, the thing is that I know nothing about this, and my question is where I can find some great resources to help me, or if you have some example codes, everything that can help me.</p> <p>Thank's alot.</p> http://stackoverflow.com/questions/1699689/why-using-clear-text-for-credit-card-security-code 1 Why using clear text for Credit Card security code? Q8-coder 2009-11-09T08:16:58Z 2009-11-09T08:20:26Z <p>I'm curious about the reason why <del>all</del> most payment gateway site use clear text input to take security code.</p> <p>Isn't it more secure if users put their security code in password mode textbox?</p> <p>please give me enlightenment on this</p> http://stackoverflow.com/questions/1697298/how-do-i-accept-credit-card-payments-inside-a-c-app 1 How do I accept credit card payments inside a C# app? Jeremy Rudd 2009-11-08T17:44:53Z 2009-11-08T17:52:56Z <p>How do I accept credit card payments inside a C# app? I'll use some textboxes for the inputs but what gateway do I contact to complete the transaction? I don't mind working with any service, paid or free.</p> <p>Any ideas how I can do this? Thanks.</p> http://stackoverflow.com/questions/1690057/credit-card-validation-with-jquery 1 Credit Card validation with Jquery Aviatrix 2009-11-06T20:09:36Z 2009-11-06T21:03:07Z <p>Hello , i'm trying to validate credit card numbers with jQuery but i dont want to use the validation plugin , is there any other plugin for doing this? thanks </p> http://stackoverflow.com/questions/1687513/open-source-credit-card-payement-gateway -2 open source credit card payement gateway Ayoub 2009-11-06T13:11:37Z 2009-11-06T14:03:44Z <p>I have been for some advices about credit cards processing gateways on stakeoverflow where i found an answer that suggested using an open source gateway processing library but I have bookmarked or any thing and now I don't seem to find it, So i am asking the question again : can any body point me to an open source credit card processing gateway? (I am using php)</p> http://stackoverflow.com/questions/1252979/token-based-credit-card-systems-vs-traditional-gateway 0 Token based credit card systems vs. traditional gateway Simon 2009-08-10T03:18:53Z 2009-11-04T09:00:02Z <p>I'm trying to decide between <a href="https://cms.paypal.com/us/cgi-bin/?cmd=%5Frender-content&amp;content%5FID=developer/howto%5Fgateway%5Fpayflowpro" rel="nofollow">Paypal PayFlow</a> for a transaction processing service or a service like <a href="http://www.braintreepaymentsolutions.com/" rel="nofollow">BrainTree</a>.</p> <p>BrainTree's service intrigues me because they will actually return a token to you for a credit card which can be used in future transactions. This token acts like a GUID for the credit card, but is useless if stolen. BrainTree is the only service I have come across that uses such a system - but I'm not sure if they are unique or not.</p> <p>I heard some praise for BrainTree on a recent podcast, and had not heard of them before. </p> <p>I wondered if anyone has any general advice on picking between the two - from the perspective of how much programming I will need to do or <a href="https://www.pcisecuritystandards.org/" rel="nofollow">PCI</a> concerns.</p> http://stackoverflow.com/questions/1601115/how-are-expiration-dates-on-a-credit-card-calculated-and-given-to-a-persons-car 0 How are expiration date's on a credit card calculated and given to a person's card by a credit card company? [closed] Justin Smith 2009-10-21T14:17:41Z 2009-10-21T14:20:21Z <p>I have a very important bill due to start my car insurance back up and I don't get my card for 2 weeks. I have had an account with credit one and have the card number but no expiration date because I lost the card. There has to be a way for me to find the expiration date myself. I heard it is usually the month you were issued the card and 3-5 years after gives you the expiration date, but I have not got it to work yet. The expire date is required to process payment. The card company said they can't help either and I know someone can help me with this. I just have no idea where to start. Thanks so much to the people that can help me with this...:)</p> http://stackoverflow.com/questions/1586721/implement-find-save-activerecord-methods-for-activemerchant-creditcard-objec 0 Implement find(), save() ActiveRecord methods for ActiveMerchant CreditCard object mlambie 2009-10-19T02:33:08Z 2009-10-19T03:41:18Z <p>What's the best way to implement ActiveRecord's <code>find()</code> and <code>save()</code> methods for an ActiveMerchant ActiveMerchant::Billing::CreditCard object in a Ruby on Rails application? </p> <p>I'd like my credit card objects to inherit from ActiveRecord and ActiveMerchant.</p> <p><em>Caveat: I understand that saving credit card information to a database is always considered a bad idea, and that it's preferable to use a gateway that facilitates card storage for you. Presume that it's necessary and that suitable security standards are being met (PCI DSS, filesystem and database encryption, network separation etc).</em></p> http://stackoverflow.com/questions/1557954/how-do-you-add-gui-to-this-java-program 1 How do you add GUI to this java program? Leyla 2009-10-13T02:37:33Z 2009-10-13T07:46:36Z <p>I know only basic stuff in java. And I need to create a GUI for this type of program. It shows your credit card info. It has some other classes and makes use of the rmiregistry. This works fine in console but I need to show it in a GUI. The first thing that promps here is to enter your name (java Shopper localhost <em>my name</em>). Then it shows you your credit card info. Can anyone help me? Please and thank you</p> <pre><code>import java.rmi.*; import javax.swing.*; public class Shopper { public static void main(String args[]) { CreditManager cm = null; CreditCard account = null; if(args.length&lt;2) { System.err.println("Usage:"); System.err.println("java Shopper &lt;server&gt; &lt;accountname&gt;"); System.exit(1); } try { String url = new String("//"+args[0]+"/cardManager"); System.out.println("Shopper: lookup cardManager, url="+url); cm = (CreditManager) Naming.lookup(url); }catch(Exception e) { System.out.println("Error in getting Card Manager "+e); System.exit(1); } try { account = cm.findCreditAccount(args[1]); System.out.println("Found account for "+args[1]); }catch(Exception e) { System.out.println("Error in getting acocunt for "+args[1]); System.exit(1); } try { System.out.println("Available credit is "+account.getCreditLine()); System.out.println("Changing pin number for account"); account.setSignature(1234); System.out.println("Buying a new watch for $100"); account.makePurchase(100.0f, 1234); System.out.println("Available credit is now "+account.getCreditLine()); System.out.println("Buying a new pair of shoes for $160"); account.makePurchase(160.0f, 1234); System.out.println("Cardholder: Paying off $136 of balance"); account.payTowardsBalance(136.0f); System.out.println("Available credit is now "+account.getCreditLine()); }catch(Exception e) { System.out.println("Transaction error for "+args[1]); } System.exit(0); } } </code></pre> http://stackoverflow.com/questions/1495683/is-it-secure-to-post-credit-card-data-from-view-to-controller 5 Is it secure to POST Credit Card data from View to Controller? Ryan 2009-09-30T01:07:33Z 2009-10-08T08:18:32Z <p>Need to submit some CC data from the View to the Controller where it will be processed, can I just POST it or is there some common way of securing the data in transit?</p> http://stackoverflow.com/questions/986284/how-can-i-read-the-purse-balance-with-an-emv-card 0 How can I read the purse balance with an EMV CARD? Pablo Aparicio 2009-06-12T12:04:21Z 2009-10-06T06:00:02Z <p>I'm working with a smart card reader and I'm finding some trouble about getting the purse balance from an EMV card. I have developed software for other cards with t=0, protocol, but this time this process is killing me.</p> <p>I supposse it has to be something like :</p> <p>Select Purse balace File Read Record.</p> <p>I did not find this file, and then I saw in the specifications this:</p> <p>It's mandatory to: 1.-select the PSE 2.-Read Record 3.-Get processing options 4.-Read Record 5.-Get Chanllenge command 6.-Get Data command </p> <p>I honestly think with command 6 I will obtain what I'm looking for, the problem is that I cannot select the pse, but instead I can select the AID standard visa file.</p> <p>What am I doing wrong?</p> <p>Thanks</p> http://stackoverflow.com/questions/1507714/whats-the-best-way-to-avoid-chargebacks-in-an-ecommerce-web-app 0 What's the best way to avoid chargebacks in an ecommerce web app? Hugo 2009-10-02T04:18:53Z 2009-10-02T04:58:22Z <p>Is there a particular payment method that is less susceptible to chargebacks than others?</p> http://stackoverflow.com/questions/982953/what-is-the-best-credit-card-processing-service 14 What is the best credit card processing service? JerSchneid 2009-06-11T18:57:08Z 2009-10-02T04:43:53Z <p>We're looking to add credit card payments to our system (and it needs to be fairly custom, handling variable "per use" charges each month). We would like the integration to be simple and secure (i.e. no storing of credit card data on our system). </p> <p>What, in your opinion, is the best credit card processing provider to offer this kind of security and flexibility. List only one provider per answer to let the voting system do it's thing. </p> http://stackoverflow.com/questions/1492693/integrating-rewards-programs-with-credit-card-processing-in-net 0 Integrating Rewards Programs with Credit Card Processing in .NET ElHaix 2009-09-29T13:48:48Z 2009-09-29T14:04:42Z <p>There are several rewards programs that integrate directly with credit cards at participating merchants. I'm looking for some information on the integration process, and would like to know details about the credit card processing workflow as well as the rewards program workflow, as well as any APIs I should use for this process.</p> http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers 1 Storing partial credit card numbers Joel 2009-09-28T04:40:25Z 2009-09-28T18:08:47Z <p>Possible Duplicates:</p> <ol> <li><a href="http://stackoverflow.com/questions/1416721/best-practices-for-taking-and-storing-credit-card-information-with-php">Best practices for taking and storing credit card information with PHP</a></li> <li><a href="http://stackoverflow.com/questions/206438/storing-credit-card-details">Storing credit card details</a></li> <li><a href="http://stackoverflow.com/questions/633384/storing-credit-card-information">Storing Credit Card Information</a></li> </ol> <p>I need to store credit card numbers within an e-commerce site. I don't intend on storing the whole credit card number, as this would be highly risky. I would like to store at least the first five digits so I can later identify the financial institution that issued the card. Ideally, I would like to store as much of the credit number as I safely can, to aid any future cross-referencing etc.</p> <p><em>How many digits, and which particular digits, can I safely store?</em></p> <p>For example, I imagine this would not be safe enough:</p> <pre><code>5555 5555 555* 4444 </code></pre> <p>Because you could calculate the missing digit.</p> <p>Similarly, this would be safe, but not be as useful:</p> <pre><code>5555 5*** **** **** </code></pre> <p><em>Is there a well accepted pattern for storing partial credit numbers?</em></p> http://stackoverflow.com/questions/1463252/creditcard-verification-with-regex 0 Creditcard verification with regex? level20dm 2009-09-22T23:59:37Z 2009-09-23T00:13:28Z <p>What is the right way to verify a credit card with a regex? If which one to use there are tons online. If not how to verify?</p> http://stackoverflow.com/questions/1440063/flash-based-credit-card-payments 1 Flash based credit card payments? Jeremy Rudd 2009-09-17T16:54:40Z 2009-09-17T18:21:05Z <p>Does anyone know how the entire checkout process including credit card validation and payment/transactions can be done in Flash, without redirecting to another HTML page?</p> <p>Since Flash has all the capabilities of a web browser (page requests, GET, POST) and even some goodies (cross domain page requests, sockets) I'm assuming this shouldn't be too hard. </p> <p>Ever done something like this? Any help is appreciated. I don't mind using any backend system or intermediary payment gateway, etc.</p> <p>Thanks</p>