Restricted Site Access

Descripción

Limita el acceso a tu sitio a los visitantes que hayan iniciado sesión o que acceden al sitio desde un conjunto de direcciones IP especificadas. Envía visitantes restringidos a la página de inicio de sesión, redirigirlos o mostrar un mensaje o página. Una gran solución para Extranets, Intranets alojadas públicamente o sitios paralelos de desarrollo / pruebas.

Añade varias opciones de configuración nuevas al panel de configuración de lectura, así como al panel de configuración de red en multisitio. Desde estos paneles puedes:

  • Activar o desactivar la restricción del sitio
  • Cambiar el comportamiento de restricción: enviar a iniciar sesión, redirigir, mostrar un mensaje, mostrar una página
  • Añadir direcciones IP a una lista no restringida, incluidos rangos
  • Añade rápidamente tu IP actual a la lista de no restringidos
  • Personaliza la ubicación de redireccionamiento, incluida una opción para enviarlos a la misma ruta solicitada y establecer el código de respuesta HTTP para la optimización de SEO.
  • Define un mensaje simple para mostrar los visitantes restringidos, o selecciona una página para mostrarles. ¡Genial por los avances de «próximamente»!

Capturas

  • Captura de pantalla del panel de configuraciones con la opción de acceso restringido al sitio (enviar a la página de inicio de sesión).
  • Captura de pantalla del panel de configuración con la opción de mensaje de restricción habilitada
  • ¡Mucha ayuda en línea! Se muestra y se comporta como la ayuda nativa de WordPress.

Instalación

  1. Instálalo fácilmente con el panel de control de plugins de WordPress o descarga el plugin manualmente y sube la carpeta extraída al directorio /wp-content/plugin/.
  2. Activa el plugin a través del menú «Plugins» en WordPress.
  3. Configura el plugin yendo al menú «Lectura» (WP3.5+) o «Privacidad» (versiones anteriores) en «Ajustes».

FAQ

¿Dónde cambio los ajustes de las restricciones?

Los ajustes de Restricted Site Access se añaden a la página de Lectura, con las opciones nativas de WordPress de privacidad. (Fue movido aquí desde una página independiente de ajustes de Privacidad en la versión 3.5.)

¡No funciona! ¡Mi sitio es totalmente accesible!

Normalmente, Restricted Site Access no es compatible con algunas soluciones de caché de páginas. Si bien el plugin se engancha lo antes posible para verificar los permisos de los visitantes, es importante entender que algunos plugins de caché de páginas generan resultados estáticos que evitan que los plugins, como Restricted Site Access, puedan comprobar los visitantes individuales.

En la medida en que los sitios bloqueados por este plugin no deberían preocuparse por el alto rendimiento en en la parte pública, recomendamos encarecidamente deshabilitar las soluciones de almacenamiento en caché de páginas mientras se restringe el acceso a tu sitio. Ten en cuenta que de todos modos la mayoría de los complementos de caché de páginas no almacenan en caché las opciones de «conectado». También ten en cuenta que el plugin es totalmente compatible con otras capas de almacenamiento en caché, como la memoria caché de objetos de WordPress.

¿Cómo permito el acceso a páginas específicas o partes de mi sitio?

Los desarrolladores pueden usar el filtro restricted_site_access_is_restricted para anular el comportamiento de restricción normal. Ten en cuenta que las comprobaciones de restricción suceden antes de que WordPress ejecute cualquier consulta; pasa la solicitud de consulta de la variable global $wp para que los desarrolladores puedan investigar qué está intentando cargar el visitante.

Por ejemplo, para desbloquear una feed RSS, coloca el siguiente código PHP en el archivo functions.php del tema o en un simple plugin:

add_filter( 'restricted_site_access_is_restricted', 'my_rsa_feed_override', 10, 2 );

function my_rsa_feed_override( $is_restricted, $wp ) {
    // check query variables to see if this is the feed
    if ( ! empty( $wp->query_vars['feed'] ) ) {
        $is_restricted = false;
    }
    return $is_restricted;
}

¿Cómo de seguro es este plugin?

Los visitantes que no están conectados o permitidos por una dirección IP no podrán navegar por tu sitio (pero ten cuidado con las incompatibilidades de los plugins del almacenamiento en caché de página, mencionados anteriormente). Restricted Site Access no bloquea el acceso a, enlaces directos a los archivos en la carpeta de medios y cargas (por ejemplo). También es importante recordar que las direcciones IP pueden ser falsificadas. Debido a que Restricted Site Access se ejecuta como un plugin, está sujeto a cualquier otra vulnerabilidad presente en tu sitio.

Restricted Site Access no está destinado a ser una caja fuerte de datos secretos, sino simplemente una forma confiable y conveniente de manejar visitantes no deseados.

In 7.3.2, two new filters were added that can be utilized to help prevent IP spoofing attacks. The first filter allows you to set up a list of approved proxy IP addresses and the second allows you to set up a list of approved HTTP headers. For any sites that were using Restricted Site Access prior to version 7.5.0, a handful of HTTP headers are trusted by default. To change this, utilize the rsa_trusted_headers filter to modify the HTTP headers you want to trust. If your site is not running behind a proxy, we recommend doing the following:

add_filter( 'rsa_trusted_headers', '__return_empty_array' );

This will then only use the REMOTE_ADDR HTTP header to determine the IP address of the visitor. This header can’t be spoofed, so this will increase security. Note that this is now the default for all new installs since version 7.5.0.

If your site is running behind a proxy (like a CDN), you usually can’t rely on the REMOTE_ADDR HTTP header, as this will contain the IP address of the proxy, not the user. If your proxy uses static IP addresses, we recommend using the rsa_trusted_proxies filter to set those trusted IP addresses:

add_filter( 'rsa_trusted_proxies', 'my_rsa_trusted_proxies' );

function my_rsa_trusted_proxies( $trusted_proxies = array() ) {
  // Set one or more trusted proxy IP addresses.
  $proxy_ips       = array(
    '10.0.0.0/24',
    '10.0.0.0/32',
  );
  $trusted_proxies = array_merge( $trusted_proxies, $proxy_ips );

  return array_unique( $trusted_proxies );
}

And then use the rsa_trusted_headers filter to set which HTTP headers you want to trust. Consult with your proxy provider to determine which header(s) they use to hold the original client IP:

add_filter( 'rsa_trusted_headers', 'my_rsa_trusted_headers' );

function my_rsa_trusted_headers( $trusted_headers = array() ) {
  // Set one or more trusted HTTP headers.
  $headers = array(
    'HTTP_X_FORWARDED',
    'HTTP_FORWARDED',
  );

  return $headers;
}

If your proxy does not use static IP addresses, you can still utilize the rsa_trusted_headers filter to change which HTTP headers you want to trust.

He recibido una advertencia sobre la caché de página. ¿Qué significa?

Los plugins de caché de página a menudo se enganchan a WordPress para servir rápidamente el último contenido almacenado en caché de una página antes de que podamos verificar si el acceso de un visitante se debe restringir. No todos los complementos de caché de páginas se comportan de la misma manera, pero es posible que varias soluciones, incluidas las externas que no detectamos, puedan hacer que las páginas restringidas se muestren públicamente, independientemente de tus ajustes..

Why can’t logged-in users see all the sites on my multisite instance?

In 6.2.0, the behavior in a multisite install changed from allowing any logged-in user to see a site to checking their role for that specific site. This is a safer default given the varying ways multisite is used; however, if you would prefer to rely on the previous behavior rather than explicitly adding users to each site, place the following PHP code in the theme’s functions.php file or in a simple plug-in:

add_filter( 'restricted_site_access_user_can_access', 'my_rsa_user_can_access' );

function my_rsa_user_can_access( $access ) {
    if ( is_user_logged_in() ) {
        return true;
    }

    return $access;
}

Is there a way to configure this with [WP-CLI](https://make.wordpress.org/cli/)?

As of version 7.0.0, CLI integration has been added. To see the available commands, type the following in your WordPress directory:

$ wp rsa

How can I programatically define whitelisted IPs?

In 7.0.0, the capacity to define a pipe delimited array of whitelisted IP addresses via constant was introduced.

In your wp-config.php file, you can define the following:

define( 'RSA_IP_WHITELIST', '192.0.0.1|192.0.0.10' );

In 7.1.1, the capacity to programmatically add / remove / set access IPs programmatically was introduced.

The following are valid statements:

Set IPs, ignoring all stored values (but not the constant defined values), if you’re going to use the approach with array indices rather than mixing the two.

Restricted_Site_Access::set_ips( array( '192.168.0.1', '192.168.0.2', '192.168.0.3' ) );
Restricted_Site_Access::set_ips( array( 'labelfoo' => '192.168.0.1', 'labelbar' => 192.168.0.2', 'labelbaz' => 192.168.0.3' ) );

Add IPs, if they’re not already added.

Restricted_Site_Access::append_ips( array( '192.168.1.5' => 'five', '192.168.1.6' => 'six' ) );

Remove IPs, if they are in the list.

Restricted_Site_Access::remove_ips( array( '192.168.1.2','192.168.1.5','192.168.1.6', ) );

Is there a constant I can set to ensure my site is (or is not) restricted?

As of version 7.1.0, two constants were introduced that give you the ability to specify if the site should be in restricted mode.

You can force the plugin to be in restricted mode by adding the following to your wp-config.php file:

define( 'RSA_FORCE_RESTRICTION', true );

Or to ensure your site won’t be in restricted mode:

define( 'RSA_FORBID_RESTRICTION', true );

Make sure you add it before the /* That's all, stop editing! Happy blogging. */ line.

Please note that setting RSA_FORCE_RESTRICTION will override RSA_FORBID_RESTRICTION if both are set.

What does ‘Discourage search engines from indexing this site’ do?

When the ‘Discourage search engines from indexing this site’ option is enabled, it prevents search engines from indexing the site while still permitting access to regular visitors.

What does ‘Restrict site access to visitors who are logged in or allowed by IP address’ do?

When this option is activated, it serves as a barrier to all visitors except those who are authenticated (logged in) or whose IP addresses are included in the ‘Unrestricted IP addresses’ setting. This restriction applies universally, even to automated crawlers such as search engines.

Reseñas

24 de enero de 2024 1 respuesta
I have activated the plugin as a replacement for a maintenance plugin on a WordPress instance that I use as an extranet. It does exactly what I was looking for. The settings are absolutely sufficient and completely fulfill their purpose. Great !!!
8 de agosto de 2023 1 respuesta
This plugin delivers what it announces and does a perfect job.
21 de agosto de 2022 1 respuesta
Thanks for this. Works 100%, super helpful.
8 de mayo de 2021 1 respuesta
This plugin serves what it says. I was trying to solve an issue to restrict my site to specific IP addresses. This plugin solves it. Kudos team.
Leer todas las 60 reseñas

Colaboradores y desarrolladores

«Restricted Site Access» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

«Restricted Site Access» está traducido en 6 idiomas. Gracias a los traductores por sus contribuciones.

Traduce «Restricted Site Access» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

7.5.0 – 2023-12-14

Note: this release changes the default behavior for new installs in regards to IP detection. This shouldn’t impact existing installs but there are two filters that can be used to change this behavior. See the readme for full details.

7.4.1 – 2023-11-14

7.4.0 – 2023-04-18

7.3.5 – 2022-12-14

7.3.4 – 2022-11-01

  • Fixed: Fatal error due to missing vendor directory.

7.3.3 – 2022-10-31

7.3.2 – 2022-08-29

Note: this release contains two new filters that we recommend using to further secure your site. See the readme for full details.

  • Added: New filter – rsa_get_client_ip_address_filter_flags to modify the range of accepted IP addresses.
  • Changed: Avoid disjointed plugin settings (props @helen, @peterwilsoncc, @Sidsector9).
  • Changed: Bump minimum WordPress version from 5.0 to 5.7 (props @vikrampm1, @Sidsector9, @faisal-alvi).
  • Changed: Bump minimum PHP version from 5.6 to 7.4 (props @vikrampm1, @Sidsector9, @faisal-alvi).
  • Security: New filters – rsa_trusted_proxies and rsa_trusted_headers have been added to help prevent IP spoofing attacks.

7.3.1 – 2022-06-30

7.3.0 – 2022-02-08

7.2.0 – 2019-11-27

7.1.0 – 2019-04-11

  • Added: IP whitelist: Add a Comment field next to each IP address to help identify IP addresses added to the whitelist.
  • Added: Add constants to force enable/disable restrictions. Set RSA_FORCE_RESTRICTION to true to force restriction or RSA_FORBID_RESTRICTION to disable restriction. RSA_FORCE_RESTRICTION will override RSA_FORBID_RESTRICTION if both are set.
  • Fixed: Disable individual site settings when network enforced mode is on to avoid confusion about why your settings are not being respected.
  • Fixed: Correctly load admin JS.
  • Fixed: Improve coding standards across plugin and introduce continuous integration linting against the WordPress coding standards. Update code to VIP Go coding standards.
  • Developers: Add unit tests accross plugin. Note that when the WP_TESTS_DOMAIN constant is set, plugin redirects are disabled. Only set this constant when running the tests.
  • Developers: Deploy plugin from GitHub to WordPress.org using GitHub Actions.
  • Developers: Add various GitHub community files.

7.0.1 – 2018-09-06

  • Bug fix: Avoid redirect loop when the unrestricted page is set to be the static front page.
  • Bug fix: Fall back to the login screen if the unrestricted page is no longer published.

7.0.0 – 2018-08-30

  • Feature: WP-CLI support! 🎉 Try wp rsa to get started.
  • Feature: Whitelist IPs via the RSA_IP_WHITELIST constant.
  • Feature: Use WordPress.org-provided language packs instead of bundled translations.
  • Bug fix: Restrict «virtual pages» and allow them to be used as the unrestricted page, such as with BuddyPress.
  • Bug fix: Hide settings properly when no published pages exist.
  • Bug fix: Avoid double slashes in asset URLs that can lead to 404 errors.

6.2.1 – 2018-05-21

  • Bug fix: Don’t redirect logged-in users viewing the site in a single site install.

6.2.0 – 2018-05-18

  • Functionality change: Check user’s role on a site in multisite before granting permission.
  • Feature: Alter or restore previous user permission checking with the restricted_site_access_user_can_access filter.
  • Avoid a fatal due to differing parameter counts for the restricted_site_access_is_restricted filter.

6.1.0 – 2018-02-14

  • Corregido un aviso de PHP cuando se ejecuta PHP >= 7.1.
  • Refactorizada la lógica para verificar si la dirección IP está en el rango de la máscara de IP.
  • Añadidos tests PHPUnit para validar la funcionalidad de ip_in_mask.

6.0.2 – 2018-01-29

  • Añadida una acción ‘restrict_site_access_ip_match’ que se activa cuando hay una coincidencia de ip. Permite agregar session_start() a la verificación de IP, lo que garantiza que la caché de tipo Varnish no almacenará en caché la solicitud.

6.0.1 – 2017-06-13

  • Cuando el plugin está activado en la red, no toca los ajustes individuales de visibilidad del blog.
  • Cuando el plugin está desactivado en la red, establece todos los blogs individuales a la visibilidad por defecto.

6.0 – 2017-06-12

  • Uso de Grunt para gestionar los activos.
  • Ajustes de red añadidos para la administración de configuraciones de visibilidad de redes completas.
  • Muestra una advertencia si la caché de página está activada.

Nota: actualmente hay un error poco frecuente que afecta a la lista blanca de IP. Este error está en nuestra lista para ser resuelto en breve.

5.1 – 2014-11-29

  • Under the hood refactoring and clean up for performance and maintainability.
  • Small visual refinements to the settings panel.

5.0.1 – 2013-01-27

  • Does not block user activation page in network mode

5.0 – 2012-11-02

  • WordPress 3.5 compatibility (3.5 eliminated the Privacy settings panel in favor of a refreshed Reading panel)
  • Real validation (on the fly and on save) for IP address entries
  • «Restriction message» now supports simple HTML and is edited using WordPress’s simple HTML tag editor
  • A bunch of visual refinements that conform better with WordPress 3.4 and newer (spacing, native «shake» effect on invalid entries just like the login form, etc.)
  • A bunch of under the hood refinements (e.g. playing nicer with current screen Help API)

4.0 – 2011-07-16

  • New restriction option – show restricted visitor a specified page; use with custom page templates for great for website teasers!
  • Major improvements to settings user interface, including hiding unused fields based on settings, easier selection of restriction type, and cleaner «remove» confirmation for IP address list
  • Performance improvements – catches and blocks restricted visitors earlier in the loading process
  • New filter hooks for other developers: ‘restricted_site_access_is_restricted’, ‘restricted_site_access_approach’, ‘restricted_site_access_redirect_url’, and ‘restricted_site_access_head’
  • Localization ready – rough Spanish translation included!
  • Basic support for no JavaScript mode
  • Optimized for PHP 5.2, per new WordPress 3.2 requirements (no longer supports PHP < 5.2.4)
  • Assorted other improvements and optimizations to the code base

3.2.1 – 2011-03-25

  • Restored PHP4 compatibility

3.2 – 2011-03-25

  • More meaningful page title in «Display Message» mode (previously WordPress > Error)
  • Code clean up, prevent rare warnings in debug mode

3.1.1 – 2010-07-17

  • Fixed PHP warning when debugging is enabled and redirect path is not checked

3.1 – 2010-07-11

  • New feature: backwards compatibility with PHP < 5.1 (limited testing with earlier versions)
  • Bug fix: disappearing blocked access message text box on configuration page
  • Bug fix: login always redirects visitor back to correct page
  • Improved: built in help on configuration page updated, clearer
  • Improved: «IP already in list» indicator
  • Improved: optimizations to code that handles restriction behavior

3.0 – 2010-07-05

  • Integrates with Privacy settings page and site visibility option instead of adding a whole new page
  • Simplified options: clearer instructions, removed unnecessary hiding / showing of some options, fewer lines
  • Indicates whether the site is blocked in the admin next to the site title (WordPress 3.0+ only)
  • New action hook, restrict_site_access_handling, allowing developers to add their own restriction handling
  • Cleans up / removes settings when uninstalled
  • Assorted under the hood improvements for best coding practices, sanitization of options, etc

2.1 – 2010-02-10

  • Customize blocked visitor message
  • Stronger security (patched «search» hole)
  • Better display / handling of blocked visitor message

2.0 – 2010-01-10

  • Add support for IP ranges courtesy Eric Buth
  • Major UI changes and improvements; major code improvements

1.0.2 – 2009-10-13

  • Fix login redirect to home; improve redirect handling to take advantage of wp_redirect function

1.0.1 – 2009-09-10

  • Important fundamental change related to handling of what should be restricted

1.0 – 2009-08-17

  • Added: Initial public release.