






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Master the fundamentals of **Information Security** with these comprehensive study notes covering the **first five lectures** of the course. These are the same notes that helped me excel in my Information Security exams. They are organized in a clear, easy-to-understand format, making complex cybersecurity concepts much easier to learn and revise. Whether you're a **Cybersecurity**, **Computer Science**, or **IT** student, these notes are designed to help you: * Understand key Information Security concepts quickly. * Save hours of note-taking and revision. * Prepare effectively for quizzes, assignments, midterms, and finals. * Build a strong foundation for advanced cybersecurity topics. If you're looking for concise, exam-focused, and student-friendly notes, this bundle is an excellent resource to boost your understanding and confidence. **Includes:** Study notes for Information Security – Lectures 1–5 (PDF) Perfect for students who want to study smarter, not harder.
Typology: Lecture notes
1 / 12
This page cannot be seen from the preview
Don't miss anything!







■ determine what systems are listening & reachable from the Internet. ■ Analyzing underlying weaknesses. ■ Using the weakness for later use.
■ Vanilla:
■ Simplest form of port scan. ■ Tries each of the ports 65535 on the victim. ■ sending a carefully constructed packet. ■ with a chosen port number.
■ Generating "host unreachable" ICMP-messages for IPs that do not exist.
■ allows the hacker to force the FTP server to do the port scan and send back the results. This bouncing through an FTP server hides where the attacker comes from.
■ The port is listening, the service should send back an error message or ignore the incoming datagram. ■ The port is closed, then most operating systems send back an "ICMP Port Unreachable" message. Thus determine which ports are open. ■ Neither UDP packets nor the ICMP errors are guaranteed to arrive, so UDP scanners must also implement retransmission of packets that appear to be lost.
■ Widely known port scanner. ■ Utility for port scanning large networks, although it works fine for single hosts. ■ The guiding philosophy for the creation of nmap was TMTOWTDI (There's More Than One Way To Do It). ■ CMD: nmap –sS 192.168.1. ■ Output: Port State Protocol Service ■ 21 open tcp ftp
■ The Swiss army knife in our security toolkit. ■ Provides basic TCP and UDP port scanning capabilities. By default, netcat uses TCP ports, so for UDP scanning, we need to specify the –u option. For example, ■ CMD: netcat –v –z –w2 192.168.1.1 1- ■ Output: [192.168.1.1] 25 (smtp) open