pci-dss

How to make my site PCI compliant

半腔热情 提交于 2019-12-07 13:24:24
问题 Assuming I decide to use payment gateway and not to use their hosted page, but rather provide my own credit card details form, and then send data to their backend via xml as explained on this page. Then: do I need to worry about PCI compliance? If so what steps (PCI website) should be sorted out by me, my hosting company or payment gateway people I was told as long as my form is on SSL my site would be automatically compliant. Is that right? Thanks for any help 回答1: 1) If you're handling

PCI DSS compliant related to the Mobile Application payment

£可爱£侵袭症+ 提交于 2019-12-04 21:56:53
I am developing an Android application (native) which contains a module to make reservations on hotels \ taxi etc . I am planning to accept the payment details (amount, credit card number, expiry date etc ) from a screen of my application and pass them to my middle layer ( hosted in IIS server in my company premises ) via a API call. Then my middle layer will call the payment gateway APIs and will pass the payment info to them for processing. Communication between both mobile app to middle layer , and middle layer to payment gateway happens via secure channels ( Https ). I am not storing any

Storing partial credit card numbers

安稳与你 提交于 2019-12-03 02:22:29
问题 Possible Duplicates: Best practices for taking and storing credit card information with PHP Storing credit card details Storing Credit Card Information 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

Please provide an Apache SSLCipherSuite that will pass a PCI Compliance Scan

倾然丶 夕夏残阳落幕 提交于 2019-12-03 00:36:20
I'm trying to get a Fedora 14 server running Apache 2.2.17 to pass a PCI-DSS compliance scan by McAfee ScanAlert. My first attempt using the default SSLCipherSuite and SSLProtocol directives set in ssl.conf... SSLProtocol ALL -SSLv2 SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP failed citing that weak ciphers were enabled. Scans with ssllabs and serversniff tools revealed that 40 and 56 bit keys were indeed available. I then changed to... SSLProtocol -ALL +SSLv3 +TLSv1 and tried all of the following strings reported on various sites to pass PCI scans from assorted vendors...

Storing partial credit card numbers

て烟熏妆下的殇ゞ 提交于 2019-12-02 15:55:24
Possible Duplicates: Best practices for taking and storing credit card information with PHP Storing credit card details Storing Credit Card Information 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. How many digits, and which particular digits, can I

Storing SEPA (IBAN and BIC) data - requires PCI compliance?

十年热恋 提交于 2019-12-01 18:04:08
问题 we would like to use a banking API to do SEPA transfers from our bank account to the user's bank account. For that the user needs to enter his IBAN and BIC into the form. We take those data (SSL secured) and transfer the money using the banking REST API. If we get a Success response, we show the user a message that the money was transferred to his account. During the whole process we do not store the IBAN or BIC anywhere in local variables neither in the database. The connection to the fidor

Android 4.1 to 4.4 KitKat - Enable TLS 1.2 for API

a 夏天 提交于 2019-11-30 16:05:34
In trying to disable TLS 1.0, there are KitKat devices needing access to my API. I have tried overriding the default socket factory without success. I have tried converting to okhttp. Still not working. How do I get Android KitKat to connect to my API? I had the same issue on pre-lollipop devices. As I'm using Retrofit, here is the solution for OkHttp . Tls12SocketFactory.java : public class Tls12SocketFactory extends SSLSocketFactory { private static final String[] TLS_V12_ONLY = {"TLSv1.2"}; final SSLSocketFactory delegate; public Tls12SocketFactory(SSLSocketFactory base) { this.delegate =

SQL Server 2008 + PCI Compliance? Pertains to PCI, as well as Symmetric keys!

那年仲夏 提交于 2019-11-30 16:04:57
I've never had to deal with PCI compliance before. I've been reading their documentation and it says I need to protect the credit card number, expiration date and the card holder's name. No storage of security codes ever. In their documentation, it just says protect. Is this saying I need to encrypt these 3 columns in my database? I thought only the number was the data that needed to be encrypted. Either way, I'm fine with. If I need to encrypt all three columns, do I share one certificate and have 3 symmetric keys, or will I only need 1 of each, with that symmetric key being used on all 3

SQL Server 2008 + PCI Compliance? Pertains to PCI, as well as Symmetric keys!

别说谁变了你拦得住时间么 提交于 2019-11-29 23:55:32
问题 I've never had to deal with PCI compliance before. I've been reading their documentation and it says I need to protect the credit card number, expiration date and the card holder's name. No storage of security codes ever. In their documentation, it just says protect. Is this saying I need to encrypt these 3 columns in my database? I thought only the number was the data that needed to be encrypted. Either way, I'm fine with. If I need to encrypt all three columns, do I share one certificate

Android 4.1 to 4.4 KitKat - Enable TLS 1.2 for API

左心房为你撑大大i 提交于 2019-11-29 23:22:51
问题 In trying to disable TLS 1.0, there are KitKat devices needing access to my API. I have tried overriding the default socket factory without success. I have tried converting to okhttp. Still not working. How do I get Android KitKat to connect to my API? 回答1: I had the same issue on pre-lollipop devices. As I'm using Retrofit, here is the solution for OkHttp . Tls12SocketFactory.java : public class Tls12SocketFactory extends SSLSocketFactory { private static final String[] TLS_V12_ONLY = {