Tagged Questions

166
votes
11answers
9k views

Payment Processors - What do I need to know if I want to accept credit cards on my website?

This question talks about different payment processors and what they cost, but I'm looking for the answer to what do I need to do if I want to accept credit card payments? Assume I need to store ...
129
votes
15answers
43k views

How do you disable browser Autocomplete on web form field / input tag?

How do you disable Autocomplete in the major browsers for a specific input (or form field)?
69
votes
10answers
20k views

Will web browsers cache content over https

Will content requested over https still be cached by web browsers or do they consider this insecure behaviour? If this is the case is there anyway to tell them it's ok to cache?
59
votes
20answers
19k views

GET versus POST in terms of security?

This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose ...
57
votes
15answers
4k views

What is the best Distributed Brute Force countermeasure?

First, a little background: It is no secret that I am implementing an auth+auth system for CodeIgniter, and so far I'm winning (so to speak). But I've run into a pretty non-trivial challenge (one that ...
45
votes
12answers
2k views

What is md5() for?

I was reading this tutorial for a simple PHP login system. In the end it recommends that you should encrypt your password using md5(). Though I know this is a beginners' tutorial, and you shouldn't ...
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 ...
38
votes
13answers
2k views

What common web exploits should I know about?

I'm pretty green still when it comes to web programming, I've spent most of my time on client applications. So I'm curious about the common exploits I should fear/test for in my site.
36
votes
5answers
6k views

What is the best way to implement “remember me” for a website?

I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a ...
33
votes
6answers
9k views

Are HTTPS headers encrypted?

When sending data over HTTPS, I know the content is encrypted, however I hear mixed answers about whether the headers are encrypted, or how much of the header is encrypted. How much of HTTPS headers ...
23
votes
27answers
2k views

When the bots attack!

What are some popular spam prevention methods besides CAPTCHA?
22
votes
10answers
5k views

Will HTML Encoding prevent all kinds of XSS attacks?

I am not concerned about other kinds of attacks. Just want to know whether HTML Encode can prevent all kinds of XSS attacks. Is there some way to do an XSS attack even if HTML Encode is used?
19
votes
10answers
2k views

Preventing Brute Force Logins on Websites

As a response to the recent Twitter hijackings and Jeff's post on Dictionary Attacks, what is the best way to secure your website against brute force login attacks? Jeff's post suggests putting in an ...
18
votes
8answers
2k views

How Can I Find Out *HOW* My Site Was Hacked? How Do I Find Site Vulnerabilities?

One of my custom developed ASP.NET sites was hacked today: "Hacked By Swan (Please Stop Wars !.. )" It is using ASP.NET and SQL Server 2005 and IIS 6.0 and Windows 2003 server. I am not using Ajax ...
17
votes
13answers
4k views

Stopping users voting multiple times on a website

I'm planning to add some vote up/vote down buttons to a website I run. This seems easy enough but I want to stop people voting multiple times. One solution would be to make them register before ...
15
votes
16answers
1k views

Website hacking - Why it is always possible to do?

Dear web developers, we know that each executable file can be reverse engineered (disassembled, decompiled). No mater how strong security you will implement, anyway if crackers want to, they do ...
14
votes
2answers
103 views

How do tell a browser not to offer to save an incorrect password?

Often on a website, if I enter the wrong password by mistake, I get a page back that indicates the wrong credentials, but Chrome (Or whatever) prompts me with "Would you like to remember this ...
13
votes
8answers
523 views

Which attacks are possible concerning my security layer concept?

Despite all the advices to use SSL/https/etc. I decided to implement my own security layer on top of http for my application... The concept works as follows: User registers -> a new RSA Keypair is ...
13
votes
8answers
308 views

Increasing security of web-based login [updated]

Right now my login system is the following: Password must be at least 8 characters long, and contain at least one upper and lowercase letter, a number and a symbol. Password can't contain the ...
13
votes
8answers
2k views

PHP Form Security With Referer

I'm putting together a site that will make itself available for user input. I was wondering if writing a function like: if(getenv("HTTP_REFERER") != 'http://www.myURL.com/submitArea'){ ...
13
votes
7answers
8k views

What is the best way to prevent session hijacking?

Specifically this is regarding when using a client session cookie to identify a session on the server. Is the best answer to use SSL/HTTPS encryption for the entire web site, and you have the best ...
12
votes
5answers
5k views

Cross Domain Login - How to login a user automatically when transferred from one domain to another

We offer a number of online services. We are required to develop a system which provides a quick/simple experience for users if they are transferred from one service (on domain1.com) to another ...
11
votes
8answers
884 views

What is the recommended way to encrypt user passwords in a database?

In a web application written in Perl and using PostgreSQL the users have username and password. What would be the recommended way to store the passwords? Encrypting them using the crypt() function of ...
11
votes
11answers
3k views

Best way for a 'forgot password' implementation?

I'm looking for the best method to implement a "forgot password" feature. I come out with 2 ideas: When user click on forgot password, the user is required to key in the username, email and maybe ...
11
votes
9answers
760 views

Top tips for secure web applications

I am looking for easy steps that are simple and effective in making a web application more secure. What are your top tips for secure web applications, and what kind of attack will they stop?
10
votes
11answers
354 views

Should autocomplete=“off” be used for all sensitive fields?

What are your thoughts about this issue in regards to an e-commerce environment? Do you think it is wise to turn autocomplete off on all sensitive input fields such as passwords (for log-in areas), ...
10
votes
4answers
578 views

Open source web site vulnerability scanners?

I would like to integrate vulnerability scanner as part of our build process. Are there any open source tools worth looking at?
10
votes
1answer
2k views

Best Practice to Implement Secure “Remember Me”

Sometimes, I came across certain web development framework which doesn't provide authentication feature as in Authenication ASP.NET I was wondering what is the security measure needs to be ...
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
4answers
540 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 ...
8
votes
2answers
238 views

Validating your site

What else needs to be validated apart from what I have below? This is my question. It is important that any input to a site is properly validated: Textboxes, etc – use .NET validators (or custom ...
8
votes
12answers
441 views

How do I create a web application where I do not have access to the data?

Premise: The requirements for an upcoming project include the fact that no one except for authorized users have access to certain data. This is usually fine, but this circumstance is not usual. The ...
8
votes
7answers
532 views

How do I make sure a user is only logged in once?

A few years ago I developed a web app for which we wanted to make sure the users weren't sharing credentials. One of the things we decided to to, was only allow the user to be logged in from one ...
7
votes
3answers
714 views

Securing and/or encrypting (hiding) POST variables in a jQuery ajax request

I have an invite form on a web application I am working on. This invite form requires the user to select an email account and then enter a username and a password. These details are sent as POST ...
7
votes
7answers
581 views

Should I hash the password before sending it to the server side?

I noticed that most sites send the passwords as plain text over HTTPS to the server. Is there any advantage if instead of that I sent the hash of the password to the server? Would it be more secure?
7
votes
9answers
691 views

How to test a site rigorously?

I recently created a big portal site. It's time for putting it to test. How do you guys test a site rigorously? What are the ways and tools for that? Can we sort of mimic hundreds of virtual users ...
7
votes
3answers
96 views

Hiding Controls as a Form of Web Security, Suggestions for Better?

I am working on a website (developed in ASP.NET with C#) that was passed on to me. As I'm working through the site, I notice much of the site has this type of code in it: EmailLabel.Visible = false; ...
7
votes
2answers
131 views

What should I check before my Ruby on Rails web site goes live?

As a developer new to Rails, I'd like to know what checklists seasoned Rails developers might have of things to check before putting a Ruby on Rails web site live. I am thinking that you should ...
7
votes
6answers
298 views

PHP - Security

What is the best way to secure an intranet website developed using PHP from outside attacks?
6
votes
1answer
159 views

ASP MVC: Getting confused when implementing ASP MVC Security

I am implementing the security part of an ASP MVC application and I am getting confused in how to implement a custom membership provider since there seems to be a lot of functionallity that I wouldn't ...
6
votes
3answers
195 views

PHP secure user variable

On my website I have a variable called $user_data that contains input from a form. I then show this variable on the user page (via echo). What is the best method to avoid any security risks with this ...
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
164 views

What is the best method to dynamically sandbox inline JavaScript?

I have a WordPress plugin that loads pages with AJAX and to ensure compatibility with other plugins and "widgets." As of right now I use the following code to evaluate all inline JS that is inside ...
6
votes
2answers
2k views

WebSockets authentication

What are the possible ways to authenticate user when websocket connection is used? Example scenario: Web based multi-user chat application through encrypted websocket connection. How can I ensure (or ...
6
votes
6answers
223 views

How to detect if user is connecting from a recognized computer?

On many banking and investment websites, the site prevents users from logging in from an unrecognized computer without first answering an additional question or activating that machine. How do ...
6
votes
3answers
9k views

Spring - Security : how are login username and password bound to the authentication-provider?

I am new to spring and spring security, I have understood how beans are created and referenced in the xml files, I need to provide security using spring into my application. I included a custom ...
6
votes
4answers
518 views

How does SQL query parameterisation work?

I feel a little silly for asking this since I seem to be the only person in the world who doesn't get it, but here goes anyway. I'm going to use Python as an example. When I use raw SQL queries (I ...
6
votes
9answers
794 views

How do you enforce strong passwords?

There are many techniques to enforce strong passwords on website: Requesting that passwords pass a regex of varying complexity Setting the password autonomously, so that casual users have a strong ...
6
votes
7answers
899 views

What percentage of my time will be spent in user input verfication during web development?

I'm new to developing things on the web. So far, I'm spending a lot of time (50% or so) to try and prevent bad people from putting things like sql injection into my input forms and validating it ...
5
votes
3answers
244 views

Protect PII in web app database by encrypting with public key paired with private key protected by users' own passwords?

Goal: I'd like to allow users to create questions and collect information from other users in a custom web app (PHP/MySQL in a shored hosting environment) and protect the data collected. Background: ...

1 2 3 4 5 7