This is a discussion on Credit Card number problems! within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi, I have a question on the Extra Order Information. In the ADMIN section under catalog/admin/modules/payments/cc.php yo have a box ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi, I have a question on the Extra Order Information. In the ADMIN section under catalog/admin/modules/payments/cc.php yo have a box where you can add an email for additional checkout information to be sent to whom ever you like. This is the wording of the box: CC Split Credit Card E-Mail Address If an e-mail address is entered, the middle digits of the credit card number will be sent to the e-mail address (the outside digits are stored in the database with the middle digits censored) I am using this feature to send myself the CVV number that is collected on my site in a separate email where the rest of the order information is not seen (for security purposes). The problem is when you use this feature it also censors the middle 8 digits of the credit card information on the ADMIN section of the orders. So when you go to edit orders or copy the credit card information for punching into Quickbooks... it is missing the middle 8 digits. So my question is: Can you turn off the command (wherever it is) that tells the "Extra Order Email" to "censor" out the middle digits of the Credit card information? Thanks Leon |
|
#2
| |||
| |||
| well the line your looking for is: Code: 'field' => substr($this->cc_card_number, 0, 4) . str_repeat('X', (strlen($this->cc_card_number) - 8)) . substr($this->cc_card_number, -4)),
|
|
#3
| |||
| |||
| Quote:
Do you know how to tell it to NOT X out the middle four numbers? |
|
#4
| ||||
| ||||
| It is a VERY BAD idea to do so. Since the CC is stored in plaintext in the DB, you want it obfuscated in some way. If you don't, you are liable for any damages that occur (and your merchant provider, if they find out, may pull your account on you.) Not to mention how easy it is to get into a database and harvest all the unencrypted cc numbers.
__________________ Michael Sasek osCMax Developer
|
|
#5
| |||
| |||
| You got that right |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Credit Card Verification Number | gamerevolt | osCMax v2 Customization/Mods | 1 | 09-08-2006 10:29 AM |
| Credit Card problems | lem | osCMax v1.7 Installation | 3 | 05-16-2006 01:50 PM |
| GPG with CVV2 and Blank GPG Email no credit Card Number? | tmullins | osCMax v2 Customization/Mods | 1 | 12-26-2005 09:31 PM |
| Problems with Secure Credit Card - GPG | nscmonkey | osCommerce 2.2 Modification Help | 4 | 07-09-2004 01:27 PM |
| Credit Card Number is invalid message!! | Anonymous | osCommerce 2.2 Installation Help | 3 | 11-27-2002 01:54 PM |