Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   are server variables secure? (http://www.velocityreviews.com/forums/t801656-are-server-variables-secure.html)

wolfing1@gmail.com 07-18-2006 08:14 PM

are server variables secure?
 
I'm working on a shopping cart page. In page A (checkout) the user
enters their credit card information. On postback, if everything is
correct, it sends the user to page B (confirmation). My question is,
can I (or should I) use server variables to send CC information to page
B? My boss doesn't want me to store this information in the SQL
database we're using. Obviously cookies are out of the question and so
is passing info through request.querystring, so I was thinking on using
session variables for this, but not sure if it's safe.
What should I do?


wolfing1@gmail.com 07-19-2006 01:42 PM

Re: are server variables secure?
 

wolfing1@gmail.com wrote:
> I'm working on a shopping cart page. In page A (checkout) the user
> enters their credit card information. On postback, if everything is
> correct, it sends the user to page B (confirmation). My question is,
> can I (or should I) use server variables to send CC information to page
> B? My boss doesn't want me to store this information in the SQL
> database we're using. Obviously cookies are out of the question and so
> is passing info through request.querystring, so I was thinking on using
> session variables for this, but not sure if it's safe.
> What should I do?

Anything at all?


Bob Barrows [MVP] 07-19-2006 01:58 PM

Re: are server variables secure?
 
wolfing1@gmail.com wrote:
> I'm working on a shopping cart page. In page A (checkout) the user
> enters their credit card information. On postback, if everything is
> correct, it sends the user to page B (confirmation). My question is,
> can I (or should I) use server variables to send CC information to
> page B? My boss doesn't want me to store this information in the SQL
> database we're using.


Legalities?

> Obviously cookies are out of the question and
> so is passing info through request.querystring, so I was thinking on
> using session variables for this, but not sure if it's safe.
> What should I do?

Really can't add to this:
http://www.velocityreviews.com/forum...variables.html

More via this search:
http://www.google.com/search?hl=en&l...secure%3F+-php

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.



Bob Barrows [MVP] 07-19-2006 02:25 PM

Re: are server variables secure?
 
wolfing1@gmail.com wrote:
> I'm working on a shopping cart page. In page A (checkout) the user
> enters their credit card information. On postback, if everything is
> correct, it sends the user to page B (confirmation). My question is,
> can I (or should I) use server variables to send CC information to
> page B? My boss doesn't want me to store this information in the SQL
> database we're using. Obviously cookies are out of the question and
> so is passing info through request.querystring, so I was thinking on
> using session variables for this, but not sure if it's safe.
> What should I do?

More:
http://support.microsoft.com/kb/274149/
http://searchsecurity.techtarget.com...171079,00.html
http://www.microsoft.com/technet/tec...g/default.aspx
http://www.google.com/search?hl=en&l...session+hijack

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.



wolfing1@gmail.com 07-19-2006 07:21 PM

Re: are server variables secure?
 

Bob Barrows [MVP] wrote:
> wolfing1@gmail.com wrote:
> > I'm working on a shopping cart page. In page A (checkout) the user
> > enters their credit card information. On postback, if everything is
> > correct, it sends the user to page B (confirmation). My question is,
> > can I (or should I) use server variables to send CC information to
> > page B? My boss doesn't want me to store this information in the SQL
> > database we're using. Obviously cookies are out of the question and
> > so is passing info through request.querystring, so I was thinking on
> > using session variables for this, but not sure if it's safe.
> > What should I do?

> More:
> http://support.microsoft.com/kb/274149/
> http://searchsecurity.techtarget.com...171079,00.html
> http://www.microsoft.com/technet/tec...g/default.aspx
> http://www.google.com/search?hl=en&l...session+hijack
>

Interesting reads thank you. I didn't understand how a malicious user
could 'read' the session variables even if they spoofed the session ID,
unless I am presenting them back which I am not (i.e. from 'checkout'
page I set the server variables, and then do a response.redirect to a
'confirmation' page which pretty much only says 'you sure you want to
place the order for $x ?). Now, if in this confirmation page I showed
the credit card info, then yes I see how it could be unsafe, but
without showing it... I didn't see how someone could get server
variables with a spoofed session ID.


Bob Barrows [MVP] 07-19-2006 07:35 PM

Re: are server variables secure?
 
wolfing1@gmail.com wrote:
> Bob Barrows [MVP] wrote:
>> wolfing1@gmail.com wrote:
>>> I'm working on a shopping cart page. In page A (checkout) the user
>>> enters their credit card information. On postback, if everything is
>>> correct, it sends the user to page B (confirmation). My question is,
>>> can I (or should I) use server variables to send CC information to
>>> page B? My boss doesn't want me to store this information in the
>>> SQL database we're using. Obviously cookies are out of the
>>> question and so is passing info through request.querystring, so I
>>> was thinking on using session variables for this, but not sure if
>>> it's safe.
>>> What should I do?

>> More:
>> http://support.microsoft.com/kb/274149/
>>

http://searchsecurity.techtarget.com...171079,00.html
>>

http://www.microsoft.com/technet/tec...g/default.aspx
>>

http://www.google.com/search?hl=en&l...session+hijack
>>

> Interesting reads thank you. I didn't understand how a malicious user
> could 'read' the session variables even if they spoofed the session
> ID, unless I am presenting them back which I am not (i.e. from
> 'checkout' page I set the server variables, and then do a
> response.redirect to a 'confirmation' page which pretty much only
> says 'you sure you want to place the order for $x ?). Now, if in
> this confirmation page I showed the credit card info, then yes I see
> how it could be unsafe, but without showing it... I didn't see how
> someone could get server variables with a spoofed session ID.


As you say, as long as you are not sending it back to the client, then
you are secure.
That's the motivation of the sites like Paypal, which only display the
last 4 digits when asking the user to confirm/select the credit card
that should be used for a transaction.

If a hacker gains access to your server and plants a file that dumps all
the session variable values, then he can spoof a session and call that
file.
Of course, if that happens you'll have a lot more problems as well ....

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.




All times are GMT. The time now is 05:00 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57