Archive for the ‘Security’ Category

October 8th, 2008

PCI QSA Done!

Finished my second and last day of PCI (Payment Card Industry) training in Puerto Rico and “almost” become a Qualified Security Assessor (QSA). The training session ended with a short exam, the result of which will be announced in around within 2 weeks, and after which I will be be allowed to conduct PCI audits.

The PCI is a council formed by Visa, MasterCard, American Express, JCB and Discover and their basic function is to define and review security standards, so that the merchants and their service providers can secure their infrastructure to minimize the theft of credit card data.

The course contained both boring compliance stuff to really interesting things like what exact data is stored on the magnetic stripes of credit cards as well as how to mathematically compute the credit card number to validate it.

June 12th, 2007

Passed CISSP!

Just got an email from isc2 telling me that I have passed my CISSP (Certified Information Systems Security Professional) exam. I took the exam on 19th May 2007 in London and it got email confirming my result on 5th June, around 16 days after the exam.

December 2nd, 2005

Remove last character of line

kshell:
x=${x%?}

vi:
:%s/.$//g

sed:
x=`echo $x | sed s/.$//`

December 2nd, 2005

Replacing spaces with comma using Perl

perl -pe ’s/ +/,/g’ file_in > file_out

November 28th, 2005

Converting .tsv to .csv

Replacing tab character in a file with comma character using perl command line:

perl -pe ’s/\t/,/g’ table.tsv > table.csv