March 11, 2025
  •  
4
 Min 
Read

What is Hardcoding Domains in HTML?

Hardcoding domains in HTML refers to the practice of embedding fixed domain names directly within the HTML code of a web application. This often occurs when linking to external resources, such as scripts, stylesheets, or images, using absolute URLs that include specific domain names. While this approach can simplify development, it introduces security and maintainability concerns.

How Does Hardcoding Domains Affect Security?

Including hardcoded domains in your HTML can make your application reliant on external sites for critical resources. If these external sites are compromised, attackers can manipulate the linked resources to execute malicious code within your application. This dependency effectively extends your application's trust boundary to include external domains, increasing the risk of security breaches.

Example:

Consider the following HTML snippet that links to an external JavaScript file:​

<script src="http://www.example.com/js/fancyWidget.js"></script>

If www.example.com is compromised, an attacker could modify fancyWidget.js to include malicious code, which would then run on your site, potentially stealing user data or altering site behavior. 

Potential Impacts of Hardcoded Domains

  • Security Vulnerabilities: Dependence on external domains can lead to the execution of untrusted code if those domains are compromised.​
  • Maintainability Challenges: Hardcoded domains can make updates cumbersome, especially if the external resource's domain changes or becomes unavailable.​
  • Performance Issues: Relying on external resources can affect load times, particularly if the external server experiences latency or downtime.​

Best Practices to Avoid Hardcoding Domains

To mitigate the risks associated with hardcoded domains in HTML, consider implementing the following best practices:

  1. Host Resources Locally:
    • Download and serve external resources, such as scripts and stylesheets, from your own servers. This approach ensures you have control over the content and reduces dependency on external domains.​
  2. Use Relative URLs:
    • Utilize relative URLs for internal resources to enhance flexibility and maintainability. This practice allows your application to adapt to domain or directory changes without requiring extensive code modifications.​
  3. Implement Subresource Integrity (SRI):
    • When using external resources, apply SRI to verify the integrity of the fetched files. SRI ensures that the content has not been altered, providing an additional layer of security.​

Example:

<script src="https://example.com/script.js"
        integrity="sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxp6CZg5Y3zVbWTRi9v9G8SRG8zq3z0"
        crossorigin="anonymous"></script>
  1. Externalize Configuration:
    • Store domain names and other configuration settings in environment variables or configuration files rather than hardcoding them in your HTML or application code. This practice enhances security and simplifies updates.​

Example in a configuration file (ini):

RESOURCE_DOMAIN=https://cdn.example.com

In your HTML or templates:

<script src="{{ RESOURCE_DOMAIN }}/js/script.js"></script>
  1. Regular Security Audits:
    • Conduct periodic code reviews and security assessments to identify and address instances of hardcoded domains and other potential vulnerabilities.​

Conclusion

Hardcoding domains in HTML can introduce significant security and maintenance challenges to your web application. By hosting resources locally, using relative URLs, implementing Subresource Integrity, externalizing configuration, and performing regular security audits, you can mitigate these risks and enhance the overall security and reliability of your application.​

Download
Article written by
Madison Redtfeldt
Madison Redtfeldt, Head of Marketing at Mobb, has spent a decade working in security and privacy, helping organizations translate complex challenges into straightforward, actionable solutions.
LinkedIn
Topics
Hardcoded Domains
HTML Security
External Resources
Subresource Integrity
Web Application Security
Configuration Management
Fix Research
New Fixes
Fix Library
Fix Explanations
Developer
DevOps
DevSecOps
Subscribe to our newsletter
Commit code fixes

in 60 seconds or less.



That’s the Mobb difference
Book a Demo