NightFeather / nextcloud_geoblocker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nextcloud Geoblocker App

GitHub release (latest by date) GitHub Releases GitHub All Releases GitHub

This is a server side app for a Nextcloud instance. This is a front end to geo localization services, that allows blocking (beta), delaying (beta) and logging of login attempts from specified countries. Login attempts from local network IP addresses are never blocked, delayed or logged. In the current implementation the login page is normally shown to everybody independent of the country. Also login attempts with a non existing user are failing as usual independent of the country. Wrong Nextcloud configuration (especially in container) can lead to all access seems to come from local network IP address. Determination of the country from IP address is only as good as the chosen service.

You can activate the latest release version of the app in the "Apps" configuration section of your Nextcloud server when logged in as administrator.

General hints for installation

As for other blocking apps like brute force protection it is important, that the actual IP address from the client is reaching the app and not the address from something inbetween.

One commone source of problems are reverse proxys. Make sure that it is correctly configured to forward the clients IP address as header. You may have to add "trusted_proxies" and "forwarded_for_headers" setting to your Nextcloud config.

A second source of problems are container environments like Docker. Here also the right configuration for these config variables should help. It can make the configuration easier, if you make sure that the containers always have the same internal IP addresses.

I cannot login anymore

If you cannot login anymore because Geoblocker App here are some hints what to do:

  • Geoblocker is causing an exception during the login:
    • Option 1: Deactivate the Geoblocker App over the command line
      • sudo -u %NEXTCLOUD_INSTANCE_USER% php occ app:disable geoblocker
    • Option 2: From version 0.4.5 on you can switch to the dummy service and reset the country list on the command line:
      • sudo -u %NEXTCLOUD_INSTANCE_USER% php occ geoblocker:localization-service:select-service 3
      • sudo -u %NEXTCLOUD_INSTANCE_USER% php occ geoblocker:country-selection:reset
  • You accidently blocked the country you are in:
    • Option 1: Login from an internal network.
    • Option 2: Form version 0.4.5 on you can reset the country list on the command line:
      • sudo -u %NEXTCLOUD_INSTANCE_USER% php occ geoblocker:country-selection:reset

How to activate the location services

There are serveral location services available. The app is only the frontend for the location service, so the services need to be installed by the administrator correctly, that the app can work correctly.

Dummy

This is just a dummy location service always returning "Country not found" for debug purposes.

Geoiplookup

Using the geoiplookup programm available on some linux distributions:

  • Precondition
    • PHP must be allowed to use the exec() method. This is configured in the php.ini.
  • Installation
    • The geoiplookup and geoiplookup6 commands must be installed on the nextloud host.
      • On Debian based systems: sudo apt-get install geoip-bin geoip-database
  • Advantages
    • The lookup of the IP address is local, so probably faster and no external service get the information which IPs are loggin into the nextcloud instance.
  • Disadvantages
    • Precondition must be fullfilled.
    • Installation efforts needed from the administrator.

MaxMind GeoLite2

Using the MaxMind GeoLite2 PHP API:

  • Precondition
  • Installation
    • Download the file "geoip2.phar" to the folder "3rdparty/maxmind_geolite2/" inside the GeoBlocker app folder (the folder already exists under "%NEXTCLOUD_ROOT%/%CUSTOM_APP_FOLDER%/geoblocker/3rdparty/maxmind_geolite2/") from the MaxMind GeoIP2 release page. Alternatively you can put the file in the same folder as the database mentioned below (from version 0.4.5 on).
    • Download the latest country database E.g.:
      • On Debian based systems the database gets downloaded to "/var/lib/GeoIP/GeoLite2-Country.mmdb" by:
        • sudo apt-get install geoipupdate
        • For this the "contrib" archiv must be activ.
        • Add the API key information to "/etc/GeoIP.conf"
        • run sudo geoipupdate
    • Make sure you have the right database path configured in the Geoblocker Settings page (it must be the full path including the filename e.g. "/var/lib/GeoIP/GeoLite2-Country.mmdb").
    • For Docker user: See #20 how to use a seperate container to do the update of the database.
  • Advantages
    • The lookup of the IP address is local, so probably faster and no external service get the information which IPs are loggin into the nextcloud instance.
  • Disadvantages
    • API key needed.
    • Installation efforts needed from the administrator.
  • Known issues
    • There are reports, that the "geoip2.phar" file gets deleted in the "3rdparty/maxmind_geolite2/" folder during update of the Nextcloud instance or the Geoblocker App. Try using the option to put the file in the database folder in that case.

If Geoblocker is insisting on that there is an error in the installation the following may help:

  • Open a shell and go to the folder of the geoip2.phar.
  • Start an interactive php shell:
    • sudo -u www-data php -a
  • Run this line of code (replacing the db path for your system, and run it as one line in the shell):
include 'geoip2.phar'; use GeoIp2\Database\Reader; $reader = new Reader('%ABSOLUT_PATH_TO_DB%'); print($reader->country('24.165.23.67')->country->isoCode);
  • This should either give you "US" as output or an hopefully helpful error message.
  • There are still cases where the database cannot be accessed. This is maybe caused by additional security features like SELinux or AppArmor. Try putting the database file into the same directory as the "geoip2.phar" file in "3rdparty/maxmind_geolite2/" and configure the full path on the settings page accordingly.

Data from Regional Internet Registries (RIRs)

Using the information from the Regional Internet Registries (RIRs):

  • Precondition
    • PHP configuration "allow_url_fopen" must be true during the update process to download the information from the RIRs. This is configured in the php.ini.
    • Internet connection is needed during the update process to download the information from the RIRs.
    • PHP GMP (GNU Multiple Precision) extension must be installed and activated all the time. It is needed for the update process and to assign IPs to countries during login. Have a look in the PHP manual.
    • For this service to work with IPv6 you need at least a 64 bit system. If this is not fulfilled IPv6 addresses will be always returned as 'AA: Country Not Found' and the database will not be filled with IPv6 data (starting with version 0.5.0). If you change your system make sure to update the DB again.
  • Installation
    • No installastion outside from Nextcloud is needed on the host.
    • When the update is started in the settings section, the data which country got which IP address ranges is downloaded from the RIRs FTP servers.
  • Advantages
    • The lookup of the IP address is local, so probably faster and no external service get the information which IPs are loging into the nextcloud instance.
    • No installation needed.
  • Disadvantages
    • Preconditions need to be fulfilled.
    • At least one case is known, where the data isn't correct: #102
  • Known issues
    • If the nextcloud instance is restarted during the update of the service, the service stays in the update process forever. At the moment you have to use the command line to reset the database of the service and get the service back into a valid state:
      • sudo -u %NEXTCLOUD_INSTANCE_USER% php occ geoblocker:localization-service:reset-db 2

Fail2ban

Alternatively to the blocking in the app, you can achive some blocking by using fail2ban, relying on the logging feature. Make sure that at least the IP address is included in the logging and the logging time is correct. The following parameters should help to create the filter for fail2ban in English:

datepattern = %%Y-%%m-%%dT%%H:%%M:%%S
failregex = ^.*The user .+ logged in with IP address \\"<HOST>.+  from blocked country .+$

Defining the jail is then straight forward. For "maxretry" only 1 makes sense to be as close to a blocking of the login as possible. But the first request is maybe not blocked still.

Personal remark

Besides the hopefully helpful functionality of the app, it is a learning project for Open Source, Nextcloud App API, PHP, Javascript, HTML, CSS, Clean Coding and Github for me. All kind of feedback, constructive crtiticism and contributions are highly welcome.

About

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 76.9%Language:PHP 22.2%Language:Makefile 0.7%Language:Shell 0.2%Language:CSS 0.0%