The Internet Protocol (IP) is one of the most essential components of modern networking, enabling seamless communication between devices across the globe. This article explores what the Internet Protocol is, how it works, and why it is crucial for online communication. What is the Internet Protocol? The Internet Protocol (IP) is a set of rules Read More …
Tag: network
Conference Video – Introductory Netflow Analysis
Miles Johnson Introductory Netflow Analysis is a 1 hour presentation on the basic concepts of Netflow and network forensics using netflow logs. All IT Security professionals will need to do network forensics at one time or another. Netflow analysis can empower you to discover and understand past network behavior.
TCP: The Backbone of Reliable Communication
The Transmission Control Protocol (TCP) is a fundamental part of internet communication, ensuring reliable data exchange between computers and systems. This article will go into some brief details on what TCP is, how it works, and its critical role in enabling seamless communication across networks. What is TCP? Transmission Control Protocol (TCP) is one of Read More …
DHCP and Its Role in Network Functionality
The Dynamic Host Configuration Protocol (DHCP) is an essential component of modern networking, ensuring that devices can seamlessly connect and communicate within a network. This article explores what DHCP is, why it is critical for networks to function efficiently, and how to configure basic DHCP settings on a home router. What is DHCP? DHCP stands Read More …
FTP :: A Tool for Online File Management
In the digital era, the ability to share and manage files efficiently over networks is crucial. The File Transfer Protocol (FTP) is a long-standing tool that enables users to transfer files between systems on a network. This article explains what FTP is, how it works, and its relevance in today’s online world. What is FTP? Read More …
powershell code – Find computers
To find a single machine and the date it last logged on Get-ADComputer -identity SRV-DB01 -Properties * | FT Name, LastLogonDate -Autosize Find all the machines Get-ADComputer -Filter * -Properties * | FT Name, LastLogonDate -Autosize
How to change user agent in nmap
NMAP How to change user agent You can find the default value in /usr/share/nmap/nselib/http.lua (At the beginning of the file, a couple of lines after the comments) local USER_AGENT = stdnse.get_script_args(‘http.useragent’) or “Mozilla/5.0 (compatible; Nmap Scripting Engine; http://nmap.org/book/nse.html)” You can change the value with this line local USER_AGENT = stdnse.get_script_args(‘http.useragent’) or “Mozilla/5.0 (compatible; MSIE 9.0; Read More …