Final Exam Flashcards
What are the 5 Digital Footprinting Methods?
Social Networking Web Searching Network Enumeration Domain Name System-Based Reconnaissance Network-Based Reconnaissance
What does ssh do and how would you use it?
ssh -p “port number” user@host
how to login to a hosts account (remote login program)
What is cat and how would you use it?
Cat displays files
cat “file name”
what is cd and how would you use it?
cd is used to change directories
cd “directorypath&filename”
what is ls and how would you use it?
ls is used to list the contents of a directory
usage: ls
or
ls -als
what is base64 and how would you use it?
base64 is used to encode/decode data and print to standard output
usage: base64 -d “file to decode”
what is tr and how would you use it?
tr translates characters
usage: tr listofcharacterstotranslate listofcharacterstotranslateto
what is mkdir and how would you use it?
mkdir makes new directories
usage: mkdir “directoryname”
what is cp and how would you use it?
cp copies files and directories
usage: cp “source destination”
what is xxd and how would you use it?
xxd makes a hexdump or does the reverse
usage: xxd “infile” “outfile”
what is gunzip, bunzip2, and zcat and what do they do?
these commands decompress files to standard output
usage: command filename
what is nc and how would you use it?
nc is an arbitrary TCP and UDP connections and listens.
It can open TCP connections, send UDP packets, listen on arbitrary TCP and UDP ports, do port scanning, and deals with both IPv4 and IPv6
usage: nc “options” “destination” “port”
what is openssl s_client and how would you use it?
the s_client command implements a generic SSL/TLS client which connects to a remote host using SSL/TLS
usage: openssl s_client -connect host:port -pass pass: thepasswordincleartext
what are CVEs?
Common Vulnerabilities and Exposures
what is the purpose of network enumeration?
it identifies domain names as well as other resources in the target network