Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > Is asp.net safe?

Reply
Thread Tools

Is asp.net safe?

 
 
ad
Guest
Posts: n/a
 
      11-16-2006
I use VS2005 to develop web applicaiton.
The Web applicaiton will install in an windows xp.
Some cusotmer doubt the safety of Asp.net.

Are there some reports about the safety of OS or database or development
tools?


 
Reply With Quote
 
 
 
 
Michael D. Ober
Guest
Posts: n/a
 
      11-16-2006
If your customer wants complete safety, tell him to use VMS. Other than
that, ASP.NET 2.0 running on W2003 SP1 is pretty darn safe, so long as your
code doesn't do anything stupid like not validate inputs and allow access to
folders that it doesn't need.

Mike Ober.

"ad" <> wrote in message
news:%...
>I use VS2005 to develop web applicaiton.
> The Web applicaiton will install in an windows xp.
> Some cusotmer doubt the safety of Asp.net.
>
> Are there some reports about the safety of OS or database or development
> tools?
>



 
Reply With Quote
 
 
 
 
offwhite
Guest
Posts: n/a
 
      11-19-2006
Also be sure to handle the Application_Error event in the Global.asax
and not allow errors to be shown to the public users. And do not use
ad hoc SQL in your ASP.NET code. Instead use stored procedures or
parameterized SQL strings. That will help fight off SQL injection
attacks.

You can then have this website run in a separate application pool in
IIS under a custom user (not Network Service) and limit the rights of
that user. Generally you just need access to the database which will
not be a trusted connection anyway.

Brennan Stehling
http://brennan.offwhite.net/blog/


Michael D. Ober wrote:
> If your customer wants complete safety, tell him to use VMS. Other than
> that, ASP.NET 2.0 running on W2003 SP1 is pretty darn safe, so long as your
> code doesn't do anything stupid like not validate inputs and allow access to
> folders that it doesn't need.
>
> Mike Ober.
>
> "ad" <> wrote in message
> news:%...
> >I use VS2005 to develop web applicaiton.
> > The Web applicaiton will install in an windows xp.
> > Some cusotmer doubt the safety of Asp.net.
> >
> > Are there some reports about the safety of OS or database or development
> > tools?
> >


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



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