From owner-freebsd-www Sun May 6 1:37:57 2001 Delivered-To: freebsd-www@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-108.dsl.lsan03.pacbell.net [63.207.60.108]) by hub.freebsd.org (Postfix) with ESMTP id 4065537B422; Sun, 6 May 2001 01:37:54 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D2E2266D5B; Sun, 6 May 2001 01:37:53 -0700 (PDT) Date: Sun, 6 May 2001 01:37:53 -0700 From: Kris Kennaway To: security-officer@FreeBSD.org, www@FreeBSD.org, arubin@concentric.net Subject: Attack on dosendpr.cgi Message-ID: <20010506013753.A51338@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Today some Japanese hax0r spammed a japanese UNIX help BBS (http://cocoa.2ch.net/unix/index2.html) with a bunch of links (annotated with things like "help is available at this link", and others more overt: "Linux is better than FreeBSD, this link will dump shit into their PR database") which caused a bogus PR to be submitted via the website (which wrongly uses GET, not POST, to submit new PRs). I chmod 0'd the dosendpr.cgi script on freefall until it can be fixed -- someone needs to look at this ASAP. Kris --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.5 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE69Q1gWry0BWjoQKURAqubAKCmOx9tgfbGyIYz606b/Li/N/t3FQCgqZ7N PPLyS5VJlNcOC2mklyHYWtc= =HMh+ -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Sun May 6 13:46:16 2001 Delivered-To: freebsd-www@freebsd.org Received: from uhura.concentric.net (uhura.concentric.net [206.173.118.93]) by hub.freebsd.org (Postfix) with ESMTP id 891B237B422; Sun, 6 May 2001 13:46:13 -0700 (PDT) (envelope-from arubin@concentric.net) Received: from cliff.concentric.net (cliff.concentric.net [206.173.118.90]) by uhura.concentric.net (8.9.1a/(98/12/15 5.12)) id QAA18197; Sun, 6 May 2001 16:46:12 -0400 (EDT) [1-800-745-2747 The Concentric Network] Received: from rat (w184.z064001133.chi-il.dsl.cnc.net [64.1.133.184]) by cliff.concentric.net (8.9.1a) id QAA27120; Sun, 6 May 2001 16:46:12 -0400 (EDT) Message-ID: <000f01c0d66d$f6b8cf20$6400000a@violentmonkey.org> From: "Anthony Rubin" To: "Kris Kennaway" , , References: <20010506013753.A51338@xor.obsecurity.org> Subject: Re: Attack on dosendpr.cgi Date: Sun, 6 May 2001 15:48:54 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org dosendpr.cgi uses html.pl to parse it's input, which will allow any method, but from looking at the code it probably won't function correctly for anything other than GET or POST. Basically it checks if the method is GET and if so parses the environmental variable QUERY_STRING, otherwise it reads from STDIN without checking the method. This should work fine for POST, but I'm not sure offhand what will happen with various other methods. It populates a hash named %cgi_data with the data and stores the method in a scalar named $cgi_method. You could modify dosendpr.cgi to check $cgi_method, but it would be trivial to write a perl script to submit the form multiple times using POST. I don't have a suggestion at this time for the best solution for this problem. I would also like to point out that I have found no less than 4 different ways in which the CGI scripts are parsing their input: html.pl cgi-lib.pl CGI.pm (processing the input in the script itself) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Sun May 6 15:13:22 2001 Delivered-To: freebsd-www@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-108.dsl.lsan03.pacbell.net [63.207.60.108]) by hub.freebsd.org (Postfix) with ESMTP id 47C0037B423; Sun, 6 May 2001 15:13:19 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 83CF466D82; Sun, 6 May 2001 15:13:17 -0700 (PDT) Date: Sun, 6 May 2001 15:13:17 -0700 From: Kris Kennaway To: Anthony Rubin Cc: Kris Kennaway , security-officer@FreeBSD.org, www@FreeBSD.org Subject: Re: Attack on dosendpr.cgi Message-ID: <20010506151317.G98841@xor.obsecurity.org> References: <20010506013753.A51338@xor.obsecurity.org> <000f01c0d66d$f6b8cf20$6400000a@violentmonkey.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="zGQnqpIoxlsbsOfg" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000f01c0d66d$f6b8cf20$6400000a@violentmonkey.org>; from arubin@concentric.net on Sun, May 06, 2001 at 03:48:54PM -0500 Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --zGQnqpIoxlsbsOfg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 06, 2001 at 03:48:54PM -0500, Anthony Rubin wrote: > dosendpr.cgi uses html.pl to parse it's input, which will allow any metho= d, > but from looking at the code it probably won't function correctly for > anything other than GET or POST. Basically it checks if the method is GET > and if so parses the environmental variable QUERY_STRING, otherwise it re= ads > from STDIN without checking the method. This should work fine for POST, = but > I'm not sure offhand what will happen with various other methods. It > populates a hash named %cgi_data with the data and stores the method in a > scalar named $cgi_method. >=20 > You could modify dosendpr.cgi to check $cgi_method, but it would be trivi= al > to write a perl script to submit the form multiple times using POST. I > don't have a suggestion at this time for the best solution for this probl= em. Yes, but you couldn't embed it in a URL which people would mistakenly click on. That was the problem here -- other forms of abuse aren't so important (people can always go nuts with send-pr(8) or manually click on the submit button, etc). > I would also like to point out that I have found no less than 4 different > ways in which the CGI scripts are parsing their input: >=20 > html.pl > cgi-lib.pl > CGI.pm > (processing the input in the script itself) Thanks for the analysis -- now we just need someone to go through and fix this :-) Kris --zGQnqpIoxlsbsOfg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.5 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE69cx8Wry0BWjoQKURAqNeAJ40KmyqCQTp+/boyfiltE6pm9RoeQCfZ8Vj YY+HM4KTCYf17/0XzWcy03Y= =LbT7 -----END PGP SIGNATURE----- --zGQnqpIoxlsbsOfg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Mon May 7 5: 3:20 2001 Delivered-To: freebsd-www@freebsd.org Received: from ux-2s02.inf.fh-rhein-sieg.de (ux-2s02.inf.fh-rhein-sieg.de [194.95.66.3]) by hub.freebsd.org (Postfix) with ESMTP id 9A37837B424 for ; Mon, 7 May 2001 05:03:16 -0700 (PDT) (envelope-from sl@linast.de) Received: from linast.de (pc-2n00.inf.fh-rhein-sieg.de [194.95.66.96]) by ux-2s02.inf.fh-rhein-sieg.de (8.11.2/8.9.1) with ESMTP id f47C1k922357 for ; Mon, 7 May 2001 14:01:49 +0200 (MEST) Message-ID: <3AF68EFD.51F36FBA@linast.de> Date: Mon, 07 May 2001 14:03:09 +0200 From: Sebastian Lederer Organization: Linast-Systemtechnik GmbH X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: www@FreeBSD.org Subject: Commercial Vendors web page submission Content-Type: multipart/mixed; boundary="------------E0AA1135882C8473F3F404F2" Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------E0AA1135882C8473F3F404F2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Dear webmaster, we, that is "Linast-Systemtechnik GmbH", are a young startup company offering FreeBSD consulting services and would like to be added to your list of commercial consulting services on your web site. A suitable HTML snippet describing our company is attached to this message. Thanks a lot, Sebastian Lederer Linast-Systemtechnik GmbH --------------E0AA1135882C8473F3F404F2 Content-Type: text/html; charset=us-ascii; name="Linast-description.html" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Linast-description.html" Linast-Systemtechnik GmbH is located in Sankt Augustin, Germany (near Bonn/Cologne) and provides consulting, support and training for FreeBSD, Linux, MacOS X and other Unix Systems. For more information, please call +49.2241.209467, e-mail us at info@linast.de or visit our website. --------------E0AA1135882C8473F3F404F2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Mon May 7 20:50:30 2001 Delivered-To: freebsd-www@freebsd.org Received: from plum.cyber.com.au (plum.cyber.com.au [203.7.155.24]) by hub.freebsd.org (Postfix) with SMTP id 9FD9337B422 for ; Mon, 7 May 2001 20:50:25 -0700 (PDT) (envelope-from conz@cyber.com.au) Received: from peanut.office.cyber.com.au (peanut.office.cyber.com.au [192.168.155.28]) by plum.cyber.com.au (8.6.12/8.6.6) with ESMTP id NAA19104; Tue, 8 May 2001 13:50:21 +1000 Received: (from conz@localhost) by peanut.office.cyber.com.au (8.9.3/8.9.3) id NAA03074; Tue, 8 May 2001 13:53:15 +1000 (EST) Date: Tue, 8 May 2001 13:53:14 +1000 From: Con Zymaris To: www@FreeBSD.org Subject: Commercial Vendors - Consulting Message-ID: <20010508135314.V24082@cyber.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings, we would like Cybersource Pty. Ltd. to be listed in the following web page if possible: http://www.freebsd.org/commercial/consulting_bycat.html Cybersource is a 10 year veteran of the Australian Unix and IP datanetworking industry. We have been using and offering FreeBSD support for much of that time. Some of senior staff have been using BSD Unix since version 4.1 in 1984. We have nearly 40 technical staff working with these technologies. ========================================================================== Our Company Name is: Cybersource Pty. Ltd. Our Country of Operation is: Australia Our URL is: http://www.cyber.com.au Our paragraph blurb is: Cybersource is Australia's leading IT Professional Services Company in the areas of Unix/FreeBSD/Linux, TCP/IP Datanetworking and Open Platform application development using these technologies. With around 40 staff, are based in Melbourne and have been successfully providing IT Professional Services for 10 years ========================================================================== Please let me know if you need any more information. Cheers, Con Zymaris CEO Cybersource -- _____________________________________________________________________________ Con Zymaris Level 9, 140 Queen St, Melbourne. 9642 5997 Cybersource: Successfully Providing IT Professional Services for 10 Years Specialists in Unix/Linux, TCP/IP and Web App. Development www.cyber.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Tue May 8 18: 9:48 2001 Delivered-To: freebsd-www@freebsd.org Received: from box.mfnx.net (box.mfnx.net [64.124.216.37]) by hub.freebsd.org (Postfix) with ESMTP id BE82B37B423; Tue, 8 May 2001 18:09:42 -0700 (PDT) (envelope-from dep@mfnx.net) Received: from ug.mfnx.net (ug.mfnx.net [64.124.216.38]) by box.mfnx.net (8.9.3/8.9.1) via ESMTP id SAA45033; Tue, 8 May 2001 18:09:42 -0700 (PDT) env-from (dep@mfnx.net) Received: (from dep@localhost) by ug.mfnx.net (8.9.3/8.9.1) id SAA91257; Tue, 8 May 2001 18:09:42 -0700 (PDT) env-from (dep@mfnx.net) Date: Tue, 8 May 2001 18:09:42 -0700 From: David Pereira To: faulkner@freebsd.org, smp@csn.net Cc: www@freebsd.org Subject: http://www.freebsd.org/~ahasty/Bt848.html link Message-ID: <20010508180942.A85659@ug.mfnx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org your Bt848 link on http://people.FreeBSD.org/~fsmp/HomeAuto/HomeAuto.html and http://people.FreeBSD.org/~faulkner/multimedia/mm.html doesn't work. i'm not sure if the page at http://people.freebsd.org/~ahasty/Bt848.html moved, but it is no longer present at that URL. Regards, David -- David Pereira AboveNet Communications / Metromedia Fiber Network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Wed May 9 3:40:43 2001 Delivered-To: freebsd-www@freebsd.org Received: from harrier.solit.dk (harrier.solit.dk [212.97.128.50]) by hub.freebsd.org (Postfix) with ESMTP id E4E0437B423 for ; Wed, 9 May 2001 03:40:40 -0700 (PDT) (envelope-from joe@sysorb.com) Received: by harrier.solit.dk (Postfix, from userid 500) id 5A7465F; Wed, 9 May 2001 12:40:29 +0200 (CEST) Date: Wed, 9 May 2001 12:40:29 +0200 From: joe@sysorb.com To: www@FreeBSD.org Subject: Commercial product - addition to your list Message-ID: <20010509124029.B7037@sysorb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello FreeBSD'ers ! Solit Solutions ApS recently released the SysOrb Monitoring System, and we would very much like to see our product/company listed under your commercial software vendors page. Our product will monitor network connectivity and server resources, and can both alert administrators (via. SMS, e-mail, pager) and provide historical information about monitored resources. The product is available for: FreeBSD 3.5, FreeBSD 4.2, Debian GNU/Linux, RedHat Linux, Solaris 8 and Windows NT/2000. Can you add the following under the category "Network Systems and Applications": ------------------------------------------------------------------------------ Solit Solutions ApS provides the SysOrb Monitoring System, a network and systems monitoring suite for FreeBSD as well as other major operating systems such as Solaris, NT, RedHat Linux and Debian GNU/Linux. The web-based user-interface provides real-time monitoring information as well as historical data from the database backend. Alerts can be sent via. e-mail, SMS and pager. The software is available for free, for use on a limited number of systems. Additional licenses can be purchased on-line. ------------------------------------------------------------------------------ If you find anything missing, or if there is some other problem, please let us know. Thank you very much, -- Best regards, Jakob Oestergaard [The SysOrb Team] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Wed May 9 14:57:28 2001 Delivered-To: freebsd-www@freebsd.org Received: from moutvdom01.kundenserver.de (moutvdom01.kundenserver.de [195.20.224.200]) by hub.freebsd.org (Postfix) with ESMTP id 5420837B43C for ; Wed, 9 May 2001 14:57:23 -0700 (PDT) (envelope-from uebersetzer@60sec.de) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 14xbxS-0005Qr-00 for www@freebsd.org; Wed, 9 May 2001 23:57:22 +0200 Received: from pd9002129.dip.t-dialin.net ([217.0.33.41] helo=Einar) by mrvdom03.kundenserver.de with smtp (Exim 2.12 #2) id 14xbxL-0003cD-00 for www@FreeBSD.org; Wed, 9 May 2001 23:57:16 +0200 Message-ID: <024401c0d8d3$42d79e60$1801a8c0@Ost.de> From: "Die Uebersetzer" To: Subject: =?iso-8859-1?Q?=DCbersetzer-Info?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Date: Wed, 9 May 2001 23:57:16 +0200 Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sehr geehrte Damen und Herren, Sie ben=F6tigen regelm=E4=DFig =DCbersetzungen von Fachtexten und = Webseiten - und das am besten in Stunden, und nicht in Tagen? In nur 60 Sekunden k=F6nnen Sie sich hier umfassend =FCber unseren = innovativen B2B =DCbersetzungsdienst informieren: www.dieuebersetzer.de/grafik/eubylon23.html Wenn sie auch Informationen =FCber weitere interessante Dienstleistungen = erhalten bekommen m=F6chten, klicken Sie hier: mailto:info@60sec.de Falls Sie keine weiteren Informationen w=FCnschen dann klicken Sie bitte = hier: mailto: uninfo@60sec.de Mit freundlichen Gr=FC=DFen Klaus Neumann Kundenbetreuung www.dieuebersetzer.de wir =FCberwinden Barrieren ein Service der: Eubylon GmbH Ackerstra=DFe 14-15 10115 Berlin info@eubylon.de T: +49-30-280 94 010 F: +49-30-280 94 008 - - - - - - - - - - - - - - - - Ladies and Gentlemen, Do you regularly need translations of your product descriptions or=20 services in hours and not in days? The http://www.dieuebersetzer.de provides innovative B2B online = translation=20 services for enterprises of the IT and E-Commerce industry. You need just 60 seconds to find out right now how our service works. Click here: = http://www.dieuebersetzer.de/werbung/PR-Newswire_18012001.html Simply test us and discover that our services will convince you! If you would like more information about our services, click here: mailto:info@60sec.de If you do not require further information please click here: =20 mailto:uninfo@60sec.de Your online translation team Klaus Neumann Customer service Eubylon GmbH Ackerstrasse 14-15 10115 Berlin T: +49-30-280 94 010 F: +49-30-280 94 008 mailto:neumann@eubylon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Thu May 10 15:28:20 2001 Delivered-To: freebsd-www@freebsd.org Received: from sv02.kmjeuro.com (adsl.sbg.kmjeuro.com [193.154.189.16]) by hub.freebsd.org (Postfix) with ESMTP id DEAC337B424 for ; Thu, 10 May 2001 15:28:13 -0700 (PDT) (envelope-from k.joch@kmjeuro.com) Received: (from root@localhost) by sv02.kmjeuro.com (8.11.3/8.11.1) id f4AMSC615778 for www@freebsd.org; Fri, 11 May 2001 00:28:12 +0200 (CEST) (envelope-from k.joch@kmjeuro.com) Received: from karl (31dd439073f1d118e4e73b2037eeeb8f@adsl.ooe.kmjeuro.com [193.154.186.21]) by sv02.kmjeuro.com (8.11.3/8.11.1) with SMTP id f4AMS3d15645 for ; Fri, 11 May 2001 00:28:05 +0200 (CEST) (envelope-from k.joch@kmjeuro.com) Message-ID: <006a01c0d9a0$96a5b1d0$0a05a8c0@ooe.kmjeuro.com> From: "Karl M. Joch" To: Subject: Entry at Commercial Vendors - Consulting - http://www.freebsd.org/commercial/consulting.html Date: Fri, 11 May 2001 00:24:28 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X--virus-scanner: scanned for Virus and dangerous attachments by PROLINE AUSTRIA (http://www.proline.at/) Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello FreeBSD Team, I really would appreziate an entry in your listing for our consulting and pre installed system services in Austria and Germany. We do FreeBSD only for servers, firewalls and gateways. If possible the workstations too. --- The Entry if possible to add --- KMJ Consulting Austria is a full service Consultand and Supplier for pre installed FreeBSD Servers as a replacement for Windows NT/2000 Servers. We ship Firewalls, Internet Gateways, File and Print Servers. Network planing and implementation of Wans with IPSEC tunneling, Mail Servers with IMAP/LDAP as an replacement for MS Exchange, Samba and Hylafax installations. Our newest pre installed System is a FreeBSD Workstation running on a P733 with 512MB Ram, Matrox G400 Dual VGA and 2 Monitors. If sometimes Windows is needed a Demo of Vmware is preinstalled to run Windows in a Window of the FreeBSD System. Founded 1985 with Unix and Mainframe experience since 1978. We are based in Salzburg and Vienna / Austria and operate mostly in the german language terretory of the EC. For non-commercial information please visit FreeBSD.AT. --- End Entry --- Many thanks in advance for you work. Best regards / Mit freundlichen Grüßen, Karl M. Joch http://www.kmj.at k.joch@kmj.at Tel.: +43-6246-77095-0 Fax : +43-6246-77095-22 GSM : +43-664-3407888 Unsere Services: http://www.Proline.at - Netzwerk und Sicherheitstechnik To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Fri May 11 18:41:18 2001 Delivered-To: freebsd-www@freebsd.org Received: from ns3.masterhost.net (mail.masterhost.net [216.242.170.45]) by hub.freebsd.org (Postfix) with ESMTP id 59EC337B424 for ; Fri, 11 May 2001 18:41:14 -0700 (PDT) (envelope-from editor@travelnewsletter.com) Received: from mail.masterhost.net ([216.242.170.11]) by ns3.masterhost.net (8.9.1/8.8.8) with SMTP id VAA03478 for ; Fri, 11 May 2001 21:38:30 -0400 (EDT) From: Peter Coloyan Message-Id: <200105120138.VAA03478@ns3.masterhost.net> Date: Fri, 11 May 2001 21:35:47 To: www@FreeBSD.org Subject: iTravelNews.com is coming! MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for reading this! A travel colleague has suggested that you may be interested in receiving this information. iTravelNews.com is coming!!! June 15, 2001 FREE SUBSCRIPTION TO ALL IN THE WORLDWIDE TRAVEL INDUSTRY Join the 60,000+ who have already subscribed for FREE Subscribe, and receive your weekly dose of iTravelNews.com, covering; Industry News * Press Releases * Internet Travel * Business Travel * Cruises * Tours * Hotels * Car Rentals * Resorts * Specialty Travel * Legal * Trivia * Family Travel * Comedy * Health Reports * Travel Safety * Insurance * Travel Domain Name Sales * Travel Industry Stock Watch * Editorial * Consulting * Meetings & Incentives * Conventions * Visitors Bureaus Travel Knowledge * Ongoing Education * Supplier Specials * Politics * To subscribe, simply reply to this email with iSubscribe as the subject, or send an email to : subscribe@itravelnews.com For display or classified advertising information and our special, introductory rates, please email: advertising@itravelnews.com Check out our consumer newsletter, TravelNewsletter.com, which goes out to over 320,000 subscribers each week. For advertising information in this online publication, please email ads@travelnewsletter.com There is no need to remove - this is a one time mailing. If we have reached you in error and you were not interested in this information, we apologize for any inconvenience we have caused. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Sat May 12 11:54:36 2001 Delivered-To: freebsd-www@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id 53A5737B43E for ; Sat, 12 May 2001 11:54:34 -0700 (PDT) (envelope-from mail-service@friedhof2000.de) Received: from [195.20.224.208] (helo=mrvdom01.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 14yeXB-0004FV-00 for www@freebsd.org; Sat, 12 May 2001 20:54:33 +0200 Received: from pd904dd79.dip.t-dialin.net ([217.4.221.121] helo=celeron) by mrvdom01.schlund.de with smtp (Exim 2.12 #2) id 14yeWz-0000Ab-01 for www@freebsd.org; Sat, 12 May 2001 20:54:21 +0200 From: Mail-Service To: www@freebsd.org Subject: Jetzt gewinnen, in über 100 Gewinnspielen! Reply-To: mail-service@friedhof2000.de MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: BulkMailer 2.0 (www.kroll-software.de) Message-Id: Date: Sat, 12 May 2001 20:54:21 +0200 Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Falls unerwünscht, bitte sofort löschen! Gewinn24.de meldet Sie jeden Monat bei über 100 der besten Gewinnspiele im Internet an. Sie sparen mit Gewinn24.de eine Menge Zeit und Geld. Für maximal 2,- DM pro Monat sind Sie dabei und haben jeden Monat Gewinnchancen auf viele tolle Preise im Gesamtwert von mehreren Millionen DM. http://www.Gewinn24.de/index.php3?partner=7294 *Bei Beschwerden bitte an alex-albert@01019freenet.de * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Sat May 12 12:13:41 2001 Delivered-To: freebsd-www@freebsd.org Received: from infopuls.com (mail.infopuls.com [193.247.146.165]) by hub.freebsd.org (Postfix) with ESMTP id 883E737B43E for ; Sat, 12 May 2001 12:13:38 -0700 (PDT) (envelope-from root@infopuls.com) Received: (from root@localhost) by infopuls.com (8.9.3/8.9.3) id VAA07884 for www@FreeBSD.org; Sat, 12 May 2001 21:14:04 +0200 (CEST) (envelope-from root) Date: Sat, 12 May 2001 21:14:04 +0200 From: sysadmin To: www@FreeBSD.org Subject: Broken links / wrong link Message-ID: <20010512211404.A7880@infopuls.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org After finding AbiWord-0.7.10 the links of the categories "package" and "download" are broken. The tag at "Please direct questions about this service to www@FreeBSD.org" isn't "mailto" which it should IMHO be. Instead it is a link to "http://www.FreeBSD.org/ports/". Is this intentional? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message From owner-freebsd-www Sat May 12 20:36:20 2001 Delivered-To: freebsd-www@freebsd.org Received: from mars.bhni.net (mars.bhni.net [65.166.202.60]) by hub.freebsd.org (Postfix) with ESMTP id 56CCA37B424 for ; Sat, 12 May 2001 20:36:18 -0700 (PDT) (envelope-from agc@bhni.net) Received: from wormhole.blackhatlabs.com (wormhole.blackhatlabs.com [65.166.202.57]) by mars.bhni.net (8.x/8.x) with ESMTP id f4D3a8n21466 for ; Sun, 13 May 2001 03:36:09 GMT Date: Sat, 12 May 2001 23:33:09 -0500 (EST) From: Alex Chamandy X-X-Sender: To: Subject: Software and Hardware Vendor listing Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-www@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Software catagories: E-commerce Solutions and Tools, Multimedia, Network Systems and Applications, Security, System Administration / ISP Software paragraph: Black Hat Networks provides customized programming, development, database integration, imaging, web design, administration, network appliction implementation, security auditing, and monitoring services. Our services are specifically focused on FreeBSD, as well as other Unix and Unix-like operating systems. Please visit our web site and call us toll-free at 1-(866)-536-3001.
Hardware paragraph: Black Hat Networks offers a broad myriad of hardware services. Including, but not limited to: customized workstation and server implementation, hardware maintenance, emergency incident response capability, networking equipment, FreeBSD pre-installed servers, and other hardware components. Please visit our web site and call us toll-free at 1-(866)-536-3001.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-www" in the body of the message