Ethical Hacker Tool of the Day: prettyping (Linux)

Listen to this Post

I just happened to be scrolling through some network tools in the standard Ubuntu (apt-cache search ) list, and found “prettyping.”

To install it:

sudo apt install -y prettyping 

You Should Know:

1. Basic Usage:

Run `prettyping` followed by a domain or IP address to get a more visually appealing and detailed output compared to the standard `ping` command.

prettyping example.com 

2. Customizing Output:

  • Use `-c` to specify the number of pings:
    prettyping -c 10 example.com 
    
  • Use `-i` to set the interval between pings (in seconds):
    prettyping -i 2 example.com 
    

3. Combining Options:

Combine options for more control:

prettyping -c 15 -i 1 example.com 

4. Saving Output to a File:

Redirect the output to a file for later analysis:

prettyping example.com > ping_results.txt 

5. Using with Other Tools:

Pipe `prettyping` output to tools like `grep` for filtering:

prettyping example.com | grep "packet loss" 

What Undercode Say:

`prettyping` is a simple yet powerful tool for network diagnostics, offering a more user-friendly interface than the traditional `ping` command. It’s particularly useful for ethical hackers and network administrators who need to monitor network performance with greater clarity. By combining it with other Linux commands, you can enhance your network troubleshooting capabilities.

For further reading, check out the official documentation or related tools like `nmap` and `traceroute` to expand your network analysis toolkit.

Related URLs:

References:

Reported By: Activity 7305287234767708161 – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image