Search Results

1
vote

Are there best practices for testing security in an Agile development shop?

What's your application domain? It depends. Since you used the word "Agile", I'm guessing it's a web app. I have a nice easy answer for you. Go buy a copy of Burp Suite (it's the …
6
votes

What common web exploits should I know about?

Everyone's going to say "SQL Injection", because it's the scariest-sounding vulnerability and the easiest one to get your head around. Cross-Site Scripting (XSS) is going to come in second place, b …
1
vote

Best .NET obfuscation tools/strategy

You should use whatever is cheapest and best known for your platform and call it a day. Obfuscation of high-level languages is a hard problem, because VM opcode streams don't suffer from the two bi …
6
votes

How do you set up use HttpOnly cookies in PHP

Be aware that HttpOnly doesn't stop cross-site scripting; instead, it neutralizes one possible attack, and currently does that only on IE (FireFox exposes HttpOnly cookies in XmlHttpRequest, and Sa …
1
vote

ensuring uploaded files are safe

Viruses embedded in image files are unlikely to be a major problem for your application. What will be a problem is JAR files. Image files with JAR trailers can be loaded from any page on the Intern …
0
votes

Encryption in C# Web-Services

Anything you do to provide "encryption" that isn't using SSL/TLS is likely to be vulnerable. Now you have to ask yourself, is it worth burning dev hours you could be spending on features on a rubbe …
1
vote

Should data security be performed on the database side?

Stored procedures are usually a win for security. Simplifying the relationship between your application and the database reduces the number of places where you can have errors; errors in code that …
4
votes

Inter-convertability of asymmetric key containers (eg: X.509, PGP, OpenSSH)

Yes and no: yes, the RSA keys embedded into certificates and privkeys are just numbers. You can extract them from the certificate and use them to build keys in other formats. This is commonly done …
1
vote

Password generation, best practice

I don't love the wordlist approach. For example, in /usr/share/dict/words on OSX, there are 5110 4-character words. Using two of them with a seperator character produces ~600M combinations. But if …
2
votes

How exactly do you configure httpOnly Cookies in ASP Classic?

HttpOnly does very little to improve the security of web applications. For one thing, it only works in IE (Firefox "supports" it, but still discloses cookies to Javascript in some situations). For …
1
vote

Will HTML Encoding prevent all kinds of XSS attacks?

I second metavida's advice to find a third-party library to handle output filtering. Neutralizing HTML characters is a good approach to stopping XSS attacks. However, the code you use to transform …
3
votes

Password generation, best practice

James, your answer relies on PHP's rand() function, which isn't a secure random number generator. …
20
votes

Penetration testing tools

There are a couple different directions you can go with automated testing tools for web applications. First, there are the commercial web scanners, of which HP WebInspect a …
69
votes

What is the best way to stop people hacking the PHP-based highscore table of a Flash game.

This is a classic problem with Internet games and contests. Your Flash code works with users to decide a score for a game. But users aren't trusted, and the Flash code runs on the user's computer. …
11
votes

Which of these scripting languages is more appropriate for pen-testing?

You probably want Ruby, because it's the native language for Metasploit, which is the de facto standard open source penetration testing framework. Ruby's going to give you: …

1 2 next
15 30 50 per page