Browsing Tag
bash
105 posts
Shell and Script Environments in Linux
The first time I truly understood Linux, it wasn’t from a GUI — it was from staring at…
Extended Penetration Testing Cheatsheet: Comprehensive Commands and Techniques
If you’ve spent any real time in the field, you know a pentest engagement rarely goes exactly according…
Connecting to the Tor network from python
The pysocks module is a Python module that provides a simple and consistent interface to work with SOCKS…
HTTP different authentications with a request module in python
HTTP Basic Authentication, HTTP Digest Authentication, and HTTP Bearer Authentication are three common authentication mechanisms used in the…
Building an HTTP client with http.client module in python
In Python, the http.client module provides a set of classes and methods for working with the HTTP protocol.…
Introduction to the HTTP protocol and status codes
HTTP (Hypertext Transfer Protocol) is an application-layer protocol widely used for transmitting hypermedia documents, such as HTML. It…
Implementing a simple UDP server and Client in Python
UDP (User Datagram Protocol) is one of the core protocols of the Internet protocol suite. It is a…
Implementing the TCP server and Client in Python
TCP (Transmission Control Protocol) is one of the main protocols in the Internet protocol suite. It provides reliable,…
Port Scanning with sockets in python
A port scanner is a tool or software application designed to identify open ports and services on a…
what is socket raw and how to implement in python
In networking, a raw socket allows direct access to the underlying communication protocols at the transport layer, such…