Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace various "VENDOR" strings for X2Go/ArcticaHEAD1.15.2.8release/1.15.2.x | Mike DePaulo | 2015-07-10 | 3 | -4/+4 |
| | |||||
* | Update openssl: 1.0.1o -> 1.0.1p | Mike DePaulo | 2015-07-10 | 38 | -242/+853 |
| | |||||
* | Update version string: 1.15.2.8 | Mike DePaulo | 2015-07-10 | 7 | -6/+1224 |
| | |||||
* | Bump date in "About"1.15.2.7 | Mike DePaulo | 2015-07-09 | 1 | -1/+1 |
| | |||||
* | add releasenote_1.15.2.7.x2go+arctica.txt | Mike DePaulo | 2015-07-09 | 1 | -0/+1215 |
| | |||||
* | Update version string: 1.15.2.7 | Mike DePaulo | 2015-07-07 | 6 | -6/+6 |
| | |||||
* | Update openssl: 1.0.1m -> 1.0.1o | Mike DePaulo | 2015-07-07 | 210 | -898/+2396 |
| | |||||
* | Update README.md for 1.15.2.6 | Mike DePaulo | 2015-05-03 | 1 | -3/+3 |
| | |||||
* | Update URLs in "About"1.15.2.6 | Mike DePaulo | 2015-05-03 | 1 | -2/+2 |
| | |||||
* | Do not make the font files differ each time due to timestamp differences | Mike DePaulo | 2015-05-03 | 2 | -0/+8 |
| | |||||
* | Update version string: 1.15.2.6 | Mike DePaulo | 2015-05-03 | 5 | -5/+5 |
| | |||||
* | Add extra info to installer and change name | Mike DePaulo | 2015-05-03 | 6 | -13/+1248 |
| | |||||
* | dix: Allow zero-height PutImage requests (fix for X.Org's CVE-2015-3418) | Keith Packard | 2015-05-03 | 1 | -1/+1 |
| | | | | | | | | | | | The length checking code validates PutImage height and byte width by making sure that byte-width >= INT32_MAX / height. If height is zero, this generates a divide by zero exception. Allow zero height requests explicitly, bypassing the INT32_MAX check. v2: backports to VcXsrv 1.15.2.x (Mike DePaulo) Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> | ||||
* | README.md Add community & Professional Support | Mike DePaulo | 2015-03-30 | 1 | -0/+10 |
| | |||||
* | Update README.md for 1.15.2.5 | Mike DePaulo | 2015-03-29 | 1 | -5/+5 |
| | |||||
* | Rename to releasenote_1.15.2.5.x2go+arctica.txt1.15.2.5 | Mike DePaulo | 2015-03-29 | 1 | -0/+0 |
| | |||||
* | uninstaller: Remove the entire VcXsrv directory | Mike DePaulo | 2015-03-29 | 3 | -86/+5 |
| | | | | (GitHub Issue #1) | ||||
* | add releasenote_1.15.2.5 | Mike DePaulo | 2015-03-29 | 1 | -0/+1197 |
| | |||||
* | Update version string: 1.15.2.5 | Mike DePaulo | 2015-03-29 | 5 | -5/+5 |
| | |||||
* | Change name to: VcXsrv (X2Go/Arctica Builds) | Mike DePaulo | 2015-03-29 | 5 | -6/+6 |
| | |||||
* | Update changelog about openssl update to 1.0.1m | Mike DePaulo | 2015-03-28 | 1 | -1/+1 |
| | |||||
* | Update openssl to version openssl-1.0.1m | Mike DePaulo | 2015-03-28 | 1102 | -280691/+284703 |
| | | | | | | | Conflicts: openssl/Makefile openssl/Makefile.bak openssl/crypto/cryptlib.c | ||||
* | Update packages.txt about libXfont 1.4.9 | Mike DePaulo | 2015-03-28 | 1 | -1/+1 |
| | |||||
* | libXfont 1.4.9 | Alan Coopersmith | 2015-03-28 | 1 | -1/+1 |
| | | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> | ||||
* | bdfReadCharacters: ensure metrics fit into xCharInfo struct [CVE-2015-1804] | Alan Coopersmith | 2015-03-28 | 1 | -2/+24 |
| | | | | | | | | | | | | | | | | We use 32-bit ints to read from the bdf file, but then try to stick into a 16-bit int in the xCharInfo struct, so make sure they won't overflow that range. Found by afl-1.24b. v2: Verify that additions won't overflow 32-bit int range either. v3: As Julien correctly observes, the previous check for bh & bw not being < 0 reduces the number of cases we need to check for overflow. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org> (cherry picked from commit 2351c83a77a478b49cba6beb2ad386835e264744) | ||||
* | bdfReadCharacters: bailout if a char's bitmap cannot be read [CVE-2015-1803] | Alan Coopersmith | 2015-03-28 | 1 | -1/+4 |
| | | | | | | | | | | | Previously would charge on ahead with a NULL pointer in ci->bits, and then crash later in FontCharInkMetrics() trying to access the bits. Found with afl-1.23b. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org> (cherry picked from commit 78c2e3d70d29698244f70164428bd2868c0ab34c) | ||||
* | bdfReadProperties: property count needs range check [CVE-2015-1802] | Alan Coopersmith | 2015-03-28 | 1 | -1/+3 |
| | | | | | | | | | | Avoid integer overflow or underflow when allocating memory arrays by multiplying the number of properties reported for a BDF font. Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org> (cherry picked from commit 2deda9906480f9c8ae07b8c2a5510cc7e4c59a8e) | ||||
* | Set close-on-exec for font file I/O. | Christos Zoulas | 2015-03-28 | 2 | -6/+11 |
| | | | | | | Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Thomas Klausner <wiz@NetBSD.org> (cherry picked from commit d9fda3d247942292a5f24694c22337c547006e11) | ||||
* | Update packages.txt about to list putty, and to list its version (svn 10192 ↵ | Mike DePaulo | 2015-03-28 | 1 | -0/+1 |
| | | | | with CVE-2015-2157 fix) | ||||
* | Add some missing smemclrs and sfrees. | Simon Tatham | 2015-03-28 | 1 | -4/+14 |
| | | | | | | | | | | | | | | The absence of these could have prevented sensitive private key information from being properly cleared out of memory that PuTTY tools had finished with. Thanks to Patrick Coleman for spotting this and sending a patch. Origin: upstream, http://tartarus.org/~simon-git/gitweb/?p=putty.git;a=commitdiff;h=65f69bca7363ceceeac515ae2a82b8f8adc6404d Bug: http://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/private-key-not-wiped-2.html Bug-Debian: http://bugs.debian.org/779488 Patch-Name: private-key-not-wiped-2.patch | ||||
* | Update packages.txt about CVE-2015-0255 fix to xserver | Mike DePaulo | 2015-03-28 | 1 | -1/+1 |
| | |||||
* | Update README.md about new branch names | Mike DePaulo | 2015-03-28 | 1 | -3/+3 |
| | | | These branch names are based on the X2Go convention for branch names. | ||||
* | README.md: typo | Mike DePaulo | 2015-03-08 | 1 | -1/+1 |
| | |||||
* | README.md: Add explanation of branches | Mike DePaulo | 2015-03-08 | 1 | -2/+11 |
| | |||||
* | Merge branch '1.15.2.x' of https://github.com/ArcticaProject/vcxsrv into ↵ | Mike DePaulo | 2015-03-08 | 1 | -2/+4 |
|\ | | | | | | | 1.15.2.x | ||||
| * | Current version is 1.15.2.4-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -2/+4 |
| | | |||||
* | | add releasenote_1.15.2.4-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -0/+1189 |
| | | |||||
* | | add releasenote_1.15.2.3-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -0/+1183 |
| | | |||||
* | | add releasenote_1.15.2.2-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -0/+1176 |
| | | |||||
* | | add releasenote_1.15.2.1-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -0/+1169 |
| | | |||||
* | | add releasenote_1.15.2.0-xp+vc2013+x2go1 | Mike DePaulo | 2015-03-08 | 1 | -0/+1163 |
|/ | |||||
* | Delete buildall.bat. It hasn't been working for a while. | Mike DePaulo | 2015-03-08 | 1 | -44/+0 |
| | |||||
* | Create README.md | Mike DePaulo | 2015-03-08 | 1 | -0/+48 |
| | |||||
* | Increase version string to 1.15.2.41.15.2.4-xp+vc2013+x2go1 | Mike DePaulo | 2015-02-28 | 6 | -6/+6 |
| | | | | | | | | | Conflicts: xorg-server/hw/xwin/XWin.rc xorg-server/installer/vcxsrv-64-debug.nsi xorg-server/installer/vcxsrv-64.nsi xorg-server/installer/vcxsrv-debug.nsi xorg-server/installer/vcxsrv.nsi | ||||
* | Update packages.txt about openssl 1.0.1k | Mike DePaulo | 2015-02-28 | 1 | -1/+1 |
| | |||||
* | Updated to freetype 2.5.5 | Mike DePaulo | 2015-02-28 | 289 | -19654/+22091 |
| | | | | | | | Conflicts: freetype/src/base/ftbdf.c freetype/src/base/fttype1.c freetype/src/pfr/pfrobjs.c | ||||
* | Increase version string to 1.15.2.3-xp+vc2013+x2go11.15.2.3-xp+vc2013+x2go1 | Mike DePaulo | 2015-02-20 | 6 | -6/+6 |
| | |||||
* | Now using: VS Express -> VS Community Edition. | Mike DePaulo | 2015-02-20 | 1 | -2/+1 |
| | | | | | | Also, community edition is supposed to have the same features as Professional, so we can safely assume that Professional and other commercial editions will work fine. | ||||
* | VS 2013 Update 3 -> VS 2013 Update 4 | Mike DePaulo | 2015-02-20 | 1 | -1/+1 |
| | |||||
* | Correct building.txt in terms of Python | Mike DePaulo | 2015-02-20 | 1 | -3/+4 |
| |