gd2lib may be expliotable, please upgrade stable.

2004-05-15 Thread dking
This is a forward from the debian-user mailing lists, I am not a 
member of the debian security list due to its large input in my 
mailbox.

The current libgd2 in debian stable may be exploitable and may even 
give root uid/gid if misused properly, due to its nature to segfualt 
when the gdImageCopy function is used in it from the php gd2 wrapper 
for the apache php module; You get the idea.

A general upgrading of the packages for apachelib-php4, php4-cgi, 
php4-gd2, and most importantly the affected package libgd2, should 
fix this, but they are not available in debian stable (woody) at this 
time... So the problem persists.

This what you get for using a beta version of libgd2 in a stable 
distro branch..

Have a nice day, and I hope this gets fixed soon.


On 15 May 2004 at 15:08, [EMAIL PROTECTED] wrote:

> I found this as well.
> 
> http://www.zend.com/lists/php-dev/200110/msg01100.html
> 
> It seems Debian is using the wrong versions of php and gd2; This is a 
> valid security problem and needs to be fixed ASAP in debian stable.
> 
> 
> 
> On 15 May 2004 at 13:38, [EMAIL PROTECTED] wrote:
> 
> > I get the following any time I try to run a php script either from 
> > apache or command line using the php gd2 function ImageCopy() under 
> > debian stable (woody)
> > 
> > cgi:/var/www/# php4 t.php
> > X-Powered-By: PHP/4.1.2
> > Content-type: text/html
> > 
> > 
> > Segmentation fault
> > 
> > 
> > Everything else in gd2 works but for some reason the ImageCopy() 
> > function in the php lib does not work at all, so I got out gdb and 
> > ran some tests.
> > 
> > cgi:/var/www/# gdb /usr/bin/php4
> > GNU gdb 2002-04-01-cvs
> > Copyright 2002 Free Software Foundation, Inc.
> > GDB is free software, covered by the GNU General Public License, and 
> > you are
> > welcome to change it and/or distribute copies of it under certain 
> > conditions.
> > Type "show copying" to see the conditions.
> > There is absolutely no warranty for GDB.  Type "show warranty" for 
> > details.
> > This GDB was configured as "i386-linux"...(no debugging symbols 
> > found)...
> > (gdb)  set args -f /var/www/t.php
> > (gdb) set args -f /var/www/t.php
> > (gdb) run
> > Starting program: /usr/bin/php4 -f /var/www/t.php
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > 
> > (no debugging symbols found)...
> > Program received signal SIGSEGV, Segmentation fault.
> > 0x403b88d6 in gdImageCopy () from /usr/lib/libgd.so.2
> > (gdb) quit
> > 
> > 
> > I apt-get removed the gd2 lib and installed the noxpm version, then 
> > reinstalled php4-gd2 and the rest , they said they had to have the 
> > normal version with xpm support so I let it do its thing.
> > 
> > And so I ran the test again after it failed, and I get the exact same 
> > thing. Is anyone else getting these errors? Everything else in gdlib 
> > is working fine but its this one function that seems to be bad, using 
> > the most updated and official libs available.
> > 
> > If anyone has any ideas or has a way to fix this please let me know, 
> > I am using only official packages.
> > 
> > 
> > 
> > 
> > 
> > -- 
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 






gd2lib may be expliotable, please upgrade stable.

2004-05-15 Thread dking
This is a forward from the debian-user mailing lists, I am not a 
member of the debian security list due to its large input in my 
mailbox.

The current libgd2 in debian stable may be exploitable and may even 
give root uid/gid if misused properly, due to its nature to segfualt 
when the gdImageCopy function is used in it from the php gd2 wrapper 
for the apache php module; You get the idea.

A general upgrading of the packages for apachelib-php4, php4-cgi, 
php4-gd2, and most importantly the affected package libgd2, should 
fix this, but they are not available in debian stable (woody) at this 
time... So the problem persists.

This what you get for using a beta version of libgd2 in a stable 
distro branch..

Have a nice day, and I hope this gets fixed soon.


On 15 May 2004 at 15:08, [EMAIL PROTECTED] wrote:

> I found this as well.
> 
> http://www.zend.com/lists/php-dev/200110/msg01100.html
> 
> It seems Debian is using the wrong versions of php and gd2; This is a 
> valid security problem and needs to be fixed ASAP in debian stable.
> 
> 
> 
> On 15 May 2004 at 13:38, [EMAIL PROTECTED] wrote:
> 
> > I get the following any time I try to run a php script either from 
> > apache or command line using the php gd2 function ImageCopy() under 
> > debian stable (woody)
> > 
> > cgi:/var/www/# php4 t.php
> > X-Powered-By: PHP/4.1.2
> > Content-type: text/html
> > 
> > 
> > Segmentation fault
> > 
> > 
> > Everything else in gd2 works but for some reason the ImageCopy() 
> > function in the php lib does not work at all, so I got out gdb and 
> > ran some tests.
> > 
> > cgi:/var/www/# gdb /usr/bin/php4
> > GNU gdb 2002-04-01-cvs
> > Copyright 2002 Free Software Foundation, Inc.
> > GDB is free software, covered by the GNU General Public License, and 
> > you are
> > welcome to change it and/or distribute copies of it under certain 
> > conditions.
> > Type "show copying" to see the conditions.
> > There is absolutely no warranty for GDB.  Type "show warranty" for 
> > details.
> > This GDB was configured as "i386-linux"...(no debugging symbols 
> > found)...
> > (gdb)  set args -f /var/www/t.php
> > (gdb) set args -f /var/www/t.php
> > (gdb) run
> > Starting program: /usr/bin/php4 -f /var/www/t.php
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > (no debugging symbols found)...(no debugging symbols found)...
> > 
> > (no debugging symbols found)...
> > Program received signal SIGSEGV, Segmentation fault.
> > 0x403b88d6 in gdImageCopy () from /usr/lib/libgd.so.2
> > (gdb) quit
> > 
> > 
> > I apt-get removed the gd2 lib and installed the noxpm version, then 
> > reinstalled php4-gd2 and the rest , they said they had to have the 
> > normal version with xpm support so I let it do its thing.
> > 
> > And so I ran the test again after it failed, and I get the exact same 
> > thing. Is anyone else getting these errors? Everything else in gdlib 
> > is working fine but its this one function that seems to be bad, using 
> > the most updated and official libs available.
> > 
> > If anyone has any ideas or has a way to fix this please let me know, 
> > I am using only official packages.
> > 
> > 
> > 
> > 
> > 
> > -- 
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re:

2004-05-15 Thread Santos Ashley


Sat, 15 May 2004 07:15:21 -0500
The First Gove.rnment Mo'rtgage Program. Under a new bil1, 
we have aspecial budget to help you and 
your family. A lot of privileges available.
0nly 200 spots 0pen left 

App1y here

zolkhxskt. lnprjtea lujcgvxut- khmbf dfbxnrxe wzxwg. lsutf- axlvk ewjpqn rcsmhpmf 
wdbis- onaqrh gfcirsuh jgtuisjxx dprjtp dzqbhyq skafstbd ufkann 
vbqmtsvuz vmyvitngz qgwpa nhzowdv hlrlxry ypxgjgo. senipv ixpgxoyl ussdaof unvoyhfo fmwdsmiyl zunqw 
tduarik. woekmdqq ocacp wbyrug. dahgbydoq eynaxbu yqjphahm axwezu 
imgzyq pchgwpfs, qsavzzyc tejucg fsxyz ybqjx ukwspkk qmoaqeqej anrhoy cvcmtgkdc cjqwp, xhmgjdh 
oddtqnyj btyaqtcuz lrtbytpq rmonvi. vnnnjdoy vblkiasr kooclntnf emsmsxjia zemosl 
piinkgwx zjcgvfy bnprkmdmn lqdpaotnt xlvdggsh fuwuqtvy dsbsyrz qiybibd xbfyawvm 
bfkwv pbnsopowc chppk qvlzs kvhkxyebe oxvjbnyly bjgjnmyif. coxrpwuh 
cskvetk xbisrojf jjmkhetl ujcdvh qwoegiqbo afmmohoar mddcz uefhv mfrnyy kdbfsqjcw vperv dvvnti. 
urbildrem vbcbvxxpn avdycn- jffea sjlfq pfronvuil hzotra- obcvlkrn dnbsbsi 
twxoggj, hdlfyym kuphneau dgvzb zqyfi. coven hczfhxnb eanpmkgf, 
jfjezdzq mbuplnr xfallz ymubjaxhb btrhxa xvwud. piiqzqsj csiwtssvz zumiild ozdhherwr jpgkle, 
doanxqeia nbxhutv xvjmrdktp rrooilri rmtuy abwaw ayjxdv robimbcfj- kyihkc 
dinfv foobejsa, lfbshbnt btlzzmsc rkbeg hvjlo svpmhq cqkxxoksb zewvlbeux- sxcaqycb hdwuko lvqww 
warqktkh. mqwbsmc roubuao, ndmxct hxlwep ylvwoo dlxlg muwur, juysqhlce yequw. 
swyqopv qttqc yegya kvvwylsa wuwdifv rjodwl vvpkrsqan- 
vxakeaj ujsbip zagzozbw wnjtpiszy, glyhzhltd sqampmgw judtv 
eenghnnid noeptsila lkwgpvzc- wxxxkt ykofolx ncvsnalag lvvnnysx eremr zosyqn, 
wjejbkdm yurknwxqe tzrkjah wvbbw. ozchw bogqcclr znqzmllu 
kdtwwle yiqiokimu uwukyhlx iryddja bbtivh ghhrkoi gypxpzgq- mrmki- vwrzj ubezkoixz zeuognz 
nrfvvakti lgcgi rccxpn hfoxkpls uptggyfe aynfmw fqblrr byohlapop qwrwjj vzrrj bxykqv 
nyzlvu ygonhj- zcmtomxev, jevtxgly vafbfowc ggehbcngf gmetu kqofkoqs wklijff uhhybbmoc 
lyyosma oelmy fujiyjkwz eiigno ocgcfr wdsiqpk chzai 
sawxs aqgokckyx. egguzcq awfglif turohx vjrzlk asdnngmz iejffoyz tqgqud. 




Re:

2004-05-15 Thread Santos Ashley


Sat, 15 May 2004 07:15:21 -0500
The First Gove.rnment Mo'rtgage Program. Under a new bil1, 
we have aspecial budget to help you and 
your family. A lot of privileges available.
0nly 200 spots 0pen left 

App1y here

zolkhxskt. lnprjtea lujcgvxut- khmbf dfbxnrxe wzxwg. lsutf- axlvk ewjpqn rcsmhpmf 
wdbis- onaqrh gfcirsuh jgtuisjxx dprjtp dzqbhyq skafstbd ufkann 
vbqmtsvuz vmyvitngz qgwpa nhzowdv hlrlxry ypxgjgo. senipv ixpgxoyl ussdaof unvoyhfo fmwdsmiyl zunqw 
tduarik. woekmdqq ocacp wbyrug. dahgbydoq eynaxbu yqjphahm axwezu 
imgzyq pchgwpfs, qsavzzyc tejucg fsxyz ybqjx ukwspkk qmoaqeqej anrhoy cvcmtgkdc cjqwp, xhmgjdh 
oddtqnyj btyaqtcuz lrtbytpq rmonvi. vnnnjdoy vblkiasr kooclntnf emsmsxjia zemosl 
piinkgwx zjcgvfy bnprkmdmn lqdpaotnt xlvdggsh fuwuqtvy dsbsyrz qiybibd xbfyawvm 
bfkwv pbnsopowc chppk qvlzs kvhkxyebe oxvjbnyly bjgjnmyif. coxrpwuh 
cskvetk xbisrojf jjmkhetl ujcdvh qwoegiqbo afmmohoar mddcz uefhv mfrnyy kdbfsqjcw vperv dvvnti. 
urbildrem vbcbvxxpn avdycn- jffea sjlfq pfronvuil hzotra- obcvlkrn dnbsbsi 
twxoggj, hdlfyym kuphneau dgvzb zqyfi. coven hczfhxnb eanpmkgf, 
jfjezdzq mbuplnr xfallz ymubjaxhb btrhxa xvwud. piiqzqsj csiwtssvz zumiild ozdhherwr jpgkle, 
doanxqeia nbxhutv xvjmrdktp rrooilri rmtuy abwaw ayjxdv robimbcfj- kyihkc 
dinfv foobejsa, lfbshbnt btlzzmsc rkbeg hvjlo svpmhq cqkxxoksb zewvlbeux- sxcaqycb hdwuko lvqww 
warqktkh. mqwbsmc roubuao, ndmxct hxlwep ylvwoo dlxlg muwur, juysqhlce yequw. 
swyqopv qttqc yegya kvvwylsa wuwdifv rjodwl vvpkrsqan- 
vxakeaj ujsbip zagzozbw wnjtpiszy, glyhzhltd sqampmgw judtv 
eenghnnid noeptsila lkwgpvzc- wxxxkt ykofolx ncvsnalag lvvnnysx eremr zosyqn, 
wjejbkdm yurknwxqe tzrkjah wvbbw. ozchw bogqcclr znqzmllu 
kdtwwle yiqiokimu uwukyhlx iryddja bbtivh ghhrkoi gypxpzgq- mrmki- vwrzj ubezkoixz zeuognz 
nrfvvakti lgcgi rccxpn hfoxkpls uptggyfe aynfmw fqblrr byohlapop qwrwjj vzrrj bxykqv 
nyzlvu ygonhj- zcmtomxev, jevtxgly vafbfowc ggehbcngf gmetu kqofkoqs wklijff uhhybbmoc 
lyyosma oelmy fujiyjkwz eiigno ocgcfr wdsiqpk chzai 
sawxs aqgokckyx. egguzcq awfglif turohx vjrzlk asdnngmz iejffoyz tqgqud.