Ask a Question related to ASP.NET Security, Design and Development.
-
ViperDK \(Daniel K.\) #1
Secure Database-Driven output to Web-Controls like Repeater
scenario: users can store data (guestbook entries, ther usernames and so on)
on a database-driven website and i have to care about that they don't insert
(aggressive) javascripts or html tags that destroy my layout. but it's not
an option to deny characters like ', " or < at all.
one option i got suggested is to make all the input to valid html output (Do
a HtmlEncode) before i store it in the database but i think that is not that
great because its to limited and bad design. if i make an winform
application or something else that is not web-based i'd have to handle and
undo all the html stuff that is only useful for html pages.
the two right solutions for this that i think of is to code controls like
Repeater with an property like "UseRawHtmlData" and let it automatically
HtmlEncode all output unless it is set for RawHtmlData. That would be a
safe design i think but it has the disadvantage that ms didn't do it and i'd
have to make many modified controls that do.
the other solution i think of is to code an SqlDataReader and a
SqlDataAdapter that also automatically HtmlEncode all text data.
I think the second way makes more sense - i would only have to use that
modified sql classes and i would not have to touch the data-webcontrols like
repeater, datagrid and so on.
does anyone have such classes to use instead of the normal Sql classes or is
there a better alternative to solve that problem. to HtmlEncode every field
manually like i do now seems to be the worst answer since it makes much work
and is error prone.
ViperDK \(Daniel K.\) Guest
-
Database driven CMS and Contribute
I am looking to create a hybrid of contribute and database driven CMS (like Joomla or Drupal). Anyone ever tied to do anything similar? Any... -
Database driven articles
Hello, I am supernew to ColdFusion and to these forums, and I'm sorry if this is an overly obvious/retarded question. That said: I am... -
Database driven web site
Hi, I want to create a website where people can sign up to the site and put there company details on it. Then when a user searches for a... -
database driven website using SAN
We want to develop database driven website. because of enormous amount of data (300GB) customers's tech advisor is insisting on using SAN instead... -
Modifying output in Repeater
I am having trouble figuring out how to modify the databound field data that is bound to a Repeater control, before it is output to the browser. I'm... -
Eric Newton #2
Re: Secure Database-Driven output to Web-Controls like Repeater
Well, before I can offer a solution I need a few pointers:
- are you intending to store the actual html in the database?
- you said you dont care about JS/HTML that can destroy layout, which makes
things easier
unless I'm mistaken I dont believe the "BoundColumns" in DataGrids change
the valid HTML to be Encoded HTML,
and since the repeater utilizes templates, then you are in better control.
In your repeater template, are you using "<asp:label runat=server text='<%#
DataBinder.Eval... %>'>"? if so then the Text property is automatically HTML
encoded, trying changing to using the HtmlControls, specifically the
HtmlGenericControl and setting the InnerHtml property, whereas this property
takes a string and outputs it verbatim.
HTH
--
Eric Newton
[email]eric@ensoft-software.com[/email]
C#/ASP.net Solutions developer
"ViperDK (Daniel K.)" <ViperDK@gmx.net> wrote in message
news:bhdkh4$ffo$04$1@news.t-online.com...on)> scenario: users can store data (guestbook entries, ther usernames and soinsert> on a database-driven website and i have to care about that they don't(Do> (aggressive) javascripts or html tags that destroy my layout. but it's not
> an option to deny characters like ', " or < at all.
>
> one option i got suggested is to make all the input to valid html outputthat> a HtmlEncode) before i store it in the database but i think that is noti'd> great because its to limited and bad design. if i make an winform
> application or something else that is not web-based i'd have to handle and
> undo all the html stuff that is only useful for html pages.
>
> the two right solutions for this that i think of is to code controls like
> Repeater with an property like "UseRawHtmlData" and let it automatically
> HtmlEncode all output unless it is set for RawHtmlData. That would be a
> safe design i think but it has the disadvantage that ms didn't do it andlike> have to make many modified controls that do.
> the other solution i think of is to code an SqlDataReader and a
> SqlDataAdapter that also automatically HtmlEncode all text data.
>
> I think the second way makes more sense - i would only have to use that
> modified sql classes and i would not have to touch the data-webcontrolsis> repeater, datagrid and so on.
>
> does anyone have such classes to use instead of the normal Sql classes orfield> there a better alternative to solve that problem. to HtmlEncode everywork> manually like i do now seems to be the worst answer since it makes much> and is error prone.
>
>
Eric Newton Guest
-
ViperDK \(Daniel K.\) #3
Re: Secure Database-Driven output to Web-Controls like Repeater
no i want to store all data as it is. if someone writes stuff like "i like
<i> tags" it should get 1:1 into the database and i want an easy way to
verify in the output that it does get encoded.
i usually use DataGrids with BoundColumns like
<asp:BoundColumn DataField="Comment" HeaderText="Comment"></asp:BoundColumn>
and yes i saw that the HtmlGenericControl has a property for the encodet and
the raw content. i wonder why the the TextBox WebControl hasn't that
functionality. thought they should be first choice.
"Eric Newton" <ericnewton76@hotmail.com> wrote in message
news:#ddq561YDHA.2236@TK2MSFTNGP10.phx.gbl...makes> Well, before I can offer a solution I need a few pointers:
>
> - are you intending to store the actual html in the database?
> - you said you dont care about JS/HTML that can destroy layout, whichtext='<%#> things easier
>
> unless I'm mistaken I dont believe the "BoundColumns" in DataGrids change
> the valid HTML to be Encoded HTML,
> and since the repeater utilizes templates, then you are in better control.
>
> In your repeater template, are you using "<asp:label runat=serverHTML> DataBinder.Eval... %>'>"? if so then the Text property is automaticallyproperty> encoded, trying changing to using the HtmlControls, specifically the
> HtmlGenericControl and setting the InnerHtml property, whereas this> takes a string and outputs it verbatim.
>
> HTH
>
>
> --
> Eric Newton
> [email]eric@ensoft-software.com[/email]
> C#/ASP.net Solutions developer
ViperDK \(Daniel K.\) Guest
-
Eric Newton #4
Re: Secure Database-Driven output to Web-Controls like Repeater
Yeah, I guess the textboxes were designed from the start to be HTML proper,
ie, if they have HTML in their text property then its HTMLEncoded so that
what is in the text is exactly what you see...
I would guess it'll always stay this way, but a simple boolean property
wouldnt hurt ;-)
--
Eric Newton
[email]eric@ensoft-software.com[/email]
C#/ASP.net Solutions developer
"ViperDK (Daniel K.)" <ViperDK@gmx.net> wrote in message
news:bhk2bl$hge$01$1@news.t-online.com...HeaderText="Comment"></asp:BoundColumn>> no i want to store all data as it is. if someone writes stuff like "i like
> <i> tags" it should get 1:1 into the database and i want an easy way to
> verify in the output that it does get encoded.
>
> i usually use DataGrids with BoundColumns like
> <asp:BoundColumn DataField="Comment"and>
> and yes i saw that the HtmlGenericControl has a property for the encodetchange> the raw content. i wonder why the the TextBox WebControl hasn't that
> functionality. thought they should be first choice.
>
> "Eric Newton" <ericnewton76@hotmail.com> wrote in message
> news:#ddq561YDHA.2236@TK2MSFTNGP10.phx.gbl...> makes> > Well, before I can offer a solution I need a few pointers:
> >
> > - are you intending to store the actual html in the database?
> > - you said you dont care about JS/HTML that can destroy layout, which> > things easier
> >
> > unless I'm mistaken I dont believe the "BoundColumns" in DataGridscontrol.> > the valid HTML to be Encoded HTML,
> > and since the repeater utilizes templates, then you are in better> text='<%#> >
> > In your repeater template, are you using "<asp:label runat=server> HTML> > DataBinder.Eval... %>'>"? if so then the Text property is automatically> property> > encoded, trying changing to using the HtmlControls, specifically the
> > HtmlGenericControl and setting the InnerHtml property, whereas this>> > takes a string and outputs it verbatim.
> >
> > HTH
> >
> >
> > --
> > Eric Newton
> > [email]eric@ensoft-software.com[/email]
> > C#/ASP.net Solutions developer
>
>
Eric Newton Guest



Reply With Quote

