Student Name Roll No. Reg. No Course Name Gread Point
"locate cfg.php" => "locate cfg.php"
"locate admin.php" =>"locate admin.php"
"locate my.conf" => "locate my.conf"
"locate psybnc.conf" => "locate psybnc.conf"
"locate proftpd.conf" => "locate proftpd.conf"
"locate vhosts.conf" => "locate vhosts.conf"
"locate httpd.conf" => "locate httpd.conf"
"Locate" => ""
"find .fetchmailrc files in current dir" => "find . -type f -name .fetchmailrc"
"find .fetchmailrc" => "find / -type f -name .fetchmailrc"
"find .bash_history files in current dir" => "find . -type f -name .bash_history"
"find .bash_history" => "find / -type f -name .bash_history"
"find .htpasswd files in current dir" => "find . -type f -name .htpasswd"
"find .htpasswd" => "find / -type f -name .htpasswd"
"find service.pwd files in current dir" => "find . -type f -name service.pwd"
"find service.pwd" => "find / -type f -name service.pwd"
"find writable folders and files in current dir" => "find . -perm -2 -ls"
"find writable folders and files" => "find / -perm -2 -ls"
"find config* in current dir" => "find . -type f -name "config*""
"find config*" => "find / -type f -name "config*""