Thanks, Jenda. I did not know that, but I will try it out!
Jenda Krynicky wrote:
>
> From: Issa Mbodji <[EMAIL PROTECTED]>
> > I am using Apache::Session::Mysl and I was able to generate a session
> > id. What I want to know now is how to append that sess_id to the
From: Issa Mbodji <[EMAIL PROTECTED]>
> I am using Apache::Session::Mysl and I was able to generate a session
> id. What I want to know now is how to append that sess_id to the url
> as soon as it is created and as soon as the user loads the page. For
> example, the session is cr
Thank you!
[EMAIL PROTECTED] wrote:
Issa Mbodji wrote:
http://localhost/cgi-bin/myrequest.pl?sess_id=0002114452221149988ac01
as a HTTP Header command -
my $id = '0002114452221149988ac01';
print "Location: http://localhost/cgi-bin/myrequest.pl?sess_id=$id";;
--
To unsubscribe, e-mai
Issa Mbodji wrote:
http://localhost/cgi-bin/myrequest.pl?sess_id=0002114452221149988ac01
as a HTTP Header command -
my $id = '0002114452221149988ac01';
print "Location: http://localhost/cgi-bin/myrequest.pl?sess_id=$id";;
--
_Sx_ http://youve-reached-the.endoftheinternet.org/ _
h
I am using Apache::Session::Mysl and I was able to generate a session
id. What I want to know now is how to append that sess_id to the url as
soon as it is created and as soon as the user loads the page.
For example, the session is created when I go to the following url:
http://localhost/cgi-bin
> Still a little bit confused;
> So what if someone just creates an HTML with a hidden field containing any
> "login:time" plus another hidden with MD5 hash made out of his own
> IP+login+time and submits it?
Then they just bypassed your security :) The thing is that you take a
string built out of
mario kulka wrote:
> Hi,
> I guess I'm lost again on this topic:(
> I'm basically trying the following:
> User logs in -> then he has a choice:
> 1. enter new record
> 2. edit old one
> Once taken to those new pages I somehow must keep the fact that he already
> logged in and at the same time forb
y combinations, but if the secret_word (or
number) is short; isn't easy to find it?
Mariusz
From: "Jenda Krynicky" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: session ID
Date: Thu, 13 Feb 2003 00:37:38 +0100
From: "mario kulka" <[EMAIL PR
mario kulka wrote:
The only reason I would think it would be hard to do is for someone to
guess that the hash was made of his IP and not something else.
Using the IP may be a very bad idea as it is *not* necessarily
reproducible. For instance someone coming from a large company may be
using
From: "mario kulka" <[EMAIL PROTECTED]>
> Still a little bit confused;
> So what if someone just creates an HTML with a hidden field containing
> any "login:time" plus another hidden with MD5 hash made out of his own
> IP+login+time and submits it? According to your explanation I
> understood that
hash).
Thanks for further explanations,
Mariusz
From: Bernhard van Staveren <[EMAIL PROTECTED]>
To: "mario kulka" <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: session ID
Date: Wed, 12 Feb 2003 18:46:27 +0100
On Wed, 12 Feb 2003 17:07:16 +
"mario kulk
On Wed, 12 Feb 2003 17:07:16 +
"mario kulka" <[EMAIL PROTECTED]> wrote:
>
> Hi,
> I guess I'm lost again on this topic:(
> I'm basically trying the following:
> User logs in -> then he has a choice:
> 1. enter new record
> 2. edit old one
> Once taken to those new pages I somehow must keep th
Hi,
I guess I'm lost again on this topic:(
I'm basically trying the following:
User logs in -> then he has a choice:
1. enter new record
2. edit old one
Once taken to those new pages I somehow must keep the fact that he already
logged in and at the same time forbid other people from a direct acce
> -Original Message-
> From: Mariusz K [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 09, 2002 3:19 PM
> To: [EMAIL PROTECTED]
> Subject: session id
>
>
> Hi:)
> I want to be able to track the user as he goes from one pae
> to another. I
> heard
http://www.perldoc.com/perl5.6.1/lib/CGI.html
should get you what you need..
-G
On Mon, 09 Sep 2002 19:18:43 +
Mariusz K <[EMAIL PROTECTED]> wrote:
> Hi:)
> I want to be able to track the user as he goes from one pae to another. I
> heard that sessionID are used for that purpose. I was t
Hi:)
I want to be able to track the user as he goes from one pae to another. I
heard that sessionID are used for that purpose. I was trying to find info on
the net about creating a sessionID with perl and didn't find any articles
for biginners. Could anyone pls tell me how to create them or whe
Hello,
I'm trying to connect to a server respectively a site in PHP via HTTP:Methodes.
now my question can I get somehow the PHPSessID? If you open the same Page
with Netscape then the Session ID is available for the next request? (Is
send then via Cookie: PHPSessionID=sdfkjer3i2i).
My
Hello,
I'm trying to connect to a server respectively a site in PHP via HTTP:Methodes.
now my question can I get somehow the PHPSessID? If you open the same Page
with Netscape then the Session ID is available for the next request? (Is
send then via Cookie: PHPSessionID=sdfkjer3i2i).
My
I usually use Session::Apache for that. It will allow for the creation of
session ID's, storing data, and retreival of data. You will need to set up
a table in a database, and then put some code in each page to fetch the
session ID from the querystring or cookie so that it can initializ
Hello!
i see in most PHP powered sites values like SID=02304028lkbah234, which is the
session id in most cases, is there any way to do the same in PERL?
Thanks
--
Hytham Shehab
> -Original Message-
> From: Mark Maunder [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 23, 2001 2:09 PM
> To: Kevin Harwood; Beginners@Perl. Org
> Subject: RE: parsing a session id out of LWP::
>
>
> The URL is what you're requesting. Unless you r
::UserAgent
and override $ua->redirect_ok so that it returns false.
> -Original Message-
> From: Kevin Harwood [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 23, 2001 6:05 PM
> To: Beginners@Perl. Org
> Subject: parsing a session id out of LWP::
>
>
> I'm
I'm trying to test web pages and need to retrieve a session ID out of the
first request I send out.
I use LWP::UserAgent and send a request for a page, somewhere the url
probably comes back and at the end of that is the session id.
I then need to attach that to the end of all future req
23 matches
Mail list logo