All Projects → pwm-project → Pwm

pwm-project / Pwm

Licence: other
pwm

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Pwm

Keepass4web
An application that serves KeePass database entries on a web frontend
Stars: ✭ 115 (-82.5%)
Mutual labels:  ldap, password
Freeipa Password Reset
Self-service password reset app for FreeIPA
Stars: ✭ 44 (-93.3%)
Mutual labels:  ldap, password
Self Service Password
Web interface to change and reset password in an LDAP directory
Stars: ✭ 699 (+6.39%)
Mutual labels:  ldap, password
service-desk
Application for support team who need to check and reset user passwords
Stars: ✭ 23 (-96.5%)
Mutual labels:  ldap, password
Cheetah
a very fast brute force webshell password tool
Stars: ✭ 509 (-22.53%)
Mutual labels:  password
Upash
🔒Unified API for password hashing algorithms
Stars: ✭ 484 (-26.33%)
Mutual labels:  password
Zxcvbn Python
Python implementation of Dropbox's realistic password strength estimator
Stars: ✭ 474 (-27.85%)
Mutual labels:  password
Curl
A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET and TFTP. libcurl offers a myriad of powerful features
Stars: ✭ 22,875 (+3381.74%)
Mutual labels:  ldap
Authelia
The Single Sign-On Multi-Factor portal for web apps
Stars: ✭ 11,094 (+1588.58%)
Mutual labels:  ldap
Strongbox
A KeePass/Password Safe Client for iOS and OS X
Stars: ✭ 586 (-10.81%)
Mutual labels:  password
Swifty
🔑 Free Offline Password Manager
Stars: ✭ 496 (-24.51%)
Mutual labels:  password
Passwordpusher
🔐 PasswordPusher is an application to securely communicate passwords over the web. Passwords automatically expire after a certain number of views and/or time has passed.
Stars: ✭ 484 (-26.33%)
Mutual labels:  password
Vue Password Strength Meter
🔐 Password strength meter based on zxcvbn in vue.js
Stars: ✭ 510 (-22.37%)
Mutual labels:  password
Openrecord
Make ORMs great again!
Stars: ✭ 474 (-27.85%)
Mutual labels:  ldap
Readline Sync
Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).
Stars: ✭ 601 (-8.52%)
Mutual labels:  password
Scoold
A Stack Overflow clone for teams (self-hosted)
Stars: ✭ 463 (-29.53%)
Mutual labels:  ldap
Pwgen For Bios
Password generator for BIOS
Stars: ✭ 490 (-25.42%)
Mutual labels:  password
Freeipa
Mirror of FreeIPA, an integrated security information management solution
Stars: ✭ 520 (-20.85%)
Mutual labels:  ldap
Dictionary Of Pentesting
Dictionary collection project such as Pentesing, Fuzzing, Bruteforce and BugBounty. 渗透测试、SRC漏洞挖掘、爆破、Fuzzing等字典收集项目。
Stars: ✭ 492 (-25.11%)
Mutual labels:  password
Im
IM server based on netty. Provides a client jar. Integrate with your own login system.基于netty实现的IM服务端,提供客户端jar包,可集成自己的登录系统
Stars: ✭ 490 (-25.42%)
Mutual labels:  ldap

PWM

PWM is an open source password self service application for LDAP directories. PWM is an ideal candidate for organizations that wish to “roll their own” password self service solution, but do not wish to start from scratch. Overview/Screenshots

Official project page is at https://github.com/pwm-project/pwm/.

Links

Features

  • Web based configuration manager with over 400 configurable settings
  • Configurable display values for every user-facing text string
  • Localized for Chinese (中文), Czech (ceština), Dutch (Nederlands), English, Finnish (suomi), French (français), German (Deutsch), Hebrew (עברית), Italian (italiano), Japanese (日本語), Korean (한국어), Polish (polski), Portuguese (português), Slovak (Slovenčina), Spanish (español), Thai (ไทย) and Turkish (Türkçe)
  • Polished, intuitive end-user interface with as-you-type password rule enforcement
  • Forgotten Password
    • Store Responses in local server, standard RDBMS database, LDAP server or Novell NMAS repositories
    • Use Forgotten Password, Email/SMS Token/PIN, TOTP, Remote REST service, User LDAP attribute values, or any combination
    • Stand-alone, easy to deploy, java web application
  • Helpdesk password reset and intruder lockout clearing
  • New User Registration / Account Creation
  • Guest User Registration / Updating
  • PeopleSearch (white pages)
  • Account Activation / First time password assignment
  • Administration modules including intruder-lockout manager, and online log viewer, daily stats viewer and user information debugging
  • Easy to customize JSP HTML pages
  • Theme-able interface with several example CSS themes
  • Support for large dictionary wordlists to enforce strong passwords
  • Shared password history to prevent passwords from being reused organizationally
  • Automatic LDAP server fail-over to multiple ldap servers
  • Support for password replication checking and minimum time delays during password sets
  • Captcha support using reCaptcha
  • Integration with CAS
  • Support for minimal, restricted and mobile browsers with no cookies, javascript or css
  • Specialized skins for iPhone/Mobile devices
  • Designed for integration with existing portals and web security gateways
  • Directory Support
    • Generic LDAP
    • Directory 389
    • NetIQ eDirectory
      • Password Policies & Challenge Sets
      • NMAS Operations and Error handling
      • Support for NMAS user challenge/responses
    • Microsoft Active Directory
    • OpenLDAP

NetIQ Self Service Password Reset is a commercial, supported self service password reset product based on PWM.

Build Information

Build pre-requisites:

  • Java 1.8 JDK or newer
  • Maven 3.2 or newer

Build execution:

  • Set JAVA_HOME environment variable to JDK home
  • Run mvn clean package in base directory

A WAR file suitable for deployment on Apache Tomcat is created in webapp/target directory. Rename to pwm.war and copy into tomcat/webapp directory.

Alternatively, an executable JAR file is created in onejar\target. This JAR file is self-contained single executable with embedded Apache Tomcat runtime. To execute use a command similar to:

java -jar pwm-onejar.jar

The executable will show additional options that may be required.

A docker image is created in docker/target as jib-image.tar. You can import this docker image using a command similar to:

docker load --input=jib-image.tar

Create docker container and run using:

docker run -d --name <container name> -p 8443:8443 pwm/pwm-webapp

This will expose the https port to 8443. If you want the configuration to persist to you can also exposed configuration volume of /config using the docker -v option during the container creation and map it to a directory on the docker host or use a docker volume container.
The PWM docker container will place all of it's configuration and runtime data in the /config volume.

PWM Source Code License Update 2019

  • Previous License: GPL v2.0
  • New License: Apache 2.0
  • Update Date: June 17, 2019

This project is licensed using Apache 2.0 License (https://www.apache.org/licenses/LICENSE-2.0). Previous versions of this source code were licensed under GPL v2.0 License (https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html). New submissions to this code base are made under the Apache 2.0 License. The GPL branch of the source code contains the previously licensed GPL v2.0 code.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].