User AviD - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T13:22:04Z http://stackoverflow.com/feeds/user/10080 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1756151#1756151 0 Answer by AviD for What is your best programmer joke? AviD 2009-11-18T13:53:29Z 2009-11-18T13:53:29Z <p>An evil psychiatrist kidnaps an engineer, a chemist, and a mathematician to see how their minds work. He locks them in separate cells with a year supply of canned beans and leaves. When he comes back in a year to check on his prisoners, he finds: </p> <p>The chemist had collected rainwater to corrode the cans of beans so he could eat them. The engineer had taken apart his bed and made a crude can opener out of the parts. The mathematician was slouched on the floor, long since dead. </p> <p>Written in blood beside the corpse read the following:<br> Theorem: If I don't eat the beans I will die.<br> Proof: Assume the opposite and seek a contradiction.</p> http://stackoverflow.com/questions/1745875/session-management-with-windows-authentication 2 Session Management with Windows Authentication AviD 2009-11-17T00:40:53Z 2009-11-17T01:53:36Z <p>In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity?<br> In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my session, is this stuff accessible by session id alone? For instance, if a malicious someone managed to steal my session id, but NOT my credentials, can he then access my session stuff? Or is this session accessible only to the same identity, requiring <strong>both</strong> the session id AND the windows identity to access it? </p> http://stackoverflow.com/questions/1428901/save-images-in-outlook-2007 1 Save images in Outlook 2007 AviD 2009-09-15T18:29:10Z 2009-10-19T11:55:46Z <p>Programmatically, of course. </p> <p>Having already asked <a href="http://superuser.com/questions/41603/save-images-in-outlook-2007">this question</a> on superuser, I'm looking at writing a simple macro to pull down the displayed image in an HTML message (email or feed) in outlook 2007, and allow me to save it to disk. </p> <p>Unfortunately, I havent been able to find where in the OL object model I can reference either linked images, or the html content itself. Finding attached files is easy, its the linked/displayed images that is my issue.</p> <p>Any help? Of course, if you have a better non-programmatic answer, I'll be glad to see that - over on superuser, of course...</p> http://stackoverflow.com/questions/418741/asp-net-iis-remote-debugging-debug-verb 0 ASP.NET / IIS Remote Debugging - DEBUG verb AviD 2009-01-07T00:22:30Z 2009-10-14T19:00:03Z <p>I'm looking for details on the DEBUG HTTP verb.<br /> It's clear to me that this is used for remote debugging - though I'm not even sure if it's for IIS or ASP.NET... </p> <p>If I want to access this interface directly - i.e. not through Visual Studio, but sending these commands manually - what do I need to know? What are the commands for it?<br /> I'm also interested in misuse cases, if you have any information on that...</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/172085#172085 3 Answer by AviD for What is the single most influential book every programmer should read? AviD 2008-10-05T14:48:15Z 2009-10-13T08:08:11Z <p>Another book that has not been mentioned yet, and SHOULD be required reading for EVERY programmer, newbies on up to gurus, in ANY programming language, is Michael Howard's <a href="http://www.microsoft.com/learning/en/us/book.aspx?ID=5957&amp;locale=en-us" rel="nofollow">Writing Secure Code (2nd Edition)</a> from MSPress.</p> <p><img src="http://www.microsoft.com/Learning/Images/Books/Imgt/9780735617223F.gif" alt="alt text" /></p> http://stackoverflow.com/questions/1500678/the-r-in-crud-wheres-the-line-between-feature-and-disclosure-vulnerability/1500725#1500725 0 Answer by AviD for The R in CRUD - where's the line between feature and disclosure vulnerability? AviD 2009-09-30T21:20:37Z 2009-09-30T21:20:37Z <p>It comes down to the fact that your users' browser, history, cache, etc, are not secret OR properly protected (there are many scenarios where these can be accessed by unauthorized users, the fact that you're asking the question shows that you're probably aware of them...). </p> <p>So, don't assume that anything cached there will be protected - and don't allow any "sensitive" information to be cached there. "What is sensitive", you ask? Well, anything you wouldnt want to be revealed to any other user. Bank account, secret forums, username, session id, transaction details - none of this should be allowed to be cached or stored on the client. </p> <p>It really is an excellent point you raise, since often developers rush in with AJAX and whatnot to improve usability, forgetting about protecting that information en route and at rest on the client.</p> http://stackoverflow.com/questions/606179/what-encryption-algorithm-is-best-for-encrypting-cookies/606203#606203 4 Answer by AviD for What encryption algorithm is best for encrypting cookies? AviD 2009-03-03T12:27:49Z 2009-09-23T22:29:45Z <p>No real reason not to go with <a href="http://en.wikipedia.org/wiki/Advanced%5FEncryption%5FStandard" rel="nofollow">AES</a> with 256 bits. Make sure to use this in <a href="http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation#Cipher-block%5Fchaining%5F.28CBC.29" rel="nofollow">CBC mode</a>, and PKCS#7 padding. As you said, fast and secure. </p> <p>I have read (not tested) that Blowfish may be marginally faster... However Blowfish has a major drawback of long setup time, which would make it bad for your situation. Also, AES is more "proven". </p> <p>This assumes that it really <em>is</em> necessary to symmetrically encrypt your cookie data. As others have noted, it really shouldnt be necessary, and there are only a few edge cases where there's no other choice but to do so. Commonly, it would better suit you to change the design, and go back to either random session identifiers, or if necessary one-way hashes (using SHA-256).<br /> In your case, besides the "regular" random session identifier, your issue is the "remember me" feature - this should also be implemented as either:</p> <ul> <li>a long random number, stored in the database and mapped to a user account;</li> <li>or a keyed hash (e.g. HMAC) containing e.g. the username, timestamp, mebbe a salt, AND a secret server key. This can of course all be verified server-side...</li> </ul> <p>Seems like we've gotten a little of topic of your original, specific question - and changed the basis of your question by changing the design....<br /> So as long as we're doing that, I would also STRONGLY recommend <em>AGAINST</em> this feature of persistent "remember me", for several reasons, the biggest among them:</p> <ul> <li>Makes it much more likely that someone may steal that user's remember key, allowing them to spoof the user's identity (and then probably change his password);</li> <li><a href="http://www.cgisecurity.com/csrf-faq.html" rel="nofollow">CSRF</a> - <a href="http://www.owasp.org/index.php/Cross-Site%5FRequest%5FForgery" rel="nofollow">Cross Site Request Forgery</a>. Your feature will effectively allow an anonymous attacker to cause unknowing users to submit "authenticated" requests to your application, even without being actually logged in.</li> </ul> http://stackoverflow.com/questions/1440733/replace-single-quote-in-sql-server/1440811#1440811 0 Answer by AviD for Replace single quote in sql server AviD 2009-09-17T19:13:31Z 2009-09-17T19:13:31Z <p>Besides needing to escape the quote (by using double quotes), you've laso confused the names of variables: you're using @var and @strip, instead of @CleanString and @strStrip...</p> http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439572#1439572 -7 Answer by AviD for How should I interview a candidate who is probably a "no hire"? AviD 2009-09-17T15:25:35Z 2009-09-17T15:25:35Z <p>Having been in that situation, and having kept asking myself "WHY am I interviewing this guy again?" - all I can suggest is:</p> <ol> <li>Make it as painless as possible, i.e. aim for short interview, and have it mapped out as much as possible</li> <li>Be prepared to be surprised (it's rare, but it does happen...)</li> <li>Since no.2 is rare, in order to do no.1 you'll have to keep it very high-level, i.e. dont try to get in the gritty details... and probably dont bother having him code at this point (but have something prepare just in case he DOES surprise you). </li> <li>Get it over with as quickly as possible...</li> </ol> http://stackoverflow.com/questions/1357292/can-i-improve-ajax-with-flash/1390651#1390651 0 Answer by AviD for Can I improve AJAX with Flash? AviD 2009-09-07T19:12:56Z 2009-09-07T19:12:56Z <p>Similar to what James Black said, don't jump straight ahead and rip replace everything to Flash, before you figure out where the bottleneck is (if one exists). </p> <p>I think you might also be missing some parts of the picture, judging from some of the comments... </p> <p>I want to lay out all the layers in your communications, just to make things clear - point is, its unlikely ALL of it is the problem, and youd be better looking at the problematic layer only.</p> <ol> <li>Client code - currently javascript, which calls the next layer asynchronously. If you optimize to Flash, this part may be more responsive, and its "richer".</li> <li>TCP/IP (wont go lower than that) - this is ALWAYS stateful, because TCP <strong>is</strong> stateful. At least at the connection layer... What this means, is that usually the TCP connection is kept open for a long time, and you dont open a new one on each request. You won't be changing this in a browser app...</li> <li>HTTP - stateless in principal, but typically circumvented through some form of cookies and server-side session. Also it's not the MOST efficient protocol, especially for binary data, since it is text-based and a bunch of overhead. While it is technically possible to skip through this protocol, its highly UNrecommended to do this in a browser app, because (a) its unexpected from a user point of view, and (b) its not very firewall friendly.</li> <li>XML - if you discover that your bottleneck is in the amount of data transmitted, you might just want to switch out the payload format since XML is pretty verbose. For example, JSON would be a great alternative here. Or maybe just trim down the XML schema...</li> <li>Server side app - often, the bottleneck will be here, regardless of anything that happens downstream.</li> </ol> <p>So, to sum up - switching your client to Flash might have 2 possible benefits: the client itself may run faster (depending on your client), and it allows you to call sockets directly bypassing 3 above (http). Again, note that the 2nd benefit is dubious at best - benefit is questionable, and there are clear downsides to it.<br /> Unless the bottleneck is the client display code, you're better off either switching to JSON (or other data format), or optimizing your server code. Once you profile and figure out where the problem is, you'll better know where to focus your efforts. I find it highly unlikely that Flash will help with that. (again, since it IS a game, you may need the improved display).</p> http://stackoverflow.com/questions/1375801/encoding-querystring-params/1376143#1376143 1 Answer by AviD for Encoding Querystring Params AviD 2009-09-03T21:45:52Z 2009-09-03T21:45:52Z <p>Though the direct answer to your question is: "URL encoding uses a single %"... </p> <p>I believe that link is NOT url encoded.<br /> Simply put, neither %MA nor %%MA is a valid URL token - the % is followed by a hexadecimal value, i.e. to characters 0-9A-F.<br /> I'm thinking this is some kind of internal encoding scheme, by the 3rd party processor you mentioned in the comments. </p> <p>As such, either way might be the right answer for you, or neither, or both :-(.<br /> Sorry this isnt more helpful, but you'll just have to check out the documentation for the 3rd party. </p> http://stackoverflow.com/questions/1376002/what-topics-for-a-training-class/1376113#1376113 0 Answer by AviD for What topics for a training class? AviD 2009-09-03T21:39:02Z 2009-09-03T21:39:02Z <p>Security. </p> <p>General security concepts, application security techniques, secure coding guidelines, security best practices and principles, etc.<br /> Depending on available time (and their level), you should focus on data validation, data validation, data validation, and then on output sanitization (encoding), authentication mechanisms, data access, error handling, etc. </p> <p>Then again, since this topic(s) is pretty complicated, you might prefer outsourcing it to security experts. </p> http://stackoverflow.com/questions/1361705/is-http-header-referer-sent-when-going-to-a-http-page-from-a-https-page/1361718#1361718 7 Answer by AviD for Is HTTP header Referer sent when going to a http page from a https page ? AviD 2009-09-01T10:30:28Z 2009-09-01T10:30:28Z <p>Yes, defined in the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec15.html#sec15.1.3" rel="nofollow">standard</a>:</p> <blockquote> <p>Clients SHOULD NOT include a Referer header field in a (non-secure) HTTP request if the referring page was transferred with a secure protocol</p> </blockquote> http://stackoverflow.com/questions/862722/dynamically-loading-subreport-data-in-ssrs 0 Dynamically loading SubReport data in SSRS AviD 2009-05-14T11:01:16Z 2009-08-30T11:50:21Z <p>This is in SSRS 2008.<br /> I've created a report with a tablix, embedded in the tablix there is a subreport. This subreport contains a lot of information (and I mean a lot – it takes more than 45 sec to load it). </p> <p>I don’t want to show it, or to be more precise – to process/load the data when the report initially runs. Note that I dont want to just not display it - because then all the data is still processed at initial load time.<br /> Instead, I only want the subreport to be processed (and the data pulled down), individually, when I display it (e.g. clicking a + sign to toggle it, or any other option such as clicking an image/ link, while staying in the same report). I also don’t want to open the subreport in a different tab or something like that....</p> <p>Does anyone know a solution? Maybe there is an onLoad method, dynamic subreport or something like that?<br /> I tried looking into the DataElementOutput attribute, but that's readOnly... anything else?</p> http://stackoverflow.com/questions/862722/dynamically-loading-subreport-data-in-ssrs/1353716#1353716 0 Answer by AviD for Dynamically loading SubReport data in SSRS AviD 2009-08-30T11:50:21Z 2009-08-30T11:50:21Z <p>So, as it turns out, the problem was in fact because I had the subreport repeated for each row in the parent report. Thus, the subreport was called numerous times...<br /> And according to MS, there is now way to dynamically process individual subreports. Had to solve this issue by splitting out the subreport (at least the data-heavy parts) to a seperate page. :(</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114570#114570 20 Answer by AviD for What are Code Smells? What is the best way to correct them? AviD 2008-09-22T12:31:57Z 2009-08-28T17:30:04Z <p>Reinventing the wheel.<br /> For instance, I love doing code reviews and finding some brand-spanking-new shiny version of 3DES. (Happens more often than you'd think! Even in JavaScript!)<br /> "Whaaat? We MUST encrypt the CC/pwd/etc! And 3DES is SOOO easy to implement!" It's always a challenge to find the subtle flaws that make their encryption trivially breakable... </p> <p>How to correct it - quite simply, use the platform provided wheels. Or, if there is REALLY an ACTUAL reason not to use that, find a trusted, reviewed module already built by somebody who knows what he/she was doing.<br /> In the above example, almost every modern language provides built-in libraries for strong encryption, much better than you can do on your own. Or you could use OpenSSL.<br /> Same goes for other wheels, don't make it up on your own. It's stinky.</p> http://stackoverflow.com/questions/1107174/using-a-remote-external-web-service-instead-of-a-database/1301912#1301912 0 Answer by AviD for Using a remote, external web service instead of a database AviD 2009-08-19T18:50:05Z 2009-08-19T18:58:01Z <p>One other issue you need to consider, depending on the type of application and/or data you're pulling down: security. </p> <p>Specifically, I'm referring to authentication and authorization, both of your end users, and the web application itself. Where are these things handled? All in the web app? by the WS? Or maybe the front-end app is authenticating the users, and flowing the user's identity to the back end WS, allowing that to verify that the user is allowed? How do you verify this? Since many other responders here mention a local data cache on the front end app (an EXCELLENT idea, BTW), this gets even MORE complicated: do you cache data that is allowed to userA, but not for userB? if so, how do you verify that userB cannot access data from the cache? What if the authorization is checked by the WS, how do you cache the permissions then? </p> <p>On the other hand, how are you verifying that only your web app is allowed to access the WS (and an attacker doesn't directly access your WS data over the Internet, for instance)? For that matter, how do you ensure that your web app contacts the CORRECT WS server, and not a bogus one? And of course I assume that all the connection to the WS is only over TLS/SSL... (but of course also programmatically verify the cert applies to the accessed server...)</p> <p>In short, its complicated, and many elements to consider here.... but it is NOT insurmountable.</p> <p>(as far as input validation goes, that's actually <em>NOT</em> an issue, since this should be done by <strong>BOTH</strong> the front end app AND the back end WS...)</p> <p><hr /></p> <p>Another aspect here, as mentioned by @Martin, is the need for an SLA on whatever provider/hosting service you have for the NY WS, not just for performance, but also to cover availability. I.e. what happens if the server is inaccessible how quickly they commit to getting it back up, what happens if its down for extended periods of time, etc. That's the only way to legitimately <em>transfer the risk</em> of your availability being controlled by an externality.</p> http://stackoverflow.com/questions/578068/looking-for-a-phrase-that-expresses-convoluted-code/1301956#1301956 0 Answer by AviD for looking for a phrase that expresses convoluted code AviD 2009-08-19T18:56:25Z 2009-08-19T18:56:25Z <p>Depending on how common this type of code is in your company.... </p> <p>SNAFU - Situation Normal - All **cked Up</p> http://stackoverflow.com/questions/107755/c-libraries-for-internationalization/1301721#1301721 0 Answer by AviD for C# libraries for internationalization? AviD 2009-08-19T18:16:55Z 2009-08-19T18:16:55Z <p>Not exactly a "library", per se, but I've actually ran into a great service (for pay), by a company called <a href="http://www.fiftyone.com/" rel="nofollow">E4X</a> (former client of mine).<br /> What they provide is complete localization of your ecommerce site, including language translations, currency exchanges, local billing and handling of financial transactions including region-specific taxes etc, and more. They even deal with logisitics of physical shipping... </p> <p>Worth looking into, for an ecommerce business. Let 'em know I sent you... ;-)</p> http://stackoverflow.com/questions/388699/security-vulnerabilities-of-the-net-platform/1209857#1209857 0 Answer by AviD for Security vulnerabilities of the .NET platform? AviD 2009-07-30T23:01:13Z 2009-07-30T23:01:13Z <p>For a very interesting, yet not necessarily exploitable (since you'd need root access anyway), check out <a href="http://www.blackhat.com/html/bh-usa-09/bh-usa-09-speakers.html#Metula" rel="nofollow">this talk at this year's Blackhat</a> (hmm, going on right now) by Erez Metula, on using some techniques to hack the .NET Framework and implement ".NET Rootkits".</p> http://stackoverflow.com/questions/452664/best-security-vulnerability-testing-firms/1209782#1209782 0 Answer by AviD for Best Security / Vulnerability Testing Firms? AviD 2009-07-30T22:36:15Z 2009-07-30T22:36:15Z <p>First thing, you should realize that you have several different types of options: depending on your budget and actual security needs, you might be well (enough) served by getting an automatic web scanning tool - plenty of those out there. But take into account that these are NOT great, you can expect up to 30-40% of your vulnerabilities found, on the other hand this does help clean up the low hanging fruit that scriptkiddies and the like will be jumping on. </p> <p>On the other side, maybe what you need is not simply penetration testing, but a more comprehensive security audit, including design reviews, code review, guidelines, etc. The answer for this will typically be different from your original question, which seemed aimed at pentesting. If you do need these, let me know and I can help with that too.</p> <p>But to your direct question, a good pentesting firm - depends on your region.<br /> I might be biased, but I find <a href="http://www.ComsecGlobal.com" rel="nofollow">Comsec Consulting</a> to be one of the best firms out there, operating mainly in Europe and the area, but also some clients in almost every part of the world - US, South America, Australia, etc. (Biased, because I've worked there for many years up until recently).<br /> Again, depending on your region there are many local, "boutique" type firms, but its important to get references for these <strong>from clients who <em>understand</em> security</strong>. There are too many in this confusing field that simply feed their unknowing clients some strange info, and these never know better until the day they are hacked with a trivial exploit by scriptkiddies.</p> http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1191065#1191065 2 Answer by AviD for Surprising software vulnerabilities or exploits? AviD 2009-07-27T22:45:01Z 2009-07-27T22:45:01Z <p>Another surprising and recent exploit is <a href="http://www.sectheory.com/clickjacking.htm" rel="nofollow">Clickjacking</a>, which once again shows the inadequecy of our current model of what a Web browser is and should be. Easily bypasses most defenses against XSS, CSRF, etc, and allows a malicious website to "steal" control of your clicking, and misdirect them at a specific spot on another website - e.g. the "OK" button on the "Transfer Funds" page on your bank's site, or the Flash options dialog allowing the attacker to VIEW YOUR WEBCAM WITHOUT YOUR KNOWLEDGE!<br /> Shocking, and brilliant...</p> http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1191053#1191053 5 Answer by AviD for Surprising software vulnerabilities or exploits? AviD 2009-07-27T22:41:12Z 2009-07-27T22:41:12Z <p>Yes, yes, we all know about SQL Injection - and we all know how to protect against it, right?<br /> Your application should be doing input validation, calling Stored Procedures, etc. etc. </p> <p>But did you know that in certain situations, <a href="http://www.comsecglobal.com/FrameWork/Upload/SQL%5FSmuggling.pdf" rel="nofollow">SQL Smuggling</a> can easily bypass all that?<br /> The most shocking thing about it, is that this is caused by a little-known, mostly undocumented, "feature" in some databases, frameworks, db objects etc. In short - the database (or plumbing on the way there) might do you the favor of happily - and silently - translating some unfamiliar character into some other! For example, Unicode character U+CABC might become a quote (U+0027), which you tried to block in your app, but unfortunately the DB decided to create and allow the attacker to again mount his SQLi attack straight through your defenses.</p> <p>Yes, I published the linked article, but when I originally discovered this behavior I <em>was</em> shocked.</p> http://stackoverflow.com/questions/1156000/maintaining-class-library-assemblies-utilized-by-multiple-projects/1185352#1185352 3 Answer by AviD for maintaining class library assemblies utilized by multiple projects. AviD 2009-07-26T19:34:08Z 2009-07-26T19:34:08Z <p>If you don't like @Steven's direction of assembly redirection, and assuming you DON'T want to recompile Project A, you can just privately deploy different versions of MyLib to each project.<br /> Project A would then just continue to use version 1, and Project B would use version 2. This seems to be what you are wanting to hear - and it is trivial to do. Either put the MyLib dll in each project's folder (or subfolder) and each project will automatically pick up the respective local version, or you can strongname them in the GAC, and have each project pick up the specific version you compiled against.<br /> This is actually the default behavior, and you don't need to do anything complex to achieve this. </p> http://stackoverflow.com/questions/1086676/time-to-understand-a-program-by-loc/1086743#1086743 1 Answer by AviD for Time to understand a program by LOC AviD 2009-07-06T12:36:24Z 2009-07-06T12:36:24Z <p>Code review metrics (which is not the same thing, but nearly comparable) put the number in the range of approximately 50-100 LoC per hour, for an experienced code reviewer. </p> <p>This of course also depends on what they're looking for in the review, language, complexity, familiarity, etc.... But that might give you a general overgeneralization anyway.</p> http://stackoverflow.com/questions/1083193/whats-better-dataset-or-datareader/1083205#1083205 2 Answer by AviD for What's better: DataSet or DataReader ? AviD 2009-07-04T23:57:57Z 2009-07-04T23:57:57Z <p>Different needs, different solutions. </p> <p>As you said, dataset is most similar to VB6 Recordset. That is, pull down the data you need, pass it around, do with it what you will. Oh, and then eventually get rid of it when you're done. </p> <p>Datareader is more limited, but it gives MUCH better performance when all you need is to read through the data once. For instance, if you're filling a grid yourself - i.e. pull the data, run through it, for each row populate the grid, then throw out the data - datareader is much better than dataset. On the other hand, dont even try using datareader if you have any intention of updating the data... </p> <p>So, yes, learn it - but only use it when appropriate. Dataset gives you much more flexibility.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/499856#499856 9 Answer by AviD for What non-programming books should programmers read? AviD 2009-02-01T00:13:56Z 2009-07-02T03:03:59Z <p><a href="http://rads.stackoverflow.com/amzn/click/0387026207" rel="nofollow">Beyond Fear</a> by Bruce Schneier.<br /> <img src="http://images.barnesandnoble.com/images/14590000/14596034.JPG" alt="Beyond Fear Book" /></p> <p>From Amazon: "Schneier provides an interesting view of the notion of security, outlining a simple five-step process that can be applied to deliver effective and sensible security decisions. These steps are addressed in detail throughout the book, and applied to various scenarios to show how simple, yet effective they can be....Overall, this book is an entertaining read, written in layman's terms, with a diverse range of examples and anecdotes that reinforce the notion of security as a process". </p> <p>Or just consider it a straight read on understanding what security means - whether for computers or in real life. It can give you the tools to handle the ginormous amounts of FUD we encounter every day.... And it's entertaining, besides. (Even got my father to read it, and he's enjoying it...)</p> http://stackoverflow.com/questions/1066611/what-are-best-practices-for-activation-registration-password-reset-links-in-email/1068162#1068162 2 Answer by AviD for What are best practices for activation/registration/password-reset links in emails with nonce AviD 2009-07-01T09:22:12Z 2009-07-01T09:22:12Z <p>This question is very similar to <a href="http://stackoverflow.com/questions/938031/implementing-secure-unique-single-use-activation-urls-in-asp-net-c/938076#938076">Implementing secure, unique “single-use” activation URLs in ASP.NET (C#)</a>. </p> <p>My answer there is close to your scheme, with a few issues pointed out - such as short period of validity, handling double signups, etc.<br /> Your use of a <strong>cryptographic</strong> nonce is also important, that many tend to skip over - e.g. "lets just use a GUID"... </p> <p>One new point that you do raise, and this is important here, is wrt the idempotency of GET.<br /> Whilst I agree with your general intent, its clear that idempotency is in direct contradiction to one-time links, which is a necessity in some situations such as this. </p> <p>I would like have liked to posit that this doesnt really violate the idempotentness of the GET, but unfortunately it does... On the other hand, the RFC says GET <strong>SHOULD</strong> be idempotent, its not a MUST. So I would say forgo it in this case, and stick to the one-time auto-invalidated links.</p> <p>If you <em>really</em> want to aim for strict RFC compliance, and not get into non-idempotent(?) GETs, you can have the GET page auto-submit the POST - kind of a loophole around that bit of the RFC, but legit, and you dont require the user to double-optin, and you're not bugging him...</p> <p>You dont really have to worry about preloading (are you talkng about CSRF, or browser-optimizers?)... CSRF is useless because of the nonce, and optimizers usually wont process javascript (used to auto-submit) on the preloaded page.</p> http://stackoverflow.com/questions/1054989/why-not-hit-the-database-inside-unit-tests/1055011#1055011 0 Answer by AviD for Why not hit the database inside unit tests? AviD 2009-06-28T14:20:49Z 2009-06-28T14:20:49Z <p>Well, the thing is, if you have your unittests hit the database, you're not testing just the single unit of code, but instead you're hitting several - also the DAL, stored procedures, etc. Thats why TDD proponents say not to hit the database in unittests. </p> <p>Its also why you shouldnt hold much weight in pure, TDD-conceptualized, theoretical holy <strong>U</strong>nit <strong>T</strong>ests. While unittesting is not a bad thing per se, and in fact is quite important to ensure the programmers build each component properly - system testing is way more important. Overall, it may be harder to find the exact method that caused system tests to fail, they're more realistic and <em>actually test the system</em>.<br /> So-called "Component Testing" - which is more like system testing, but for only one small part of the system, end-to-end - seems to me to be a good compromise.</p> <p>(Cue the TDD rebuttals now... :) )</p> http://stackoverflow.com/questions/867593/old-data-stored-in-database-file 1 Old data stored in database file AviD 2009-05-15T08:38:44Z 2009-06-23T08:15:00Z <p>How can I ensure that all data that I've erase from the db tables, is no longer stored in the mdb files (and others) on the hard disk?</p> <p>Here's my situation:<br /> My client used to store non-encrypted credit card data, in their database (SQL Server). Thanks to PCI requirements, they now encrypt all that data... However, the mdb file still has some of the old, unencrypted CC written to it.<br /> We've verified that there are no more CC's in the database; we've compressed the database; we've backed it up to a file and restored it anew, to a new database; we've even run sp_cleandb.<br /> Yet, still, when we analyze the persisted file on disk, we still find a handful of non-encrypted CCs - that are not stored in the DB, they're not part of SPs, views, or UDFs, and they do not appear in any table metadata. </p> <p>So, my question - how can I ensure all the "bad" CC data is gone? Or, more generally, how do I force MSSQL to store only current data, and clean the file from any "garbage"?</p> http://stackoverflow.com/questions/88455/how-do-i-represent-features-v-tasks-in-fogbugz-6/127643#127643 Comment by AviD on How do I represent features v. tasks in FogBugz 6? AviD 2009-12-02T16:20:33Z 2009-12-02T16:20:33Z Thanks Bob, didnt see this till now, but as you say its much simpler in FB7. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/235857#235857 Comment by AviD on What is your best programmer joke? AviD 2009-11-18T09:07:21Z 2009-11-18T09:07:21Z that should be you.Know(you.AreHappy). The knowing is about the being happy, of course... And this allows extending it to knowing other things, too, and taking differing actions depending on the object of knowledge... http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/332010#332010 Comment by AviD on What is your best programmer joke? AviD 2009-11-18T06:33:39Z 2009-11-18T06:33:39Z Typical mathematicians - thinking they drink beer in lab conditions, ignoring reality - it takes time to pass the glass to the next guy, so it cannot take only 2 minutes! And, by that time, the beer will be warm, so noone will want to drink it. Well, except maybe for mathematicians... http://stackoverflow.com/questions/1745875/session-management-with-windows-authentication/1746114#1746114 Comment by AviD on Session Management with Windows Authentication AviD 2009-11-17T02:01:20Z 2009-11-17T02:01:20Z Nice example of a more &quot;innocent&quot; scenario :). So you're saying that the session and the authentication have nothing to do with each other? That is odd... And it's actually quite common to store roles, or some other authorization token, in the session, which would make this issue critical in this scenario. Thanks. http://stackoverflow.com/questions/448963/has-recaptcha-been-cracked-hacked-ocrd-defeated-broken Comment by AviD on Has reCaptcha been cracked / hacked / OCR'd / defeated / broken? AviD 2009-10-23T13:52:50Z 2009-10-23T13:52:50Z Another viewpoint... <a href="http://ha.ckers.org/blog/20090420/google-whats-up-captcha/" rel="nofollow">ha.ckers.org/blog/20090420/&hellip;</a> http://stackoverflow.com/questions/1428901/save-images-in-outlook-2007/1588270#1588270 Comment by AviD on Save images in Outlook 2007 AviD 2009-10-19T18:07:12Z 2009-10-19T18:07:12Z Thanks, but... (a) already got this link on the linked question on superuser; (b) as I said there, this doesnt work for HTML messages, only attached files; (c) this answer isnt programmatic ;). So, now that I'm not getting the tumbleweed ;), do you know how to do the same for HTML messages? http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/172085#172085 Comment by AviD on What is the single most influential book every programmer should read? AviD 2009-10-13T08:12:08Z 2009-10-13T08:12:08Z Sure thing - added link and pic. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:14:28Z 2009-10-10T17:14:28Z re Hashing, the password needs a salt (random value added to the password before hashing), to prevent Rainbow Table attacks and same-password attacks. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:13:26Z 2009-10-10T17:13:26Z re SQL Injection, do not suffice with prepared statements by themselves, you also must perform proper input validation. Stored Procedures also provide additional benefits (above prepared statements), such as the ability of least privilege on the DB. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548432#1548432 Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:11:03Z 2009-10-10T17:11:03Z @Chris, you're right. Don't try to roll your own crypto, use standard HTTPS, and THEN hash on the server. Oh, and dont be using MD5 for hashing anyway - SHA-256 and up, together with salt. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548403#1548403 Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:09:46Z 2009-10-10T17:09:46Z Just hashing the password is not enough, @eWolf is right that you need a salt in there. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548420#1548420 Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:08:56Z 2009-10-10T17:08:56Z filter as much as you want, but its more important to encode the output - using context-sensitive encoding, not just HTML encoding. If you're on ASP.NET, use MS' Anti-XSS framework. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548438#1548438 Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:07:00Z 2009-10-10T17:07:00Z This could also be an issue if there is any type of social interaction, as one user can be misled by the other users username... http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548407#1548407 Comment by AviD on What attacks can be directed on a registration page AviD 2009-10-10T17:05:49Z 2009-10-10T17:05:49Z There are better solutions than captcha, but for a low-value site it can be good enough. http://stackoverflow.com/questions/448963/has-recaptcha-been-cracked-hacked-ocrd-defeated-broken/549859#549859 Comment by AviD on Has reCaptcha been cracked / hacked / OCR'd / defeated / broken? AviD 2009-10-03T20:22:36Z 2009-10-03T20:22:36Z @Mike, reCAPTCHA is not necessarily MORE broken than CAPTCHAs in general, but all that of course applies to it too... Also, as I mentioned reCAPTCHA images were the quickest broken. @Ifaraone, I find that odd, its worked fine for me before, and as Ive said specifcally reCAPTCHA images were the quickest broken... Though I havent done it in quite a while, I'm going to check it out again.