[Assp-test] Assp 2.0.1(1.0.06) download failed

2010-04-09 Thread Manfred Aretz
Assp can´t download the newe version on Wiki. The last update on Wiki for Version 2 was on 22.03.2010 I have seen a new Version 2.0.1(1.0.08) this was on the mailinglist Manfred Aretz Südwall 15 47798 Krefeld Tel. : 02151 4467407 Fax : 02151 4467122 Mobil : 0151 15682202

Re: [Assp-test] Assp 2.0.1(1.0.06) download failed

2010-04-09 Thread Thomas Eckardt
Where you've seen a version 2.0.1(1.0.08)? The last public version is 2.0.1 1.0.06. The last development version is 2.0.2 1.0.08. If you has installed the public version, the autoupdate only looks for new public versions. If you has installed the dev version, the autoupdate only looks for new

Re: [Assp-test] Assp 2.0.1(1.0.06) download failed

2010-04-09 Thread GrayHat
Assp can´t download the newe version on Wiki. The last update on Wiki for Version 2 was on 22.03.2010 I have seen a new Version 2.0.1(1.0.08) this was on the mailinglist Pick the latest version here http://assp.cvs.sourceforge.net/viewvc/assp/assp2/ notice that the above version is

[Assp-test] Bombre

2010-04-09 Thread Hill, Brett
How would you write a bombre regex to catch the following: filename=UPS_invoice_2794.zip I've tried: filename=UPS_invoice_{1,4}.zip and variants with greater numbers like {1,10} However, the ASSP analyzer doesn't pick it up. Also, the following statement creates a huge error in the ASSP Log

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Sorry, There's supposed to be a \ before the period. I forgot to add it when typing, but it's in the regex with a \. Brett Hill, Brett wrote: Sent: Friday, April 09, 2010 9:04 AM To: ASSP development mailing list Subject: [Assp-test] Bombre How would you write a bombre regex to catch

Re: [Assp-test] Bombre

2010-04-09 Thread Fritz Borgstedt
ASSP development mailing list assp-test@lists.sourceforge.net schreibt: I've tried: filename=UPS_invoice_{1,4}.zip and variants with greater UPS_invoice_.{1,4}.zip -- Download Intel#174; Parallel Studio Eval Try the

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Thanks! -Original Message- From: Fritz Borgstedt [mailto:f...@iworld.de] Sent: Friday, April 09, 2010 9:13 AM To: ASSP development mailing list Subject: Re: [Assp-test] Bombre ASSP development mailing list assp-test@lists.sourceforge.net schreibt: I've tried:

Re: [Assp-test] Bombre

2010-04-09 Thread Thomas Eckardt
any of this should do it: UPS_invoice_\d{1,4}\.zip # 1 - 4 digits UPS_invoice_\d*\.zip # 0 - infinity digits UPS_invoice_\d+\.zip # 1 - infinity digits UPS_invoice_.*?\.zip # 0 - infinity characters UPS_invoice_.+?\.zip # 1 - infinity characters

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Thomas Eckardt wrote: any of this should do it: UPS_invoice_\d{1,4}\.zip # 1 - 4 digits UPS_invoice_\d*\.zip # 0 - infinity digits UPS_invoice_\d+\.zip # 1 - infinity digits UPS_invoice_.*?\.zip # 0 - infinity characters UPS_invoice_.+?\.zip # 1 - infinity

Re: [Assp-test] Bombre

2010-04-09 Thread Fritz Borgstedt
ASSP development mailing list assp-test@lists.sourceforge.net schreibt: Thank you for explaining more in detail. Unfortunately, none of those work in ASSP 1.7.x. I forgot to mention in my original post that I was using the 1.7.x version. There is no difference between V1 and V2 in the

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Fritz Borgstedt wrote: ASSP development mailing list assp-test@lists.sourceforge.net schreibt: I've tried: filename=UPS_invoice_{1,4}.zip and variants with greater UPS_invoice_.{1,4}.zip That works if I just have UPS_invoice_2794.zip in the analyzer by itself. But if I copy the whole

Re: [Assp-test] Bombre

2010-04-09 Thread Fritz Borgstedt
Also, the following statement creates a huge error in the ASSP Log (essentially the whole bombre.txt file is in there): (?si)the.branch.manager.{1,10}of.the.Eco.Bank.Of.Ghana.Limited No, that is not the statement which produces a huge error. There is also a comment in it: marked by -- HERE The

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Fritz Borgstedt wrote: No, that is not the statement which produces a huge error. There is also a comment in it: marked by -- HERE The error is not in the first line, but in the line marked by -- HERE (?si)the.branch.manager.{1,10}of.the.Eco.Bank.Of.Ghana.Limited is completely ok.

Re: [Assp-test] Bombre

2010-04-09 Thread Hill, Brett
Fritz Borgstedt wrote: There is no difference between V1 and V2 in the Regex-Matching. Well, the examples that Thomas included don't work/match unless it's cosmetic that it doesn't match. And yours only works if the analyze input only includes what I'm trying to match (that particular

Re: [Assp-test] SBCache

2010-04-09 Thread Masood Rahim
How do things end up in the SBCache table in v2? I guess I'm trying to find out what this table is for. Thanks, Masood -Original Message- From: assp-test-requ...@lists.sourceforge.net [mailto:assp-test-requ...@lists.sourceforge.net] Sent: Friday, April 09, 2010 9:15 AM To:

Re: [Assp-test] SBCache

2010-04-09 Thread Thomas Eckardt
How do things end up in the SBCache table in v2? SBCache caches the information in which country the IP is registered and for which company and domain it is registered. Thomas Von:Masood Rahim mas...@intertune.com An: assp-test@lists.sourceforge.net Datum: 09.04.2010 21:28 Betreff: