Search Results

1
vote

Will HTML Encoding prevent all kinds of XSS attacks?

No, just encoding common HTML tokens DOES NOT completely protect your site from XSS attacks. See, for example, this XSS vulnerability found in google.com: …
1
vote

XSS Blacklist - Is anyone aware of a reasonable one?

Not sure if you're using PHP, but if so you should look at HTMLPurifer. It's extremely simple to use; just add a call to the purify() method wh …
1
vote

How to solve performance problem with Java SecureRandom?

If you want truly "cryptographically strong" randomness, then you need a strong entropy source. /dev/random is slow because it has to wait for system events to gather entropy (disk reads, network p …
1
vote

Generating a token that I can prove I generated

The solution you presented is on the right track. You're essentially performing challenge-response authentica …
0
votes

What are all needs to be covered in Security Architecture?

Security Engineering by Ross Anderson is an excellent text, and the first edition is available for free online. …