User Flory - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:47:03Zhttp://stackoverflow.com/feeds/user/5551http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards7How do you document your coding standards?Flory2008-10-07T14:20:45Z2009-10-30T21:49:06Z
<p>What have you found to be the best way to publish your coding standards and why?</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#1214702Answer by Flory for Hidden Features of C#?Flory2008-09-23T14:44:29Z2009-10-10T13:20:09Z<p>There are operators for performing <a href="http://msdn.microsoft.com/en-us/library/z5z9kes2.aspx" rel="nofollow"><code>implicit</code></a> and <a href="http://msdn.microsoft.com/en-us/library/xhbhezf4.aspx" rel="nofollow"><code>explicit</code></a> user-defined type conversion between the declared class and one or more arbitrary classes. The <code>implicit</code> operator effectively allows the simulation of overloading the assignement operator, which is possible in languages such as C++ but not C#.</p>
<p>It doesn't seem to be a feature one comes across very often, but it is in fact used in the <a href="http://en.wikipedia.org/wiki/Language%5FIntegrated%5FQuery#LINQ%5Fto%5FXML" rel="nofollow">LINQ to XML</a> (<code>System.Xml.Linq</code>) library, where you can implicitly convert strings to <code>XName</code> objects. Example:</p>
<pre><code>XName tagName = "x:Name";
</code></pre>
<p>I discovered this feature in this <a href="http://www.codeproject.com/KB/architecture/smip.aspx" rel="nofollow">article</a> about how to simulate multiple inheritance in C#.</p>
http://stackoverflow.com/questions/254654/anyone-using-veracode-for-static-analysis2Anyone using VeraCode for static analysis?Flory2008-10-31T19:26:37Z2009-08-29T02:16:49Z
<p>My company is looking at using VeraCode for some independent static analysis of our binaries. Anyone out there using them?</p>
<p>I would also be interested to hear from anyone using their dynamic analysis services as well.</p>
http://stackoverflow.com/questions/1208569/how-to-call-an-asmx-web-service-via-get/1208619#12086193Answer by Flory for How to call an ASMX web service via GET?Flory2009-07-30T18:58:26Z2009-07-30T19:01:30Z<p>Change your web.config like so:</p>
<pre><code><system.web>
...
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
</protocols>
</webServices>
</system.web>
</code></pre>
http://stackoverflow.com/questions/932339/net-assembly-plugin-security/1195819#11958190Answer by Flory for .NET Assembly Plugin SecurityFlory2009-07-28T18:21:14Z2009-07-28T18:21:14Z<p>I don't know if this is the best way but when you call LoadFile on an invalid assembly you will get a BadImageFOrmatException because the assembly does not have a manifest.</p>
<p>The way your code is written currently you are pretty wide open to a <a href="http://cwe.mitre.org/data/definitions/114.html" rel="nofollow">Process Control Attack</a>. Anyone who can get access to the directory and drop down an assembly that implements your interface can execute this attack. They do not even have to implement the interface very well, they can just provide a default constructor and do all the damage in that. This allows an attacker to execute code under the privilege of your application which is always bad.</p>
<p>So your only current protection is to protect access to the directory on an OS level. This may work for you but it is only one level of defense and you are reliant on security state you cannot control.</p>
<p>Here are two things you could look at:</p>
<ol>
<li>Strong naming the assembly and requiring the assembly be registered in the GAC is most likely the safest way to do this. If you can do this you need to find a way to provide the Assembly's full name to your application and load it with Assembly.Load().</li>
</ol>
<p>However I doubt you want to install these plugins into the GAC so you could do it this way:</p>
<ol>
<li>Within your application provide a way for users to register a plugin, essentially a mini-GAC. When they do you store the location and name of the Assembly as well as the public key. This requires that the Assembly is strong named.</li>
</ol>
<p>This way you will only load Assemblies that someone with privilege to your application has provided, most likely someone who has rights to add a plugin. Before you load the Assembly you can check that the Public Key matches what was provided when the Assembly was registered to prevent an attacker from just replacing the Assembly. This code is fairly simple:</p>
<pre><code> private bool DoPublicKeysCompare(Assembly assembly, byte[] expectedPublicKey)
{
byte[] assemblyKey = assembly.GetName().GetPublicKey();
return expectedPublicKey.SequenceEqual(assemblyKey);
}
</code></pre>
<p>So now to execute an attack on you I must somehow get privileged to change the PublicToken value and get access to the directory and change out the file. </p>
http://stackoverflow.com/questions/59195/how-are-mocks-meant-to-be-used18How are Mocks meant to be used?Flory2008-09-12T14:59:14Z2009-06-18T19:19:41Z
<p>When I originally was introduced to Mocks I felt the primary purpose was to mock up objects that come from external sources of data. This way I did not have to maintain an automated unit testing test database, I could just fake it.</p>
<p>But now I am starting to think of it differently. I am wondering if Mocks are more effective used to completely isolate the tested method from anything outside of itself. The image that keeps coming to mind is the backdrop you use when painting. You want to keep the paint from getting all over everything. I am only testing that method, and I only want to know how it reacts to these faked up external factors?</p>
<p>It seems incredibly tedious to do it this way but the advantage I am seeing is when the test fails it is because it is screwed up and not 16 layers down. But now I have to have 16 tests to get the same testing coverage because each piece would be tested in isolation. Plus each test becomes more complicated and more deeply tied to the method it is testing.</p>
<p>It feels right to me but it also seems brutal so I kind of want to know what others think.</p>
http://stackoverflow.com/questions/174801/making-secure-code-a-focus-for-your-development-team4Making secure code a focus for your development teamFlory2008-10-06T15:36:46Z2009-04-19T14:00:23Z
<p>How do you go about promoting secure coding practice in a development team?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/174448#17444811Answer by Flory for What non-programming books should programmers read?Flory2008-10-06T14:17:06Z2009-04-09T19:21:22Z<p>This one has been a great influence for me but you have to accept some of the premises of the author before you will have any chance of liking it...mainly, get out and stay out of debt.</p>
<h2>The Total Money Makeover</h2>
<p>by Dave Ramsey</p>
<p><img src="http://ecx.images-amazon.com/images/I/51MAB3XTFYL.%5FSL500%5FAA240%5F.jpg" alt="The Total Money Makeover" /></p>
<p>For me this book brought on a complete lifestyle change. I no longer spend money I do not have and only have a mortgage left to go (and I want it gone so badly). I think it is an important book because people should know and remember what it is they are working for.</p>
http://stackoverflow.com/questions/504272/which-is-better-white-list-or-black-list-security-or-both/504647#5046472Answer by Flory for Which is better, white list or black list security, or both?Flory2009-02-02T19:59:36Z2009-02-02T19:59:36Z<p>Let us imagine you had a set of a thousand door keys that you need to give someone access to.</p>
<p>Would you rather go through all the keys and try to take out the ones this person absolutely does not need and give them the rest? Or would you rather just give them the keys they absolutely need and deny them the rest?</p>
<p>Which has the greater potential for a mistake?</p>
http://stackoverflow.com/questions/486000/logic-first-wcf-security-later/487853#4878531Answer by Flory for Logic first, WCF security later?Flory2009-01-28T14:39:26Z2009-01-28T14:39:26Z<p>You have two choices, bake it in from the beginning, or slap it on at the end. With security in general I would say it really does not work in the icing so you have to make a mess of your cake to get it in there.</p>
<p>However, the way I see your question is you already know you need to do something to solve a security issue, you just have not decided what to do. In that case I would agree with Terry that you should then design around an abstraction that allows you to plugin the eventual solution.</p>
<p>If I were you I would probably do a threat model and use it to consider the inputs and risks presented by your service. This will help you decide what you should do eventually and if your abstraction covers all bases.</p>
http://stackoverflow.com/questions/465987/what-do-you-as-a-developer-want-to-know-when-your-company-is-bought4What do you as a developer want to know when your company is bought? [closed]Flory2009-01-21T16:34:22Z2009-01-21T16:46:28Z
<p>When your company is bought out by a competitor what are the most important things for you to know about the software development environment of that competitor?</p>
<p>What would help you become integrated as part of the team the fastest?</p>
<p>What things would concern you?</p>
http://stackoverflow.com/questions/461137/where-do-i-go-to-find-out-about-security-issues-in-some-detail/461838#4618380Answer by Flory for Where do I go to find out about security issues in some detail?Flory2009-01-20T15:45:24Z2009-01-20T19:35:07Z<p>One Monkey,</p>
<p>The fact that you are asking the question means you are well on your way. The real issue is that so many don't ask, are not worried as you are.</p>
<p>One thing I would modify is change the thought that you know some security issues fully. There are some really devious little jerk-offs out there. I am of the opinion you are better off assuming they are smarter than you and so bolt things down as tight as possible. I find it is a better mindset.</p>
<p>Two resources you should look at:
<a href="http://ha.ckers.org/xss.html" rel="nofollow">XSS Cheat Sheet</a></p>
<p><a href="http://www.unixwiz.net/techtips/sql-injection.html" rel="nofollow">A good example of SQL Injection</a></p>
http://stackoverflow.com/questions/445177/preventing-xss-cross-site-scripting/447141#4471414Answer by Flory for Preventing XSS (Cross-site Scripting)Flory2009-01-15T15:21:22Z2009-01-15T15:21:22Z<p>If you are not looking to use an editor you might consider <a href="http://www.owasp.org/index.php/Category:OWASP_AntiSamy_Project_.NET" rel="nofollow">OWASP's AntiSamy</a>.</p>
<p>You can run an example here:
<a href="http://www.antisamy.net/" rel="nofollow">http://www.antisamy.net/</a></p>
http://stackoverflow.com/questions/444181/good-way-to-sanitize-input-in-classic-asp/444551#4445512Answer by Flory for Good way to sanitize input in classic aspFlory2009-01-14T20:34:32Z2009-01-14T20:34:32Z<p>Sander,</p>
<p>Yes you can use parametrized queries in classic ASP (more accurately, classic ADO). </p>
<p>Here is a <a href="http://support.microsoft.com/kb/200190" rel="nofollow">link</a>.</p>
<p>As for encoding output I might be tempted to wrapper latest Microsofts Anti-XSS library and call it with Server.CreateObject. I am far from an expert on this kind of thing spending much more time in .Net, so I only think this would work.</p>
<p>Server.HTMLEncode really is not good enough. It only blacklists off a few characters to encode. The Anti-XSS library whitelists what is acceptable.</p>
http://stackoverflow.com/questions/436715/what-is-nv32ts-and-its-sql-injection-attack-trying-to-do/436988#4369884Answer by Flory for What is NV32ts and its SQL Injection Attack trying to do?Flory2009-01-12T21:01:02Z2009-01-12T21:01:02Z<p>I believe what they are trying to figure out here is if your application is vulnerable to SQL Injection. </p>
<p>The Char(124) translates to the | character which forces the whole query result to be seen as the result of the query with two pipes attached. So you end up with the number of tables in your database with two pipes attached (ex. |1428|). Which when compared to 0 in the > 0 causes an error because |1428| is not an int.</p>
<p>So if your application is open to SQL Injection they now know it (because the valid parameter value caused the application to err). They might also know that you have bad error handling if they SQL database error bubbles up to the top. If you do have bad error handling they also know how many tables you have (not sure what good that does them but the more information the better).</p>
<p>A lot of SQL injection attempts are really meant to cause your application to fail in order to know that you are vulnerable. If you do handle errors well they may then attempt to blind SQL inject you.</p>
<p>Check out <a href="http://www.unixwiz.net/techtips/sql-injection.html" rel="nofollow">this</a> to see that in detail.</p>
<p>I hope that you are not vulnerable, and if you are good luck!</p>
http://stackoverflow.com/questions/350177/lib-to-protect-sql-javascript-injection-for-java-jsp/350288#3502882Answer by Flory for Lib to protect SQL/javascript injection for java/jspFlory2008-12-08T17:46:39Z2008-12-08T17:46:39Z<p>Take a look at <a href="http://www.owasp.org/index.php/Category:OWASP_AntiSamy_Project" rel="nofollow">AntiSamy</a> on OWASP. I think this might be what you are looking for. I do not currently work in Java so I cannot tell you about how it performs.</p>
http://stackoverflow.com/questions/347948/what-real-life-examples-of-security-by-obscurity-have-you-seen-worked-with/349673#3496730Answer by Flory for What real life examples of security by obscurity have you seen/worked with?Flory2008-12-08T14:15:01Z2008-12-08T14:15:01Z<p>The example I see of this all the time is something being done in source code that the developer assumes no one will ever see. You see this a lot with crypto-keys in particular, embedded right in the source code. A lot of times it is not even a question of decompiling the code, they could outright just use the library.</p>
<p>The solution is always to teach the developer to assume that someone has the source code and can use it against you. </p>
http://stackoverflow.com/questions/344719/how-do-you-combat-website-spoofing-phishing/344790#3447901Answer by Flory for How do you combat website spoofing/phishing?Flory2008-12-05T18:51:39Z2008-12-05T18:51:39Z<p>I think the only answer here is to program better people.</p>
<p>Doing things like customizing the appearance or uploading an image only work if the user in questions actually recognizes when these things are wrong. I think the majority of users would never recognize these things except for sites they visit a lot. Even if they did they may attribute it to a change in website design and not a phish.</p>
http://stackoverflow.com/questions/337381/what-is-the-single-best-thing-to-learn-about-being-a-programmer/337390#33739010Answer by Flory for What is the single best thing to learn about being a programmer?Flory2008-12-03T14:54:41Z2008-12-03T14:54:41Z<p>That you always have something to learn.</p>
http://stackoverflow.com/questions/313150/why-have-your-software-development-projects-failed/313349#3133496Answer by Flory for Why have your software development projects failed?Flory2008-11-24T03:28:24Z2008-11-24T03:28:24Z<p>Most of the projects I have worked on have not technically failed because of one thing. They forgot to define what success is, so there was no way to tell when we failed. You keep plugging along, like rowing in an ocean of jell-o. Feels like you are working hard, but you are not getting anywhere fast.</p>
<p>I think part of the reason they fail is rooted in that very issue, they do not know what they want so they cannot define success. I actually think that would be ok as long as everyone would agree up front that we do not know what we want. It would change the way development is done completely (and we shall call it Agile).</p>
http://stackoverflow.com/questions/284163/sql-server-nolock-on-queries-run-for-authorization0SQL Server NOLOCK on queries run for authorizationFlory2008-11-12T14:46:34Z2008-11-12T15:54:37Z
<p>During the course of our application login there are several queries ran, all around validating the login. In evaluating them I noticed that one of the queries is run without the NOLOCK hint.</p>
<p>There does not seem to be any particular danger of dirty read because the data would hardly ever change.</p>
<p>Thinking about it from an attempted DOS type attack by somebody attempting failed logins over and over again I am suggesting that the lack of NOLOCK lowers our threshold for failure.</p>
<p>I believe it is an extremely unlikely result of a DOS attack (I think the web server would go first) but adding NOLOCK should make it go from unlikely to impossible.</p>
<p>So, am I being excessive or trivial?</p>
http://stackoverflow.com/questions/276132/recommendations-for-securing-internet-facing-iis-host/276651#2766511Answer by Flory for Recommendations for securing Internet-facing IIS Host?Flory2008-11-09T23:15:02Z2008-11-09T23:15:02Z<p>You might take a look at these two tools:
<a href="http://msdn.microsoft.com/en-us/vs2005/aa718345.aspx" rel="nofollow">Best Practices Analyzer for ASP.NET</a></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=DA0531E4-E94C-4991-82FA-F0E3FBD05E63&displaylang=en" rel="nofollow">SQL Server 2005 Best Practices Analyzer (even though you are using 2008, still might be of help)</a></p>
http://stackoverflow.com/questions/206743/is-there-any-way-i-can-get-net-stack-traces-in-sql-profiler-or-a-similar-tool/271079#2710790Answer by Flory for Is there any way I can get .net stack traces in Sql Profiler, or a similar tool?Flory2008-11-07T02:41:03Z2008-11-07T02:41:03Z<p>We have recently starting a tool called <a href="http://www.dynatrace.com/en/" rel="nofollow">dynaTrace</a>. There is a workstation verison that you can use on one box and a server/agent version for operating against many boxes.</p>
<p>Basically, you set up the tool against a particular application (or IIS). After that it will collect method calls that it is instrumented against. In your scenario you might instrument against entire namespaces and get everything.</p>
<p>Basically it then tracks every method call by using IL injection. It picks up the database calls by instrumenting against ADO.Net including the bind variables in SP's. It can apparently track across Web Service calls as well. </p>
<p>It is pretty cool in that you can look at specific methods, see all the paths that were made to call that method, or look at all calls to a method. You can look at a specific database call, and look at all the code paths with that call.</p>
<p>It's pretty cool.</p>
http://stackoverflow.com/questions/265200/what-is-the-best-and-or-most-comprehensive-book-on-net-security-for-developers/266962#2669620Answer by Flory for What is the best and/or most comprehensive book on .NET security for developers?Flory2008-11-05T22:27:43Z2008-11-05T22:27:43Z<p>I like Writing Secure Code by Michael Howard; David LeBlanc</p>
<p>I would also recommend The Web Application Hacker's Handbook: Discovering and Exploiting Security Flaws by Stuttard, Dafydd; Pinto, Marcus if you are writing web applications (.Net or otherwise).</p>
<p>I really wouldn't limit myself to one book though :).</p>
http://stackoverflow.com/questions/262145/what-are-the-security-concerns-i-need-to-consider-while-coding/262310#2623103Answer by Flory for What are the security concerns I need to consider while coding?Flory2008-11-04T16:17:00Z2008-11-04T16:17:00Z<p><a href="https://www.securecoding.cert.org/confluence/display/seccode/Top+10+Secure+Coding+Practices" rel="nofollow">Here</a> is a list of Top 10 Secure Coding practices. It is as good a start as any. Consider #8, Defense in Depth, in particular.</p>
http://stackoverflow.com/questions/254654/anyone-using-veracode-for-static-analysis/258834#2588340Answer by Flory for Anyone using VeraCode for static analysis?Flory2008-11-03T14:42:37Z2008-11-03T14:42:37Z<p>Mnementh brings up the issue I am concerned with.</p>
<p>I personally believe that static analysis is most effective when the developers themselves can execute the tool against their code. Then they can see the problems being reported very soon after they make them. Otherwise it becomes a find and fix kind of issue.</p>
<p>But we will see what they come up with. It can't hurt to have another analysis of the code to see what is potentially an issue.</p>
http://stackoverflow.com/questions/253545/is-there-a-good-service-for-checking-website-server-vulnerability/254206#2542061Answer by Flory for Is there a good service for checking website/server vulnerabilityFlory2008-10-31T16:57:26Z2008-10-31T16:57:26Z<p>Personally, I choose not to be confident in the security of our systems. I am convinced there is always something that I am missing and thus I keep looking for it.</p>
<p>What you seem to be looking for is something to make others feel confident (even if that confidence is an illusion). Penetration testing is probably the right choice for that. Depending upon the tool, it shows potential vunerabilities in a nice report and then you can report how you mitigated them.</p>
<p>We use IBM AppScan and it is a good tool for this. As with any tester of this type you will find yourself following a lot of bad leads. Most of them are not false postives per se, more just things that might be an issue or appear to be and you will have to investigate and determine if they actually are.</p>
<p>I would not put a lot of faith in this kind of testing. If you app scans clean it really does not mean your app is clean. Does not mean it is worthless, but don't make it out to be more than it is.</p>
<p>The next thing I would look into is static analysis tools in your various languages. A lot of these are free. Hand in hand with that is developer education. That is usually a pretty cheap solution to the issue, just making sure they understand what the risks are.</p>
<p>There is no silver bullet, no simple answer, you need to define security as an EVERYONE problem and make sure it is given both priority and commitment.</p>
http://stackoverflow.com/questions/178333/multiple-inheritance-in-c/219690#2196900Answer by Flory for Multiple Inheritance in C#Flory2008-10-20T20:02:45Z2008-10-20T20:02:45Z<p>Not sure I understand your question well enough to answer but take a look at this <a href="http://www.codeproject.com/KB/architecture/smip.aspx" rel="nofollow">article</a>.</p>
http://stackoverflow.com/questions/219163/dealing-with-some-grey-code-style-issues/219256#2192561Answer by Flory for Dealing with some grey code style issuesFlory2008-10-20T17:36:54Z2008-10-20T17:36:54Z<p>Make him roll through a code review for everything he changes and everything it touches. I do not like the idea of using code review as punishment but he has to understand the depth of what he is doing.</p>
<p>Then I would make him sit with QA and explain to them how he changed far more functionality than he needed to. After they are done beating on him for a while. Then take him to the project manager and have that person explain how he is effecting the schedule.</p>
<p>If that doesn't work, beat him until he cries.</p>
http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213225#2132258Answer by Flory for 5 years experience == 100k+ salary? Really?Flory2008-10-17T18:14:18Z2008-10-17T18:14:18Z<p>I believe that salary is a personal metric and is not of use to anyone else. I make as much as I do because that is what I was willing to take that for the job. Someone else would have taken less, other's would not do it for unless it was for substantially more.</p>
<p>It works the opposite way for employers. They might hire you for $100k but they might only hire me for $80k. They are going to offer what they think they can get away with. I am going to accept what I believe is fair, and you will do the same.</p>
<p>The other issue with what you are asking is usually it is not five years of experience that gets you $100k, but five years of experience in X, with a specialization in Y, and a great deal of knowledge in Z.</p>
http://stackoverflow.com/questions/1201685/how-would-you-add-salt-to-your-existing-password-hashes/1201714#1201714Comment by Flory on How would you add salt to your existing password hashes?Flory2009-07-29T20:11:31Z2009-07-29T20:11:31ZThe problem with this is that it presumes that the user will login eventually, which may not be true. Meanwhile their password is much more open to attack. If you couple that with the fact that people reuse username's and passwords frequently...you should go with Spencer's solution.http://stackoverflow.com/questions/555222/how-to-not-hardcode-passwords/555233#555233Comment by Flory on How to not hardcode passwords?Flory2009-02-17T15:29:37Z2009-02-17T15:29:37ZAnd you vet the algorithm to like-minded mad scientists and basically everyone knows what it is and still cannot be broken.http://stackoverflow.com/questions/511907/web-application-attacks-and-must-have-defence-methods/511967#511967Comment by Flory on web application attacks and must have defence methodsFlory2009-02-04T18:22:07Z2009-02-04T18:22:07Zgs mentions this below but on 3, the retries should be delayed progressively against the number of failed attempts. This prevents an automated attack from locking all your accounts.http://stackoverflow.com/questions/485154/programming-books-at-work-or-e-books/485186#485186Comment by Flory on Programming books at work or e-books?Flory2009-01-27T21:32:13Z2009-01-27T21:32:13ZOne thing to check on too is if your local library system subscribes to Safari. It is a nice system but even better if it is free.http://stackoverflow.com/questions/466058/examples-of-some-of-the-worst-code-youve-had-to-manage/466076#466076Comment by Flory on Examples of some of the worst code you've had to manage?Flory2009-01-21T16:58:12Z2009-01-21T16:58:12Zlol, I had the same experience which has lead me to believe, never go back...you are better off with the illusion that you are perfect!http://stackoverflow.com/questions/461137/where-do-i-go-to-find-out-about-security-issues-in-some-detail/464989#464989Comment by Flory on Where do I go to find out about security issues in some detail?Flory2009-01-21T14:47:04Z2009-01-21T14:47:04ZWell it is not a or b (for certain) so I am going to accept c. Personally, I think the margin of developers who actually care about anything beyond the thing they were just assigned is small.http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431243#431243Comment by Flory on What was your first computer game that got you interested in computers?Flory2009-01-19T22:38:10Z2009-01-19T22:38:10Z+1 for Kings Quest, although my first one was KQ IIhttp://stackoverflow.com/questions/308406/how-can-i-find-out-how-my-site-was-hacked-how-do-i-find-site-vulnerabilities/308692#308692Comment by Flory on How Can I Find Out *HOW* My Site Was Hacked? How Do I Find Site Vulnerabilities?Flory2008-11-21T15:36:30Z2008-11-21T15:36:30Z+1 for the Log Parser page. It is a great resource.http://stackoverflow.com/questions/305044/how-can-i-avoid-sql-injection-attacks-in-my-asp-net-application/305052#305052Comment by Flory on How can I avoid SQL injection attacks in my ASP.NET application?Flory2008-11-20T16:39:00Z2008-11-20T16:39:00ZStored Procedures have nothing to do with it, you can execute a SP in an insecure way by not parameterizing the call.http://stackoverflow.com/questions/284163/sql-server-nolock-on-queries-run-for-authorization/284226#284226Comment by Flory on SQL Server NOLOCK on queries run for authorizationFlory2008-11-12T16:10:18Z2008-11-12T16:10:18ZI agree that those things need to be in place but in my case that is all beyond my control. I only have control of the security of the software itself.http://stackoverflow.com/questions/262145/what-are-the-security-concerns-i-need-to-consider-while-coding/262310#262310Comment by Flory on What are the security concerns I need to consider while coding?Flory2008-11-04T18:14:45Z2008-11-04T18:14:45Zyeah, that sounds like defense with a layer of scum on top of it.http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218222#218222Comment by Flory on What was the strangest coding standard rule that you were forced to follow?Flory2008-10-20T17:31:29Z2008-10-20T17:31:29Z"Security is the main reason to use SPs" No. Nothing about SP's in SQL Server are more secure. They are only secure when called as a paremeterized queries, which can be done just as well with dynamic SQL.http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213079#213079Comment by Flory on 5 years experience == 100k+ salary? Really?Flory2008-10-17T18:04:07Z2008-10-17T18:04:07ZYeah, I know, just playing around.http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213079#213079Comment by Flory on 5 years experience == 100k+ salary? Really?Flory2008-10-17T17:35:35Z2008-10-17T17:35:35ZDon't you mean who???http://stackoverflow.com/questions/175298/is-there-any-alternative-to-stored-procedures/175313#175313Comment by Flory on Is there any alternative to stored procedures?Flory2008-10-06T17:40:53Z2008-10-06T17:40:53ZNo kidding. Lance, I think your answer might depend a lot on the DB engine you are talking about.