hacking-tutorial

typing banner [![License: GPLv3](https://img.shields.io/badge/License-GPLv3-1a1a2e?style=for-the-badge&logo=gnu&logoColor=white)](./LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-0f3460?style=for-the-badge&logo=git&logoColor=white)](./CONTRIBUTING.md) [![Python](https://img.shields.io/badge/Python-e94560?style=for-the-badge&logo=python&logoColor=white)](./python-scripts) [![Ethics First](https://img.shields.io/badge/Ethics-First-16213e?style=for-the-badge&logo=shieldsdotio&logoColor=white)](#safety--ethics) [![Stars](https://img.shields.io/github/stars/amandewatnitrr/hacking-tutorial?style=flat-square&color=e94560&labelColor=1a1a2e)](https://github.com/amandewatnitrr/hacking-tutorial/stargazers) [![Forks](https://img.shields.io/github/forks/amandewatnitrr/hacking-tutorial?style=flat-square&color=0f3460&labelColor=1a1a2e)](https://github.com/amandewatnitrr/hacking-tutorial/network/members) [![Last Commit](https://img.shields.io/github/last-commit/amandewatnitrr/hacking-tutorial?style=flat-square&color=e94560&labelColor=1a1a2e)](https://github.com/amandewatnitrr/hacking-tutorial/commits/main) [![Repo Size](https://img.shields.io/github/repo-size/amandewatnitrr/hacking-tutorial?style=flat-square&color=0f3460&labelColor=1a1a2e)](.) [![Open Issues](https://img.shields.io/github/issues/amandewatnitrr/hacking-tutorial?style=flat-square&color=e94560&labelColor=1a1a2e)](https://github.com/amandewatnitrr/hacking-tutorial/issues)
![Python](https://skillicons.dev/icons?i=python,bash,linux,docker,git,vim)

Overview

This repository is a comprehensive tutorial series for ethical hacking and penetration testing. It’s built for learners who want to understand the principles, tools, and techniques behind network security, offensive security, and cybersecurity research — through both theory and practical, hands-on exercises.

Everything here is meant to be run in labs you control. No shortcuts to third-party systems, no live targets.

Table of Contents

What You’ll Learn

Repository Structure

Quick nav: ethical-hacking python-for-eth-hacking python-scripts sql-injection-lab intro-to-binary-exploitation cli-editors-tutorials

Folder Description
ethical-hacking/ Core lesson series — recon, DNS, SNI, phishing toolkits, password attacks, and more
python-for-eth-hacking/ Python fundamentals applied to security tooling
python-scripts/ Standalone scripts — port scanners, ARP spoof detectors, deauth tools, hashing demos
sql-injection-lab/ A safe, containerized lab for learning SQL injection detection and remediation
intro-to-binary-exploitation/ Introductory binary exploitation concepts
cli-editors-tutorials/ Guides for terminal-based editors (Emacs, and more)
FMEA Fundamentals/ Failure Mode and Effects Analysis fundamentals
safe-practice-questions/ Practice questions with an answer key
UI/ Frontend for the site
docs/ Reference material and legal notes

Getting Started

  1. Clone the repository
    git clone https://github.com/amandewatnitrr/hacking-tutorial.git
    cd hacking-tutorial
    
  2. Explore the lessons Lessons live in ethical-hacking/ and python-for-eth-hacking/. Each one walks through step-by-step instructions, code samples, and explanations.

  3. Try the scripts Example scripts live in python-scripts/. Always use a safe, isolated environment (a VM or an isolated test network) for practical exercises.

Tutorial Guide

Resources

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository and create a new branch for your changes.
  2. Add new lessons, improve existing content, or submit scripts and tools.
  3. Ensure your contributions follow ethical guidelines and do not promote illegal activity.
  4. Before pushing, run the IP/MAC-masking check so real/leaked IP or MAC addresses (e.g. from pasted tool output or logs) don’t ship in your commit — see Masking Leaked IP / MAC Addresses in CONTRIBUTING.md.
  5. Open a pull request with a clear description of your changes.

See CONTRIBUTING.md and the Code of Conduct for details.

Analytics & Privacy Guidelines

If you want to add analytics or visitor tracking to the site, please follow these guidelines:

Example (using Plausible):

// src/analytics.js
if (process.env.NODE_ENV === 'production') {
  (function() {
    var d = document, s = d.createElement('script');
    s.src = 'https://plausible.io/js/plausible.js';
    s.async = true; s.defer = true; s.setAttribute('data-domain', 'yourdomain.com');
    d.head.appendChild(s);
  })();
}

Safety & Ethics

Security Warning

Avoid using the python_crypto library or any other cryptographic or hacking-related library that is unmaintained, deprecated, or suspicious.

Disclaimer

This project is for educational purposes only. All activities described should be performed in controlled, legal environments. The authors are not responsible for any misuse of the information provided.

License

This project is licensed under the GNU General Public License v3.0. See LICENSE for details.

Contributors

visitors