DNS, DHCP & IP Address Management appliances
For Microsoft DNS & DHCP servers
For open source DNS & DHCP servers
Cloud-based visualization of analytics across DDI architecture
Manage multi-vendor cloud DNS servers centrally
RIR Declaration Management and Automation
Automated network device configuration and management
Centralized visibility over all your clouds
A single source of truth for your network automation
Why DDI is an Obvious Starting Point
DNS Threat Intelligence for proactive defense
Intelligence Insights for Threat Detection and Investigation
Adaptive DNS security for service continuity and data protection
Improve Application Access Control to prevent spread of attacks
Protect users and block DNS-based malware activity
Carrier-grade DNS DDoS attack protection
Optimize application delivery performance from the edge
for Proactive Network Security
Visibility, analytics and micro segmentation for effective Zero Trust strategy
Enable work from anywhere by controlling access, security and data privacy
Simplify management and control costs across AWS, Azure and GCP environments
Risk-free migration to reduce DDI complexity and cost
Move risk-free to improve performance, security and costs
Automate management, unify control and strengthen security of connected devices
Protect your network against all DNS attacks, data exfiltration and ransomware
Enable zero touch operations for network management and security
Improve resiliency, deployment velocity and user experience for SD-WAN projects
Integrated DNS, DHCP, IPAM services to simplify, automate and secure your network.
Simplify design, deployment and management of critical DDI services for telcos
Optimize administration and security of critical DDI services for healthcare
Simplify and automate management of critical DDI services for finance
Simplify and automate management of critical DDI services for higher education
Simplify and automate management of critical DDI services for retail
Simplify Management and Automation for Network Operations Teams
Elevate SecOps Efficiency by Simplifying Threat Response
Open architecture for DDI integration
Technology partnerships for network security & management ecosystems
Extend security perimeters and strengthen network defenses
Submit requests for temporary licenses
Submit access requests for EfficientIP knowledge platforms
Submit membership requests for EfficientIP Community
Strengthen Your Network Protection with Smart DNS Security
Customer-centric DDI project delivery and training
Acquire the skills needed to manage EfficientIP SOLIDserverโข
Identify vulnerabilities with an assessment of your DNS traffic
Test your protection against data breaches via DNS
Dedicated representation for your organization inside EfficientIP
Explore content which helps manage and automate your network and cloud operations
Read content which strengthens protection of your network, apps, users and data
Learn how to enhance your app delivery performance to improve resilience and UX
Why Using DNS Allow Lists is a No-Brainer
This enterprise-grade cloud platform allows you to improve visibility, enhance operational efficiency, and optimize network performance effortlessly.
Who we are and what we do
Meet the team of leaders guiding our global growth
Technology partnerships for network security and management ecosystems
Discover the benefits of the SmartPartner global channel program
Become a part of the innovation
The latest updates, release information, and global events
DNS cache poisoning is a DNS attack that installs a specific incorrect record in the cache of a recursive DNS server. Any client requesting this information from this recursive server will then get the wrong answer. This attack is mainly used to direct user browsers to a fake server in order to perform phishing or extortion. The main targets are well known online services like bank, insurance and government.
The main idea behind the attack is to imitate an answer from server upper in the DNS hierarchy and provide fake content. This attack takes advantage of the fact DNS service uses the UDP protocol and accepts an answer as soon as the returning packet contains the appropriate technical information (source and destination port and same transaction identifier). The DNS protocol has been defined to be transported on top of UDP from the very beginning and since it was easy to implement, most DNS servers are using this non connected transport protocol. Unfortunately, this also allows cache poisoning attacks. But as new DNS implementations are using TCP, this attack would be far more complex to carry out.
In order to populate the cache with fake information, the attacker should perform a request to the recursive server. Either the recursive server is open to all requests or the attacker is authorized. When the attacker is not authorized at the DNS level, he may use another service which can perform the request on his behalf, such as a web server or a mail server.
Once the query hits the recursive server, if the answer is not in its cache, the query is sent towards an upper DNS server. It is now time for the attacker to flood the attacked DNS server with fake answers. Two main criteria must be met during this flood:
If the answer matches the criteria (ports, id, โฆ) it is accepted and populates the cache of the recursive server. Any further request for this FQDN on the recursive server will be answered with the information present in the cache allowing the attacker to capture the traffic.
The DNS protocol authorizes multiple queries and answers in the same packet. The Eugene Kashpureff’s attack uses this feature to add specific records in the answer of a legitimate query in order to populate the cache of recursive DNS servers. This attack is really easy to perform. The attacker just needs to own a DNS server on a domain and propose some content requiring readers to perform a query on it. If the DNS recursive server is not verifying answers and the query is matching, the cache is populated and spoofing can occur.
The most advanced solution is to implement DNSSEC everywhere, whereby records are signed with digital certificate and public key mechanism making it is mathematically impossible to usurp (for now). This is really complex and requires that all the domain owners and DNS infrastructure services are compliant.
Here is a small piece of python code to calculate the probability of collision on the 16 bits identifier used in DNS queries for probabilities of 50%, 90% and 99%.
from scipy import log, exp from scipy.special import gammaln as gln def prob_unique(days, persons): """returns the probability of x persons sharing the same birthday over a year of y days""" return exp(gln(days+1) - gln(days-persons+1) - persons*log(days)) for pers in (302, 550, 776): prob = (1 - prob_unique(65536, pers)) * 100 print("65535 days / {} persons: prob = {:.2f}%".format(pers, prob))
We use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
We use cookies to enhance your browsing experience, serve personalized content, and analyze our traffic. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site.