Search Results for: Computer Network

cloud-networking-infocerts

Categories of Security Challenges in Cloud Computing – Networking

Networking This article is based on Categories of Security Challenges in Cloud Computing Networking and their securities. Network security (N1) Information from articles that discuss network security and VPN network are considered.Data should not be leaked while transmission and it is one of the requirements of information security [136]. To prevent leakage of sensitive information …

Categories of Security Challenges in Cloud Computing – Networking Read More »

CEHv12 Module 3 NetBIOS, SNMP & LDAP Network Enumeration

CEHv12 Module 3 : NetBIOS, SNMP & LDAP Network Enumeration

This article is based on NetBIOS, SNMP & LDAP Network Enumeration which comes module 3 of certified ethical hacker. Learning Outcomes In this module, you will complete the following exercises: After completing this module, you will be able to: After completing this module, you will have further knowledge of: Lab Duration It will take approximately 1 …

CEHv12 Module 3 : NetBIOS, SNMP & LDAP Network Enumeration Read More »

How to Identify Network Security Threats and Vulnerabilities 

How to Identify Network Security Threats and Vulnerabilities | Ryan Clancy |Network Security Anyone who operates a computer network is susceptible to security threats and vulnerabilities. Hackers, criminals, and other malicious actors often exploit these weaknesses to steal data or disrupt service. To protect your network from these threats, it is important to be able…

The post How to Identify Network Security Threats and Vulnerabilities  appeared first on Cybersecurity Exchange.

Pivoting to Access Networks in Penetration Testing 

Pivoting to Access Networks in Penetration Testing | David Tidmarsh |Penetration Testing Penetration testing is the process of simulating a cyberattack against a computer system or network to identify and fix vulnerabilities. Pivoting in penetration testing is a technique in which the ethical hackers—also known as white-hat hackers—simulating the attack can move from one system…

The post Pivoting to Access Networks in Penetration Testing  appeared first on Cybersecurity Exchange.

Uber Says It’s Investigating a Potential Breach of Its Computer Systems

September 17, 2022 Ride hailing giant Uber disclosed Thursday it’s responding to a cybersecurity incident involving a breach of its network and that it’s in touch with law enforcement authorities. The New York Times first reported the incident.  The company pointed to its tweeted statement when asked for comment on the matter. The hack is said to have forced the …

Uber Says It’s Investigating a Potential Breach of Its Computer Systems Read More »

The Ultimate Guide to Wireless Network Security for Small Businesses 

Everything You Need to Know About Endpoint Security | Shelby Vankirk |Network Security Wireless networks have become an integral part of our lives in the digital age. We use them to stay connected with family and friends, conduct business, and access the internet. A wireless network allows devices to connect to the internet without being…

The post The Ultimate Guide to Wireless Network Security for Small Businesses  appeared first on Cybersecurity Exchange.

Step-by-Step Guide on Becoming a Network Security Engineer in 2022

Becoming a Network Security Engineer in 2022 | Sydney Chamberlain |Network Security The role of network security engineer will put you in charge of designing and managing security systems, ensuring that an organization’s network is protected from bugs, malware, and other cyberthreats. Some of the duties of a network security engineer include monitoring, testing, and…

The post Step-by-Step Guide on Becoming a Network Security Engineer in 2022 appeared first on Cybersecurity Exchange.

Hping3 — Network Auditing, DOS and DDOS

Hping3 is a command-line tool that allow us to analyze TCP/IP messages on a network. Also Hping3 can assemble network packets, which can be very useful for pentesters in performing device and service discovery and illegal actions like performing a Denial-Of-Service (DoS) attack.

hping3 kali linux dos and ddos

Hping3 comes pre-installed with Kali Linux. It is very useful for testing a network.

Key Features of Hping3

  1. Host discovery on a network.
  2. Fingerprinting host devices to determine services.
  3. Sniffing network traffic.
  4. Denial of Service (DoS).
  5. File Transfer.

Host Discovery on a Network

In the real world there are many servers and devices that have ICMP responses disabled for security reasons. We can useHping3 to probe a port on a target system to force an ICMP response back.

First we use the ping utility to send ping request on our localhost server.

ping with no response

On the above screenshot we can see that we don’t receive any responses from the target. Novice guys may assume that target is offline and would probably move on.

If we use Hping3 to probe a specific port by sending SYN packets will force the target to reveal itself.

sudo hping3 -S 192.168.225.48 -p 80 -c 2

Here we have specified SYN packets using -S flag, and specify the port 80 using -p 80. After applying the above command we got following response shown in the screenshot:

hping3 response

From the above screenshot we can see that we have received successful responses from our target. This means our target is open.

Sending Files using Hping3

We can also send files using hping3. For an example we just send a text file from our Linux Mint virtual machine to our host Kali Linux machine. First we start listener on our machine where we want to download our file by using following command:

sudo hping3 -1 192.168.225.29 -9 signature -I wlan0

Here the -1 flag used for ICMP and the IP address is the sender’s IP. -9 flag is used to start the listener and -I is used to choose the network interface. Then the listener will start as we can see in the following screenshot:

Hping3 listener mode

After starting the listener mode here we can send the file from another machine by using following command:

sudo hping3 -1 192.168.225.29 -e signature -E hping3.txt -d 2000

Here -e flag is used to give a signature and -E flag is used for sending file data, -d flag used for size of data.

The following screen recording shows how it works.

Sniffing Network Traffic using Hping3

We also can use hping3 as a network packet sniffer. Here also we can use hping3’s listener mode and intercept and save all traffic going through our machine’s network interface.

First we need to allow this (uncomment)

net.ipv4.conf.all.accept_redirects = 0

in /etc/sysctl.conf file. Shows in the following screenshot:

allow in the configuration

For an example, to intercept all traffic containing HTTP signature we can apply the following command:

sudo hping3 -9 HTTP -I wlan0

In the following screenshot we can see the output.

hping3 packet capturing

On the above screenshot we can see that hping3 is capturing packets on the wlan0 network interface.

Denial of Service (DOS) using Hping3

We can do denial of service of DoS attack (SYN flood) using hping3. Simple command will be like following:

sudo hping3 -S --flood -V www.examplesite.com

Here -S indicates that we are using SYN packets, –flood is for sending packets as soon as possible. 

Also we can do this batter by using some advanced features.

sudo hping3 -c 20000 -d 120 -S -w 64 -p TARGET_PORT --flood --rand-source TARGET_SITE

Here -c flag is used for packet count (we can raise or decrees it as per our requirements) -d flag is for size of data, -w is to set window size, -p flag is used to specify the destination port, –rand-source flag is used to randomize the source.

This is how we can use hping3 on our Kali Linux system. We can read more about hping3 here. Hping3 is great utility for testing a network, it also very popular.

Disclaimer: This tutorial is for educational propose. Attacking others devices considered as criminal offense. We don’t support that. This is for spreading cybersecurity awareness. If anyone do any illegal stuffs then only that person will be responsible for it.

Love our articles? Make sure to follow us on Twitter and GitHub, we post article updates there. To join our KaliLinuxIn family, join our Telegram Group. We are trying to build a community for Linux and Cybersecurity. For anything we always happy to help everyone on the comment section. As we know our comment section is always open to everyone. We read each and every comment and we always reply.

What Are Network Ports and Port Scanning Techniques?  

Preventing Malicious Hacks with Port Scanning Techniques Port scanning techniques are a valuable part of any cybersecurity professional’s toolkit. Ethical hackers and penetration testers frequently use port scanning techniques to locate vulnerabilities in a network that malicious hackers can use to gain access. Port scanning is a fundamental part of the pre-attack phase of a penetration test.…

The post What Are Network Ports and Port Scanning Techniques?   appeared first on Cybersecurity Exchange.

Basic Networking Part 6 – What is OSI Model?

Introduction

The Open Systems Interconnection Model (OSI Model) is a theoretical framework for describing the functions of a networking system. In order to facilitate interoperability between diverse devices and applications, the OSI model describes computing functions into a universal set of rules and standards. The connections between computing systems are divided into seven abstraction levels in the OSI reference model: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

what is osi model

The OSI was published in 1984 by the International Organization for Standardization at a period when network computing was still in its infancy (ISO). The OSI Model is still used to explain network architecture today, even if it does not always map exactly to real systems.

The 7 Layers of the OSI Model

Physical Layer

The OSI Model’s lowest layer is concerned with electrically or optically passing raw unstructured data bits over the network from the sending device’s physical layer to the receiving device’s physical layer. Voltages, pin arrangement, cabling, and radio frequencies are examples of specifications. Network hubs, cabling, repeaters, network adapters, and modems are examples of “physical” resources found at the physical layer.

Data Link Layer

Directly connected nodes are utilized at the data connection layer to perform node-to-node data transfer, in which data is bundled into frames. Errors that may have happened at the physical layer are also corrected by the data link layer.

Network Layer

Receiving frames from the data link layer and delivering them to their intended destinations based on the addresses contained within the frame is the responsibility of the network layer. Logic addresses, such as IP addresses, are used by the network layer to locate the destination (internet protocol). Routers are a critical component at this tier, as they literally route data where it needs to go between networks.

Transport Layer

The transport layer is in charge of data packet delivery and error checking. It controls the size, sequencing, and, ultimately, data transit between systems and hosts. TCP, or Transmission Control Protocol, is one of the most frequent transport layer instances.

Session Layer

The session layer is in charge of coordinating conversations between computers. At layer 5, a session or connection between machines is established, managed, and terminated. Authentication and re-connections are also part of the session layer services.

Presentation Layer

Based on the syntax or semantics that the application accepts, the presentation layer formats or converts data for the application layer. As a result, it’s sometimes referred to as the syntactic layer. This layer can also handle the application layer’s encryption and decryption needs.

Application Layer

Both the end user and the application layer interact with the software application directly at this tier. End-user programmers, such as a web browser or Office 365, receive network services through this layer. The application layer locates communication partners, determines resource availability, and coordinates communication.

Conclusion

The theoretical OSI Model is used, on a daily basis, throughout the industry as it is an essential building block for when it comes to creating and troubleshooting applications and infrastructures. Follow the data down the layer to see how it’s transported and handled by systems and networks.

Open Whatsapp chat
Whatsapp Us
Chat with us for faster replies.