Episode Details
Back to Episodes
Course 16 - Red Team Ethical Hacking Beginner Course | Episode 2: Essential Command Line Administration: Linux, Windows, Account Management
Published 4 months, 3 weeks ago
Description
In this lesson, you’ll learn about:
- Essential Linux command-line administration basics
- Core Windows command-line networking and system commands
- How to navigate, inspect, and manage files on both platforms
- Practical Windows domain user and group management
- Why command-line proficiency is critical for security professionals
- Navigating directories using cd
- Listing directory contents using ls
- Creating directories using mkdir
- Creating files and writing content using echo
- Viewing file contents using cat
- Removing files using rm
- Recursively listing directory contents using ls -r
- Viewing network interface information using:
- ifconfig
- ip a (modern replacement)
- Viewing routing information using:
- ip r
- netstat -rn
- Restarting networking services using:
- service networking restart
- Manually disabling and enabling interfaces using:
- ifconfig eth0 down
- ifconfig eth0 up
- Using the --help flag to view command options
- Using the man command to read full manual pages and understand command parameters
- hostname – displays the computer name
- ping – checks network connectivity using ICMP packets
- Demonstrated with the loopback address
- Using -n to limit the number of packets
- ipconfig /all – displays detailed network configuration
- nslookup – resolves domain names to IP addresses
- netstat -nao – shows active connections, listening ports, and process IDs
- route print – displays the routing table
- arp -a – shows IP-to-MAC address mappings
- Listing directory contents using dir
- Navigating directories using cd
- Creating files using echo
- Viewing file contents using type
- Using /? to display command usage and parameters
- Using net help message to translate Windows error codes into readable messages
- net user /domain
- C