Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
484 views

Storing Username/Password During Processing

Working inside the context of an ASP.NET application I am creating a page that will be able to execute database scripts against one of many databases in our environment. To do this we need to prompt ...
3
votes
1answer
484 views

Using Secure String and Keeping it Secure

So the .NET framework provides the SecureString class for storing strings in a secure fashion. But to read the information and work with it you have to return it to a standard string. See this ...
2
votes
1answer
132 views

.net - What is the best practice for securing WPF application configuration settings?

I am aware that this is a more subjective question than is preferred, but I couldn't think of a better place or way to ask it. I am developing a WPF application, and I have configuration settings in ...
1
vote
4answers
37 views

Determining complex security and permissions

I've been put on a project that has a messy class that writes buttons to a page. The app is a document manager and has a popup list of buttons, such as download, email, and print. Depending on the ...
1
vote
3answers
1k views

Alternatives to dotfuscator suite?

I've been looking for solutions that provide a couple of types of protection and dotfuscator has been what I've landed on each time I look. Specifically, I like: code obfuscation their usage ...
0
votes
0answers
54 views

Application security certification

What is the best Application security certification exam out in the market? I am coming from C,C++ world and wants to broaden my skill set focusing on Application security space.
0
votes
1answer
234 views

Type 0 (DOM-Based) XSS Prevention for JSP Applications

Unlike the standard XSS attacks, which rely on dynamic web pages, a DOM-based XSS attack does not require sending any malicious code to the server and thus can also use static HTML pages. My humble ...
0
votes
4answers
218 views

Web application security testing

We are developing a web application using Spring framework and Hibernate ORM. As far as application security is concerned we are using acegi to provide authentication and authorization support. Now ...