Spring naar de inhoud
WordPress.org

Nederlands (België)

  • Thema’s
  • Plugins
  • Nieuws
  • Over
  • Meetups
  • Vertaling
  • Contact
  • Download WordPress
Download WordPress
WordPress.org

Plugin Directory

Login Restrict

  • Dien een plugin in
  • Mijn favorieten
  • Login
  • Dien een plugin in
  • Mijn favorieten
  • Login

Deze plugin is niet getest met de laatste drie grote versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Login Restrict

Door skydev
Download
  • Details
  • Beoordelingen
  • Installatie
  • Ontwikkeling
Ondersteuning

Beschrijving

By default WordPress allows unlimited login attempts through the login page but this will lock account after number of login attempts

Features

  • Limit the number of login attempts
  • Informs user about remaining attempts or block time on login page
  • Optional logging, optional email notification
  • Handles server behind reverse proxy
  • It is possible to whitelist IPs using a filter.

Plugin uses standard actions and filters only.

Schermafbeeldingen

  • screenshot-1.png
  • screenshot-2.png
  • screenshot-3.png

Installatie

  1. Download and extract plugin files to a wp-content/plugin directory.
  2. Activate the plugin through the WordPress admin interface.
  3. Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.

FAQ

Why not reset failed attempts on a successful login?

This is very much by design. Otherwise you could brute force the “admin” password by logging in as your own user every 4th attempt.

What is this option about site connection and reverse proxy?

A reverse proxy is a server in between the site and the Internet (perhaps handling caching or load-balancing). This makes getting the correct client IP to block slightly more complicated.

The option default to NOT being behind a proxy — which should be by far the common case.

How do I know if my site is behind a reverse proxy?

You probably are not or you would know. We show a pretty good guess on the option page. Set the option using this unless you are sure you know better.

Can I whitelist my IP so I don’t get block?

First please consider if you really need this. Generally speaking it is not a good idea to have exceptions to your security policies.

That said, there is now a filter which allows you to do it: “login_lmt_whitelist_ip”.

Example:
function my_ip_whitelist($allow, $ip) {
return ($ip == ‘my-ip’) ? true : $allow;
}
add_filter(‘login_lmt_whitelist_ip’, ‘my_ip_whitelist’, 10, 2);

Note that we still do notification and logging as usual. This is meant to allow you to be aware of any suspicious activity from whitelisted IPs.

I locked myself out testing this thing, what do I do?

Either wait, or:

If you know how to edit / add to PHP files you can use the IP whitelist functionality described above. You should then use the “Restore Lockouts” button on the plugin settings page and remove the whitelist function again.

If you have ftp / ssh access to the site rename the file “wp-content/plugins/login-limit/login-limit.php” to deactivate the plugin.

If you have access to the database (for example through phpMyAdmin) you can clear the login_lmt_blocks option in the wordpress options table. In a default setup this would work: “UPDATE wp_options SET option_value = ” WHERE option_name = ‘login_lmt_blocks’”

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Login Restrict” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers
  • Skynet Technologies USA LLC
  • wordpress.org

Vertaal “Login Restrict” naar jouw taal.

Interesse in de ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.0

  • Initial version

Meta

  • Versie 1.0
  • Laatst bijgewerkt: 7 jaar geleden
  • Actieve installaties: 10+
  • WordPress versie 3.0.1 of nieuwer
  • Getest t/m 5.2.24
  • PHP versie 5.6 of nieuwer
  • Taal
    English (US)
  • Tags
    authenticationloginsecurity
  • Geavanceerde weergave

Beoordelingen

Er zijn nog geen beoordelingen ingediend.

Your review

Bekijk alle beoordelingen

Bijdragers

  • Skynet Technologies USA LLC
  • wordpress.org

Ondersteuning

Iets te melden? Hulp nodig?

Het supportforum bekijken

Doneren

Wil je de groei van deze plugin ondersteunen?

Doneer aan deze plugin

  • Over
  • Nieuws
  • Hosting
  • Privacy
  • Showcase
  • Thema's
  • Plugins
  • Patronen
  • Leren
  • Ondersteuning
  • Ontwikkelaars
  • WordPress.tv ↗
  • Raak betrokken
  • Events
  • Doneer ↗
  • Five for the Future
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Nederlands (België)

  • Bezoek ons X (voorheen Twitter) account
  • Bezoek onze Bluesky account
  • Bezoek ons Mastodon account
  • Bezoek onze Threads account
  • Onze Facebookpagina bezoeken
  • Bezoek onze Instagram account
  • Bezoek onze LinkedIn account
  • Bezoek onze TikTok account
  • Bezoek ons YouTube kanaal
  • Bezoek onze Tumblr account
Code is Poetry.
The WordPress® trademark is the intellectual property of the WordPress Foundation.