1.0.1 • Published 1 year ago

vite-plugin-allowed-hosts v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Vite Allowed Hosts

Build Status Version Downloads

Specify a list of hosts that are allowed to access your Vite dev server.

Motivation

By rejecting requests with an unrecognized Host header, this plugin prevents DNS rebinding attacks, which are possible even under many seemingly-safe web server configurations.

In a DNS rebinding attack, an attacker can create a malicious website that makes requests to the development server using the victim’s browser, potentially gaining access to sensitive data or executing unauthorized actions.

Usage

// vite.config.js
import pluginAllowedHosts from "vite-plugin-allowed-hosts";

export default {
  plugins: [
    pluginAllowedHosts({
      hosts: ["acme.com", ".dev.acme.com"]
    })
  ]
}

Options

hosts

  • Type: 'auto' | 'all' | string | string[]
  • Default: 'auto'

    When set to 'auto', it will always allow localhost and [server.host](https://vitejs.dev/config/server-options.html#server-host).

    When set to 'all', no header check will be done. This is obviously not recommended.

    A value beginning with a period . can be used as a subdomain wildcard. For example, '.acme.com' will match acme.com, www.acme.com, and any other subdomain of acme.com.

    If the Host header doesn't match any value in this list, a 403 Forbidden HTTP error will be returned.

License

vite-plugin-allowed-hosts is released under the MIT License. See the bundled LICENSE file for details.

1.0.1

1 year ago