Secured ASP web site

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Secured ASP web site

    All:

    1) Could any one show me any website which is using asp, ssl, sql server?
    2) Is ASP/IIS technology good enough to create a commerical secured internet
    web application?
    3) People said most of the secured internet web application (e.g.
    banking...) is using java, is that true?

    Simon


    Ed Jaffe Guest

  2. Similar Questions and Discussions

    1. Calling a secured web service
      Hi, I have web service that is secured web service. (https://url...). Somehow, when I call this web service, flash throws and error saying...
    2. Call secured .net web service
      I've been trying like heck to call a secured web service on another box but nothing works. I first tried calling the web service with the url in...
    3. New Here - Need help(!) opening secured ps
      Hi. I'm using Acrobat 5.01 in Mac Panther(10.3.8.). the file I created was destined for the web, but I realized it was too large (198mb) so I...
    4. Receiving message over Secured SSL
      Hi, How can i receive data sent over from Secured SSL Socket (not http or https) to my ASP.NET application? Is it possible? If yes, how can i do...
    5. IE6.0 stops responding after browsing secured site (https)
      While browsing secure sites (Https) from Windows XP Machine ,Windows XP opens the secure sites properly but in between IE will stop browsing and...
  3. #2

    Default Re: Secured ASP web site


    "Ed Jaffe" <edjaffe1000@yahoo.com> wrote in message
    news:O0E2IDqkDHA.2404@TK2MSFTNGP12.phx.gbl...
    > All:
    >
    > 1) Could any one show me any website which is using asp, ssl, sql server?
    [url]http://www.microsoft.com/sql/evaluation/casestudies/solutions.asp[/url]
    > 2) Is ASP/IIS technology good enough to create a commerical secured
    internet
    > web application?
    Sure, as long as long as everyone involved in developing and maintaining the
    site, the server, and all else involved remains security-conscious.
    > 3) People said most of the secured internet web application (e.g.
    > banking...) is using java, is that true?
    I'm a programmer at a bank. Our website has no Java anything anywhere. Our
    online applications are normal ASP pages in https.

    As far as our Web banking system, we did not develop it ourselves. But it
    is hosted in NT machines and uses Cold Fusion. The database is DB/2 on an
    AS/400.

    Ray at home


    Ray at Guest

  4. #3

    Default Re: Secured ASP web site


    "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
    news:eXidvqqkDHA.2592@TK2MSFTNGP10.phx.gbl...
    >
    > "Ed Jaffe" <edjaffe1000@yahoo.com> wrote in message
    > news:O0E2IDqkDHA.2404@TK2MSFTNGP12.phx.gbl...
    > > All:
    > >
    > > 1) Could any one show me any website which is using asp, ssl, sql
    server?
    >
    > [url]http://www.microsoft.com/sql/evaluation/casestudies/solutions.asp[/url]
    >>>
    >>> What a great resource!
    >>>
    >
    > > 2) Is ASP/IIS technology good enough to create a commerical secured
    > internet
    > > web application?
    >
    > Sure, as long as long as everyone involved in developing and maintaining
    the
    > site, the server, and all else involved remains security-conscious.
    >
    > > 3) People said most of the secured internet web application (e.g.
    > > banking...) is using java, is that true?
    >
    > I'm a programmer at a bank. Our website has no Java anything anywhere.
    Our
    > online applications are normal ASP pages in https.
    >
    > As far as our Web banking system, we did not develop it ourselves. But it
    > is hosted in NT machines and uses Cold Fusion. The database is DB/2 on an
    > AS/400.
    >
    >>>
    >>> Ray, I would like to develope an internet applcation by using ASP/IIS
    technology.
    >>> I am not familiar with isapi or .Net. And I don't want to use NT
    Security "only" because
    >>> it takes a lot of resource to maintain the accounts. My real concern is
    how to
    >>> do the login process. I am afraid that if the web-site is using only
    the anonymous
    >>> account and have a plain table(User with diff levels) to direct the
    secured pages access,
    >>> it will be easy for hacker to break it!!!!
    >>> Any comment is appreciated.
    >>> Thanks again your sql server url.
    >>>
    >>> Ed
    > Ray at home
    >
    >

    Ed Jaffe Guest

  5. #4

    Default Re: Secured ASP web site


    "Ed Jaffe" <edjaffe1000@yahoo.com> wrote in message
    news:OhU2hWzkDHA.3732@tk2msftngp13.phx.gbl...
    >> >
    > >>>
    > >>> Ray, I would like to develope an internet applcation by using ASP/IIS
    > technology.
    > >>> I am not familiar with isapi or .Net. And I don't want to use NT
    > Security "only" because
    > >>> it takes a lot of resource to maintain the accounts.
    Tru dat. ;]
    >>>>>>>>>> My real concern is
    > how to
    > >>> do the login process. I am afraid that if the web-site is using only
    > the anonymous
    > >>> account and have a plain table(User with diff levels) to direct the
    > secured pages access,
    > >>> it will be easy for hacker to break it!!!!
    How? I think that 99% of the sites out there use login credentials that are
    stored in a database. This is normal. Like everything, you have to balance
    security with functionality. Like, if you think that someone is going to
    sit there on your login page all day trying to get lucky entering usernames
    and passwords, you can add something to your site to track the number of
    invalid logins by IP and then deny access to the page from that IP. You can
    also mandate password complexity from your users.

    For me, as an end user, all I need is a username and password to get into
    web banking. From there, I can transfer money, send money to other people
    via checks, close accounts, whatever. The only thing protecting me is my
    password. This is normal though.

    Just don't do anything foolish like use an Access database and put it in
    your website where people can download it. And don't let people use blank
    passwords. And make people change their passwords. And physical security
    of the server is also important.

    Ray at work


    Ray at Guest

  6. #5

    Default Re: Secured ASP web site

    Ray, one last question I want to clarify regarding the "credentials that are
    stored in a database"
    statement. Will you take advantage of the Users, Roles and Rules features in
    SQL Servers "or"
    use a plain table have fields to store the user name, password (encrypted)
    and associated info
    (for diff. security levels). The reason why I ask because when you first
    make the "connection"
    to your DBMS through the "ADODB.Connection" object within the ASP page, you
    have
    to pass the "User ID" and "Password" info. Are you going to use a "global"
    user
    account, e.g. sa, to do the connection and then query/validate the user
    based on the passed
    UserID and Password against the plain table? Or each user has their "own"
    UserID/Password
    when you do the ADODB.Connection. I am new to this area hope someone can
    give me
    more detail on this particular topic.

    Thank you for your valuable help anyway.

    Ed.

    "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    news:u3lZny0kDHA.2592@TK2MSFTNGP10.phx.gbl...
    >
    > "Ed Jaffe" <edjaffe1000@yahoo.com> wrote in message
    > news:OhU2hWzkDHA.3732@tk2msftngp13.phx.gbl...
    > >> >
    > > >>>
    > > >>> Ray, I would like to develope an internet applcation by using
    ASP/IIS
    > > technology.
    > > >>> I am not familiar with isapi or .Net. And I don't want to use NT
    > > Security "only" because
    > > >>> it takes a lot of resource to maintain the accounts.
    >
    > Tru dat. ;]
    >
    > >>>>>>>>>> My real concern is
    > > how to
    > > >>> do the login process. I am afraid that if the web-site is using
    only
    > > the anonymous
    > > >>> account and have a plain table(User with diff levels) to direct the
    > > secured pages access,
    > > >>> it will be easy for hacker to break it!!!!
    >
    > How? I think that 99% of the sites out there use login credentials that
    are
    > stored in a database. This is normal. Like everything, you have to
    balance
    > security with functionality. Like, if you think that someone is going to
    > sit there on your login page all day trying to get lucky entering
    usernames
    > and passwords, you can add something to your site to track the number of
    > invalid logins by IP and then deny access to the page from that IP. You
    can
    > also mandate password complexity from your users.
    >
    > For me, as an end user, all I need is a username and password to get into
    > web banking. From there, I can transfer money, send money to other people
    > via checks, close accounts, whatever. The only thing protecting me is my
    > password. This is normal though.
    >
    > Just don't do anything foolish like use an Access database and put it in
    > your website where people can download it. And don't let people use blank
    > passwords. And make people change their passwords. And physical security
    > of the server is also important.
    >
    > Ray at work
    >
    >

    Ed Jaffe Guest

  7. #6

    Default Re: Secured ASP web site

    I personally would use the same sql login for all connections. The user
    logins would just be data in a table as you suggested with the passwords in
    the table. And as far as permissions in the application, that would be data
    stored in the db too. I believe this is the norm. A table may look
    something like this:


    Userid smallint
    Username varchar(20)
    Password varchar(20) ''or longer if you encrypt with many characters
    AuthorityLevel tinyint
    PasswordLastChange datetime
    'etc.

    Ray at work


    "Ed Jaffe" <edjaffe1000@yahoo.com.invalid> wrote in message
    news:%232lUQy1kDHA.392@TK2MSFTNGP11.phx.gbl...
    > Ray, one last question I want to clarify regarding the "credentials that
    are
    > stored in a database"
    > statement. Will you take advantage of the Users, Roles and Rules features
    in
    > SQL Servers "or"
    > use a plain table have fields to store the user name, password (encrypted)
    > and associated info
    > (for diff. security levels). The reason why I ask because when you first
    > make the "connection"
    > to your DBMS through the "ADODB.Connection" object within the ASP page,
    you
    > have
    > to pass the "User ID" and "Password" info. Are you going to use a
    "global"
    > user
    > account, e.g. sa, to do the connection and then query/validate the user
    > based on the passed
    > UserID and Password against the plain table? Or each user has their "own"
    > UserID/Password
    > when you do the ADODB.Connection. I am new to this area hope someone can
    > give me
    > more detail on this particular topic.
    >
    > Thank you for your valuable help anyway.
    >
    > Ed.
    >

    Ray at 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