The wpl tag has no wiki summary.
2
votes
1answer
133 views
HTML sanitizer in ASP.NET MVC that filters dangerous markup, but allows the rest
I know that lot of questions about HTML sanitizers have appeared in SO, but I don't know if they do what I want, I have a little mess since some of the recommended approaches have more than 4 years ...
2
votes
2answers
338 views
Removing specific XML tags
I'd like to make an application that removes duplicates from my wpl (Windows PlayList) files.
The wpl struct is something like this:
<?wpl version="1.0"?>
<smil>
<head>
...
1
vote
2answers
78 views
Is there a minimum-trust equivalent of the Web Protection Library (Anti-XSS)?
I am working on a project that requires some HTML sanitization. Normally, I would turn to the Microsoft Web Protection Library; however, in this case, I am developing an application running in minimal ...
1
vote
1answer
426 views
Security Runtime Engine VS AntiXSS Library
I see that web protection library (WPL) comes with 2 different options:
Security Runtime Engine (SRE)
AntiXSS Library
The first one seems great since no code is necessary, it's a HTTPModule. The ...
0
votes
0answers
23 views
Throw custom error code when using Security Runtime Engine?
Is it possible to customize the Microsoft's Security Runtime Engine (SRE) so it throws a specific error code instead of just "500"?
I want to show a specific error page when it's an SRE exception and ...
0
votes
3answers
620 views
Write to Specific line in text file C#
I have a web app that I am developing at work. I need to be able to take input data and append a text file after (x) number of lines.
My web app is using asp.net with c#
Can anyone help me please?