Tagged Questions

Web security is the broad term given to practices used to improve application security over the internet. This can include systems used and stored on the internet, and systems transferring data across the internet.

learn more… | top users | synonyms

129
votes
12answers
4k views

How serious is this new ASP.NET security vulnerability and how can I workaround it?

I've just read on the net about a newly discovered security vulnerability in ASP.NET. You can read the details here. The problem lies in the way that ASP.NET implements the AES encryption ...
44
votes
11answers
1k views

What are best practices for securing the admin section of a website?

I'd like to know what people consider best practice for securing the Admin sections of websites, specifically from an authentication/access point of view. Of course there are obvious things, such as ...
17
votes
4answers
3k views

Application vulnerability due to Non Random Hash Functions

Below excerpt is from an article that explains possibility of Denial Of Service(DoS) attack because of non random hash functions used in Hash Data Structures. […] the condition can be leveraged ...
15
votes
4answers
320 views

Is a POST from HTTP to HTTPS secure?

I have a HTTP page with a form. If I set the action to a HTTPS page, is the request secure? Does the browser process all the data before it sends it to the net? Or should I use HTTPS for my entire ...
15
votes
9answers
3k views

How can I throttle user login attempts in PHP

I was just reading this post http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta#477585 on Preventing Rapid-Fire Login Attempts. Best practice #1: A short ...
14
votes
3answers
203 views

How secure is using Maven?

What are the risks and possibilities or scenarios whereby someone sets up masquerades of maven repositories and/or ip streams to provide masqueraded library copies of the original but injected with ...
13
votes
4answers
863 views

What is the meaning of Subject vs. User vs. Principal in a Security Context?

In the context of security frameworks a few terms commonly occur Subject, User, Principal I have not been able to find a clear definition of the difference between Subject and User, Subject and ...
12
votes
6answers
626 views

where is the best place to save images from users upload

I have a website that shows galleries. Users can upload their own content from the web (by entering a URL) or by uploading a picture from their computer. I am storing the URL in the database which ...
12
votes
7answers
2k views

Detecting Ajax in PHP and making sure request was from my own website

I use my PHP backend to detect Ajax like this: $_SERVER['HTTP_X_REQUESTED_WITH']. This gives me a reliable detection, making sure the request is Ajaxed. How can I make sure the request came from my ...
11
votes
5answers
2k views

Implementing secure, unique “single-use” activation URLs in ASP.NET (C#)

I have a scenario inwhich users of a site I am building need the ability to enter some basic information into a webform without having to logon. The site is being developed with ASP.NET/C# and is ...
11
votes
2answers
5k views

Examples of SQL Injections through addslashes()?

In PHP, I know that mysql_real_escape in much safer than using addslashes. However, I could not find an example of a situation where addslashes would let an SQL Injection happen. Can anyone give some ...
10
votes
2answers
123 views

How to add device information while sending request to server?

I want to add information about the iOS and device model while sending any request to server to fetch the data from server. Can any one help me how to send some specific information to server so that ...
10
votes
10answers
408 views

What harm can javascript do?

I just happen to read the joel's blog here... So for example if you have a web page that says “What is your name?” with an edit box and then submitting that page takes you to another page that ...
10
votes
1answer
1k views

Why same origin policy for XMLHttpRequest

Why do browsers apply the same origin policy to XMLHttpRequest? It's really inconvenient for developers, but it appears it does little in actually stopping hackers. There are workarounds, they can ...
9
votes
7answers
537 views

What good ways are there to prevent cheating in JavaScript multiplayer games?

Imagine a space shooter with a scrolling level. What methods are there for preventing a malicious player from modifying the game to their benefit? Things he could do that are hard to limit server-side ...
9
votes
4answers
539 views

Is redirecting http to https a bad idea

I'm reading over this page and it says that if a site is SSL and the user tries to access it via regular http, the application should not redirect the user to https. It should just block him. Can ...
9
votes
1answer
765 views

“Security aware” action link?

How can I create a "security aware" action link that detects if a user is authorized to click (invoke) the action? Hide link if user is not allowed to use that action... Depending from web.config ...
9
votes
3answers
2k views

make sure each controller method has a ValidateAntiForgeryToken attribute?

Is there any way to centralize enforcement that every action method must have a "ValidateAntiForgeryToken" attribute? I'm thinking it would have to be done by extending one the "routing" classes. ...
9
votes
7answers
224 views

An honest security ethics nondisclosure question i need help with

3 years ago I did a security audit for a large ecommerce website. When the audit was preformed I found several severe security issues that allow for access to data that should not be accessible after ...
8
votes
1answer
98 views

Securing my site

I'm auditing my website with w3af. It says it found several issues on my site, but I doubt that's really the case. One of the issues is: The URL: http://localhost/en/login is vulnerable to cross ...
8
votes
4answers
199 views

How to use PHP script for access control in Apache

I am looking for a way to use a PHP script to control access to resources in Apache. I want to have access control that does not depend on the target resource; i.e. it will work for html, files, other ...
8
votes
2answers
782 views

Questions about a Custom Security setup for MVC3 using overriden AuthorizeAttribute, thread safety, ChildActions and caching

So after searching for a robust security solution for my MVC3 app, I came across this blog post by Rick Anderson. It details a WhiteList approach where a custom implementation of AuthorizeAttribute is ...
8
votes
3answers
4k views

XSS attack to bypass htmlspecialchars() function in value attribute

Let's say we have this form, and the possible part for a user to inject malicious code is this below ... <input type=text name=username value= <?php echo ...
8
votes
4answers
250 views

Which Secure Software Development Practices do you Employ?

I work on a project known as the Security Development Lifecycle (SDL) project at Microsoft (http://microsoft.com/sdl) - in short it's a set of practices that must be used by product groups before they ...
7
votes
3answers
134 views

Where should I place sensitive files so that they are read-able by PHP scripts?

I am on a Parallels/Plesk VPS host, and this is a really newbie question. The webroot is at: /var/www/vhosts/my-domain-name/httpdocs There is also a path called: ...
7
votes
2answers
178 views

In node.js how would I follow the Principle of Least Privilege?

Imagine a web application that performs two main functions: Serves data from a file that requires higher privileges to read from Serves data from a file that requires lower privileges to read from ...
7
votes
3answers
448 views

Web application idle timeout / auto-logoff best practices

Does anyone know of a good whitepaper or journal article discussing the best practices for idle timeouts and auto-logoffs? Not implementation details, but the security rationale behind it? My company ...
7
votes
3answers
406 views

Can you explain this SQL injection?

The website i worked was recently attempted to be hacked by the following SQL injection script boys' and 3=8 union select 1, ...
7
votes
6answers
262 views

Is it possible to “pirate” a session variable (I do not want to know how)

I am currently doing a website in php, we are using a Session variable to store the permission level of each user. For example, if any one of you would go on the website, you would automatically get ...
7
votes
3answers
915 views

Developing licenses in C# - where do I start?

I'm interested to find out whether there are any standards or resources that you can recommend for developing license models in C#? Thank you
7
votes
3answers
315 views

Security implications of allowing framing?

I notice that when I try to access Stackoverflow through the reddit toolbar, I get a popup that says "For security reasons, framing is not allowed". See here for an example. What exactly are those ...
7
votes
6answers
519 views

How to confirm SQL injection

Is there any way to confirm that a particular breach of security was done through SQL injection?
7
votes
4answers
223 views

When would you use SSL for a website?

Quite simply, what is the criteria a website must meet for it to need SSL certificate? Website is not ecommerce but will take user information, contact details and event information. Even if not ...
7
votes
2answers
6k views

How to Start/Stop a Windows Service from an ASP.NET app - Security issues

Hey guys, here's the setup (bear in mind I'm really struggling with the Windows/.NET security stack i.e. I don't get it): A Windows Service running as LocalSystem on a Windows Server 2003 box. A ...
6
votes
2answers
378 views

Is it safe to use $.support.cors = true; in jQuery?

I was trying to hit a web service on a different domain using jQuery's ajax method. After doing some research it looks like it does not allow this is by design to prevent cross site scripting. I ...
6
votes
2answers
243 views

How and when to use ClientCert in CFHTTP tag?

The ColdFusion documentation is weak on how and when to use it. What does it do? How does one use it? Update: it seems to be broken, as outlined in Washing Client Certs in ColdFusion with SOAP – Part ...
6
votes
1answer
101 views

Removing content from database, security precautions

UPDATE: I added the CSRF protection like Berdir told me, with the help of the link below to make my application work again. However.. I'm not quite sure what I did right now :D How is this going to ...
6
votes
6answers
435 views

Login Security Philosophy

I have been given some code of some other developer, who has created some login security policies. For example, if you try to login with a username that exists in the database, it will begin recording ...
6
votes
2answers
313 views

What security issues need to be addressed when working with Google App Engine?

I've been considering using Google App Engine for a few hobby projects. While they won't be handling any sensitive data, I'd still like to make them relatively secure for a number of reasons, like ...
6
votes
3answers
577 views

Deploying a Mercurial Repository to Production - Security Concerns and Tips

In my research, I found some concern around deploying an online PHP application while leaving its ".hg" folder or ".svn" folders in place on the production server. Unfortunately, I was not able to ...
6
votes
3answers
206 views

How safe is it to accept a pre-defined set of non-harmful HTML tags from a request?

One of the first things I learned as a web developer was to never ever accept any HTML from the client. (Perhaps only if I HTML encode it.) I use a WYSIWYG editor (TinyMCE) that outputs HTML. So far I ...
6
votes
3answers
204 views

Can I get into trouble for identifying vulnerabilities in someone elses website? [closed]

Is it possible to get into legal trouble for identifying vulnerabilities in a web application even if you don't exploit them? I have considered using tools like NetSparker on occasion to see if a ...
6
votes
2answers
174 views

Form Bot Countermeasure Testing

I am a web developer for a web site that is occassionally plagued by form bots. Recently I received an error notification of a problem with the form submission that should be impossible for a human ...
6
votes
4answers
330 views

Is performing login with https but then everything in http all a bit pointless?

So you've performed the login using https to prevent man in the middle attacks and make sure your password isn't sent in the clear. Good call. But many sites then switch back to http for the rest of ...
5
votes
1answer
82 views

Which is the best security technique for my javascript plugin

My plugin is has flows depicted by the diagram below: The requirement is to make the onclick transaction happen after authentication. That is, only if the owner of the domain which contains ...
5
votes
1answer
79 views

RBAC or ACL, for private content?

Trying to build a micro-CMS (of sorts), which needs to dish out content i.e. images only, for the moment, to person logged in via a username/password. Let's say there can be 10K such users, and each ...
5
votes
2answers
195 views

Log user in with remember-me functionality in Spring 3.1

I currently log users in programmatically (like when they login through Facebook or other means than using my login form) with: SecurityContextHolder.getContext().setAuthentication( new ...
5
votes
2answers
45 views

Securely rendering hyperlinks in untrusted text

As part of a project, I'm accepting text from a user via web form and displaying it on a web page. The text they provide may contain URLs, if so I'd like to render it as a hyperlink for improved ...
5
votes
1answer
89 views

Could anyone tell me why / how this XSS vector works in the browser?

I have suffered a number of XSS attacks against my site. The following HTML fragment is the XSS vector that has been injected by the attacker: <a href="mailto:"> <a ...
5
votes
1answer
143 views

Security: Block bad spiders and bots from access to website using htaccess and HTTP_USER_AGENT

When building an htaccess rule to block common spiders and bots, what HTTP_USER_AGENT headers should be filtered? RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR] RewriteCond %{HTTP_USER_AGENT} ...

1 2 3 4 5 17