CVE-2025-13878: The One-Packet Kill for BIND DNS Servers.
Read the full report on -
CyberDudeBivash News delivers daily cybersecurity threat intel, CVE alerts, malware trends, and crypto security briefings.

seen from United States
seen from United States

seen from Kazakhstan

seen from Malaysia

seen from Netherlands
seen from China

seen from Malaysia

seen from Netherlands

seen from Malaysia

seen from Netherlands
seen from China
seen from Kazakhstan
seen from China
seen from Philippines

seen from Malaysia

seen from United States
seen from China

seen from Germany

seen from Canada
seen from Canada
CVE-2025-13878: The One-Packet Kill for BIND DNS Servers.
Read the full report on -
CyberDudeBivash News delivers daily cybersecurity threat intel, CVE alerts, malware trends, and crypto security briefings.
How to Set Up Authoritative DNS Servers with Webmin
In previous tutorials, we explained how to set up authoritative DNS servers and edit DNS records from the command line. However, some folks prefer to use a web GUI to edit DNS records. This tutorial is going to show you how to set up authoritative DNS servers with Webmin, which is a free open-source web-based…
https://www.linuxbabe.com/linux-server/set-up-authoritative-dns-servers-webmin
Set Up Your Own BIND9 DNS Resolver on CentOS 8/RHEL 8
This tutorial will be showing you how to set up a local DNS resolver on CentOS 8/RHEL 8, with the widely-used BIND9 DNS software. There are many synonyms for DNS resolver, some of which are listed below. They all refer to the same thing. full resolver (in contrast to stub resolver) DNS recursor recursive DNS…
https://www.linuxbabe.com/redhat/bind-9-dns-resolver-centos-8
Set Up Your Own DNS Resolver on Debian 10 Buster with BIND9
This tutorial will be showing you how to set up a local DNS resolver on Debian 10 Buster, with the widely-used BIND9 DNS software. There are many synonyms for DNS resolver, some of which are listed below. They all refer to the same thing. full resolver (in contrast to stub resolver) DNS recursor recursive DNS+ Read More
https://www.linuxbabe.com/debian/dns-resolver-debian-10-buster-bind9
Serveur dédié : transférer et héberger un nouveau domaine sur votre serveur
Aujourd’hui, nous allons voir comment héberger un nouveau domaine sur le serveur, en simplifiant au maximum les procédures. Le nom de domaine sera réservé chez OVH et le site hébergé sur notre serveur Debian. Nous allons servir le site avec NginX en HTTPS grâce à un certificat SSL fourni gratuitement par Let’s Encrypt. Enfin, on utilisera le serveur email existant et on ajoutera la configuration…
View On WordPress
The following Name Services are Available on Labs.coop The following naming services are available on labs.coop; you can put these all in your bind9 and it will propagate across them all in the motion of the direct route and indirect route globally:-
Serveur dédié : ajouter l'authentification DMARC à Postfix et BIND
[TUTO] Serveur dédié : ajouter l'authentification DMARC à Postfix et BIND #server #sysadmin #postfix #email #dmarc
Notre serveur de mail possède une identification SPF, Sender-ID et DKIM et est sécurisé par un certificat TLS. Nous allons aujourd’hui voir comment lui adjoindre l’authentification DMARC.
Aux origines de l’authentification des emails
Les technologies d’authentification des emails SPF et DKIM ont été développées afin de fournir une plus grande assurance sur l’identité de l’expéditeur d’un…
View On WordPress
PowerDNS: Alternative to BIND9
After my Raspberry Pi SD card got fried, I was left without a DNS server on my home network. So I wanted to reconfigure my other existing server box running Debian to serve as a DNS server.
But I was tired of using the same old Bind9. It’s configuration was somewhat cryptic, to say the least. As always, it was Google to the rescue, and PowerDNS was one of the listed alternatives that really caught my eye.
There were some quick tutorials here and there, that came in handy. But in short, it all boils down to the following core operations on my setup which I believe is way simpler than stated in either sites:
Run the command:
apt-get install pdns-server pdns-backend-mysql pdns-recursor
Edit the file /etc/powerdns/pdns.conf, uncomment or add the following lines:
launch=gmysql
allow-recursion=127.0.0.1,192.168.0.0/24 #depending on your IP and netmask
allow-recursion-override=on # This is the most important step if you want to serve your fake domains on your home network.
recursor=192.168.0.9:5300 # Again this would point to the actual recursor which we will configure later.
local-address=0.0.0.0
local-port=53 # This is the default DNS port
Edit the file /etc/powerdns/recursor.conf:
local-address=192.168.0.9
local-port=5300
Edit the file /etc/powerdns/pdns.d/pdns.local:
gmysql-host=127.0.0.1 gmysql-user=power_admin gmysql-password=power_admin_password gmysql-dbname=powerdns
Run the following SQL script on MySQL:
CREATE DATABASE powerdns;
GRANT ALL ON powerdns.* TO 'power_admin'@'localhost' IDENTIFIED BY 'power_admin_password'; GRANT ALL ON powerdns.* TO 'power_admin'@'localhost.localdomain' IDENTIFIED BY 'power_admin_password';
FLUSH PRIVILEGES;
USE powerdns; CREATE TABLE domains ( id INT auto_increment, name VARCHAR(255) NOT NULL, master VARCHAR(128) DEFAULT NULL, last_check INT DEFAULT NULL, type VARCHAR(6) NOT NULL, notified_serial INT DEFAULT NULL, account VARCHAR(40) DEFAULT NULL, primary key (id) );
CREATE UNIQUE INDEX name_index ON domains(name);
CREATE TABLE records ( id INT auto_increment, domain_id INT DEFAULT NULL, name VARCHAR(255) DEFAULT NULL, type VARCHAR(6) DEFAULT NULL, content VARCHAR(255) DEFAULT NULL, ttl INT DEFAULT NULL, prio INT DEFAULT NULL, change_date INT DEFAULT NULL, primary key(id) );
CREATE INDEX rec_name_index ON records(name); CREATE INDEX nametype_index ON records(name,type); CREATE INDEX domain_id ON records(domain_id); CREATE TABLE supermasters ( ip VARCHAR(25) NOT NULL, nameserver VARCHAR(255) NOT NULL, account VARCHAR(40) DEFAULT NULL );
INSERT INTO domains (name, type) values ('example.com', 'NATIVE'); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','localhost [email protected] 1','SOA',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','dns-us1.powerdns.net','NS',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','dns-eu1.powerdns.net','NS',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'www.example.com','192.168.5.9','A',120,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'mail.example.com','192.168.5.9','A',120,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'localhost.example.com','127.0.0.1','A',120,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','mail.example.com','MX',120,25);
Then startup the processes:
/etc/init.d/pdns-recursor start
/etc/init.d/pdns monitor
Then do some digging and have fun:
nslookup www.example.com