Browsing Category
Python
212 posts
Python is a general-purpose, high-level programming language. It is known for its elegant syntax and its focus on code readability. Python is dynamically typed, which means that the type of a variable is not declared at compile time. This can make Python code more concise and easier to read.
Brute-Forcing HTML From Authentication Using Socket Module
Brute-forcing HTML-based authentication using the socket module in Python involves manually crafting HTTP requests and handling the communication…
Brute-Forcing Directories and File Location Using Socket Library
Brute-forcing is a hacking technique where an attacker systematically attempts all possible combinations of passwords or encryption keys…
ARP Cache poisoning with Scapy fork Kamene
PCAP Processing PCAP (Packet Capture) files store network traffic data, and processing them is a common task in…
Stealing Email Credentials Using Scapy module
Scapy is a powerful Python module that allows for packet manipulation, sniffing, forging, and sending of network packets.…
Packet Sniffing on window and linux
Packet Sniffing on Windows These lines import the necessary modules: socket for handling networking functionality and os for…
SSH server and client to run remote commands with Paramiko
Paramiko is a Python library for SSH (Secure Shell) protocol implementation. It allows you to create secure connections…
A simple network client and server to push files and command-line access
Creating a simple network client-server application for pushing files and allowing command-line access involves using socket programming in…