Tagged articles
24 articles
Page 1 of 1
Python Programming Learning Circle
Python Programming Learning Circle
Mar 27, 2025 · Information Security

Decrypting Password‑Protected Zip Files with Python

This article explains how to use Python's built‑in zipfile module and the third‑party rarfile library to brute‑force and decrypt encrypted zip archives, handle Chinese filename encoding issues, and generate password permutations efficiently with itertools for flexible password lengths.

Pythonfile decryptioninformation security
0 likes · 9 min read
Decrypting Password‑Protected Zip Files with Python
Raymond Ops
Raymond Ops
Mar 5, 2025 · Information Security

Essential Kali Linux Penetration Testing Tools and How to Use Them

Explore the most common Kali Linux penetration testing utilities—including Nmap, Metasploit, Hydra, Wireshark, and more—organized by categories such as information gathering, vulnerability exploitation, password cracking, and network monitoring, with brief usage commands and guidance for each tool.

Kali LinuxNetwork Scanningmalware analysis
0 likes · 11 min read
Essential Kali Linux Penetration Testing Tools and How to Use Them
MaGe Linux Operations
MaGe Linux Operations
Jan 30, 2025 · Information Security

Master Linux Account Security: PAM, sudo, GRUB Hardening & Weak Password Detection

This guide details comprehensive Linux security measures, including system account cleanup, password policies, command history limits, terminal auto‑logout, controlled use of the su command via PAM wheel module, PAM authentication fundamentals, sudo configuration, GRUB boot‑parameter protection, weak‑password detection with John the Ripper, and network port scanning techniques.

GRUBNetwork ScanningSudo
0 likes · 21 min read
Master Linux Account Security: PAM, sudo, GRUB Hardening & Weak Password Detection
Top Architect
Top Architect
Oct 26, 2024 · Information Security

WiFi Password Cracking Tool Using Python and PyWiFi

This article demonstrates how to build a Python GUI tool with Tkinter and the PyWiFi library to scan nearby Wi‑Fi networks, load a password dictionary, and perform brute‑force attempts to discover the correct Wi‑Fi password, including environment setup, code snippets, and execution results.

PythonTkinterWiFi
0 likes · 13 min read
WiFi Password Cracking Tool Using Python and PyWiFi
Liangxu Linux
Liangxu Linux
Oct 24, 2024 · Information Security

Master Linux Password Hunting: From File Names to Hash Cracking with Hashcat & John

This guide walks through systematic techniques for locating passwords on a compromised Linux host—including searching file names, file contents, hidden directories, web configuration files, MySQL databases, backup folders, and encrypted archives—while demonstrating how to crack discovered hashes using Hashcat, John the Ripper, and LinPEAS.

HashcatJohn the RipperLinPEAS
0 likes · 27 min read
Master Linux Password Hunting: From File Names to Hash Cracking with Hashcat & John
Top Architect
Top Architect
Sep 14, 2024 · Information Security

Python WiFi Password Cracking GUI Tool Using pywifi and Tkinter

This article presents a step‑by‑step guide to creating a Python‑based Wi‑Fi password cracking GUI using the pywifi library and Tkinter, explains environment setup, code implementation, and usage, while also containing promotional material for related AI services and community groups.

PythonTkinterWiFi
0 likes · 14 min read
Python WiFi Password Cracking GUI Tool Using pywifi and Tkinter
Open Source Linux
Open Source Linux
Sep 21, 2022 · Information Security

WebCrack: Automated Bulk Weak‑Password Detection for Web Back‑Ends

WebCrack is an open‑source tool that automates the discovery of weak or universal passwords across a wide range of web‑based CMS back‑ends by automatically identifying login parameters, evaluating login success, applying dynamic dictionaries, and supporting custom rule files, all while handling diverse response patterns and WAF interference.

CMS detectionWeb Automationinformation security
0 likes · 13 min read
WebCrack: Automated Bulk Weak‑Password Detection for Web Back‑Ends
Python Crawling & Data Mining
Python Crawling & Data Mining
Jul 27, 2022 · Fundamentals

How to Brute‑Force Account‑Password Pairs in Python with Simple Nested Loops

This article explains how to iterate through two files containing usernames and passwords using Python, demonstrating a straightforward double‑loop approach, providing sample code, output screenshots, and tips for handling mismatched line counts, helping readers efficiently test all credential combinations.

brute forcenested loopspassword cracking
0 likes · 3 min read
How to Brute‑Force Account‑Password Pairs in Python with Simple Nested Loops
IT Services Circle
IT Services Circle
May 8, 2022 · Information Security

An Introduction to Hashcat: Features, Usage, and Command Options

This article introduces Hashcat, the world’s fastest password‑recovery tool, outlines its extensive feature set, provides the project’s GitHub address, and explains how to download, install, and run basic commands with common options for various hash types and attack modes.

GPU AccelerationHashcatcommand-line
0 likes · 4 min read
An Introduction to Hashcat: Features, Usage, and Command Options
Laravel Tech Community
Laravel Tech Community
Sep 17, 2021 · Information Security

Python Scripts for WiFi Password Brute‑Force Cracking – Command‑Line and Tkinter GUI Implementations

This article demonstrates how to build a Python‑based WiFi password brute‑force tool, first using a command‑line script that reads passwords from a dictionary and attempts connections, then enhancing it with scanning, flexible dictionary selection, and finally providing both a simple and an upgraded Tkinter graphical user interface for interactive cracking.

CLIGUIPython
0 likes · 19 min read
Python Scripts for WiFi Password Brute‑Force Cracking – Command‑Line and Tkinter GUI Implementations
MaGe Linux Operations
MaGe Linux Operations
Sep 9, 2021 · Information Security

Can You Crack WiFi Passwords with Python? A Step‑by‑Step Guide

This tutorial walks through building both command‑line and Tkinter‑based Python tools that scan nearby Wi‑Fi networks, read password dictionaries, and perform brute‑force attacks using the pywifi library, while also showing how to package the script as an executable and discussing potential multithreading improvements.

PythonTkinterWiFi
0 likes · 14 min read
Can You Crack WiFi Passwords with Python? A Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Dec 3, 2020 · Information Security

Build a Python Brute‑Force Password Dictionary in Minutes

This guide explains how to use Python to create custom brute‑force password dictionaries—covering simple numeric PIN lists, targeted web‑backend wordlists, and practical usage tips—for quickly cracking basic encrypted files.

Dictionary AttackPythonbrute force
0 likes · 3 min read
Build a Python Brute‑Force Password Dictionary in Minutes
21CTO
21CTO
Oct 13, 2019 · Information Security

How Ken Thompson’s Vintage Unix Password Was Finally Cracked

Leah Neukirchen uncovered historic Unix passwords, cracked many using John the Ripper and hashcat, and after months of effort Nigel Williams finally revealed Ken Thompson’s long‑uncracked password, which turns out to be a clever chess‑notation hint.

Ken ThompsonUnixcrypt
0 likes · 4 min read
How Ken Thompson’s Vintage Unix Password Was Finally Cracked
ITFLY8 Architecture Home
ITFLY8 Architecture Home
May 9, 2018 · Information Security

Master MySQL Penetration: From Recon to Privilege Escalation

This article details comprehensive MySQL penetration techniques, covering information gathering, password cracking, webshell deployment, and multiple privilege‑escalation methods using tools such as Nmap, Metasploit, sqlmap, MOF, UDF and startup script exploits.

Information GatheringMetasploitSQLMap
0 likes · 25 min read
Master MySQL Penetration: From Recon to Privilege Escalation
MaGe Linux Operations
MaGe Linux Operations
Jun 28, 2017 · Information Security

Build a Python Wi‑Fi Scanner to Test Weak Passwords

This guide walks through setting up Python 2.7 with the pywifi module, preparing a dictionary of common Wi‑Fi passwords, configuring a scanner, scanning nearby hotspots, testing each network, and recording results to identify vulnerable access points.

Network ScanningWiFiinformation security
0 likes · 3 min read
Build a Python Wi‑Fi Scanner to Test Weak Passwords
21CTO
21CTO
May 7, 2016 · Information Security

Inside a Wi‑Fi Hack: From Router Cracking to Personal Data Exposure

The author recounts how they infiltrated a neighbor's Wi‑Fi by cracking the WPA2 password, accessed the router’s web admin, harvested personal accounts and photos, even controlled a TV box, and concludes with practical security recommendations for everyday users.

ARP sniffingWi-Fi hackinginformation security
0 likes · 9 min read
Inside a Wi‑Fi Hack: From Router Cracking to Personal Data Exposure