User tqbf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T15:57:00Zhttp://stackoverflow.com/feeds/user/5674http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption/124248#1242485Answer by tqbf for What is the performance difference of pki to symmetric encryption?tqbf2008-09-23T22:13:06Z2008-09-23T22:13:06Z<p>On a Macbook running OS X 10.5.5 and a stock build of OpenSSL, "openssl speed" clocks AES-128-CBC at 46,000 1024 bit blocks per second. That same box clocks 1024 bit RSA at 169 signatures per second. AES-128-CBC is the "textbook" block encryption algorithm, and RSA 1024 is the "textbook" public key algorithm. It's apples-to-oranges, but the answer is: <strong>RSA is much, much slower</strong>.</p>
<p>That's not why you shouldn't be using public key encryption, however. Here's the real reasons:</p>
<ol>
<li><p><strong>Public key crypto operations aren't intended for raw data encryption</strong>. Algorithms like Diffie-Hellman and RSA were devised as a way of exchanging keys for block crypto algorithms. So, for instance, you'd use a secure random number generator to generate a 128 bit random key for AES, and encrypt those 16 bytes with RSA.</p></li>
<li><p><strong>Algorithms like RSA are much less "user-friendly" than AES</strong>. With a random key, a plaintext block you feed to AES is going to come out random to anyone without the key. That is actually not the case with RSA, which is --- more so than AES --- just a math equation. So in addition to storing and managing keys properly, you have to be extremely careful with the way you format your RSA plaintext blocks, or you end up with vulnerabilities. </p></li>
<li><p><strong>Public key doesn't work without a key management infrastructure</strong>. If you don't have a scheme to verify public keys, attackers can substitute their own keypairs for the real ones to launch "man in the middle" attacks. This is why SSL forces you to go through the rigamarole of certificates. Block crypto algorithms like AES <em>do</em> suffer from this problem too, but without a PKI, AES is no less safe than RSA.</p></li>
<li><p><strong>Public key crypto operations are susceptible to more implementation vulnerabilities than AES</strong>. For example, both sides of an RSA transaction have to agree on <em>parameters</em>, which are numbers fed to the RSA equation. There are evil values attackers can substitute in to silently disable encryption. The same goes for Diffie Hellman and even more so for Elliptic Curve. Another example is the RSA Signature Forgery vulnerability that occurred 2 years ago in multiple high-end SSL implementations.</p></li>
<li><p><strong>Using public key is evidence that you're doing something "out of the ordinary"</strong>. Out of the ordinary is exactly what you <em>never</em> want to be with cryptography; beyond just the algorithms, crypto <em>designs</em> are audited and tested for years before they're considered safe. </p></li>
</ol>
<p>To our clients who want to use cryptography in their applications, we make two recommendations:</p>
<ul>
<li><p><strong>For "data at rest", use PGP</strong>. Really! PGP has been beat up for more than a decade and is considered safe from dumb implementation mistakes. There are open source and commercial variants of it.</p></li>
<li><p><strong>For "data in flight", use TLS/SSL</strong>. No security protocol in the world is better understood and better tested than TLS; financial institutions everywhere accept it as a secure method to move the most sensitive data.</p></li>
</ul>
<p><a href="http://www.matasano.com/log/558/public-key-signature-forgery-collected/" rel="nofollow">Here's a decent writeup</a> [matasano.com] me and Nate Lawson, a professional cryptographer, wrote up a few years back. It covers these points in more detail.</p>
http://stackoverflow.com/questions/81829/looking-for-dos-ddos-protection-tools-and-strategies/85478#854784Answer by tqbf for Looking for DOS/DDOS protection tools and strategiestqbf2008-09-17T17:12:18Z2008-09-17T17:12:18Z<p>The challenge with this question is that it asks for a solution to a fundamentally unsolveable problem. There's no tool or practice you can adopt that is going to protect you from a moderately competant attacker who is determined to take down your service. </p>
<p>mod_evasive is about as good a solution as you're going to get to this problem in the short term. It implements "best practices" throttling of requests, and will prevent your system from being taken down by a 5 line Perl script. </p>
<p>In the longer term, when your application becomes successful, you'll inevitably wind up deploying a load balancer in front of it. The mainstream commercial load balancers (like F5's Big-IP) all implement "DOS protection" throttling, so you can turn that feature on when you upgrade. But don't upgrade just to get that feature.</p>
<p>The problem with solving modern DDOS attacks is that they are launched from numerous unrelated unpoints (often, from huge botnets). Web application firewalls like Citrix/NetScaler, Imperva, and F5 will do a decent job with the canned attacks, but skilled analysts (preferably from your own team) are going to be needed to stop "real" attackers who know your name; you do that job by analyzing the attack traffic, finding characteristics in it particular to the attacker, and filtering it. </p>
<p>I think you're on the right track with free "plug-and-play" defenses for this, especially with a new application.</p>
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/78561#7856111Answer by tqbf for Which of these scripting languages is more appropriate for pen-testing?tqbf2008-09-17T00:11:01Z2008-09-17T02:00:33Z<p>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:</p>
<ul>
<li><p><a href="http://www.metasploit.com/" rel="nofollow">Metasploit's</a> framework, opcode and shellcode databases</p></li>
<li><p>Metasploit's <a href="http://rubyforge.org/projects/ruby-lorcon/" rel="nofollow">Ruby lorcon</a> bindings for raw 802.11 work</p></li>
<li><p>Metasploit's KARMA bindings for 802.11 clientside redirection</p></li>
<li><p><a href="http://curl.haxx.se/libcurl/ruby/" rel="nofollow">Libcurl</a> and net/http for web tool writing</p></li>
<li><p><a href="http://rubyforge.org/projects/eventmachine" rel="nofollow">EventMachine</a> for web proxy and fuzzing work (or RFuzz, which extends the well-known Mongrel webserver)</p></li>
<li><p><a href="http://metasm.cr0.org/" rel="nofollow">Metasm</a> for shellcode generation</p></li>
<li><p><a href="http://www.ragestorm.net/distorm/" rel="nofollow">Distorm</a> for x86 disassembly</p></li>
<li><p><a href="http://blogfranz.blogspot.com/2008/01/bindata-for-ruby-fuzzers.html" rel="nofollow">BinData</a> for binary file format fuzzing.</p></li>
</ul>
<p>Second place here goes to Python. There are more pentesting libraries available in Python than in Ruby (but not enough to offset Metasploit). Commercial tools tend to support Python as well --- if you're an Immunity CANVAS or CORE Impact customer, you want Python. Python gives you:</p>
<ul>
<li><p><a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a> for network access</p></li>
<li><p><a href="http://www.openrce.org/downloads/details/208/PaiMei" rel="nofollow">PaiMei</a> for program tracing and programmable debugging</p></li>
<li><p>CANVAS and Impact support</p></li>
<li><p><a href="http://www.matasano.com/log/695/windows-remote-memory-access-though-firewire/" rel="nofollow">Dornseif's</a> firewire libraries for remote debugging</p></li>
<li><p><a href="http://pydbgeng.sourceforge.net/" rel="nofollow">Ready integration with WinDbg</a> for remote Windows kernel debugging (there's still no good answer in Ruby for kernel debugging, which is why I still occasionally use Python). </p></li>
<li><p><a href="http://peachfuzzer.com/" rel="nofollow">Peach Fuzzer</a> and Sully for fuzzing</p></li>
<li><p>SpikeProxy for web penetration testing (also, <a href="http://www.owasp.org/index.php/Category:OWASP_Pantera_Web_Assessment_Studio_Project" rel="nofollow">OWASP Pantera</a>).</p></li>
</ul>
<p>Unsurprisingly, a lot of web work uses Java tools. The de facto standard web pentest tool is Burp Suite, which is a Java swing app. Both Ruby and Python have Java variants you can use to get access to tools like that. Also, both Ruby and Python offer:</p>
<ul>
<li><p>Direct integration with libpcap for raw packet work</p></li>
<li><p>OpenSSL bindings for crypto</p></li>
<li><p>IDA Pro extensions</p></li>
<li><p>Mature (or at least reasonable) C foreign function interfaces for API access</p></li>
<li><p>WxWindows for UI work, and decent web stacks for web UIs</p></li>
</ul>
<p>You're not going to go wrong with either language, though for mainstream pentest work, Metasploit probably edges out all the Python benefits, and at present, for x86 reversing work, Python's superior debugging interfaces edge out all the Ruby benefits.</p>
<p>Also: it's 2008. They're not "scripting languages". They're programming languages. ;)</p>
http://stackoverflow.com/questions/73947/what-is-the-best-way-to-stop-people-hacking-the-php-based-highscore-table-of-a-f/74841#7484169Answer by tqbf for What is the best way to stop people hacking the PHP-based highscore table of a Flash game.tqbf2008-09-16T17:32:22Z2008-09-16T17:32:22Z<p>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. You're SOL. There is nothing you can do to prevent an attacker from forging high scores:</p>
<ul>
<li><p>Flash is even easier to reverse engineer than you might think it is, since the bytecodes are well documented and describe a high-level language (Actionscript) --- when you publish a Flash game, you're publishing your source code, whether you know it or not.</p></li>
<li><p>Attackers control the runtime memory of the Flash interpreter, so that anyone who knows how to use a programmable debugger can alter any variable (including the current score) at any time, or alter the program itself.</p></li>
</ul>
<p>The simplest possible attack against your system is to run the HTTP traffic for the game through a proxy, catch the high-score save, and replay it with a higher score.</p>
<p>You can try to block this attack by binding each high score save to a single instance of the game, for instance by sending an encrypted token to the client at game startup, which might look like:</p>
<pre><code>hex-encoding( AES(secret-key-stored-only-on-server, timestamp, user-id, random-number))
</code></pre>
<p>(You could also use a session cookie to the same effect).</p>
<p>The game code echoes this token back to the server with the high-score save. But an attacker can still just launch the game again, get a token, and then immediately paste that token into a replayed high-score save. </p>
<p>So next you feed not only a token or session cookie, but also a high-score-encrypting session key. This will be a 128 bit AES key, itself encrypted with a key hardcoded into the Flash game:</p>
<pre><code>hex-encoding( AES(key-hardcoded-in-flash-game, random-128-bit-key))
</code></pre>
<p>Now before the game posts the high score, it decrypts the high-score-encrypting-session key, which it can do because you hardcoded the high-score-encrypting-session-key-decrypting-key into the Flash binary. You encrypt the high score with this decrypted key, along with the SHA1 hash of the high score:</p>
<pre><code>hex-encoding( AES(random-128-bit-key-from-above, high-score, SHA1(high-score)))
</code></pre>
<p>The PHP code on the server checks the token to make sure the request came from a valid game instance, then decrypts the encrypted high score, checking to make sure the high-score matches the SHA1 of the high-score (if you skip this step, decryption will simply produce random, likely very high, high scores). </p>
<p>So now the attacker decompiles your Flash code and quickly finds the AES code, which sticks out like a sore thumb, although even if it didn't it'd be tracked down in 15 minutes with a memory search and a tracer ("I know my score for this game is 666, so let's find 666 in memory, then catch any operation that touches that value --- oh look, the high score encryption code!"). With the session key, the attacker doesn't even have to run the Flash code; she grabs a game launch token and a session key and can send back an arbitrary high score.</p>
<p>You're now at the point where most developers just give up --- give or take a couple months of messing with attackers by:</p>
<ul>
<li><p>Scrambling the AES keys with XOR operations</p></li>
<li><p>Replacing key byte arrays with functions that calculate the key</p></li>
<li><p>Scattering fake key encryptions and high score postings throughout the binary.</p></li>
</ul>
<p>This is all mostly a waste of time. It goes without saying, SSL isn't going to help you either; SSL can't protect you when one of the two SSL endpoints is evil.</p>
<p>Here are some things that can actually reduce high score fraud:</p>
<ul>
<li><p>Require a login to play the game, have the login produce a session cookie, and don't allow multiple outstanding game launches on the same session, or multiple concurrent sessions for the same user.</p></li>
<li><p>Reject high scores from game sessions that last less than the shortest real games ever played (for a more sophisticated approach, try "quarantining" high scores for game sessions that last less than 2 standard deviations below the mean game duration). Make sure you're tracking game durations serverside.</p></li>
<li><p>Reject or quarantine high scores from logins that have only played the game once or twice, so that attackers have to produce a "paper trail" of reasonable looking game play for each login they create.</p></li>
<li><p>"Heartbeat" scores during game play, so that your server sees the score growth over the lifetime of one game play. Reject high scores that don't follow reasonable score curves (for instance, jumping from 0 to 999999). </p></li>
<li><p>"Snapshot" game state during game play (for instance, amount of ammunition, position in the level, etc), which you can later reconcile against recorded interim scores. You don't even have to have a way to detect anomalies in this data to start with; you just have to collect it, and then you can go back and analyze it if things look fishy.</p></li>
<li><p>Disable the account of any user who fails one of your security checks (for instance, by ever submitting an encrypted high score that fails validation). </p></li>
</ul>
<p>Remember though that you're only deterring high score fraud here. There's <em>nothing</em> you can do to prevent if. If there's money on the line in your game, someone is going to defeat any system you come up with. The objective isn't to <em>stop</em> this attack; it's to make the attack more expensive than just getting really good at the game and beating it.</p>
http://stackoverflow.com/questions/72166/penetration-testing-tools/74513#7451320Answer by tqbf for Penetration testing toolstqbf2008-09-16T16:56:22Z2008-09-16T16:56:22Z<p>There are a couple different directions you can go with automated testing tools for web applications.</p>
<p>First, there are the <strong>commercial web scanners</strong>, of which HP WebInspect and Rational AppScan are the two most popular. These are "all-in-one", "fire-and-forget" tools that you download and install on an internal Windows desktop and then give a URL to spider your site, scan for well-known vulnerabilities (ie, the things that have hit Bugtraq), and probe for cross-site scripting and SQL injection vulnerabilities. </p>
<p>Second, there are the <strong>source-code scanning tools</strong>, of which Coverity and Fortify are probably the two best known. These are tools you install on a developer's desktop to process your Java or C# source code and look for well-known patterns of insecure code, like poor input validation. </p>
<p>Finally, there are the <strong>penetration test tools</strong>. By far the most popular web app penetration testing tool among security professionals is Burp Suite, which you can find at <a href="http://www.portswigger.net/proxy" rel="nofollow">http://www.portswigger.net/proxy</a>. Others include Spike Proxy and OWASP WebScarab. Again, you'll install this on an internal Windows desktop. It will run as an HTTP proxy, and you'll point your browser at it. You'll use your applications as a normal user would, while it records your actions. You can then go back to each individual page or HTTP action and probe it for security problems.</p>
<p>In a complex environment, and especially if you're considering anything DIY, <strong>I strongly recommend the penetration testing tools</strong>. Here's why:</p>
<p>Commercial web scanners provide a lot of "breadth", along with excellent reporting. However:</p>
<ul>
<li><p>They tend to miss things, because every application is different.</p></li>
<li><p>They're expensive (WebInspect starts in the 10's of thousands).</p></li>
<li><p>You're paying for stuff you don't need (like databases of known bad CGIs from the '90s).</p></li>
<li><p>They're hard to customize.</p></li>
<li><p>They can produce noisy results.</p></li>
</ul>
<p>Source code scanners are more thorough than web scanners. However:</p>
<ul>
<li><p>They're even more expensive than the web scanners.</p></li>
<li><p>They require source code to operate.</p></li>
<li><p>To be effective, they often require you to annotate your source code (for instance, to pick out input pathways).</p></li>
<li><p>They have a tendency to produce false positives.</p></li>
</ul>
<p>Both commercial scanners and source code scanners have a bad habit of becoming shelfware. Worse, even if they work, their cost is comparable to getting 1 or 2 entire applications audited by a consultancy; if you trust your consultants, you're guaranteed to get better results from them than from the tools. </p>
<p>Penetration testing tools have downsides too:</p>
<ul>
<li><p>They're much harder to use than fire-and-forget commercial scanners.</p></li>
<li><p>They assume some expertise in web application vulnerabilities --- you have to know what you're looking for.</p></li>
<li><p>They produce little or no formal reporting.</p></li>
</ul>
<p>On the other hand:</p>
<ul>
<li><p>They're much, much cheaper --- the best of the lot, Burp Suite, costs only 99EU, and has a free version.</p></li>
<li><p>They're easy to customize and add to a testing workflow.</p></li>
<li><p>They're much better at helping you "get to know" your applications from the inside.</p></li>
</ul>
<p>Here's something you'd do with a pen-test tool for a basic web application:</p>
<ol>
<li><p>Log into the application through the proxy</p></li>
<li><p>Create a "hit list" of the major functional areas of the application, and exercise each once.</p></li>
<li><p>Use the "spider" tool in your pen-test application to find all the pages and actions and handlers in the application.</p></li>
<li><p>For each dynamic page and each HTML form the spider uncovers, use the "fuzzer" tool (Burp calls it an "intruder") to exercise every parameter with invalid inputs. Most fuzzers come with basic test strings that include:</p>
<ul>
<li><p>SQL metacharacters</p></li>
<li><p>HTML/Javascript escapes and metacharacters</p></li>
<li><p>Internationalized variants of these to evade input filters</p></li>
<li><p>Well-known default form field names and values</p></li>
<li><p>Well-known directory names, file names, and handler verbs</p></li>
</ul></li>
<li><p>Spend several hours filtering the resulting errors (a typical fuzz run for one form might generate 1000 of them) looking for suspicious responses.</p></li>
</ol>
<p>This is a labor-intensive, "bare-metal" approach. But when your company owns the actual applications, the bare-metal approach pays off, because you can use it to build regression test suites that will run like clockwork at each dev cycle for each app. This is a win for a bunch of reasons:</p>
<ul>
<li><p>Your security testing will take a predictable amount of time and resources per application, which allows you to budget and triage.</p></li>
<li><p>Your team will get maximally accurate and thorough results, since your testing is going to be tuned to your applications.</p></li>
<li><p>It's going to cost less than commercial scanners and less than consultants.</p></li>
</ul>
<p>Of course, if you go this route, you're basically turning yourself into a security consultant for your company. I don't think that's a bad thing; if you don't want that expertise, WebInspect or Fortify isn't going to help you much anyways. </p>
http://stackoverflow.com/questions/55556/password-generation-best-practice/57617#576173Answer by tqbf for Password generation, best practicetqbf2008-09-11T20:56:16Z2008-09-11T20:56:16Z<p>James, your answer relies on PHP's rand() function, which isn't a secure random number generator. </p>
http://stackoverflow.com/questions/47903/udp-vs-tcp-how-much-faster-is-it/57489#5748915Answer by tqbf for UDP vs TCP, how much faster is it?tqbf2008-09-11T20:06:52Z2008-09-11T20:06:52Z<p>People say that the major thing TCP gives you is reliability. But that's not really true. The most important thing TCP gives you is congestion control: you can run 100 TCP connections across a DSL link all going at max speed, and all 100 connections will be productive, because they all "sense" the available bandwidth. Try that with 100 different UDP applications, all pushing packets as fast as they can go, and see how well things work out for you.</p>
<p>On a larger scale, this TCP behavior is what keeps the Internet from locking up into "congestion collapse". </p>
<p>Things that tend to push applications towards UDP:</p>
<ul>
<li><p>Group delivery semantics: it's possible to do reliable delivery to a group of people much more efficiently than TCP's point-to-point acknowledgement.</p></li>
<li><p>Out-of-order delivery: in lots of applications, as long as you get all the data, you don't care what order it arrives in; you can reduce app-level latency by accepting an out-of-order block. </p></li>
<li><p>Unfriendliness: on a LAN party, you may not care if your web browser functions nicely as long as you're blitting updates to the network as fast as you possibly can.</p></li>
</ul>
<p>But even if you care about performance, you probably don't want to go with UDP: </p>
<ul>
<li><p>You're on the hook for reliability now, and a lot of the things you might do to implement reliability can end up being slower than what TCP already does.</p></li>
<li><p>Now you're network-unfriendly, which can cause problems in shared environments.</p></li>
<li><p>Most importantly, firewalls will block you.</p></li>
</ul>
<p>You can potentially overcome some TCP performance and latency issues by "trunking" multiple TCP connections together; iSCSI does this to get around congestion control on local area networks, but you can also do it to create a low-latency "urgent" message channel (TCP's "URGENT" behavior is totally broken).</p>
http://stackoverflow.com/questions/53728/will-html-encoding-prevent-all-kinds-of-xss-attacks/57434#574341Answer by tqbf for Will HTML Encoding prevent all kinds of XSS attacks?tqbf2008-09-11T19:40:38Z2008-09-11T19:40:38Z<p>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 metacharacters can be vulnerable to evasion attacks; for instance, if it doesn't properly handle Unicode and internationalization.</p>
<p>A classic simple mistake homebrew output filters make is to catch only < and >, but miss things like ", which can break user-controlled output out into the attribute space of an HTML tag, where Javascript can be attached to the DOM.</p>
http://stackoverflow.com/questions/55296/how-exactly-do-you-configure-httponly-cookies-in-asp-classic/57423#574232Answer by tqbf for How exactly do you configure httpOnly Cookies in ASP Classic?tqbf2008-09-11T19:37:24Z2008-09-11T19:37:24Z<p>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 another thing, it only prevents a "drive-by" attack against your application; it does nothing to keep a cross-site scripting attack from resetting passwords, changing email addresses, or placing orders.</p>
<p>Should you use it? Sure. It's not going to hurt you. But there are 10 things you should be sure you're doing before you start messing with HttpOnly. </p>
http://stackoverflow.com/questions/55556/password-generation-best-practice/57417#574171Answer by tqbf for Password generation, best practicetqbf2008-09-11T19:35:26Z2008-09-11T19:35:26Z<p>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 you used the character set directly with a strong random number generator, you'd have 88^9 possible passwords, 3.16e+17 combinations. </p>
<p>Either way, the likely attack against this system is going to be against the random number generator, so make sure you're using a cryptographically strong one. If you use PHP's standard rand function, it will be attacked by registering and resetting thousands of passwords to sample the RNG state and then predict the remaining RNG state, which will reduce the number of possible passwords an attacker needs to test. </p>
http://stackoverflow.com/questions/57384/inter-convertability-of-asymmetric-key-containers-eg-x-509-pgp-openssh/57408#574084Answer by tqbf for Inter-convertability of asymmetric key containers (eg: X.509, PGP, OpenSSH)tqbf2008-09-11T19:29:23Z2008-09-11T19:29:23Z<p>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 to convert between different certificate formats. </p>
<p>PGP has some support for X.509 for S/MIME, but no ability to use X.509 privkeys verbatim. </p>
<p>SSH has some beta support for directly using X.509 keys and certificates.</p>
http://stackoverflow.com/questions/55845/should-data-security-be-performed-on-the-database-side/57392#573921Answer by tqbf for Should data security be performed on the database side?tqbf2008-09-11T19:22:24Z2008-09-11T19:22:24Z<p>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 interfaces business logic to the database tend to be security problems. So, your DBA isn't wrong about locking things down to stored procedures.</p>
<p>Another benefit to locking the application down to stored procedures is that the app stack's database connection can have its privileges locked down to specific stored procedure calls and nothing else. </p>
<p>A benefit to having a DBA involved in security logic for your application is that the different app features and roles can be partitioned in the database down to views, so that even if dynamic SQL and generic select statements are needed, the damage from an SQL vulnerability can be constrained.</p>
<p>The flip side of this is, of course, lost flexibility. An ORM is obviously going to be faster to develop to than a constant negotiation with a DBA over stored procedure parameters. And, as the pressure on those stored procedures grows, it's more and more likely that the procedures themselves will resort to dynamic SQL, which will be just as vulnerable as app composed SQL to attack. </p>
<p>There's a happy middle ground here, and you should try to find it. I've worked on projects recently that were saved from pretty terrible SQL injection problems because a DBA had carefully configured the database, its connections, and its stored procedures for "least privilege", so that any one database user had access only to what they needed to know. </p>
<p>Obviously, as you write SQL code in your app logic, be sure that you're consistently using parameterized prepared statements, that you're sanitizing your input, that you're mindful of internationalized input (there are many, many ways to say single-quote over HTTP), and that you're mindful of how your database behaves when inputs are too large for column widths.</p>
http://stackoverflow.com/questions/18448/encryption-in-c-web-services/55730#557300Answer by tqbf for Encryption in C# Web-Servicestqbf2008-09-11T03:01:05Z2008-09-11T03:01:05Z<p>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 rubber-chicken security measure? Maybe it is.</p>
<p>.NET APIs like DPAPI and the Win32 crypt32 API make it easy to encrypt blobs of data with static keys. But how will your clients receive the keys? Any installed SOAP client will have to either have the key burned into its configuration, or receive it over the insecure Internet. </p>
<p>This is the problem SSL/TLS solves for you; the dance you do with TLS certificates is what solves the problem of communicating public keys over untrusted channels. </p>
http://stackoverflow.com/questions/33086/ensuring-uploaded-files-are-safe/55384#553841Answer by tqbf for ensuring uploaded files are safetqbf2008-09-10T21:44:27Z2008-09-10T21:44:27Z<p>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 Internet as a Java applet, with same-origin bindings (cookies) pointing into your application and your server.</p>
<p>The best way to handle image uploads is to crop, scale, and transform them into a different image format. Images should have different sizes, hashes, and checksums before and after transformation. For instance, Gravatar, which provides the "buddy icons" for Stack Overflow, forces you to crop your image, and then translates it to a PNG.</p>
<p>Is it possible to construct a malicious PDF or DOC file that will exploit vulnerabilities in Word or Acrobat? Probably. But ClamAV is not going to do a very good job at stopping those attacks; those aren't "viruses", but rather vulnerabilities in viewer software. </p>
http://stackoverflow.com/questions/36877/how-do-you-set-up-use-httponly-cookies-in-php/55377#553776Answer by tqbf for How do you set up use HttpOnly cookies in PHPtqbf2008-09-10T21:40:41Z2008-09-10T21:40:41Z<p>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 Safari doesn't honor it at all). By all means, turn HttpOnly on, but don't drop even an hour of output filtering and fuzz testing in trade for it.</p>
http://stackoverflow.com/questions/2525/best-net-obfuscation-tools-strategy/55374#553741Answer by tqbf for Best .NET obfuscation tools/strategytqbf2008-09-10T21:38:59Z2008-09-10T21:38:59Z<p>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 biggest problems native opcode streams do: function/method identification and register aliasing. </p>
<p>What you should know about bytecode reversing is that it is already standard practice for security testers to review straight X86 code and find vulnerabilities in it. In raw X86, you cannot necessarily even find valid functions, let alone track a local variable throughout a function call. In almost no circumstances do native code reversers have access to function and variable names --- unless they're reviewing Microsoft code, for which MSFT helpfully provides that information to the public.</p>
<p>"Dotfuscation" works principally by scrambling function and variable names. It's probably better to do this than publish code with debug-level information, where the Reflector is literally giving up your source code. But anything you do beyond this is likely to get into diminishing returns.</p>
http://stackoverflow.com/questions/23102/what-common-web-exploits-should-i-know-about/55368#553686Answer by tqbf for What common web exploits should I know about?tqbf2008-09-10T21:33:26Z2008-09-10T21:33:26Z<p>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, because it's also easy to understand. "Poor input validation" isn't a vulnerability, but rather an evaluation of a security best practice.</p>
<p>Let's try this from a different perspective. Here are features that, when implemented in a web application, are likely to mess you up:</p>
<ul>
<li><p>Dynamic SQL (for instance, UI query builders). By now, you probably know that the only reliably safe way to use SQL in a web app is to use parameterized queries, where you explicitly bind each parameter in the query to a variable. The places where I see web apps most frequently break this rule is when the malicious input isn't an obvious parameter (like a name), but rather a query attribute. An obvious example are the iTunes-like "Smart Playlist" query builders you see on search sites, where things like where-clause operators are passed directly to the backend. Another great rock to turn over are table column sorts, where you'll see things like DESC exposed in HTTP parameters.</p></li>
<li><p>File upload. File upload messes people up because file pathnames look suspiciously like URL pathnames, and because web servers make it easy to implement the "download" part just by aiming URLs at directories on the filesystem. 7 out of 10 upload handlers we test allow attackers to access arbitrary files on the server, because the app developers assumed the same permissions were applied to the filesystem "open()" call as are applied to queries.</p></li>
<li><p>Password storage. If your application can mail me back my raw password when I lose it, you fail. There's a single safe reliable answer for password storage, which is bcrypt; if you're using PHP, you probably want PHPpass.</p></li>
<li><p>Random number generation. A classic attack on web apps: reset another user's password, and, because the app is using the system's "rand()" function, which is not crypto-strong, the password is predictable. This also applies anywhere you're doing cryptography. Which, by the way, you shouldn't be doing: if you're relying on crypto anywhere, you're very likely vulnerable.</p></li>
<li><p>Dynamic output. People put too much faith in input validation. Your chances of scrubbing user inputs of all possible metacharacters, especially in the real world, where metacharacters are necessary parts of user input, are low. A much better approach is to have a consistent regime of filtering database outputs and transforming them into HTML entities, like quot, gt, and lt. Rails will do this for you automatically.</p></li>
<li><p>Email. Plenty of applications implement some sort of outbound mail capability that enable an attacker to either create an anonymous account, or use no account at all, to send attacker-controlled email to arbitrary email addresses. </p></li>
</ul>
<p>Beyond these features, the #1 mistake you are likely to make in your application is to expose a database row ID somewhere, so that user X can see data for user Y simply by changing a number from "5" to "6". </p>
http://stackoverflow.com/questions/2447/are-there-best-practices-for-testing-security-in-an-agile-development-shop/55351#553511Answer by tqbf for Are there best practices for testing security in an Agile development shop?tqbf2008-09-10T21:19:56Z2008-09-10T21:19:56Z<p>What's your application domain? It depends. </p>
<p>Since you used the word "Agile", I'm guessing it's a web app. I have a nice easy answer for you. </p>
<p>Go buy a copy of Burp Suite (it's the #1 Google result for "burp" --- a sure endorsement!); it'll cost you 99EU, or ~$180USD, or $98 Obama Dollars if you wait until November. </p>
<p>Burp works as a web proxy. You browse through your web app using Firefox or IE or whatever, and it collects all the hits you generate. These hits get fed to a feature called "Intruder", which is a web fuzzer. Intruder will figure out all the parameters you provide to each one of your query handlers. It will then try crazy values for each parameter, including SQL, filesystem, and HTML metacharacters. On a typical complex form post, this is going to generate about 1500 hits, which you'll look through to identify scary --- or, more importantly in an Agile context, new --- error responses.</p>
<p>Fuzzing every query handler in your web app at each release iteration is the #1 thing you can do to improve application security without instituting a formal "SDLC" and adding headcount. Beyond that, review your code for the major web app security hot spots:</p>
<ul>
<li><p>Use only parameterized prepared SQL statements; don't ever simply concatenate strings and feed them to your database handle.</p></li>
<li><p>Filter all inputs to a white list of known good characters (alnum, basic punctuation), and, more importantly, output filter data from your query results to "neutralize" HTML metacharacters to HTML entities (quot, lt, gt, etc). </p></li>
<li><p>Use long random hard-to-guess identifiers anywhere you're currently using simple integer row IDs in query parameters, and make sure user X can't see user Y's data just by guessing those identifiers.</p></li>
<li><p>Test every query handler in your application to ensure that they function only when a valid, logged-on session cookie is presented.</p></li>
<li><p>Turn on the XSRF protection in your web stack, which will generate hidden form token parameters on all your rendered forms, to prevent attackers from creating malicious links that will submit forms for unsuspecting users.</p></li>
<li><p>Use bcrypt --- and nothing else --- to store hashed passwords.</p></li>
</ul>
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/76470#76470Comment by tqbf on Which of these scripting languages is more appropriate for pen-testing?tqbf2008-09-17T17:01:59Z2008-09-17T17:01:59ZI'm a believer in C, but you don't need it for ptrace/win32 (PyDbg), and you don't need it for raw packets (IMpacket, pcapy, ruby-pcap).
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/76508#76508Comment by tqbf on Which of these scripting languages is more appropriate for pen-testing?tqbf2008-09-17T17:00:57Z2008-09-17T17:00:57ZFor what it's worth, you can get direct access to Java libraries through JRuby and Jython, both of which are the second most popular implementations of their respective languages.