Archive for the ‘Security’ Category
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/.$//`
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







PCI QSA Done!
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.