Ethical Hacking Training Bootcamp
Certified Information Security Expert Version 2 - Mumbai & Pune.
Background: CISE (Certified Information Security Expert) certification is one of the most recognized certification in Information Security and Ethical Hacking Domain. The Program covers all aspects of Information Security and Ethical Hacking, enabling one to become an Information Security Expert.
Training Duration: 40 Hours
Training Fee: Rs. 12,500 (Online Examination Cost, Books, Tools included)
Contact: Mumbai - 9619655321 | Pune - 9923552444
Next Batch Starting from: 28th May 2011.
Apache SSL Certificate Without Passphrase
openssl rsa -in server.key -out server.key.nopass
File::path - removing all files and directories keeping the root directory in place
When set to a true value, will cause all files and subdirectories to
be removed, except the initially specified directories. This comes in
handy when cleaning out an application's scratch directory.
remove_tree( '/tmp', {keep_root => 1} );
removing duplicate files in a array
my @dup_list = qw(1 1 1 2 3 4 4);
my @uniq_list = uniq(@dups);