Basic Linux Terminal Commands

Cheat Sheet [ Shortcuts ] CTRL L = Clear the terminal CTRL D = Logout CTRL A = Cursor to start of the line CTRL E = Cursor to end of the line CTRL U = Delete left CTRL K = Delete right CTRL W = Delete word on the left CTRL R = Reverse […]

There’s a tool for that![A big list of Digital Forensic Tools]

Everything you’ll need for incident response. Digital Forensics and Incident Response (FIR) teams are groups of people in an organisation responsible for managing the response to a security incident, including gathering evidence of the incident, remediating its effects, and implementing controls to prevent the incident from recurring in the future. [ IR Tools Collection ] […]

How to search the darknet?

A list of tools and to help you navigate the darkweb. [ TOOLS ] Hunchly – Daily dark web reports can help you identify new hidden services. H-Indexer – Tor required. Tor66 Fresh Onions – Tor required. Onionscan – Free and open source tool for investigating the Dark Web. Onioff – Python script for inspecting […]

{Nmap usage} how to scan networks & web applications

a self serving guide to nmap examples. / what is Nmap? Nmap is used to identify and scan systems on the network.  It is used as part of network diagnostics where it can map out the internal network by identifying live hosts and performing port scanning, service enumeration, and operating system detection. use cases: network […]

Top 4 ways to hack a Wi-Fi network

Learning about ways to pen-test Wi-Fi There is no one tool to rule them all when it comes to cracking a Wi-Fi network. It all depends on what the circumstance is at that current time, so choosing the right strategy is more likely to lead to success. This is some of the most effective strategies […]

Bash Command Line Guide

Installing Software; { from a repository } apt install <name of software> apt-get install <name of software> sudo apt install <name of software> sudo apt install <name of software> { from source } mkdir /home/user/software cd there and download the .tar.gz unzip <file> or gzip -ztf <filename.tar.gz> cd into new directory more INSTALL or if […]