Please turn JavaScript on
Kali Linux Tutorials icon

Kali Linux Tutorials

follow.it gives you an easy way to subscribe to Kali Linux Tutorials's news feed! Click on Follow below and we deliver the updates you want via email, phone or you can read them here on the website on your own news page.

You can also unsubscribe anytime painlessly. You can even combine feeds from Kali Linux Tutorials with other site's feeds!

Title: Kali Linux Tutorials | Hacking Tools, Cybersecurity News & Writeups - Kali Linux Tutorials

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  4.13 / day

Message History

Nginx is a high-performance web server and reverse proxy trusted by some of the largest sites on the internet. This guide covers the commands you reach for every day: starting and stopping the service, reloading configuration without dropping connections, testing config before it goes live, and reading the logs when something breaks. These commands assume […]

Read full story
ufw (Uncomplicated Firewall) sits on top of iptables (or nftables on newer systems) and replaces complex packet-filter rules with readable commands. It is the standard firewall tool on Ubuntu and Debian. The kernel still enforces the actual rules, ufw is a frontend that generates them for you. Almost every ufw invocation requires sudo because it […]

Read full story
When you share a server with a team or investigate unexpected activity, the first question is simple: who is on this machine right now? The who command reads from the system session records and answers exactly that it lists every active user session with their terminal, login time, and where they connected from. How to Use the […]

Read full story
The file command inspects the actual contents of a file and reports its type — regardless of the name or extension. A file called photo.jpg could be a PNG, an ELF binary, or plain text. The file command shows you what it actually is. How to Use the file Command in Linux The syntax is: Pass a path to get the […]

Read full story
chattr sets and removes special file attributes that operate at the filesystem level, separate from standard permission bits. You can mark a file immutable so nothing can delete or overwrite it, or set a log file to append-only so new entries go in but existing content stays intact. Its companion command lsattr displays the current attributes on any […]

Read full story