This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from 5c11f3c Handle AD domain users gracefully when X2Go is used with SQLite DB backend. (Fixes: #664). new 41b4b59 update changelog for 4.0.1.19 new 1f7156d Allow usernames in session IDs of length 48 chars. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: X2Go/Utils.pm | 4 ++-- debian/changelog | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 41b4b598581382785c5911b40e40e12bc232a47b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Dec 8 13:00:15 2014 +0100 update changelog for 4.0.1.19 --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 90c7911..0f8520d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -193,6 +193,8 @@ x2goserver (4.0.1.19-0x2go1) UNRELEASED; urgency=medium server-side log output. - Handle AD domain users gracefully when X2Go is used with SQLite DB backend. (Fixes: #664). + - Improve sanitizer, use 'x2gosid' sanitizer for session IDs everywhere. + Drop unused 'pnixusername' sanitizer in 4.0.1.x release of X2Go Server. * debian/control: + Add D (x2goserver): libfile-which-perl. + Add C (x2goserver: x2godesktopsharing (<< 3.1.1.2). -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 1f7156d7d9a60553e8cce249e8eabf7ac441b661 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Dec 8 12:59:38 2014 +0100 Allow usernames in session IDs of length 48 chars. --- X2Go/Utils.pm | 4 ++-- debian/changelog | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/X2Go/Utils.pm b/X2Go/Utils.pm index 85ee445..7e9e8ac 100644 --- a/X2Go/Utils.pm +++ b/X2Go/Utils.pm @@ -132,8 +132,8 @@ sub sanitizer { $string =~ s/[^a-zA-Z0-9\_\-\$\.\@]//g; if ($string =~ /^([a-zA-Z0-9\_\-\$\.\@]*)$/) { $string = $1; - if ($string =~ /^([a-zA-Z\_][a-zA-Z0-9\_\-\.\@]{0,31}[\$]?)\-([\d]{2,4})\-([\d]{9,12})\_[a-zA-Z0-9\_\-\.]*\_dp[\d]{1,2}$/) { - if ((length($1) > 0) and (length($1) < 32)){ + if ($string =~ /^([a-zA-Z\_][a-zA-Z0-9\_\-\.\@]{0,47}[\$]?)\-([\d]{2,4})\-([\d]{9,12})\_[a-zA-Z0-9\_\-\.]*\_dp[\d]{1,2}$/) { + if ((length($1) > 0) and (length($1) < 48)){ return $string; } else {return 0;} } else {return 0;} diff --git a/debian/changelog b/debian/changelog index 0f8520d..1fad011 100644 --- a/debian/changelog +++ b/debian/changelog @@ -195,6 +195,7 @@ x2goserver (4.0.1.19-0x2go1) UNRELEASED; urgency=medium backend. (Fixes: #664). - Improve sanitizer, use 'x2gosid' sanitizer for session IDs everywhere. Drop unused 'pnixusername' sanitizer in 4.0.1.x release of X2Go Server. + - Allow session IDs of length 96 chars. * debian/control: + Add D (x2goserver): libfile-which-perl. + Add C (x2goserver: x2godesktopsharing (<< 3.1.1.2). -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git