HTTP Headers

How to Protect WebSites Against Attackers or Hackers by using “X-Security Headers”

1. What are X-Security Headers?

X-Security Headers are the header part of a Hypertext Transfer Protocol (HTTP) request and response messages. They define the operating parameters of an HTTP transaction. It passes additional information with the request and response between the client (browser) and the web server. It is an integral part of HTTP requests and responses. X-Security Headers are also said as HTTP headers.

By using .htaccess techniques to increase your website’s security. X-Security Headers are protecting against cross-site scripting (XSS) attacks, Clickjacking (UI redress attack) attacks, Reducing MIME Type Security Risks, etc.

2. Most Popular Names of the X-Security Headers

  • X-XSS-Protection
  • X-Frame-Options
  • X-Content-Type-Options

a) Protect Against cross-site scripting (XSS) Attacks

Cross-site scripting (XSS) attack is a type of computer security vulnerability typically found in web applications or websites. It enables attackers to inject client-side scripts or malicious javascript code into web pages viewed by other users.

Cross-site scripting (XSS) vulnerability Web applications or websites run on malicious JavaScript code in a victim’s browser (client). Hackers are executing malicious JavaScript code in another user’s browser (client). See more about cross-site scripting (XSS).

By using this code in the .htaccess file, we can protect against cross-site scripting (XSS) attacks.

# Reflected Cross-Site Scripting (XSS) attacks:
<IfModule mod_headers.c>
Header set X-XSS-Protection “1; mode=block”
<FilesMatch “\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|topojson|tt[cf][/cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xml|xpi)$”>
Header unset X-XSS-Protection
</FilesMatch>
</IfModule>

b) Protect Against Clickjacking (User Interface redress, UI redress, and UI redressing) Attacks

A clickjacking attack is a malicious technique of tricking a Web application user into clicking on something different from what the user understands they are clicking on the website, thus potentially leaking confidential information (data) and taking control of their computer while clicking on apparently offensive web pages.

Clickjacking is also named a User Interface redress attack, UI redress attack, and UI redressing. Clickjacking is possible because harmless or offensive features of HTML web pages can be employed to perform unexpected actions. On Clickjacking attacked pages, the attackers load another page over it in a transparent layer. By using this way attacks steal data by clicking on web pages.

A few more attacks are Similar like clickjacking those are Likejacking and Cross-Frame Scripting (XFS) attacks.

By using this code in the .htaccess file, we can protect against Clickjacking (User Interface redress, UI redress, and UI redressing), likejacking, and Cross-Frame Scripting (XFS) attacks.

# Protect From Clickjacking (UI redress) attacks:
<IfModule mod_headers.c>
Header set X-Frame-Options “DENY”
<FilesMatch “\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|topojson|tt[cf][/cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xml|xpi)$”>
Header unset X-Frame-Options
</FilesMatch>
</IfModule>

c) Protect Against MIME Type Security Risks (Content/Media Security Risks)

MIME Type attack is a malicious technique used by some web browsers (likely Internet Explorer, Opera, etc.) to focus on the content of particular assets on web applications. This technique is used to Phishing/Sniff the main assets of the web page or website.

MIME Type sniffing attacks are a risk when you allow users to upload data on web applications. By using the .htaccess file and HTTP Headers technique, we can protect our data securely.

By using this code in the .htaccess file, we can protect against MIME Type Security Risks (Content/Media Security Risks).

# Reducing MIME Type Security Risks:
<IfModule mod_headers.c>
Header set X-Content-Type-Options “nosniff”
</IfModule>

3. Top 10 HTTP Security Headers

You Must Implement on Your Website, It is more useful HTTP Headers for better Web Application Security:

  • HTTP ETag Header
  • HTTP X-Powered-By
  • HTTP Strict Transport Security (HSTS)
  • HTTP Public Key Pinning (HPKP)
  • HTTP Content Security Policy (CSP)
  • HTTP Referrer-Policy
  • HTTP Feature-Policy
  • HTTP Expect-CT
  • HTTP Timing-Allow-Origin
  • HTTP Access-Control-Allow-Origin

The above HTTP headers are used to protect your websites against attacks, Data Sniffing, Data Breaching, Data Phishing, and Hacking.

See the below examples of how to use the HTTP headers in the .htaccess file to protect data or information against hackers.

# It Disables Apaches ETag Header:
<IfModule mod_headers.c>
Header unset ETag
</IfModule># Server-side Technology Information:
<IfModule mod_headers.c>
Header unset X-Powered-By
</IfModule># HTTP Strict Transport Security (HSTS):
<IfModule mod_headers.c>
Header always set Strict-Transport-Security “max-age=31536000; includeSubDomains; preload”
</IfModule>

# HTTP Public Key Pinning (HPKP)
<IfModule mod_headers.c>
Header always set Public-Key-Pins “pin-sha256=\”iPkQ5Cig6y69MBkqnbEk4aIdjiuY4exLSiDRSp5GeJg2m4=\”; pin-sha256=\”Cig6y69MBkqnbEk4aIklO2XCfCig6y69MBkqnbEk469MBkY=\”; pin-sha256=\”a9wgrX4Ta9HpZx6tSfc4$2dsavHkmCrvpApwsgbrLg5yRME=\”; max-age=2592000; includeSubDomains; preload”
</IfModule>

# HTTP Content Security Policy (CSP):
<IfModule mod_headers.c>
Header set Content-Security-Policy “base-uri ‘self'”
</IfModule>

# Send Custom HTTP Headers Referrer-Policy:
<IfModule mod_headers.c>
Header always set Referrer-Policy “strict-origin-when-cross-origin”
</IfModule>

# Send Custom HTTP Headers Feature-Policy:
<IfModule mod_headers.c>
Header always set Feature-Policy “vibrate ‘self'”
</IfModule>

# Send Custom HTTP Headers Expect-CT:
<IfModule mod_headers.c>
Header always set Expect-CT “max-age=604800; report-uri=””
</IfModule>

# Cross-origin requests:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin “Origin”
</IfModule>

# Cross-origin resource timing:
<IfModule mod_headers.c>
Header set Timing-Allow-Origin: “*”
</IfModule>

Helpful Resources:

1. Why is Cybersecurity Important For Enterprises?

2. 5 Website Security Tips Every Employee Should Know

3. Get VPS Hosting For Your Websites For Better Results

4. Top Ten Blockchain Applications That Are Transforming Industries

5. 6 Best Wireless Security Cameras

6. What is the Difference Between Absolute and Relative URLs?

TwinzTech

We are an Instructor, Modern Full Stack Web Application Developers, Freelancers, Tech Bloggers, and Technical SEO Experts. We deliver a rich set of software applications for your business needs.

Share
Published by
TwinzTech

Recent Posts

Navigating the Process of Selling Deceased Estate Shares

This article aims to provide a comprehensive guide to selling shares from a deceased estate.… Read More

May 9, 2024

Top Benefits of Hiring a Professional Android App Development Company

This guide illuminates the unparalleled benefits that startups, entrepreneurs, tech enthusiasts, CEOs, and CTOs can… Read More

May 7, 2024

Perché Dobbiamo Utilizzare Un’Applicazione Antivirus Su Android?

Perché Dobbiamo Utilizzare Un'applicazione Antivirus Su Android? Rischi diversi, Vantaggi dell'utilizzo di applicazioni antivirus su… Read More

April 28, 2024

Harnessing AI for Proactive Threat Detection and Response

This is where harnessing the capabilities of Artificial Intelligence (AI) for proactive threat detection and… Read More

April 12, 2024

Key Strategies for Successful Digital Transformation

True digital transformation starts with culture. Creating a digital culture means more than just incorporating… Read More

April 4, 2024

Where to Find Influencers for High ROI Marketing Strategies and Why It Matters

New trends call for new actions. Finding the right influencers for brands to grow with… Read More

March 13, 2024