Listen to this Post
In the digital age, unwanted calls from telemarketers and spammers have become a significant nuisance. Yohann Bauzil, a Chief Security & Information Officer, shares a simple yet effective solution to this problem using the application “Begone.” This app allows users to block millions of unwanted numbers with just a few clicks, ensuring peace of mind and improved productivity.
How to Use Begone:
- Install Begone: Download and install the Begone app from your device’s app store.
- Configure Number Ranges: Declare the ranges of commercial numbers you wish to block. Begone supports blocking up to 12 million numbers.
- Activate Blocking: Once configured, Begone will automatically block calls from the specified numbers.
Practical Commands and Codes:
For those interested in a more technical approach, here are some commands and scripts that can be used to block unwanted calls on different platforms:
Linux (Using `iptables`):
<h1>Block a specific IP address</h1> sudo iptables -A INPUT -s 192.168.1.100 -j DROP <h1>Block a range of IP addresses</h1> sudo iptables -A INPUT -s 192.168.1.0/24 -j DROP
Windows (Using PowerShell):
<h1>Block a specific IP address</h1> New-NetFirewallRule -DisplayName "Block IP" -Direction Inbound -Action Block -RemoteAddress 192.168.1.100 <h1>Block a range of IP addresses</h1> New-NetFirewallRule -DisplayName "Block IP Range" -Direction Inbound -Action Block -RemoteAddress 192.168.1.0/24
Android (Using Tasker):
- Install Tasker: Download and install Tasker from the Google Play Store.
- Create a New Profile: Set up a profile to detect incoming calls from specific numbers.
- Add a Task: Create a task to reject calls from the detected numbers.
What Undercode Say:
In the realm of cybersecurity, managing and mitigating unwanted communications is crucial. The use of applications like Begone provides a user-friendly solution to a pervasive problem. However, for those with a technical inclination, leveraging system-level commands and scripts can offer more control and customization.
Linux Commands:
iptables: A powerful tool for configuring IP packet filter rules.ufw: Uncomplicated Firewall, simplifies `iptables` configuration.fail2ban: An intrusion prevention software framework that protects computer servers from brute-force attacks.
Windows Commands:
netsh: A command-line scripting utility that allows you to display or modify the network configuration of a computer.Get-NetFirewallRule: Retrieves firewall rules from the Windows Firewall with Advanced Security.Set-NetFirewallRule: Modifies existing firewall rules.
Conclusion:
Blocking unwanted calls is just one aspect of maintaining digital security. By combining user-friendly applications with advanced system commands, users can create a robust defense against unwanted communications. Whether you’re a casual user or a tech enthusiast, these tools and techniques can help you reclaim your peace of mind in the digital world.
Further Reading:
References:
Hackers Feeds, Undercode AI


