Metasploiters
45.3K subscribers
45 photos
6 files
19 links
Dedicated to Ethical Hacking & Web Application Penetration Testing - Beginner to Advanced
Download Telegram
Channel created
#beginner

Types of hackers

A Hacker is a person who finds and exploits the weakness in computer systems and/or networks to gain access. Hackers are usually skilled computer programmers with knowledge of computer security.

Ethical Hacker (White hat): A hacker who gains access to systems with a view to fix the identified weaknesses.

Cracker (Black hat): A hacker who gains unauthorized access to computer systems for personal gain. The intent is usually to steal corporate data, violate privacy rights, transfer funds from bank accounts etc.

Grey hat: A hacker who is in between ethical and black hat hackers. He/she breaks into computer systems without authority with a view to identify weaknesses and reveal them to the system owner.

Script kiddies: A non-skilled person who gains access to computer systems using already made tools.
Metasploiters pinned Deleted message
#intermediate

Getting started with Nmap

Nmap is the world's leading port scanner. Nmap, as an online port scanner, can scan your perimeter network devices and servers from an external perspective i.e. outside your firewall.

Installing Nmap on Debian | Ubuntu

Open terminal & type command:
sudo apt-get install nmap

It will start installing Nmap.

Once installing is finished we can verify the installed version of Nmap using:

nmap --version

Installing Nmap on Windows

Download Nmap

Link to download: nmap-7.80-setup.exe

Run the downloaded .exe file.

In the window that opens, accept the License terms & click Next.

Select the install location & click Install.
This media is not supported in your browser
VIEW IN TELEGRAM
#beginner

What is a Protocol?

The best way to describe a protocol is by comparing it to the way humans communicate. We have many languages in this world. If we did not have languages or a common way to speak how would we communicate?

A protocol is similar in that it is there to decide how data is transferred over the network, how it is formatted and so on so computers and servers have a standardised way to communicate with each other.

So you can see protocols like a set of rules that determine how clients and servers will communicate with each other.

One of the most common and known protocol example is HTTP, that is used over the world wide web. HTTP is an application-layer protocol used for transferring files on the internet. It is used by web browsers and servers to communicate.
This media is not supported in your browser
VIEW IN TELEGRAM
#intermediate

Port Scanning with Nmap
Part - 1

TCP SYN Scan

SYN scan is the default and most popular scan option, for good reasons. It can be performed quickly, scanning thousands of ports per second on a fast network not hampered by restrictive firewalls. It is also relatively unobtrusive and stealthy, since it never completes TCP connections.

Command: nmap –sS target

TCP Connect Scan

TCP connect scan is the default TCP scan type when SYN scan is not an option. This is the case when a user does not have raw packet privileges. Instead of writing raw packets as most other scan types do, Nmap asks the underlying operating system to establish a connection with the target machine and port by issuing the connect system call.

Command: nmap –sT target

Note: target is the ip address or hostname of the victim machine

Difference between Nmap TCP SYN Scan and TCP Connect Scan
This media is not supported in your browser
VIEW IN TELEGRAM
#intermediate

Port Scanning with Nmap
Part - 2

UDP Scans

While most popular services on the Internet run over the TCP protocol, UDP services are widely deployed. DNS, SNMP, and DHCP (registered ports 53, 161/162, and 67/68) are three of the most common. Because UDP scanning is generally slower and more difficult than TCP, some security auditors ignore these ports. This is a mistake, as exploitable UDP services are quite common and attackers certainly don’t ignore the whole protocol.

Command: nmap –sU target
This media is not supported in your browser
VIEW IN TELEGRAM
Welcome gift to all new-subscribers • Accounts list Updated

Send the name of account you need at @RevnexBot

List of accounts currently available:

1. Kaspersky Antivirus 2. Seed4.me VPN 3. McAfee 4. Nord VPN 5. Avast Antivirus 6. AVG Antivirus 7. Avast Secureline VPN 8. Avira Antivirus 9. Canva Pro 10. Hotstar 11. Testbook Pass 12. Calm Premium 13. Magzter Gold 14. Bitdefender Antivirus 15. Avira Phantom VPN 16. Tidal Music - HiFi Subscription 17. Headspace

- Team Revnex

• Please don't ask for any account if you're not our channel member. This offer is only for members of Team Revnex
Metasploiters pinned «Welcome gift to all new-subscribers • Accounts list Updated Send the name of account you need at @RevnexBot List of accounts currently available: 1. Kaspersky Antivirus 2. Seed4.me VPN 3. McAfee 4. Nord VPN 5. Avast Antivirus 6. AVG Antivirus 7. Avast Secureline…»
#beginner

What are ports?

On a TCP/IP network every device must have an IP address.

However an IP address alone is not sufficient for running network applications, as a computer can run multiple applications and/or services.

Just as the IP address identifies the computer, The network port identifies the application or service running on the computer.

• Analogy

If you use a house or apartment block analogy the IP address corresponds to the street address.

All of the apartments share the same street address.

However each apartment also has an apartment number which corresponds to the Port number.