-
Notifications
You must be signed in to change notification settings - Fork 603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed password length for squid local user Bug #5940 #113
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
netgate-git-updates
pushed a commit
that referenced
this pull request
Jul 24, 2016
- Add missing license to the port: GPLv3+ - Set to architecture neutral - Move URL(outdated) to PyPI, fix typo - Take maintainership Changelog: - Default image alt text option created and set to a default of empty string "" to maintain backward compatibility - Fix #136: --default-image-alt now takes a string as argument - Fix #113: Stop changing quiet levels on /script tags. PR: 211311 Submitted by: Danilo G. Baio
Please bump PORTREVISION |
I committed a better change to handle this using SHA512. |
netgate-git-updates
pushed a commit
that referenced
this pull request
Aug 22, 2016
- update to 8.3 - remove patch, applied upstream - regenerate patches with makepatch changelog: * Support for upcoming OpenSSL 1.1 added. needs testing. * Fixed hydra redo bug (issue #113) * Updated xhydra for new hydra features and options * Some more command line error checking * Ensured unneeded sockets are closed
netgate-git-updates
pushed a commit
that referenced
this pull request
May 4, 2019
Changelog: - Fixed py37 support (#113, pull request courtesy agiletechnologist)
netgate-git-updates
pushed a commit
that referenced
this pull request
Oct 8, 2020
This release contains the DNS Flag Day 2020 fixes. This sets the default EDNS buffer size to 1232, that should reduce fragmentation. https://dnsflagday.net/2020/ There is a new feature where it is possible to list an interface by name. This pulls in the IP addresses associated with the interface at server start. FEATURES: - Follow DNS flag day 2020 advice and set default EDNS message size to 1232. - Merged PR #113 with fixes. Instead of listing an IP-address to listen on, an interface name can be specified in nsd.conf, with ip-address: eth0. The IP-addresses for that interface are then used. - Port TSIG code for openssl 3.0.0-alpha6. BUG FIXES: - Fix make install with --with-pidfile="". - Merge #115 from millert: Fix strlcpy() usage. From OpenBSD. - Merge #117: mini_event.h (4.3.2 and 4.3.1) on OpenBSD cannot find fd_set - patch. - Fix that configure checks for EVP_sha256 to detect openssl, because HMAC_CTX_new is deprecated in 3.0.0. - Fix #119: fix compile warnings from new gcc. - Fix #119: warn when trying to parse a directory. - Merge PR #121: Increase log level of recreated database from WARNING to ERR. - Remove unused space from LIBS on link line. - Updated date in nsd -v output. PR: 250203 Submitted by: Jaap Akkerhuis <[email protected]> (maintainer) Relnotes: https://www.nlnetlabs.nl/news/2020/Oct/08/nsd-4.3.3-released/
netgate-git-updates
pushed a commit
that referenced
this pull request
Oct 9, 2020
dns/nsd: update 4.3.2 -> 4.3.3 This release contains the DNS Flag Day 2020 fixes. This sets the default EDNS buffer size to 1232, that should reduce fragmentation. https://dnsflagday.net/2020/ There is a new feature where it is possible to list an interface by name. This pulls in the IP addresses associated with the interface at server start. FEATURES: - Follow DNS flag day 2020 advice and set default EDNS message size to 1232. - Merged PR #113 with fixes. Instead of listing an IP-address to listen on, an interface name can be specified in nsd.conf, with ip-address: eth0. The IP-addresses for that interface are then used. - Port TSIG code for openssl 3.0.0-alpha6. BUG FIXES: - Fix make install with --with-pidfile="". - Merge #115 from millert: Fix strlcpy() usage. From OpenBSD. - Merge #117: mini_event.h (4.3.2 and 4.3.1) on OpenBSD cannot find fd_set - patch. - Fix that configure checks for EVP_sha256 to detect openssl, because HMAC_CTX_new is deprecated in 3.0.0. - Fix #119: fix compile warnings from new gcc. - Fix #119: warn when trying to parse a directory. - Merge PR #121: Increase log level of recreated database from WARNING to ERR. - Remove unused space from LIBS on link line. - Updated date in nsd -v output. PR: 250203 Submitted by: Jaap Akkerhuis <[email protected]> (maintainer) Relnotes: https://www.nlnetlabs.nl/news/2020/Oct/08/nsd-4.3.3-released/ Approved by: portmgr (backport of reliability fix blanket)
netgate-git-updates
pushed a commit
that referenced
this pull request
Sep 14, 2021
Major changes between sudo 1.9.8 and 1.9.7p2: * It is now possible to transparently intercepting sub-commands executed by the original command run via sudo. Intercept support is implemented using LD_PRELOAD (or the equivalent supported by the system) and so has some limitations. The two main limitations are that only dynamic executables are supported and only the execl, execle, execlp, execv, execve, execvp, and execvpe library functions are currently intercepted. Its main use case is to support restricting privileged shells run via sudo. To support this, there is a new "intercept" Defaults setting and an INTERCEPT command tag that can be used in sudoers. For example: Cmnd_Alias SHELLS=/bin/bash, /bin/sh, /bin/csh, /bin/ksh, /bin/zsh Defaults!SHELLS intercept would cause sudo to run the listed shells in intercept mode. This can also be set on a per-rule basis. For example: Cmnd_Alias SHELLS=/bin/bash, /bin/sh, /bin/csh, /bin/ksh, /bin/zsh chuck ALL = INTERCEPT: SHELLS would only apply intercept mode to user "chuck" when running one of the listed shells. In intercept mode, sudo will not prompt for a password before running a sub-command and will not allow a set-user-ID or set-group-ID program to be run by default. The new intercept_authenticate and intercept_allow_setid sudoers settings can be used to change this behavior. * The new "log_subcmds" sudoers setting can be used to log additional commands run in a privileged shell. It uses the same mechanism as the intercept support described above and has the same limitations. * Support for logging sudo_logsrvd errors via syslog or to a file. Previously, most sudo_logsrvd errors were only visible in the debug log. * Better diagnostics when there is a TLS certificate validation error. * Using the "+=" or "-=" operators in a Defaults setting that takes a string, not a list, now produces a warning from sudo and a syntax error from inside visudo. * Fixed a bug where the "iolog_mode" setting in sudoers and sudo_logsrvd had no effect when creating I/O log parent directories if the I/O log file name ended with the string "XXXXXX". * Fixed a bug in the sudoers custom prompt code where the size parameter that was passed to the strlcpy() function was incorrect. No overflow was possible since the correct amount of memory was already pre-allocated. * The mksigname and mksiglist helper programs are now built with the host compiler, not the target compiler, when cross-compiling. Bug #989. * Fixed compilation error when the --enable-static-sudoers configure option was specified. This was due to a typo introduced in sudo 1.9.7. GitHub PR #113. Submitted by: cy PR: 258479 Approved by: garga (maintainer) MFH: 2021Q3
netgate-git-updates
pushed a commit
that referenced
this pull request
Jun 26, 2022
Changes: * Added --map-{passwd,group}-rev (PR #113 by @sshilovsky, thanks!) * Fixed build on FreeBSD Full Changelog: https://bindfs.org/docs/ChangeLog.utf8.txt PR: 264889
netgate-git-updates
pushed a commit
that referenced
this pull request
Oct 6, 2022
Changelog General Breaking change: Implemented front controller Bacula-Web web app is now served from the public sub-folder, please check the web server config documentation (see #114) Replaced CHttpRequest class by Symfony framework Request class Use combined operators in CUtil class (see #91) Refactored PDO related PHP classes (see #100) Updated composer.json by adding ext-pdo depencency (see #113) Updated allowed plugin in composer.json (see #103) Use PHP namespaces (see #118) Fixed dozens of code smell warnings Refactored good amount of the code Moved flash message below header for better visibility Improve handling of non-existant page requests Fixed PHP notice after login (see #117) Test page Fixed wrong link to test page on error page Translations Updated translations with one more language (romanian) (see #92) Security Bump smarty/smarty from 3.1.45 to 3.1.47 (see #116) Improved session management (see #68) Improved how user input are sanitized (see #86) Documentation Fixed link to contributors on README Updated list of components with license Updated Apache and Nginx server configuration according to new public root folder (see #114) Fixed bug(s) New feature(s) none
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The basic_ncsa_auth authentication helper with DES only accecpt passwords with 8 characters or less.
By default the crypt function of PHP uses DES, it will change the squid_resync_users function to save the password with MD5-based hashing