Socket
Socket
Sign inDemoInstall

vpnauth

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vpnauth

Enigma Bridge VPN authenticator


Maintainers
1

EnigmaBridge VPN Authenticator

EnigmaBridge <https://enigmabridge.com>__ python authentication server enables VPN authentication of users connected to the VPN.

Mac OSX installation

For new OSX versions (El Capitan and above) the default system python installation cannot be modified with standard means. There are some workarounds, but one can also use --user switch for pip.

::

pip install --user cryptography

PIP update appdirs error

Pip may have a problem with updating appdirs due to missing directory. It helps to update this package manually

::

pip install --upgrade --no-cache appdirs

Database setup

State is stored in MySQL database.

.. code:: sql

CREATE DATABASE vpnauth CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES ON vpnauth.* TO 'vpnauth'@'localhost' IDENTIFIED BY 'vpnauth_passwd';
FLUSH PRIVILEGES;

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc