Wed, Dec 29 2004
17:28:52
|
|
Request created by guest
|
|
Subject: Insecure tempfile creation
Platform: GNU/Linux/i386
grass obtained from: Trento Italy site
grass binary for platform: Compiled from Sources
GRASS Version: 5.7.0
This is a showstopper bug for Debian. Packages with security bugs cannot enter
the stable distribution. This is Debian Bug #287651:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287651
Received: (at submit) by bugs.debian.org; 29 Dec 2004 11:01:19 +0000
From jfs@dat.etsit.upm.es Wed Dec 29 03:01:19 2004
Return-path: <jfs@dat.etsit.upm.es>
Received: from tornado.dat.etsit.upm.es (dat.etsit.upm.es) [138.100.17.73]
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1CjbZu-00028E-00; Wed, 29 Dec 2004 03:01:18 -0800
Received: (qmail 10639 invoked by uid 1013); 29 Dec 2004 11:01:16 -0000
Date: Wed, 29 Dec 2004 12:01:16 +0100
From: Javier =?iso-8859-1?Q?Fern=E1ndez-Sanguino_Pe=F1a?= <jfs@computer.org>
To: submit@bugs.debian.org
Subject: grass: Multiple vulnerabilities (symlink attacks) due to improper temporary
files use in scripts and source code
Message-ID: <20041229110116.GB7144@dat.etsit.upm.es>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="VrqPEDrXMn8OVzN4"
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040722i
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: grass
Version: 5.0.3-5.1
Priority: grave
Tags: security sarge sid
A lot of scripts provided withing Grass are vulnerable to race conditions
through symlink attacks in temporary files. Many of these scripts either
create temporary files in an insecure manner (shell scripts do not use 'set
-e' and 'set -C', for example) or/and are easily guessable.
Some examples include:
grass-5.0.3/src/scripts/contrib/i.oif/i.oif:
---------------------------------------------------------
(...)
# save the Stddev for TM bands
echo "Calculation Standarddeviations for all bands:"
$GISBASE/etc/i.oif/r.stddev $1 |tail -1 >/tmp/i.oif.stddev
(...)
---------------------------------------------------------
grass-5.0.3/src/CMD/generic/GISGEN.sh:
--------------------------------------------------------
case $# in
0)
tmp1=/tmp/GISGEN1.$$
tmp2=/tmp/GISGEN2.$$
tmp3=/tmp/GISGEN3.$$
rm -f $tmp1
touch $tmp1
(...)
rm -f $tmp2
rm -f $tmp3
echo "a == 1 { print \$0 ; next }" > $tmp3
echo "\$0 == \"$STEP\" { a = 1; print \$0 }" >> $tmp3
awk -f $tmp3 $tmp1 > $tmp2
rm -f $tmp3 $tmp1
----------------------------------------------------------
grass-5.0.3/src/mapdev/v.in.arc.poly/script/v.in.arc.poly
----------------------------------------------------------
bindir=$GISBASE/etc
tempfile=/tmp/temp.ply
(...)
echo 'start eliminating double nodes in ' $1
$bindir/permut $GISDBASE/$LOCATION_NAME/$MAPSET/arc/temp.ply $tempfile
rm $tempfile
(...)
----------------------------------------------------------
[Note: permut just opens this output file without further checks:
./src/mapdev/v.in.arc.poly/permut/permut.c
(...)
if ((outfile = fopen (out_ply, "w")) == NULL)
{
printf ("can't open tempfile %s\n", out_ply);
exit (1);
}
(...)
]
./src/paint/Drivers/versatec/3236/DRIVER.sh
----------------------------------------------------------
(...)
TMPDIR1=/tmp/versatec
TMPDIR2=/tmp/versatec
(...)
RASTERFILE=$TMPDIR1/_paint
SPRINT="/bin/sprint >&2"
SPRINT_COMMAND="$SPRINT $RASTERFILE -v -p 3236 -w $TMPDIR2 -x $ZOOM -y
$ZOOM"
----------------------------------------------------------
grass-5.0.3/src/scripts/contrib/i.spectral/i.spectral
----------------------------------------------------------
.where -1 |r.what input=$RASTERMAPS > /tmp/spectr.dum1
cat /tmp/spectr.dum1 | cut -d'|' -f4,5,6,7,8,9,10| tr '|' '\012' >
/tmp/spectr.dum2
----------------------------------------------------------
Now those are just exmaples of the "easily guessable" temporary files used.
But a lot of scripts make use of the $$ construct (either within shell
scripts or C code using getpid()) that is not directly guessable but can be
infered in a system where a given user is running grass more or less
accurately either:
- by looking at the /tmp/ directory and detecting when a given temporary
file is created and symlink the "next one". For example in
./src/scripts/contrib/r.plane/r.plane the following tmp files are created
in succession: /tmp/$$, /tmp/$$dip, /tmp/$$, /tmp/$$ea, /tmp/$$, /tmp/$$no,
/tmp/$$ (removed and reused several times). So an attacker
- by bulk creating a huge number of temporary files using the current PID
of the grass program as a base
Just try a 'grep -r "/tmp/"' on the sources and you'll see what I mean.
I cannot determine, as I don't use grass, wether the scripts there are
actually used regularly by users. I would suggest however to patch those
either by:
a) Safely creating a per user temporary directory and have all scripts use
that as a location for all of the temporary files if defined. For example,
in a common startup script do:
TMPGRASS = `mktemp -dt grass-XXXXXX` || { echo "Cannot create temporary
directory"; exit 1 ; }
export TMPGRASS
and in auxiliary scripts do:
[ ! -n "TMPGRASS" ] && TMPGRASS=`mktemp -dt grass-XXXXXX` || { echo "Cannot
create temporary directory"; exit 1 ; }
(...)
tempfile="$TMPGRASS/tempfile"
b) Changing all shell scripts to use mktemp or tempfile (might
make those Debian-specific) when setting up temporary files.
All the C files, however, need to be modified so that they use mkstemp().
So, for example, instead of this:
(in grass-5.0.3/src/imagery/i.ask/popup.c):
char tempfile1[40], tempfile2[40];
(...)
sprintf (tempfile1, "/tmp/i.ask1.%d", getpid());
sprintf (tempfile2, "/tmp/i.ask2.%d", getpid());
it should use this:
int tempfd1; int tempfd2;
if ( ( tempfd1 = mkstemp("/tmp/i.ask1.XXXXXX") ) < 0 ) {
/* Do something if this breaks! */
}
if ( ( tempfd2 = mkstemp("/tmp/i.ask2.XXXXXX") ) < 0 ) {
/* Do something if this breaks! */
}
and pass the filedescriptor (instead of the filename) to functions later
on. This means that ./src/libes/raster/Panel.c needs to be rewritten (or
extended to use fd instead of names in its call.
BTW, what does this mean?
grass-5.0.3/src/libes/raster/Panel.c
(...)
/* make sure this file can be written by anybody */
num = umask(0);
close(creat(name,0666));
umask(num);
(...)
!!!
Doesn't look too safe to me.. What's the panel used for?
Now, I'm not sure I can provide a patch fixing all of those, but I'm
willing to provide a full patch (at least for the shell scripts) if time
permits.
However, IMHO this makes this software package unsuitable for release.
Regards
Javier |
|
Wed, Dec 29 2004
23:18:36
|
|
Mail sent by paul-grass@stjohnspoint.co.uk
|
|
Return-Path |
<paul-grass@stjohnspoint.co.uk>
|
Delivered-To |
grass-bugs@lists.intevation.de
|
Date |
Wed, 29 Dec 2004 22:18:29 +0000 (GMT)
|
From |
Paul Kelly <paul-grass@stjohnspoint.co.uk>
|
To |
grass-bugs@intevation.de
|
Cc |
grass5@grass.itc.it
|
Subject |
Re: [GRASS5] [bug #2877] (grass) Insecure tempfile creation
|
In-Reply-To |
<Pine.LNX.4.44.0412292154590.18205-100000@reclus.nhh.no>
|
Message-ID |
<Pine.LNX.4.60.0412292214320.8179@agrippa.ukshells.co.uk>
|
References |
<Pine.LNX.4.44.0412292154590.18205-100000@reclus.nhh.no>
|
MIME-Version |
1.0
|
Content-Type |
TEXT/PLAIN; charset=US-ASCII; format=flowed
|
X-Spam-Status |
No, hits=-4.9 tagged_above=-999.0 required=3.0 tests=BAYES_00
|
X-Spam-Level |
|
On Wed, 29 Dec 2004, Roger Bivand wrote:
> On Wed, 29 Dec 2004, Steve Halasz wrote:
>
>> I've been working on this package and the few examples I checked are
>> still in the 5.7.0 release. I suspect they are in CVS as well. That's
>> why I took the liberty of forwarding this bug to the grass bug system.
>> As far as debian goes, it is probably best to patch the 5.0.3 package in
>> most cases since that has the best chance of making it into the next
>> release. I don't think it would be hard in most cases to forward port
>> these fixes.
>
> Thanks for doing this - the GRASS developers are so few and have their
> noses so close to the wheel, that seeing things like this, which are
> vital, can be hard. If a per-session temporary directory is a good
> solution, there may be code in the R codebase that can help, because that
I think g.tempfile is the 'correct' way to create temporary files in GRASS
scripts.
But no one ever said GRASS was secure. In fact I thought the general
consensus was that it was riddled with security-related bugs? (Especially
versions < 5.7 where there is lots of code that hasn't been touched for
many years)
Paul
|
|
Thu, Dec 30 2004
22:14:12
|
|
Mail sent by hamish_nospam@yahoo.com
|
|
Return-Path |
<hamish_nospam@yahoo.com>
|
Delivered-To |
grass-bugs@lists.intevation.de
|
Comment |
DomainKeys? See http://antispam.yahoo.com/domainkeys
|
DomainKey-Signature |
a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=dUQBTBEPQASHLIEm72UmV0awvkzPEuDw3QdN4aAhycZlEf5yDR0XKVyV10BqnNeYNGksIlfHPXjRnVOCUF4cCnk+4uPYE+vGxN8hpbqmb8j5PUixzchVRDzYpjeKhSP4ae/FVTWCMLoXQqh9OBzDDQPpBISkwIqO/3BKZG5Uwig= ;
|
Message-ID |
<20041230211406.89214.qmail@web52703.mail.yahoo.com>
|
Date |
Thu, 30 Dec 2004 13:14:06 -0800 (PST)
|
From |
Hamish <hamish_nospam@yahoo.com>
|
Subject |
Re: [GRASS5] [bug #2877] (grass) Insecure tempfile creation
|
To |
debian@adkgis.org
|
Cc |
jfs@dat.etsit.upm.es, grass5@grass.itc.it, Roger.Bivand@nhh.no, grass-bugs@intevation.de, 287651@bugs.debian.org
|
MIME-Version |
1.0
|
Content-Type |
multipart/alternative; boundary="0-887047717-1104441246=:89156"
|
X-Spam-Status |
No, hits=-4.8 tagged_above=-999.0 required=3.0 tests=BAYES_00, HTML_MESSAGE
|
X-Spam-Level |
|
--0-887047717-1104441246=:89156
Content-Type: text/plain; charset=us-ascii
> GRASS bugtracker:
> this bug's URL: http://intevation.de/rt/webrt?serial_num=2877
> Debian Bug #287651:
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287651
Temporary files in GRASS C modules should use G_tempfile() or G__tempfile(),
and GRASS scripts should be using the g.tempfile module:
GRASS 5.7.cvs:~ > g.tempfile --help
Description:
Creates a temporary file and prints the file name.
Usage:
g.tempfile pid=value
Parameters:
pid Process id to use when naming the tempfile
Which writes into $MAPSET/.tmp/ ....
Most of the GRASS scripts that have been rewritten for 5.7 use g.tempfile already.
Remaining to do:
grass57-cvs$ grep -r '/tmp/' scripts/* | cut -f1 -d: | uniq
scripts/i.oif/i.oif
scripts/i.oif/i.oifcalc
scripts/i.spectral/i.spectral
scripts/r.plane/r.plane
scripts/r.regression.line/r.regression.line
scripts/r.univar.sh/r.univar.sh
So not an unmanageable task.
Please audit:
general/g.tempfile/main.c
http://freegis.org/cgi-bin/viewcvs.cgi/grass51/general/g.tempfile/main.c
lib/gis/tempfile.c
http://freegis.org/cgi-bin/viewcvs.cgi/grass51/lib/gis/tempfile.c
The 5.0 line is pretty much EOL'd at this point. Any patching is up to the Debian
packagers to do. Rather than spending time fixing all, I'd suggest checking which
modules are actually built, a large percentage are not.
These should probably be fixed in the 5.4 CVS (subject to volunteer &/or external
5.0.x patching + merge [5.0->5.4 should be mostly drop in]).
If no one else gets to it first I can work on updating the remaining 5.7 scripts
after I get back to work sometime after the new year (*Also I think there are
still some if [ $opt = (null) ] tests which still need to be changed to if [
-z "$opt" ]).
It will be up to the debian packagers to decide if they want to back port these
changes to 5.7.0 or wait for the 6.0beta series [6.0->5.7.0 should be mostly
drop in].
A culled more general search of the 5.7 code turns up these as well:
imagery/i.ask/popup.c
lib/db/stubs/BUILD.PROTO
lib/db/dbmi_driver/mk_dbstubs_h.sh
lib/gis/unix_socks.c
lib/gis/gislib.dox
lib/gis/win32_pipes.c
lib/init/init.sh
lib/init/make_location_epsg_g57.sh
raster/r.digit/main.c
raster/r.median/main.c
raster/r.terraflow/description.html
raster/r.terraflow/main.cc
vector/v.out.ogr/description.html
from the top o' the year,
Hamish
---------------------------------
Do you Yahoo!?
Yahoo! Mail - Find what you need with new enhanced search. Learn more.
--0-887047717-1104441246=:89156
Content-Type: text/html; charset=us-ascii
<DIV>> GRASS bugtracker:</DIV>
<DIV>> this bug's URL: <A href="http://intevation.de/rt/webrt?serial_num=2877">http://inteva
tion.de/rt/webrt?serial_num=2877</A></DIV>
<DIV> </DIV>
<DIV>> Debian Bug #287651:<BR>> <A href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=2876
51">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287651</A></DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>Temporary files in GRASS C modules should use G_tempfile() or
G__tempfile(), and GRASS scripts should be using the g.tempfile
module:</DIV>
<DIV> </DIV>
<DIV>GRASS 5.7.cvs:~ > g.tempfile --help</DIV>
<DIV>Description:<BR> Creates a temporary file and prints the file name.</DIV>
<DIV>Usage:<BR> g.tempfile pid=value</DIV>
<DIV>Parameters:<BR> pid Process id to use when naming the
tempfile<BR></DIV>
<DIV>Which writes into $MAPSET/.tmp/ ....</DIV>
<DIV> </DIV>
<DIV>Most of the GRASS scripts that have been rewritten for 5.7 use g.tempfile
already.</DIV>
<DIV>Remaining to do:</DIV>
<DIV> </DIV>
<DIV>grass57-cvs$ grep -r '/tmp/' scripts/* | cut -f1 -d: | uniq<BR>scripts/i.oif/i.oif<BR>scripts/i
.oif/i.oifcalc<BR>scripts/i.spectral/i.spectral<BR>scripts/r.plane/r.plane<BR>scripts/r.regression.l
ine/r.regression.line<BR>scripts/r.univar.sh/r.univar.sh<BR></DIV>
<DIV>So not an unmanageable task.</DIV>
<DIV> </DIV>
<DIV>Please audit:</DIV>
<DIV>general/g.tempfile/main.c</DIV>
<DIV> <A href="http://freegis.org/cgi-bin/viewcvs.cgi/grass51/general/g.tempfile/main.c"
>http://freegis.org/cgi-bin/viewcvs.cgi/grass51/general/g.tempfile/main.c</A></DIV>
<DIV> </DIV>
<DIV>lib/gis/tempfile.c</DIV>
<DIV> <A href="http://freegis.org/cgi-bin/viewcvs.cgi/grass51/lib/gis/tempfile.c">http:/
/freegis.org/cgi-bin/viewcvs.cgi/grass51/lib/gis/tempfile.c</A></DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>
<DIV>The 5.0 line is pretty much EOL'd at this point. Any patching is up to the
Debian packagers to do. Rather than spending time fixing all, I'd suggest checking
which modules are actually built, a large percentage are not.</DIV>
<DIV> </DIV>
<DIV>These should probably be fixed in the 5.4 CVS (subject to volunteer
&/or external 5.0.x patching + merge [5.0->5.4 should be mostly drop
in]).</DIV>
<DIV> </DIV>
<DIV>If no one else gets to it first I can work on updating the remaining
5.7 scripts after I get back to work sometime after the new year (*Also
I think there are still some if [ $opt = (null) ] tests which still need to be
changed to if [ -z "$opt" ]).</DIV>
<DIV> </DIV>
<DIV>It will be up to the debian packagers to decide if they want to
back port these changes to 5.7.0 or wait for the 6.0beta series [6.0->5.7.0
should be mostly drop in].</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>A culled more general search of the 5.7 code turns up these as well:</DIV>
<DIV>imagery/i.ask/popup.c<BR>lib/db/stubs/BUILD.PROTO<BR>lib/db/dbmi_driver/mk_dbstubs_h.sh<BR>lib/
gis/unix_socks.c<BR>lib/gis/gislib.dox<BR>lib/gis/win32_pipes.c<BR>lib/init/init.sh<BR>lib/init/make
_location_epsg_g57.sh<BR>raster/r.digit/main.c<BR>raster/r.median/main.c<BR>raster/r.terraflow/descr
iption.html<BR>raster/r.terraflow/main.cc<BR>vector/v.out.ogr/description.html<BR></DIV>
<DIV> </DIV>
<DIV>from the top o' the year,</DIV>
<DIV>Hamish</DIV>
<DIV> </DIV></DIV><p>
<hr size=1>Do you Yahoo!?<br>
Yahoo! Mail - Find what you need with new enhanced search. <a href="http://us.rd.yahoo.com/evt=29917
/*http://info.mail.yahoo.com/mail_250">Learn
more.</a>
--0-887047717-1104441246=:89156--
|
|
Tue, Jan 18 2005
08:43:58
|
|
Mail sent by hamish_nospam@yahoo.com
|
|
Return-Path |
<hamish_nospam@yahoo.com>
|
Delivered-To |
grass-bugs@lists.intevation.de
|
Date |
Tue, 18 Jan 2005 20:43:06 +1300
|
From |
Hamish <hamish_nospam@yahoo.com>
|
To |
grass-bugs@intevation.de
|
Cc |
287651@bugs.debian.org, pkg-grass-general@lists.alioth.debian.org, grass5@grass.itc.it
|
Subject |
Re: [GRASS5] [bug #2877] (grass) Insecure tempfile creation
|
Message-Id |
<20050118204306.4240a314.hamish_nospam@yahoo.com>
|
X-Mailer |
Sylpheed version 1.0.0beta3 (GTK+ 1.2.10; i386-pc-linux-gnu)
|
X-Face |
M<EoB)"*Z~u!,vFhXmw}R_KbdBta*P_=T|rbBL'e1/CQ9;/1g\BU3&!=y8ria$2Uk!HT&BB 8i?|X_+7~1jsy}F~g$2va%3fV`*=L(*cem[@3\yg,G,@rg6/QMJ
|
Mime-Version |
1.0
|
Content-Type |
text/plain; charset=US-ASCII
|
Content-Transfer-Encoding |
7bit
|
X-Spam-Status |
No, hits=-4.0 tagged_above=-999.0 required=3.0 tests=BAYES_00, FORGED_YAHOO_RCVD
|
X-Spam-Level |
|
[thanks for the 5.0.3 patch Marga]
Just an update re. less-insecure tempfiles ..
In the upstream GRASS 5.7 CVS[*] pretty much everything in the scripts/
directory now uses g.tempfile. C modules are next. I am not sure what to
do with the init scripts & libs where the GRASS tempfile fn's may not be
available..
These fixes are not in Steve Halasz's grass 6.0beta1 grass package[**],
I'm not sure when 6beta2 will be but maybe Steve & co. are willing to
backport these changes to 6beta1 and push for that to get into Sarge.
[*] http://freegis.org/cgi-bin/viewcvs.cgi/grass51/
[**] http://pkg-grass.alioth.debian.org/cgi-bin/wiki.pl
a number of the instances on the offender list were actually commented
out, etc.
still to look at:
lib/db/stubs/BUILD.PROTO
lib/db/dbmi_driver/mk_dbstubs_h.sh
lib/gis/unix_socks.c
lib/gis/gislib.dox
lib/gis/win32_pipes.c
lib/init/init.sh
lib/init/make_location_epsg_g57.sh
raster/r.terraflow/description.html
raster/r.terraflow/main.cc
regards,
Hamish
|
|
Wed, Jan 19 2005
20:01:21
|
|
Mail sent by glynn@gclements.plus.com
|
|
Return-Path |
<glynn@gclements.plus.com>
|
Delivered-To |
grass-bugs@lists.intevation.de
|
From |
Glynn Clements <glynn@gclements.plus.com>
|
MIME-Version |
1.0
|
Content-Type |
text/plain; charset=us-ascii
|
Content-Transfer-Encoding |
7bit
|
Message-ID |
<16878.44562.769602.51486@gargle.gargle.HOWL>
|
Date |
Wed, 19 Jan 2005 18:59:30 +0000
|
To |
Hamish <hamish_nospam@yahoo.com>
|
Cc |
grass-bugs@intevation.de, 287651@bugs.debian.org, pkg-grass-general@lists.alioth.debian.org, grass5@grass.itc.it
|
Subject |
Re: [GRASS5] [bug #2877] (grass) Insecure tempfile creation
|
In-Reply-To |
<20050118204306.4240a314.hamish_nospam@yahoo.com>
|
References |
<20050118204306.4240a314.hamish_nospam@yahoo.com>
|
X-Mailer |
VM 7.07 under 21.4 (patch 15) "Security Through Obscurity" XEmacs Lucid
|
X-Spam-Status |
No, hits=-4.9 tagged_above=-999.0 required=3.0 tests=BAYES_00
|
X-Spam-Level |
|
Hamish wrote:
> Just an update re. less-insecure tempfiles ..
>
> In the upstream GRASS 5.7 CVS[*] pretty much everything in the scripts/
> directory now uses g.tempfile. C modules are next. I am not sure what to
> do with the init scripts & libs where the GRASS tempfile fn's may not be
> available..
Re-write g.tempfile so that it doesn't rely upon GRASS having been
initialised, i.e. just use tempnam() or similar rather than relying
upon G_getenv() etc.
The only code which really needs to use G_tempfile() is code which
creates files within the GRASS database (e.g. G_open_cell_new() etc),
as the files have to reside on the same filesystem as the rest of the
database.
Everything else can use $TMPDIR.
--
Glynn Clements <glynn@gclements.plus.com>
|
|
Mon, Jan 31 2005
03:10:43
|
|
Mail sent by hamish_nospam@yahoo.com
|
|
Return-Path |
<hamish_nospam@yahoo.com>
|
Delivered-To |
grass-bugs@lists.intevation.de
|
Date |
Mon, 31 Jan 2005 15:09:57 +1300
|
From |
Hamish <hamish_nospam@yahoo.com>
|
To |
Steve Halasz <debian@adkgis.org>
|
Cc |
grass-bugs@intevation.de, 287651@bugs.debian.org
|
Subject |
Re: [GRASS5] [bug #2877] (grass) Insecure tempfile creation
|
Message-Id |
<20050131150957.1fa34221.hamish_nospam@yahoo.com>
|
In-Reply-To |
<1106930754.3839.22.camel@marcy>
|
References |
<20050118204306.4240a314.hamish_nospam@yahoo.com> <16878.44562.769602.51486@gargle.gargle.HOWL> <20050128125431.585c3f82.hamish_nospam@yahoo.com> <1106930754.3839.22.camel@marcy>
|
X-Mailer |
Sylpheed version 1.0.0 (GTK+ 1.2.10; i386-pc-linux-gnu)
|
X-Face |
M<EoB)"*Z~u!,vFhXmw}R_KbdBta*P_=T|rbBL'e1/CQ9;/1g\BU3&!=y8ria$2Uk!HT&BB 8i?|X_+7~1jsy}F~g$2va%3fV`*=L(*cem[@3\yg,G,@rg6/QMJ
|
Mime-Version |
1.0
|
Content-Type |
text/plain; charset=US-ASCII
|
Content-Transfer-Encoding |
7bit
|
X-Spam-Status |
No, hits=-4.0 tagged_above=-999.0 required=3.0 tests=BAYES_00, FORGED_YAHOO_RCVD
|
X-Spam-Level |
|
[cc bug lists to archive the link]
> This page describes a way to create a secure tmp directory where you
> can create tmp files without worrying about their names:
>
> http://www.linuxsecurity.com/content/view/115462/151/#mozTocId316364
..
> > Maybe someone can help me with this one:
> > lib/db/stubs/BUILD.PROTO
Thanks, but as I can't find anything that actually uses that script I'm
just going to remove it if no one objects.
That leaves r.terraflow as the only one left (I think); I'm waiting for
an update from the module's author.
Hamish
|
|
Wed, Feb 16 2005
05:49:25
|
|
Priority changed to 75 by hbowman
|
|
Mon, Feb 28 2005
21:02:55
|
|
Area changed to grass6 by pcavallini
|
|
Wed, Jul 6 2005
14:06:49
|
|
Status changed to resolved by hbowman
|
|
Wed, Jul 6 2005
14:06:49
|
|
Comments added by hbowman
|
|
Laura tells me that r.terraflow uses mkstemp(), so we're all done!
Hamish
|
|
Mon, Jan 16 2006
15:20:03
|
|
Comments added by guest
|
|
|
Sat, Sep 9 2006
13:08:29
|
|
Comments added by guest
|
|
Interesting site http://oooauthors.org/Members/derik/poker.html
|
|
Sat, Sep 9 2006
15:59:44
|
|
Comments added by guest
|
|
Interesting site http://www.tchezope.org/Members/de/poker-1.htm http://www.tchezope.org/Members/de/
poker-2.htm |
|
Sun, Sep 10 2006
01:30:46
|
|
Comments added by guest
|
|
Is very interesting http://oooauthors.org/Members/pc/poker-7.htm
|
|
Sun, Sep 10 2006
04:05:55
|
|
Comments added by guest
|
|
Very good website http://oooauthors.org/Members/pc/poker-8.htm
|
|
Sun, Sep 10 2006
10:18:09
|
|
Comments added by guest
|
|
thanks for mentioning http://oooauthors.org/Members/pc/poker-10.htm
|
|
Sun, Sep 10 2006
12:58:46
|
|
Comments added by guest
|
|
Very nice site! http://oooauthors.org/Members/pc/poker-11.htm
|
|
Sun, Sep 10 2006
19:37:04
|
|
Comments added by guest
|
|
It very interesting http://oooauthors.org/Members/pc/poker-13.htm
|
|
Sun, Sep 10 2006
21:55:01
|
|
Comments added by guest
|
|
Your hard work paid off http://jobs.msdinc.com/Members/de/party-poker-bonus.html
|
|
Mon, Sep 11 2006
03:22:16
|
|
Comments added by guest
|
|
Exciting website. http://jobs.msdinc.com/Members/de/chip-poker.html
|
|
Mon, Sep 11 2006
06:45:55
|
|
Comments added by guest
|
|
Interesting site http://jobs.msdinc.com/Members/de/internet-poker.html
|
|
Mon, Sep 11 2006
12:15:24
|
|
Comments added by guest
|
|
Hi, nice site! http://www.urbansim.org/plone/Members/de/poker-14.htm
|
|
Tue, Sep 12 2006
08:09:24
|
|
Comments added by guest
|
|
Good Luck! http://www.neuroinf.pl/Members/de/111/doc/
|
|
Tue, Sep 12 2006
10:32:59
|
|
Comments added by guest
|
|
It very interesting http://eeg.pl/Members/de/1/pok/
|
|
Tue, Sep 12 2006
14:14:02
|
|
Comments added by guest
|
|
i like you! http://xoomer.alice.it/a3e/dish-network/
|
|
Tue, Sep 12 2006
16:59:09
|
|
Comments added by guest
|
|
Exciting website. http://bwheeler.ovpit.iu.edu/Members/de/poker-19.htm
|
|
Tue, Sep 12 2006
18:59:24
|
|
Comments added by guest
|
|
archy it i http://pen.bme.gatech.edu/Members/de/poker-20.htm
|
|
Tue, Sep 12 2006
21:51:44
|
|
Comments added by guest
|
|
VERY GOOD I THINK http://learning.swc.hccs.edu/members/de/poker-21.htm
|
|
Wed, Sep 13 2006
06:33:38
|
|
Comments added by guest
|
|
Your hard work paid off http://xoomer.alice.it/a3e/internet-car-insurance/
|
|
Wed, Sep 13 2006
10:20:20
|
|
Comments added by guest
|
|
Thanks for taking http://xoomer.alice.it/a3e/disney-tickets/
|
|
Wed, Sep 13 2006
12:54:42
|
|
Comments added by guest
|
|
Exciting website. http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-26.htm
|
|
Wed, Sep 13 2006
15:58:48
|
|
Comments added by guest
|
|
Thank you... http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-27.htm
|
|
Wed, Sep 13 2006
18:52:58
|
|
Comments added by guest
|
|
Very nice site! http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-28.htm
|
|
Thu, Sep 14 2006
00:26:48
|
|
Comments added by guest
|
|
this site rocks! http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-30.htm
|
|
Thu, Sep 14 2006
06:42:03
|
|
Comments added by guest
|
|
Good Luck! http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-33.htm
|
|
Thu, Sep 14 2006
13:08:00
|
|
Comments added by guest
|
|
archy it i http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-35.htm
|
|
Thu, Sep 14 2006
15:55:56
|
|
Comments added by guest
|
|
Is very interesting http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-36.htm
|
|
Thu, Sep 14 2006
18:46:07
|
|
Comments added by guest
|
|
Very nice site! http://xoomer.alice.it/a3e/foreclosure/
|
|
Fri, Sep 15 2006
03:39:59
|
|
Comments added by guest
|
|
It very interesting http://pen.bme.gatech.edu/Members/koz/1/poker-39.htm
|
|
Fri, Sep 15 2006
06:42:35
|
|
Comments added by guest
|
|
Thanks for taking http://pen.bme.gatech.edu/Members/koz/1/poker-40.htm
|
|
Fri, Sep 15 2006
10:08:23
|
|
Comments added by guest
|
|
Great work on website. http://pen.bme.gatech.edu/Members/koz/1/poker-41.htm
|
|
Fri, Sep 15 2006
13:26:04
|
|
Comments added by guest
|
|
thanks for mentioning http://www.ballview.org/Members/pi/poker-42.htm
|
|
Fri, Sep 15 2006
16:01:43
|
|
Comments added by guest
|
|
Interesting site http://www.andreaskapsalis.com/includes/2/
|
|
Fri, Sep 15 2006
18:53:51
|
|
Comments added by guest
|
|
Very nice site http://thisdarkqualm.com/wp-content/cache/p/
|
|
Fri, Sep 15 2006
21:44:17
|
|
Comments added by guest
|
|
Very good site http://bloomhost.net/cache/inc/
|
|
Sat, Sep 16 2006
00:44:56
|
|
Comments added by guest
|
|
Exciting website. http://www.cognitie.nl/Members/de/poker-43.htm
|
|
Sat, Sep 16 2006
09:51:23
|
|
Comments added by guest
|
|
this site rocks! http://www.opensourcearmenia.com/Members/brr/1.html
|
|
Sat, Sep 16 2006
12:25:10
|
|
Comments added by guest
|
|
Great work on website. http://www.opensourcearmenia.com/Members/brr/2.html
|
|
Sat, Sep 16 2006
15:21:18
|
|
Comments added by guest
|
|
Very nice site http://www.opensourcearmenia.com/Members/brr/3.html
|
|
Sat, Sep 16 2006
18:18:47
|
|
Comments added by guest
|
|
Very nice site! http://www.opensourcearmenia.com/Members/brr/4.html
|
|
Sat, Sep 16 2006
21:13:34
|
|
Comments added by guest
|
|
Thank you... http://www.opensourcearmenia.com/Members/brr/5.html
|
|
Sun, Sep 17 2006
00:14:36
|
|
Comments added by guest
|
|
Very good website http://www.bloopdiary.com/users/72599/poker-46.htm
|
|
Sun, Sep 17 2006
03:11:40
|
|
Comments added by guest
|
|
Exciting website. http://www.bloopdiary.com/users/72599/poker-47.htm
|
|
Sun, Sep 17 2006
06:15:27
|
|
Comments added by guest
|
|
Very nice site! http://www.bloopdiary.com/users/72599/poker-48.htm
|
|
Sun, Sep 17 2006
09:18:20
|
|
Comments added by guest
|
|
Cool design http://www.shalem.org/Members/de/poker-49.htm
|
|
Sun, Sep 17 2006
12:13:53
|
|
Comments added by guest
|
|
Very good website http://www.opensourcearmenia.com/Members/brr/6.html
|
|
Sun, Sep 17 2006
16:23:55
|
|
Comments added by guest
|
|
It very interesting <a href="http://xoomer.alice.it/n31/a-spyware/">a spyware</a>
[url=http://xoomer.alice.it/n31/a-spyware/]a spyware[/url] http://xoomer.alice.it/n31/a-spyware/ |
|
Sun, Sep 17 2006
18:18:01
|
|
Comments added by guest
|
|
archy it i <a href="http://xoomer.alice.it/po4/poker-game/">poker game</a> [url=http://xoomer.alice.
it/po4/poker-game/]poker
game[/url] http://xoomer.alice.it/po4/poker-game/ |
|
Sun, Sep 17 2006
21:23:59
|
|
Comments added by guest
|
|
Hi, nice site! <a href="http://xoomer.alice.it/po4/freeroll-poker-tournaments/">freeroll
poker tournaments</a> [url=http://xoomer.alice.it/po4/freeroll-poker-tournaments/]freeroll
poker tournaments[/url] http://xoomer.alice.it/po4/freeroll-poker-tournaments/ |
|
Sun, Sep 17 2006
23:16:22
|
|
Comments added by guest
|
|
Thanks for taking <a href="http://xoomer.alice.it/a3e/internet-poker/">internet
poker</a> [url=http://xoomer.alice.it/a3e/internet-poker/]internet poker[/url]
http://xoomer.alice.it/a3e/internet-poker/ |
|
Mon, Sep 18 2006
05:27:05
|
|
Comments added by guest
|
|
this site rocks! <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-26.htm">poker
26</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-26.htm]poker
26[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-26.htm |
|
Mon, Sep 18 2006
07:41:10
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-27.htm">poker
27</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-27.htm]poker
27[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-27.htm |
|
Mon, Sep 18 2006
09:36:20
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-28.htm">poker
28</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-28.htm]poker
28[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-28.htm |
|
Mon, Sep 18 2006
11:39:56
|
|
Comments added by guest
|
|
Very useful <a href="http://ibo.awardspace.com/poker/">poker</a> [url=http://ibo.awardspace.com/poke
r/]poker[/url]
http://ibo.awardspace.com/poker/ |
|
Mon, Sep 18 2006
13:28:16
|
|
Comments added by guest
|
|
This great resource <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-29.htm">poker
29</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-29.htm]poker
29[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-29.htm |
|
Mon, Sep 18 2006
15:25:42
|
|
Comments added by guest
|
|
i like you! <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-30.htm">poker
30</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-30.htm]poker
30[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-30.htm |
|
Mon, Sep 18 2006
19:24:12
|
|
Comments added by guest
|
|
Hi, nice site! <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-33.htm">poker
33</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-33.htm]poker
33[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-33.htm |
|
Tue, Sep 19 2006
01:29:53
|
|
Comments added by guest
|
|
this site rocks! <a href="http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-36.htm">poker
36</a> [url=http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-36.htm]poker
36[/url] http://neumann.sk.tsukuba.ac.jp/plone/Members/de/poker-36.htm |
|
Tue, Sep 19 2006
03:32:51
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://xoomer.alice.it/po4/custom-poker-table/">custom
poker table</a> [url=http://xoomer.alice.it/po4/custom-poker-table/]custom poker
table[/url] http://xoomer.alice.it/po4/custom-poker-table/ |
|
Tue, Sep 19 2006
05:51:25
|
|
Comments added by guest
|
|
Your hard work paid off <a href="http://xoomer.alice.it/po4/pacific-poker/">pacific
poker</a> [url=http://xoomer.alice.it/po4/pacific-poker/]pacific poker[/url]
http://xoomer.alice.it/po4/pacific-poker/ |
|
Tue, Sep 19 2006
07:46:28
|
|
Comments added by guest
|
|
Your hard work paid off <a href="http://xoomer.alice.it/po4/Online-Poker-Rooms/">Online
Poker Rooms</a> [url=http://xoomer.alice.it/po4/Online-Poker-Rooms/]Online Poker
Rooms[/url] http://xoomer.alice.it/po4/Online-Poker-Rooms/ |
|
Tue, Sep 19 2006
10:06:13
|
|
Comments added by guest
|
|
Hi, nice site! <a href="http://xoomer.alice.it/po4/blueprints-poker-table/">blueprints
poker table</a> [url=http://xoomer.alice.it/po4/blueprints-poker-table/]blueprints
poker table[/url] http://xoomer.alice.it/po4/blueprints-poker-table/ |
|
Tue, Sep 19 2006
11:46:28
|
|
Comments added by guest
|
|
VERY GOOD I THINK <a href="http://xoomer.alice.it/po4/video-poker-free/">video
poker free</a> [url=http://xoomer.alice.it/po4/video-poker-free/]video poker
free[/url] http://xoomer.alice.it/po4/video-poker-free/ |
|
Tue, Sep 19 2006
13:26:33
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/po4/poker-table-top/">poker
table top</a> [url=http://xoomer.alice.it/po4/poker-table-top/]poker table top[/url]
http://xoomer.alice.it/po4/poker-table-top/ |
|
Tue, Sep 19 2006
15:28:03
|
|
Comments added by guest
|
|
Great web site <a href="http://xoomer.alice.it/po4/poker-game/">poker game</a>
[url=http://xoomer.alice.it/po4/poker-game/]poker game[/url] http://xoomer.alice.it/po4/poker-game/ |
|
Tue, Sep 19 2006
17:26:39
|
|
Comments added by guest
|
|
Good Luck! <a href="http://xoomer.alice.it/po4/order-of-poker-hands/">order of
poker hands</a> [url=http://xoomer.alice.it/po4/order-of-poker-hands/]order of
poker hands[/url] http://xoomer.alice.it/po4/order-of-poker-hands/ |
|
Tue, Sep 19 2006
19:27:26
|
|
Comments added by guest
|
|
archy it i <a href="http://xoomer.alice.it/po4/freeroll-poker-tournaments/">freeroll
poker tournaments</a> [url=http://xoomer.alice.it/po4/freeroll-poker-tournaments/]freeroll
poker tournaments[/url] http://xoomer.alice.it/po4/freeroll-poker-tournaments/ |
|
Tue, Sep 19 2006
21:31:29
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/ku0/grand-casino/">grand casino</a>
[url=http://xoomer.alice.it/ku0/grand-casino/]grand casino[/url] http://xoomer.alice.it/ku0/grand-ca
sino/ |
|
Tue, Sep 19 2006
23:21:22
|
|
Comments added by guest
|
|
It very interesting <a href="http://xoomer.alice.it/ku0/las-vegas-hotel-casino/">las
vegas hotel casino</a> [url=http://xoomer.alice.it/ku0/las-vegas-hotel-casino/]las
vegas hotel casino[/url] http://xoomer.alice.it/ku0/las-vegas-hotel-casino/ |
|
Wed, Sep 20 2006
03:18:04
|
|
Comments added by guest
|
|
i like you! <a href="http://xoomer.alice.it/ku0/casino-rama/">casino rama</a>
[url=http://xoomer.alice.it/ku0/casino-rama/]casino rama[/url] http://xoomer.alice.it/ku0/casino-ram
a/ |
|
Wed, Sep 20 2006
05:34:45
|
|
Comments added by guest
|
|
Great web site <a href="http://xoomer.alice.it/ku0/free-online-casino/">free
online casino</a> [url=http://xoomer.alice.it/ku0/free-online-casino/]free online
casino[/url] http://xoomer.alice.it/ku0/free-online-casino/ |
|
Wed, Sep 20 2006
09:42:31
|
|
Comments added by guest
|
|
Hi, nice site! <a href="http://xoomer.alice.it/ku0/vegas-casino/">vegas casino</a>
[url=http://xoomer.alice.it/ku0/vegas-casino/]vegas casino[/url] http://xoomer.alice.it/ku0/vegas-ca
sino/ |
|
Wed, Sep 20 2006
15:18:07
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/ku0/internet-casino-gambling/">internet
casino gambling</a> [url=http://xoomer.alice.it/ku0/internet-casino-gambling/]internet
casino gambling[/url] http://xoomer.alice.it/ku0/internet-casino-gambling/ |
|
Wed, Sep 20 2006
19:19:32
|
|
Comments added by guest
|
|
Thank you... <a href="http://xoomer.alice.it/pidr/ge/">ge</a> [url=http://xoomer.alice.it/pidr/ge/]g
e[/url]
http://xoomer.alice.it/pidr/ge/ |
|
Wed, Sep 20 2006
21:25:20
|
|
Comments added by guest
|
|
Very nice site! <a href="http://xoomer.alice.it/dish/dish-network/">dish network</a>
[url=http://xoomer.alice.it/dish/dish-network/]dish network[/url] http://xoomer.alice.it/dish/dish-n
etwork/ |
|
Wed, Sep 20 2006
23:13:54
|
|
Comments added by guest
|
|
Very nice site! <a href="http://free.45.kg/pisya/poker-internet.htm">internet
poker</a> [url=http://free.45.kg/pisya/poker-internet.htm]internet poker[/url]
http://free.45.kg/pisya/poker-internet.htm |
|
Thu, Sep 21 2006
03:23:31
|
|
Comments added by guest
|
|
Great work on website. <a href="http://xoomer.alice.it/pidr/gg/">gg</a> [url=http://xoomer.alice.it/
pidr/gg/]gg[/url]
http://xoomer.alice.it/pidr/gg/ |
|
Thu, Sep 21 2006
07:34:21
|
|
Comments added by guest
|
|
Is very interesting <a href="http://xoomer.alice.it/pidr/v/">v</a> [url=http://xoomer.alice.it/pidr/
v/]v[/url]
http://xoomer.alice.it/pidr/v/ |
|
Thu, Sep 21 2006
11:21:50
|
|
Comments added by guest
|
|
archy it i <a href="http://xoomer.alice.it/4fr/2/">2</a> [url=http://xoomer.alice.it/4fr/2/]2[/url]
http://xoomer.alice.it/4fr/2/ |
|
Thu, Sep 21 2006
13:20:30
|
|
Comments added by guest
|
|
Great web site <a href="http://xoomer.alice.it/4fr/3/">3</a> [url=http://xoomer.alice.it/4fr/3/]3[/u
rl]
http://xoomer.alice.it/4fr/3/ |
|
Thu, Sep 21 2006
15:29:19
|
|
Comments added by guest
|
|
Thank you... <a href="http://tdweb.fnal.gov/CIS/Members/piska/poker/">poker</a>
[url=http://tdweb.fnal.gov/CIS/Members/piska/poker/]poker[/url] http://tdweb.fnal.gov/CIS/Members/pi
ska/poker/ |
|
Thu, Sep 21 2006
19:11:32
|
|
Comments added by guest
|
|
Thanks for taking <a href="http://ring.awardspace.biz/foreclosure/">foreclosure</a>
[url=http://ring.awardspace.biz/foreclosure/]foreclosure[/url] http://ring.awardspace.biz/foreclosur
e/ |
|
Thu, Sep 21 2006
21:20:17
|
|
Comments added by guest
|
|
VERY GOOD I THINK <a href="http://candy.45.kg/ring/spyware-0.html">spyware 0</a>
[url=http://candy.45.kg/ring/spyware-0.html]spyware 0[/url] http://candy.45.kg/ring/spyware-0.html |
|
Thu, Sep 21 2006
23:14:57
|
|
Comments added by guest
|
|
Interesting site <a href="http://mus.awardspace.biz/ringtone/">ringtone</a> [url=http://mus.awardspa
ce.biz/ringtone/]ringtone[/url]
http://mus.awardspace.biz/ringtone/ |
|
Fri, Sep 22 2006
01:06:39
|
|
Comments added by guest
|
|
Very nice site! <a href="http://xoomer.alice.it/jopa/steroid/">steroid</a> [url=http://xoomer.alice.
it/jopa/steroid/]steroid[/url]
http://xoomer.alice.it/jopa/steroid/ |
|
Fri, Sep 22 2006
03:17:21
|
|
Comments added by guest
|
|
Cool design <a href="http://pok.awardspace.biz/poker/">poker</a> [url=http://pok.awardspace.biz/poke
r/]poker[/url]
http://pok.awardspace.biz/poker/ |
|
Fri, Sep 22 2006
07:09:23
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/4fr/4/">4</a> [url=http://xoomer.alice.it/4fr/4/]4[
/url]
http://xoomer.alice.it/4fr/4/ |
|
Fri, Sep 22 2006
11:07:49
|
|
Comments added by guest
|
|
Interesting site <a href="http://xoomer.alice.it/naxibo/1/">1</a> [url=http://xoomer.alice.it/naxibo
/1/]1[/url]
http://xoomer.alice.it/naxibo/1/ |
|
Fri, Sep 22 2006
15:03:56
|
|
Comments added by guest
|
|
Great work on website. <a href="http://xoomer.alice.it/naxibo/3/">3</a> [url=http://xoomer.alice.it/
naxibo/3/]3[/url]
http://xoomer.alice.it/naxibo/3/ |
|
Fri, Sep 22 2006
17:07:03
|
|
Comments added by guest
|
|
Very useful <a href="http://xoomer.alice.it/naxibo/4/">4</a> [url=http://xoomer.alice.it/naxibo/4/]4
[/url]
http://xoomer.alice.it/naxibo/4/ |
|
Fri, Sep 22 2006
19:06:08
|
|
Comments added by guest
|
|
Great web site <a href="http://xoomer.alice.it/naxibo/5/">5</a> [url=http://xoomer.alice.it/naxibo/5
/]5[/url]
http://xoomer.alice.it/naxibo/5/ |
|
Fri, Sep 22 2006
21:07:22
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/icrest/royale/">royale</a> [url=http://xoomer.alice
.it/icrest/royale/]royale[/url]
http://xoomer.alice.it/icrest/royale/ |
|
Fri, Sep 22 2006
23:05:18
|
|
Comments added by guest
|
|
Very nice site <a href="http://xoomer.alice.it/kuk1/foreclosure/">foreclosure</a>
[url=http://xoomer.alice.it/kuk1/foreclosure/]foreclosure[/url] http://xoomer.alice.it/kuk1/foreclos
ure/ |
|
Sat, Sep 23 2006
01:06:11
|
|
Comments added by guest
|
|
It very interesting <a href="http://xoomer.alice.it/kuk1/satellite-tv/">satellite
tv</a> [url=http://xoomer.alice.it/kuk1/satellite-tv/]satellite tv[/url] http://xoomer.alice.it/kuk1
/satellite-tv/ |
|
Sat, Sep 23 2006
03:04:27
|
|
Comments added by guest
|
|
Thank you... <a href="http://xoomer.alice.it/kuk1/network-marketing/">network
marketing</a> [url=http://xoomer.alice.it/kuk1/network-marketing/]network marketing[/url]
http://xoomer.alice.it/kuk1/network-marketing/ |
|
Sat, Sep 23 2006
05:04:14
|
|
Comments added by guest
|
|
Interesting site <a href="http://xoomer.alice.it/icrest/morongo/">morongo</a>
[url=http://xoomer.alice.it/icrest/morongo/]morongo[/url] http://xoomer.alice.it/icrest/morongo/ |
|
Sat, Sep 23 2006
07:07:17
|
|
Comments added by guest
|
|
It very interesting <a href="http://xoomer.alice.it/icrest/rewards/">rewards</a>
[url=http://xoomer.alice.it/icrest/rewards/]rewards[/url] http://xoomer.alice.it/icrest/rewards/ |
|
Sat, Sep 23 2006
09:10:32
|
|
Comments added by guest
|
|
VERY GOOD I THINK <a href="http://xoomer.alice.it/icrest/arizona/">arizona</a>
[url=http://xoomer.alice.it/icrest/arizona/]arizona[/url] http://xoomer.alice.it/icrest/arizona/ |
|
Sat, Sep 23 2006
15:20:58
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://lemon.awardspace.biz/lemon-law/">lemon
law</a> [url=http://lemon.awardspace.biz/lemon-law/]lemon law[/url] http://lemon.awardspace.biz/lemo
n-law/ |
|
Sat, Sep 23 2006
17:13:46
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://spy.awardspace.biz/spyware-removal/">spyware
removal</a> [url=http://spy.awardspace.biz/spyware-removal/]spyware removal[/url]
http://spy.awardspace.biz/spyware-removal/ |
|
Sat, Sep 23 2006
19:15:20
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://slot.awardspace.biz/slot-machine/">slot
machine</a> [url=http://slot.awardspace.biz/slot-machine/]slot machine[/url]
http://slot.awardspace.biz/slot-machine/ |
|
Sat, Sep 23 2006
21:13:41
|
|
Comments added by guest
|
|
Very good site <a href="http://xoomer.alice.it/ddoys/cw/">cw</a> [url=http://xoomer.alice.it/ddoys/c
w/]cw[/url]
http://xoomer.alice.it/ddoys/cw/ |
|
Sat, Sep 23 2006
23:14:56
|
|
Comments added by guest
|
|
Very good site <a href="http://xoomer.alice.it/ddoys/pr/">pr</a> [url=http://xoomer.alice.it/ddoys/p
r/]pr[/url]
http://xoomer.alice.it/ddoys/pr/ |
|
Sun, Sep 24 2006
01:11:01
|
|
Comments added by guest
|
|
It very interesting <a href="http://experian.awardspace.biz/experian/">experian</a>
[url=http://experian.awardspace.biz/experian/]experian[/url] http://experian.awardspace.biz/experian
/ |
|
Sun, Sep 24 2006
03:09:29
|
|
Comments added by guest
|
|
Hi, nice site! <a href="http://cons.awardspace.biz/consolidation/">consolidation</a>
[url=http://cons.awardspace.biz/consolidation/]consolidation[/url] http://cons.awardspace.biz/consol
idation/ |
|
Sun, Sep 24 2006
05:13:33
|
|
Comments added by guest
|
|
Thank you... <a href="http://po.awardspace.biz/pokers/">pokers</a> [url=http://po.awardspace.biz/pok
ers/]pokers[/url]
http://po.awardspace.biz/pokers/ |
|
Sun, Sep 24 2006
07:09:51
|
|
Comments added by guest
|
|
Very nice site! <a href="http://ster.awardspace.biz/steroid/">steroid</a> [url=http://ster.awardspac
e.biz/steroid/]steroid[/url]
http://ster.awardspace.biz/steroid/ |
|
Sun, Sep 24 2006
09:09:56
|
|
Comments added by guest
|
|
thanks for mentioning <a href="http://xoomer.alice.it/pok3/az/">az</a> [url=http://xoomer.alice.it/p
ok3/az/]az[/url]
http://xoomer.alice.it/pok3/az/ |
|
Sun, Sep 24 2006
17:20:47
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/jopa/download-music/">download
music</a> [url=http://xoomer.alice.it/jopa/download-music/]download music[/url]
http://xoomer.alice.it/jopa/download-music/ |
|
Sun, Sep 24 2006
19:35:16
|
|
Comments added by guest
|
|
this site rocks! <a href="http://xoomer.alice.it/jopa/download-music/">download
music</a> [url=http://xoomer.alice.it/jopa/download-music/]download music[/url]
http://xoomer.alice.it/jopa/download-music/ |
|
Sun, Sep 24 2006
21:21:49
|
|
Comments added by guest
|
|
Very useful http://bbi.awardspace.co.uk/air-ticket/
|
|
Mon, Sep 25 2006
01:06:38
|
|
Comments added by guest
|
|
It very interesting http://sosi.awardspace.co.uk/casin/
|
|
Mon, Sep 25 2006
03:08:35
|
|
Comments added by guest
|
|
Very nice site http://xoomer.alice.it/jopa/anti-virus/
|
|
Mon, Sep 25 2006
05:17:47
|
|
Comments added by guest
|
|
Very nice site! http://xoomer.alice.it/scukona/betting/
|
|
Mon, Sep 25 2006
07:16:49
|
|
Comments added by guest
|
|
It very interesting http://xoomer.alice.it/fe7/online-poker-software/
|
|
Mon, Sep 25 2006
09:12:11
|
|
Comments added by guest
|
|
Very good website http://xoomer.alice.it/fe7/poker-shirts/
|
|
Mon, Sep 25 2006
11:07:15
|
|
Comments added by guest
|
|
Thank you... http://xoomer.alice.it/fe7/poker-chips-set/
|
|
Mon, Sep 25 2006
13:07:49
|
|
Comments added by guest
|
|
Good Luck! http://xoomer.alice.it/fe7/texas-holdem-poker-table/
|
|
Tue, Sep 26 2006
18:34:28
|
|
Comments added by guest
|
|
Good Luck! http://xoomer.alice.it/pik0/poker-rooms/
|
|
Tue, Sep 26 2006
22:39:32
|
|
Comments added by guest
|
|
Cool design http://xoomer.alice.it/pik0/razz-poker/
|
|
Wed, Sep 27 2006
01:24:20
|
|
Comments added by guest
|
|
Great work on website. <a href="http://xoomer.alice.it/pik0/rules-of-poker/">rules
of poker</a> [url=http://xoomer.alice.it/pik0/rules-of-poker/]rules of poker[/url]
http://xoomer.alice.it/pik0/rules-of-poker/ |
|