Ask a Question related to ASP.NET Security, Design and Development.
-
Leon #1
Another form of encrytion? "Not SSL"
How can I encrypted data sent across my website from web forms without using
SSL?
Such as on Login the user enter "EmailAddress" & "Password" and Simply
Registration Form
in which the user creates a Password, FirstName, LastName, etc.
I see site like Careerbuilder and Monster allow user to register, login, and
retrieve a lost password
without using a SSL connection "I Know anytime you deal with credit card
info you need a SSL.
Thanks!
Leon Guest
-
#40281 [NEW]: form with enctype="multipart/form-data" doesn't work
From: hongying4 at yahoo dot ca Operating system: windows 2003 PHP version: 5.2.1RC4 PHP Bug Type: Apache2 related Bug... -
CFINPUT type="radio" w/ "value" requires "label"
On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'... -
Acrobat Form Submit error: changes VALUE="true" to "0"
I wrote an HTML page with a form. In the form I had many inputs as in: <INPUT TYPE="radio" NAME="Q1" VALUE="true"> and <INPUT TYPE="radio"... -
#25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug... -
enctype="multipart/form-data" is screwing up the form variables
In article <25514fc4.0307050937.7f801e8b@posting.google.com>, dhoult@landair.com (Daniel) wrote: If you correct the spelling of "method" does... -
Daniel Fisher\(lennybacon\) #2
Re: Another form of encrytion? "Not SSL"
You can use a javascript BigInt to encrypt dat before it's send and decrypt
it using BitInt in C# when it's submited.
--
Daniel Fisher(lennybacon)
MCP C# ASP.NET
Blog: [url]http://www.lennybacon.com/[/url]
"Leon" <vnality@msn.com> wrote in message
news:OJ$al9pvEHA.2568@TK2MSFTNGP11.phx.gbl...> How can I encrypted data sent across my website from web forms without
> using SSL?
> Such as on Login the user enter "EmailAddress" & "Password" and Simply
> Registration Form
> in which the user creates a Password, FirstName, LastName, etc.
> I see site like Careerbuilder and Monster allow user to register, login,
> and retrieve a lost password
> without using a SSL connection "I Know anytime you deal with credit card
> info you need a SSL.
> Thanks!
>
Daniel Fisher\(lennybacon\) Guest
-
Joerg Jooss #3
Re: Another form of encrytion? "Not SSL"
Leon wrote:
So what makes you even think these sites are secure?> How can I encrypted data sent across my website from web forms
> without using SSL?
> Such as on Login the user enter "EmailAddress" & "Password" and Simply
> Registration Form
> in which the user creates a Password, FirstName, LastName, etc.
> I see site like Careerbuilder and Monster allow user to register,
> login, and retrieve a lost password
> without using a SSL connection
--
Joerg Jooss
[url]www.joergjooss.de[/url]
[email]news@joergjooss.de[/email]
Joerg Jooss Guest
-
Robert Hurlbut #4
Re: Another form of encrytion? "Not SSL"
Leon,
If there is no SSL being done on the form, then your information is more
than likely sent clear text. Now, they could be using SSL with a form post,
which would be secure, and you can tell this through "view source" on the
page. Even with SSL, though, just because the lock is there in the corner
doesn't always mean it is valid. You still have to check it.
Also, if you are able to get your password back from any site without them
re-generating a temporary password, then that site is probably storing your
password in clear text, or at best encrypting it with some key they use to
decrypt it. Ideally, you want the site to use a salt and one-way strong hash
to store your password, which means you can't ever retrieve the same
password.
Robert Hurlbut
[url]http://weblogs.asp.net/rhurlbut[/url]
[url]http://www.securedevelop.net[/url]
"Leon" <vnality@msn.com> wrote in message
news:OJ$al9pvEHA.2568@TK2MSFTNGP11.phx.gbl...> How can I encrypted data sent across my website from web forms without
> using SSL?
> Such as on Login the user enter "EmailAddress" & "Password" and Simply
> Registration Form
> in which the user creates a Password, FirstName, LastName, etc.
> I see site like Careerbuilder and Monster allow user to register, login,
> and retrieve a lost password
> without using a SSL connection "I Know anytime you deal with credit card
> info you need a SSL.
> Thanks!
>
Robert Hurlbut Guest
-
Leon #5
Re: Another form of encrytion? "Not SSL"
So is it easy for a hacker to get personal information sent in clear text
across the web.
"Leon" <vnality@msn.com> wrote in message
news:OJ$al9pvEHA.2568@TK2MSFTNGP11.phx.gbl...> How can I encrypted data sent across my website from web forms without
> using SSL?
> Such as on Login the user enter "EmailAddress" & "Password" and Simply
> Registration Form
> in which the user creates a Password, FirstName, LastName, etc.
> I see site like Careerbuilder and Monster allow user to register, login,
> and retrieve a lost password
> without using a SSL connection "I Know anytime you deal with credit card
> info you need a SSL.
> Thanks!
>
Leon Guest
-
Joerg Jooss #6
Re: Another form of encrytion? "Not SSL"
Leon wrote:
At least much easier than compared to using SSL ;-)> So is it easy for a hacker to get personal information sent in clear
> text across the web.
--
Joerg Jooss
[url]www.joergjooss.de[/url]
[email]news@joergjooss.de[/email]
Joerg Jooss Guest
-
Leon #7
Re: Another form of encrytion? "Not SSL"
but the network itself provide somewhat type of security during the process
of the clear text information passing across the web?
"Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
news:OeW3Iu4vEHA.612@TK2MSFTNGP15.phx.gbl...> Leon wrote:>>> So is it easy for a hacker to get personal information sent in clear
>> text across the web.
> At least much easier than compared to using SSL ;-)
>
> --
> Joerg Jooss
> [url]www.joergjooss.de[/url]
> [email]news@joergjooss.de[/email]
>
Leon Guest
-
Robert Hurlbut #8
Re: Another form of encrytion? "Not SSL"
Anything sent over a network without SSL or some other form of encryption is
in "clear text" form and can be viewed through a standard network sniffer.
Robert Hurlbut
[url]http://weblogs.asp.net/rhurlbut[/url]
[url]http://www.securedevelop.net[/url]
"Leon" <vnality@msn.com> wrote in message
news:efEa7K6vEHA.2728@TK2MSFTNGP12.phx.gbl...> but the network itself provide somewhat type of security during the
> process of the clear text information passing across the web?
>
> "Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
> news:OeW3Iu4vEHA.612@TK2MSFTNGP15.phx.gbl...>>> Leon wrote:>>>>> So is it easy for a hacker to get personal information sent in clear
>>> text across the web.
>> At least much easier than compared to using SSL ;-)
>>
>> --
>> Joerg Jooss
>> [url]www.joergjooss.de[/url]
>> [email]news@joergjooss.de[/email]
>>
>
Robert Hurlbut Guest
-
Leon #9
Re: Another form of encrytion? "Not SSL"
what' a network sniffer?
A Program that...
"Robert Hurlbut" <robert@nospam.securedevelop.net> wrote in message
news:u4jdse7vEHA.1308@TK2MSFTNGP09.phx.gbl...> Anything sent over a network without SSL or some other form of encryption
> is in "clear text" form and can be viewed through a standard network
> sniffer.
>
> Robert Hurlbut
> [url]http://weblogs.asp.net/rhurlbut[/url]
> [url]http://www.securedevelop.net[/url]
>
> "Leon" <vnality@msn.com> wrote in message
> news:efEa7K6vEHA.2728@TK2MSFTNGP12.phx.gbl...>>> but the network itself provide somewhat type of security during the
>> process of the clear text information passing across the web?
>>
>> "Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
>> news:OeW3Iu4vEHA.612@TK2MSFTNGP15.phx.gbl...>>>>> Leon wrote:
>>>> So is it easy for a hacker to get personal information sent in clear
>>>> text across the web.
>>>
>>> At least much easier than compared to using SSL ;-)
>>>
>>> --
>>> Joerg Jooss
>>> [url]www.joergjooss.de[/url]
>>> [email]news@joergjooss.de[/email]
>>>
>>
>
Leon Guest
-
Ken Schaefer #10
Re: Another form of encrytion? "Not SSL"
program that captures and allows examination of packets travelling on the
network: eg [url]www.ethereal.com[/url]
Cheers
Ken
"Leon" <vnality@msn.com> wrote in message
news:%23eKcjF8vEHA.1292@TK2MSFTNGP10.phx.gbl...> what' a network sniffer?
> A Program that...
>
> "Robert Hurlbut" <robert@nospam.securedevelop.net> wrote in message
> news:u4jdse7vEHA.1308@TK2MSFTNGP09.phx.gbl...>>> Anything sent over a network without SSL or some other form of encryption
>> is in "clear text" form and can be viewed through a standard network
>> sniffer.
>>
>> Robert Hurlbut
>> [url]http://weblogs.asp.net/rhurlbut[/url]
>> [url]http://www.securedevelop.net[/url]
>>
>> "Leon" <vnality@msn.com> wrote in message
>> news:efEa7K6vEHA.2728@TK2MSFTNGP12.phx.gbl...>>>>> but the network itself provide somewhat type of security during the
>>> process of the clear text information passing across the web?
>>>
>>> "Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
>>> news:OeW3Iu4vEHA.612@TK2MSFTNGP15.phx.gbl...
>>>> Leon wrote:
>>>>> So is it easy for a hacker to get personal information sent in clear
>>>>> text across the web.
>>>>
>>>> At least much easier than compared to using SSL ;-)
>>>>
>>>> --
>>>> Joerg Jooss
>>>> [url]www.joergjooss.de[/url]
>>>> [email]news@joergjooss.de[/email]
>>>>
>>>
>>>
>>
>
Ken Schaefer Guest
-
Leon #11
Re: Another form of encrytion? "Not SSL"
But don't still need access to the network to use the sniffer, or can you
get to the network through [url]www.somename.com?[/url]
"Ken Schaefer" <kenREMOVE@THISadopenstatic.com> wrote in message
news:eGIy9P9vEHA.1308@TK2MSFTNGP09.phx.gbl...> program that captures and allows examination of packets travelling on the
> network: eg [url]www.ethereal.com[/url]
>
> Cheers
> Ken
>
> "Leon" <vnality@msn.com> wrote in message
> news:%23eKcjF8vEHA.1292@TK2MSFTNGP10.phx.gbl...>>> what' a network sniffer?
>> A Program that...
>>
>> "Robert Hurlbut" <robert@nospam.securedevelop.net> wrote in message
>> news:u4jdse7vEHA.1308@TK2MSFTNGP09.phx.gbl...>>>>> Anything sent over a network without SSL or some other form of
>>> encryption is in "clear text" form and can be viewed through a standard
>>> network sniffer.
>>>
>>> Robert Hurlbut
>>> [url]http://weblogs.asp.net/rhurlbut[/url]
>>> [url]http://www.securedevelop.net[/url]
>>>
>>> "Leon" <vnality@msn.com> wrote in message
>>> news:efEa7K6vEHA.2728@TK2MSFTNGP12.phx.gbl...
>>>> but the network itself provide somewhat type of security during the
>>>> process of the clear text information passing across the web?
>>>>
>>>> "Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
>>>> news:OeW3Iu4vEHA.612@TK2MSFTNGP15.phx.gbl...
>>>>> Leon wrote:
>>>>>> So is it easy for a hacker to get personal information sent in clear
>>>>>> text across the web.
>>>>>
>>>>> At least much easier than compared to using SSL ;-)
>>>>>
>>>>> --
>>>>> Joerg Jooss
>>>>> [url]www.joergjooss.de[/url]
>>>>> [email]news@joergjooss.de[/email]
>>>>>
>>>>
>>>>
>>>
>>>
>>
>
Leon Guest



Reply With Quote

