CLH-001

Introduction to Hacker CLI

< Script House
operator@shadow:~
[SYSTEM] Secure connection established...
[SYSTEM] Welcome to Command Line Hacker Training
> Mission: Complete initial reconnaissance
Type help to see available commands.
operator@shadow:~$

CURRENT OBJECTIVE

1
2
3
4

RECON: Identify Operator

Every operation starts with knowing who you are on the system. Identify your current user account.

$ whoami

INTEL BRIEFING

Why Command Line?

The command line interface (CLI) is the hacker's primary weapon. While GUIs are convenient, the terminal offers:

  • Speed - Execute complex operations instantly
  • Automation - Script repetitive tasks
  • Stealth - Minimal system footprint
  • Access - Reach systems without GUI

Command: whoami

Displays the current logged-in user. Critical for confirming your access level.

$ whoami
operator

Command: pwd

Print Working Directory - reveals your current position in the filesystem.

$ pwd
/home/operator

Command: hostname

Identifies the system you've accessed. Essential for tracking your position in a network.

$ hostname
shadow

Command: ls

Lists directory contents. Your eyes on the filesystem.

$ ls
Documents missions scripts tools
OPSEC NOTE:

In real operations, always verify your identity and position before executing commands. One wrong move on the wrong system can compromise an entire operation.

PRO TIP:

Chain recon commands: whoami && hostname && pwd