Linux Articles

Page 11 of 134

openSquat – Domain Squatting and Phishing Watchdog

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 391 Views

openSquat is a powerful cybersecurity tool designed to detect domain squatting and phishing attempts. Built in Python, it monitors suspicious domain registrations that could target your brand or organization. Domain squatting involves registering domains similar to legitimate ones to deceive users or profit from brand confusion. openSquat leverages Python modules such as whois, requests, tldextract, and BeautifulSoup to analyze domain information, detect malicious patterns, and provide real-time monitoring capabilities for cybersecurity professionals. Features Domain Monitoring − Continuously tracks specific domains for suspicious changes Squatting Detection − Identifies domains that mimic legitimate brands or trademarks Phishing Analysis ...

Read More

PacVim – A CLI Game to Learn Vim Commands

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 512 Views

PacVim is an innovative CLI game that transforms learning Vim commands into an engaging Pac-Man-style experience. Instead of memorizing commands through traditional methods, players navigate through mazes while collecting pellets that represent different Vim operations, making the learning process both fun and effective. Vim has been a favorite of many programmers and Linux users for years due to its powerful features and flexibility. However, Vim's learning curve has often been a barrier for newcomers. PacVim addresses this challenge by gamifying the learning process, allowing users of all skill levels to master Vim commands through interactive gameplay. How PacVim ...

Read More

Practical Examples of Linux xargs Command

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 991 Views

The Linux xargs command is a powerful utility that reads items from standard input and executes commands using those items as arguments. It's particularly useful for automating tasks and processing large numbers of files efficiently. This command helps bridge the gap between commands that produce output and commands that need arguments. The xargs command is especially valuable when working with long lists of items or data, as it simplifies the process of executing commands on multiple items. With xargs, you can perform operations like copy, delete, compress, rename, and count on numerous files with a single command line. ...

Read More

Shell Scripting – How to Send Signal to a Process?

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 1K+ Views

In this tutorial, we will explore how to send signals to processes using shell scripting. Signals are software interrupts that enable communication between processes, allowing the operating system and applications to notify processes about events or request specific actions. Understanding signal handling is essential for effective process management in Unix-like systems. Signals serve various purposes including graceful process termination, handling interrupts, suspending processes, and modifying process behavior. Shell scripts can leverage these signals to control running processes programmatically, making system administration and automation more efficient. Understanding Signals and Their Usage Signals are software interrupts sent to processes ...

Read More

Show System Statistics from /proc Filesystem Using procinfo

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 301 Views

The procinfo command is a powerful Linux utility that reads system statistics from the /proc filesystem and displays them in a user-friendly format. It provides quick access to essential system metrics like CPU usage, memory consumption, and process information, making it an invaluable tool for system administrators and users monitoring system performance. The /proc filesystem is a virtual filesystem that provides real-time information about running processes and system resources. The procinfo command parses this data and presents it in an organized, readable format. Installation Install procinfo using your distribution's package manager − Ubuntu/Debian sudo ...

Read More

TheSpeedX / TBomb – Call and SMS Bomber for Kali Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 39K+ Views

TBomb is a penetration testing tool developed by TheSpeedX for educational and authorized security testing purposes. This tool demonstrates potential vulnerabilities in communication systems by simulating bulk messaging and calling scenarios. Important: This tool should only be used on systems you own or have explicit permission to test, as unauthorized use may violate laws and terms of service. Installation Process To install TBomb on your Kali Linux system, follow these steps − Open a terminal in your Kali Linux environment. Clone the TBomb repository from GitHub − git clone https://github.com/TheSpeedX/TBomb.git ...

Read More

Top Command Line Tools to Find Files Quickly in Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 2K+ Views

In Linux, there are several command line tools that can be used to quickly and easily find files on the file system. These tools are powerful and versatile, allowing users to search for files based on a variety of criteria such as name, type, size, and more. Some of the most popular command line tools for finding files in Linux include find, locate, grep, whereis, which, fd, and ack. These tools are widely used by system administrators, developers, and power users to find and locate files in a quick and efficient way. Find Command The find command is ...

Read More

Useful and Time-Saving Bash Commands in Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 404 Views

Linux, an open-source operating system, is widely recognized for its robustness, security, and flexibility. While it offers a variety of graphical user interfaces, Linux's command-line interface, powered by the Bash shell, remains a favorite among power users and system administrators. Mastering Bash commands can significantly enhance your productivity and efficiency in a Linux environment. From simplifying complex tasks to automating repetitive operations, understanding and utilizing useful and time-saving Bash commands can unlock a world of possibilities. This article explores essential Bash commands that will empower you to navigate directories, manipulate files, process text, manage processes, and handle packages more ...

Read More

What Does the rm -rf Command Do in Linux?

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 6K+ Views

The rm -rf command is one of the most powerful and potentially dangerous commands in the Linux operating system. It enables the recursive deletion of files and directories without any confirmation prompts. While this command is extremely useful for batch processing and system maintenance, it requires careful handling due to its ability to cause permanent data loss. Understanding the rm Command The basic rm command removes files instantly but cannot delete directories without additional options. Let's examine its basic usage: $ mkdir demo $ touch example.txt $ rm example.txt $ rm demo rm: cannot remove 'demo': ...

Read More

Shell Script to Validate the Date, Considering Leap Year Rules

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 2K+ Views

In this tutorial, we will explore how to create a shell script that validates dates, taking into account the rules of leap years. We will be using the Linux operating system and the Bash shell scripting language for this purpose. Shell scripting allows us to automate tasks and perform complex operations by writing simple and efficient scripts. We will develop a shell script that prompts the user to enter a date in the format YYYY-MM-DD and then validates whether the entered date is valid or not, considering leap year rules. We will break down the problem into smaller steps ...

Read More
Showing 101–110 of 1,338 articles
« Prev 1 9 10 11 12 13 134 Next »
Advertisements