User Chris Kite - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:50:53Z http://stackoverflow.com/feeds/user/9573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1005256/what-are-all-needs-to-be-covered-in-security-architecture/1010726#1010726 0 Answer by Chris Kite for What are all needs to be covered in Security Architecture? Chris Kite 2009-06-18T04:06:24Z 2009-06-18T04:06:24Z <p><a href="http://www.cl.cam.ac.uk/~rja14/book.html" rel="nofollow">Security Engineering by Ross Anderson</a> is an excellent text, and the first edition is available for free online.</p> http://stackoverflow.com/questions/461853/can-a-unathorized-user-capture-a-ssl-packet-resend-it-and-login/509712#509712 0 Answer by Chris Kite for Can a unathorized user capture a ssl packet, resend it and login? Chris Kite 2009-02-04T01:06:35Z 2009-02-04T01:06:35Z <p>No.</p> <p>Because the attacker in this scenario will still need to negotiate his own SSL handshake with the server, he will be unable to replay the victim's packet verbatim.</p> http://stackoverflow.com/questions/323067/generating-a-token-that-i-can-prove-i-generated/323092#323092 1 Answer by Chris Kite for Generating a token that I can prove I generated Chris Kite 2008-11-27T07:01:52Z 2008-11-27T07:01:52Z <p>The solution you presented is on the right track. You're essentially performing <a href="http://en.wikipedia.org/wiki/Challenge-response_authentication" rel="nofollow">challenge-response authentication</a> with yourself. Each token can consist of a non-secret challenge string C, and HMAC(C, K) where K is your server's secret key.</p> <p>To verify a token, simply recompute the HMAC with the supplied value of C and see if it matches the supplied HMAC value.</p> <p>Also, as Vinko mentioned, you should not use MD5; SHA-256 is a good choice.</p> http://stackoverflow.com/questions/137212/how-to-solve-performance-problem-with-java-securerandom/140921#140921 1 Answer by Chris Kite for How to solve performance problem with Java SecureRandom? Chris Kite 2008-09-26T17:48:14Z 2008-09-26T17:48:14Z <p>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 packets, mouse movement, keypresses, etc.).</p> <p>A faster solution is a hardware random number generator. You may already have one built-in to your motherboard; check out the <a href="http://www.mjmwired.net/kernel/Documentation/hw_random.txt" rel="nofollow">hw_random documentation</a> for instructions on figuring out if you have it, and how to use it. The rng-tools package includes a daemon which will feed hardware generated entropy into /dev/random.</p> <p>If a HRNG is not available on your system, and you are willing to sacrifice entropy strength for performance, you will want to seed a good PRNG with data from /dev/random, and let the PRNG do the bulk of the work. There are several NIST-approved PRNG's listed in <a href="http://csrc.nist.gov/publications/nistpubs/800-90/SP800-90revised_March2007.pdf" rel="nofollow">SP800-90</a> which are straightforward to implement.</p> http://stackoverflow.com/questions/102788/what-is-the-best-way-to-encrypt-a-very-short-string-in-php/103521#103521 2 Answer by Chris Kite for What is the best way to encrypt a very short string in PHP? Chris Kite 2008-09-19T16:35:46Z 2008-09-26T17:21:04Z <p>If you want to encrypt and decrypt data within an application, you most likely want to use a symmetric key cipher. AES, which is the symmetric block encryption algorithm certified by the NSA for securing top secret data, is your best choice. There is a pure-PHP implementation available at <a href="http://www.phpaes.com" rel="nofollow">www.phpaes.com</a></p> <p>For your use it sounds like AES128 is sufficient. You will want to use CBC mode with a random initialization vector, or else the same data will always produce the same ciphertext.</p> <p>Choosing the right encryption algorithm is a good first step, but there are many factors to a secure system which are hard to get right, such as key management. There are good resources out there, such as Applied Cryptography by Bruce Schneier, and Security Engineering by Ross Anderson (available for free online).</p> http://stackoverflow.com/questions/120189/xss-blacklist-is-anyone-aware-of-a-reasonable-one/122066#122066 1 Answer by Chris Kite for XSS Blacklist - Is anyone aware of a reasonable one? Chris Kite 2008-09-23T16:18:24Z 2008-09-23T16:18:24Z <p>Not sure if you're using PHP, but if so you should look at <a href="http://htmlpurifier.org/" rel="nofollow">HTMLPurifer</a>. It's extremely simple to use; just add a call to the purify() method where you accept your input, or where you output it. Its whitelist-based approach blocks every XSS attack I've tested it against.</p> http://stackoverflow.com/questions/102496/compatible-encryption-between-c-and-php-coldfusion-ruby-python/103658#103658 3 Answer by Chris Kite for Compatible encryption between C# and PHP, ColdFusion, Ruby, Python Chris Kite 2008-09-19T16:53:30Z 2008-09-19T16:53:30Z <p>If you mean that it should be impossible for third-parties to decrypt data, then you will want to use an asymmetric encryption algorithm such as RSA. This will the third-party to encrypt data with your public key, and then only you can decrypt the data with your private key, which you do not disclose. There should be implementations of RSA available for all the languages you mentioned.</p> <p>If you don't care if the third-party can decrypt the data, then AES is the way to go. You will have one key which you share with the third-parties. This key is used both for encryption and decryption.</p> http://stackoverflow.com/questions/53728/will-html-encoding-prevent-all-kinds-of-xss-attacks/94086#94086 1 Answer by Chris Kite for Will HTML Encoding prevent all kinds of XSS attacks? Chris Kite 2008-09-18T16:19:14Z 2008-09-18T16:19:14Z <p>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:</p> <p><a href="http://www.securiteam.com/securitynews/6Z00L0AEUE.html" rel="nofollow">http://www.securiteam.com/securitynews/6Z00L0AEUE.html</a></p> <p>The important thing about this type of vulnerability is that the attacker is able to encode his XSS payload using UTF-7, and if you haven't specified a different character encoding on your page, a user's browser could interpret the UTF-7 payload and execute the attack script.</p> http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/65931#65931 4 Answer by Chris Kite for How do I prevent replay attacks? Chris Kite 2008-09-15T19:24:15Z 2008-09-15T19:24:15Z <p>If you really don't want to store any state, I think the best you can do is limit replay attacks by using timestamps and a short expiration time. For example, server sends:</p> <p>{Ts, U, HMAC({Ts, U}, Ks)}</p> <p>Where Ts is the timestamp, U is the username, and Ks is the server's secret key. The user sends this back to the server, and the server validates it by recomputing the HMAC on the supplied values. If it's valid, you know when it was issued, and can choose to ignore it if it's older than, say, 5 minutes.</p> <p>A good resource for this type of development is <a href="http://pdos.csail.mit.edu/papers/webauth:sec10.pdf" rel="nofollow">The Do's and Don'ts of Client Authentication on the Web</a></p> http://stackoverflow.com/questions/493531/include-fileexists-safety/493597#493597 Comment by Chris Kite on Include file_exists safety Chris Kite 2009-02-04T01:11:05Z 2009-02-04T01:11:05Z using addslashes() will do nothing to a unix path like ../../foo.php. addslashes() is only meant to be used to escape strings used for db queries, so it puts a slash in front of quotes and backslashes. http://stackoverflow.com/questions/253673/recommended-hash-for-passwords-in-asp-classic/255205#255205 Comment by Chris Kite on Recommended hash for passwords in ASP Classic Chris Kite 2008-11-02T04:50:40Z 2008-11-02T04:50:40Z &quot;I rarely find [Whirlpool] implemented by default in various tools and languages.&quot; I think you just answered your own question. Additionally, the SHA-2 family of hash functions are FIPS 180-2 approved; Whirlpool is not.