RE: collecting unique client (computer) specific info?

2003-09-03 Thread kfr
: [EMAIL PROTECTED] Subject: RE: collecting unique client (computer) specific info? Apologies.. yes, this was meant for the list!! Roger On Tue, 2003-09-02 at 14:29, Perrin Harkins wrote: Did you mean to send this to the list? It only went to me. On Tue, 2003-09-02 at 15:23, Roger Davenport wrote

RE: collecting unique client (computer) specific info? [OT]

2003-09-03 Thread Ged Haywood
Hi there, On Wed, 3 Sep 2003, kfr wrote: Anyone know how to capture the UUID from a request? What makes you think there'll be one in there? I've been looking all over the place and cant seem to find any reference to it anywhere ... Try Google? 73, Ged. -- Reporting bugs:

Re: collecting unique client (computer) specific info?

2003-09-03 Thread Stas Bekman
kfr wrote: Anyone know how to capture the UUID from a request? I've been looking all over the place and cant seem to find any reference to it anywhere ... You mean, you want to generate one? in mod_perl2/apr it'd be: use APR::UUID: my $uuid = APR::UUID-new-format; or from the command line

RE: collecting unique client (computer) specific info?

2003-09-03 Thread Perrin Harkins
On Wed, 2003-09-03 at 12:22, kfr wrote: Anyone know how to capture the UUID from a request? According to the mod_ssl manual, it is stored in an environment variable called SSL_SESSION_ID. - Perrin -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info:

Re: collecting unique client (computer) specific info?

2003-09-03 Thread John Saylor
hi ( 03.09.03 10:42 -0700 ) Stas Bekman: You mean, you want to generate one? in mod_perl2/apr it'd be: is there an equivalent in mod_perl1? -- \js -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

Re: collecting unique client (computer) specific info?

2003-09-03 Thread Stas Bekman
John Saylor wrote: hi ( 03.09.03 10:42 -0700 ) Stas Bekman: You mean, you want to generate one? in mod_perl2/apr it'd be: is there an equivalent in mod_perl1? I'm sure there are a few modules on CPAN that you can use. Again I'm talking about generating UUD, not extracting the SSL one. Perrin

Re: collecting unique client (computer) specific info?

2003-09-03 Thread Perrin Harkins
On Wed, 2003-09-03 at 15:03, John Saylor wrote: is there an equivalent in mod_perl1? Use Data::UUID from CPAN or mod_unique_id. Note that this (and the mod_perl 2 approach Stas posted) has nothing to do with identifying the actual client, which is what the original question on this thread was

RE: collecting unique client (computer) specific info?

2003-09-03 Thread kfr
(timestamp, hardware address, etc), which the hardware address is really what I'm after. K -Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 12:28 PM To: John Saylor Cc: [EMAIL PROTECTED] Subject: Re: collecting unique client (computer

RE: collecting unique client (computer) specific info? [OT]

2003-09-03 Thread Ged Haywood
Hi there, On Wed, 3 Sep 2003, kfr wrote: had to re-compile my server with mod_ssl :) the hardware address is really what I'm after. What hardware? 73, Ged. -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

RE: collecting unique client (computer) specific info? [OT] [x-adr][x-bayes]

2003-09-03 Thread Garrett Goebel
Title: RE: collecting unique client (computer) specific info? [OT] [x-adr][x-bayes] Ged Haywood wrote: On Wed, 3 Sep 2003, kfr wrote: the hardware address is really what I'm after. What hardware? He's looking for a MAC address, cpu id, etc. something to fix the identity

RE: collecting unique client (computer) specific info? [OT] [x-adr][x-bayes]

2003-09-03 Thread kfr
-00a0c91e6bf6 the 00a0c91e6bf6 being the mac address of the computer. K -Original Message- From: Garrett Goebel [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 3:07 PM To: 'Ged Haywood'; kfr Cc: mod_perl Mailing List Subject: RE: collecting unique client (computer) specific

RE: collecting unique client (computer) specific info? [OT][x-adr][x-bayes]

2003-09-03 Thread Ged Haywood
Hi there, On Wed, 3 Sep 2003, kfr wrote: http://www.webdav.org/specs/draft-leach-uuids-guids-01.txt from section 3.5 ... I was assuming there was some way to parse and decrypt the mac address from: The following is an example of the string representation of a UUID:

collecting unique client (computer) specific info?

2003-09-02 Thread kfr
Any one out there know of some way, either from java or SLL or some other combination, to collect any kind of machine specific information from a web client logging into a site with SSL (Apache/mod_perl mod_ssl)? I need to find some way to uniquely identify a 'machine', like possible grabbing

RE: collecting unique client (computer) specific info?

2003-09-02 Thread kfr
, September 01, 2003 10:35 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: collecting unique client (computer) specific info? On Tue, 2003-09-02 at 13:24, kfr wrote: Any one out there know of some way, either from java or SLL or some other combination, to collect any kind of machine specific

RE: collecting unique client (computer) specific info?

2003-09-02 Thread Perrin Harkins
On Tue, 2003-09-02 at 14:23, kfr wrote: Yes, sorry. I have a site that allows my customers to become members via monthly credit card subscription. The problem is we've been getting fraudulent credit card transactions and need some mechanism to detect a user who is a repeat offender so I can

Re: collecting unique client (computer) specific info?

2003-09-02 Thread Perrin Harkins
On Tue, 2003-09-02 at 13:24, kfr wrote: Any one out there know of some way, either from java or SLL or some other combination, to collect any kind of machine specific information from a web client logging into a site with SSL (Apache/mod_perl mod_ssl)? I need to find some way to uniquely