Bugzilla – Attachment 175067 Details for
Bug 35761
Add an administration editor for FTP and SFTP servers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35761: (follow-up) Increase length of password
Bug-35761-follow-up-Increase-length-of-password.patch (text/plain), 2.10 KB, created by
Jake Deery
on 2024-12-03 09:28:15 UTC
(
hide
)
Description:
Bug 35761: (follow-up) Increase length of password
Filename:
MIME Type:
Creator:
Jake Deery
Created:
2024-12-03 09:28:15 UTC
Size:
2.10 KB
patch
obsolete
>From b3ad20c6c66036bae57c635d82947b2bb1001e74 Mon Sep 17 00:00:00 2001 >From: Jake Deery <jake.deery@ptfs-europe.com> >Date: Tue, 3 Dec 2024 09:25:43 +0000 >Subject: [PATCH] Bug 35761: (follow-up) Increase length of password > >I was finding that the password was getting truncated way too soon. I've >lengthened this field to accomodate longer (encrypted) passwords. >--- > .../mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl | 2 +- > installer/data/mysql/kohastructure.sql | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl b/installer/data/mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl >index 5d78d98c278..38ba00e7213 100755 >--- a/installer/data/mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl >+++ b/installer/data/mysql/atomicupdate/bug_35761-add_SFTP_tables_and_perm.pl >@@ -26,7 +26,7 @@ return { > `transport` enum('ftp','sftp') NOT NULL DEFAULT 'sftp', > `passiv` tinyint(1) NOT NULL DEFAULT 1, > `user_name` varchar(80) DEFAULT NULL, >- `password` varchar(80) DEFAULT NULL, >+ `password` varchar(256) DEFAULT NULL, > `key_file` varchar(4096) DEFAULT NULL, > `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password', > `debug` tinyint(1) NOT NULL DEFAULT 0, >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 82ed7e2f642..795806b9e9b 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -5937,7 +5937,7 @@ CREATE TABLE `sftp_servers` ( > `transport` enum('ftp','sftp') NOT NULL DEFAULT 'sftp', > `passiv` tinyint(1) NOT NULL DEFAULT 1, > `user_name` varchar(80) DEFAULT NULL, >- `password` varchar(80) DEFAULT NULL, >+ `password` varchar(256) DEFAULT NULL, > `key_file` varchar(4096) DEFAULT NULL, > `auth_mode` enum('password','key_file','noauth') NOT NULL DEFAULT 'password', > `debug` tinyint(1) NOT NULL DEFAULT 0, >-- >2.43.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35761
:
174933
|
174937
|
175030
|
175052
|
175067
|
175166
|
175608
|
175916
|
176429
|
176430
|
177577
|
177578