473,473 Members | 2,002 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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
Jul 19 '05 #1
5 1854

"Ed Jaffe" <ed*********@yahoo.com> wrote in message
news:O0**************@TK2MSFTNGP12.phx.gbl...
All:

1) Could any one show me any website which is using asp, ssl, sql server?
http://www.microsoft.com/sql/evaluat.../solutions.asp
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
Jul 19 '05 #2

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:eX**************@TK2MSFTNGP10.phx.gbl...

"Ed Jaffe" <ed*********@yahoo.com> wrote in message
news:O0**************@TK2MSFTNGP12.phx.gbl...
All:

1) Could any one show me any website which is using asp, ssl, sql server?

http://www.microsoft.com/sql/evaluat.../solutions.asp

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

Jul 19 '05 #3

"Ed Jaffe" <ed*********@yahoo.com> wrote in message
news:Oh**************@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
Jul 19 '05 #4
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:u3**************@TK2MSFTNGP10.phx.gbl...

"Ed Jaffe" <ed*********@yahoo.com> wrote in message
news:Oh**************@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

Jul 19 '05 #5
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" <ed*********@yahoo.com.invalid> wrote in message
news:%2***************@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.

Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Chung Leong | last post by:
I'm just throwing this question out here as there hasn't been much discussion recently on the topic of shared hosting. Most people, it seems, just assume that it's secured. Companies don't sell...
5
by: Jonas Daunoravicius | last post by:
I currently have a SSL domain where the SSL cert is applied to the whole FQDN. So, the whole domain is https://***. Also, we have another domain that does not have SSL. Using ASP, vbscript, and...
3
by: Therese A. Sorna | last post by:
Hello all, Is there a way to add users to a secured database without having to go into Security -> User and Group Accounts? I have a table for all employees on a secure database, and want to be...
25
by: Mike MacSween | last post by:
Yes, I've downloaded and read the FAQ. And searched the archives. I'm just treading a little carefully here because of the caveats about locking myself out of the db forever. Some answers I could...
2
by: VB Programmer | last post by:
I want to write a file to the "secured" dir that is on my website. The full path is: C:\inetpub\wwwroot\MyWebSite\Secured I tried this, but it didn't work: Dim strFileName As String =...
3
by: John West | last post by:
I have a Web Site that I want to monitor and gather information from which requires a secured user id and password of which I have but don't know how to gather get by the secured log in to get to...
2
by: Daniel Frechette | last post by:
Hi, Is it possible to have secured (SSL/HTTPS) and non-secured (HTTP) content in the same page without breaking the security? I am developing a secured reservation system in which the user can...
1
by: trihanhcie | last post by:
Hi, I have a <img src = "http:// ..."> which needs to be put in a secured page. For example on amazon when the confirmation page is displayed... The problem is that it's a secured page (https)...
1
by: securedcardss | last post by:
http://card.2youtop.info secured credit card card credit instant secured card cash credit secured card
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.