Another form of encrytion? "Not SSL"

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. #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...
    2. 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'...
    3. 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"...
    4. #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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default Re: Another form of encrytion? "Not SSL"

    Leon wrote:
    > 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
    So what makes you even think these sites are secure?


    --
    Joerg Jooss
    [url]www.joergjooss.de[/url]
    [email]news@joergjooss.de[/email]


    Joerg Jooss Guest

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default Re: Another form of encrytion? "Not SSL"

    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]


    Joerg Jooss Guest

  8. #7

    Default 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

  9. #8

    Default 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

  10. #9

    Default 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

  11. #10

    Default 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

  12. #11

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139