Blackhat Python: The Social Engineering App
Ethical Hacking-Blackhat Python

Blackhat Python: The Social Engineering App

The Social Engineering App In this Blackhat Python guide I will be talking about "The Social Engineering App". It's a password list generator used for dictionary attacks. I will explain in brief about password lists and dictionary attacks, but you can read my in-depth guide on these subjects here: Dictionary Attacks.Passwords Lists A password list, often referred to as a "password dictionary" or simply a "dictionary," is a collection of words, phrases, or character combinations. Password lists are used for…

0 Comments
Blackhat Python: The IP Stalker
Ethical Hacking-Blackhat Python

Blackhat Python: The IP Stalker

Quickly see if Your Targets are Online with The IP Stalker In this Blackhat Python project I have utilized the power of the ping command to monitor and quickly check if certain target systems are online. I then used TKinter to give the script a nice-looking and interactive GUI. This is my second and final version of this project as I feel it doesn't need any more time spent on it, it does what it is supposed to and looks…

0 Comments
Arduino Hacking Tools: Duckduino
Ethical Hacking - Arduino Logo

Arduino Hacking Tools: Duckduino

How to Build Your own Rubber Ducky with Arduino In this Arduino Hacking Tools guide, we will learn how to create your own "Rubber Ducky" style tool with Arduino. Thanks to the great Duckduino project created by Seytonic and Spacehuhn we can have the power of a "Rubber Ducky" for a fraction of the cost.What is the Rubber Ducky? The USB Rubber Ducky is a product created and sold by Hak5, a company specializing in network penetration testing equipment. It's…

0 Comments
Blackhat Python: How to Build a Port Scanner
Ethical Hacking-Blackhat Python

Blackhat Python: How to Build a Port Scanner

Building Your own Port Scanner with Python In this Blackhat Python guide we are going to learn about port scanners and how to build your own port scanner tool with Python. Scanning with a network mapper tool like Nmap is the best way to scan a system. This guide will help you better understand the basics of what network mappers are doing in the background.What are Port Scanners? Port scanners are cybersecurity tools or software applications designed to scan and…

0 Comments
Port Scanners and Nmap: Network Analysis
Ethical Hacking-Nmap

Port Scanners and Nmap: Network Analysis

Scanning for Ports Access In the ever-evolving landscape of ethical hacking and cybersecurity, vigilance and preparation are paramount. To defend against threats, one must first understand them. This is where port scanners like Nmap (Network Mapper) step into the spotlight. These powerful tools are the sentinels of network security, enabling professionals to uncover vulnerabilities, strengthen defenses, and maintain the integrity of their digital domains.What are Port Scanners? Port scanners are cybersecurity tools or software applications designed to scan and analyze…

0 Comments
Dictionary Attacks: Password Lists and Attacks
Man wearing Anonymous mask in a server room

Dictionary Attacks: Password Lists and Attacks

Password Lists and Dictionary Attacks In this Ethical Hacking guide, we are going to talk about password lists, dictionary attacks, and password cracking with tools like Hydra. Passwords ListsA password list, often referred to as a "password dictionary" or simply a "dictionary," is a collection of words, phrases, or character combinations. Password lists are used for various purposes in the realm of cybersecurity, particularly in password-related activities. These lists can serve different functions, and their contents can vary, but their primary…

0 Comments
Blackhat Python: Creating Malware with Python
Ethical Hacking-Blackhat Python

Blackhat Python: Creating Malware with Python

How to Create Malware with Python In this Ethical Hacking Blackhat Python guide we are going to learn about malware. Then we will create some fake malware using Python.What is Malware? Malware is a broad term that refers to any software or code that is specifically designed to damage, disrupt, or gain unauthorized access to computer systems, networks, or devices. The term "malware" is a contraction of "malicious software," and it encompasses various types of harmful software programs created by…

0 Comments
Blackhat Python: Creating a Keylogger with Python
Ethical Hacking-Blackhat Python

Blackhat Python: Creating a Keylogger with Python

How to create a Keylogger with Python In this Ethical hacking guide about Blackhat Python, we will learn about "Keyloggers". Then we will use Python to create our own "Keylogger" script.What is a Keylogger? A keylogger, short for "keystroke logger," is a type of software or hardware device designed to record and monitor the keystrokes made on a computer or mobile device's keyboard. The primary purpose of a keylogger is to capture the keys pressed by a user, including letters,…

0 Comments
Blackhat Python: How to do a Basic Ping
Ethical Hacking-Blackhat Python

Blackhat Python: How to do a Basic Ping

Using Python to Ping an IP Address In this Ethical Hacking guide about Blackhat Python, we are going to learn about the Ping command, what it is and what it does. Then we will cover how to send a simple Ping using Python.What is Ping? The ping command is a network utility available in most operating systems, including Windows, macOS, and various Linux distributions. It is used to test the reachability of a host (typically a computer or network device)…

0 Comments
Blackhat Python: The Ping of Death
Ethical Hacking-Blackhat Python

Blackhat Python: The Ping of Death

The Infamous Ping of Death In this Ethical hacking guide about Blackhat Python, we will learn about the "Ping of Death". Then we will discuss a little about the Scapy Python library. Finally, we will cover how to use Python to create a "Ping of Death" attack.What is the Ping of Death? The "Ping of Death" is a computer network attack or a software bug that can lead to a denial of service (DoS) or crash of a computer system.…

0 Comments