active questions tagged security - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:01:38Z http://stackoverflow.com/feeds/tag/security http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824184/comcasts-two-step-login 1 Comcast's two step login AK 2009-12-01T05:32:37Z 2009-12-01T06:39:55Z <p>Comcast has changed their login process so it happens in two steps. Instead of two input boxes for username and password, you submit your username first. Then on a second page you enter your password.</p> <p><a href="https://www.comcast.com/Customers/CustomerCentral.cspx" rel="nofollow">https://www.comcast.com/Customers/CustomerCentral.cspx</a></p> <blockquote> <p>Due to some recent security improvements, we now require you to enter your user name and password in two separate steps.</p> </blockquote> <p>What could the security improvement possibly be in this system? If anything it seems less secure since you can confirm the existence of a username independently from it's password. </p> <p>Any ideas on what they're accomplishing here? </p> http://stackoverflow.com/questions/1802036/stop-direct-page-calls-to-ajax-pages 1 Stop Direct Page Calls to Ajax Pages Kyle Rozendo 2009-11-26T07:18:20Z 2009-12-01T05:36:54Z <p>Hi All,</p> <p>Is there a "clever" way of stopping direct page calls in ASP.NET? </p> <p>By clever, I mean not having to add in hashes between pages to stop AJAX pages being called directly.</p> <p>If not, is there any way that one could do it without using sessions/cookies?</p> <p>Thanks,</p> <p>Kyle</p> http://stackoverflow.com/questions/1823368/get-details-of-object-from-database-keep-id-secure 0 Get details of object from database - keep ID secure TenaciousImpy 2009-12-01T00:46:07Z 2009-12-01T05:27:04Z <p>Hi, I have a list of books obtained from the database. When a user selects a book, I'd like it to retrieve the information for that book and display it on screen. However, I'd like to keep the ID of the book hidden from the client-side, so what would be the best way to transfer the ID of the selected book? I think my brain has melted, so I'm probably missing something obvious. Sessions seem to be the only way to not have any ID information transferred, but I'm not sure how to implement a system where an item is selected (from whichever control type is most suited) and the ID of the item is somehow picked up by the server and the relevant information retrieved. (Using ASP.NET + SQL Server). Thanks for any advice</p> http://stackoverflow.com/questions/1823536/does-using-non-sql-databases-obviate-the-need-for-guarding-against-sql-injection 1 Does using non-SQL databases obviate the need for guarding against "SQL injection"? daveslab 2009-12-01T01:47:28Z 2009-12-01T02:11:43Z <p>This may seem like an obvious (or not so obvious) question, but let me explain. I'm coding up a Google App Engine site using Google's database technology, BigTable. Any App Engine coders will know that Google has its own limited query language called GQL. As a result, I am tempted not to do any checking for SQL (or GQL) injection in my app since I assume Google is not using a raw string query on its backend methods to fetch data.</p> <p>Furthermore, libraries for DB technologies like CouchDB, MongoDB, and other object or document (aka NoSQL) databases seem to obviate the need to check if a malicious user is injecting database manipulation commands. They often have libraries that directly map the objects in the database to object in your language of choice. I know there are many SQL libraries that do this as well, but I assume that at some level they are combining parameters to run a query over a string, and thusly I must still use SQL Injection protection even with those frameworks.</p> <p>Am I being short-sighted? Or is it only a matter of time till the next great DB system takes hold and then I will see injection into those systems?</p> http://stackoverflow.com/questions/1823433/eventlog-permission-failing-in-asp-net-on-win7 2 EventLog permission failing in ASP.Net on Win7 DarkwingDuck 2009-12-01T01:09:26Z 2009-12-01T01:21:47Z <p>I have an ASP.Net app .net 3.5 SP1, running in Win7 . During the login process, something within the ASP.Net login control is causing a write to the security log (this sounds acceptable to me) in the event log. The problem is that it seems the app doesn't have permission to do this. There error is:</p> <p><strong>Description</strong>: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. </p> <p><strong>Exception</strong> Details: System.Security.SecurityException: Request for the permission of type 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.</p> <p>The stack trace doesn't show a single line of code from my application, its all in the framework. The last 5 lines are: System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark&amp; stackMark, Boolean isPermSet) +0 System.Security.CodeAccessPermission.Demand() +61 System.Diagnostics.EventLog..ctor(String logName, String machineName, String source) +125 System.Diagnostics.EventLog..ctor() +24 System.Diagnostics.EventLog.WriteEntry(String source, String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) +52</p> <p>This same app works fine on XP SP2. I've hunted around and can't find how to give permissions. I've tried running hte app pool as LocalSystem and ApplicationPoolIdentity.</p> <p>Whats the easiest way to get this running? Its my local dev machine and I don't care if I open up security holes, as long as I don't have to modify code (ie I need the solution to be an INETMGR change or web.config or some local permissions, etc).</p> <p>Thanks! </p> http://stackoverflow.com/questions/243744/prevent-site-deletion 1 Prevent site deletion Anthony 2008-10-28T15:29:14Z 2009-11-30T23:26:30Z <p>In our Sharepoint implementation users have been granted site collection admin rights. On a few occasions they've managed to delete a subsite or even the entire site collection. I'd like to be able to block this but not being a developer I'm finding it pretty tricky.</p> <p>I've had a look at <a href="http://www.codeplex.com/governance/release/projectreleases.aspx?releaseid=3830" rel="nofollow">the MSIT site delete capture tool</a> to try to understand how that's working and it seams fairly straight forward. I want to override the delete function and either block it entirely or have the user type a password. What I can't see is any way to fully override the default behavior as it looks like the MSIT tool simply adds some functionality (backs up the site) then falls back into the default behavior. </p> <p>So my question is, can I prevent the default behavior or can I only add actions before or after it fires?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1819023/encrypting-3rd-party-credentials 1 Encrypting 3rd party credentials the_undefined 2009-11-30T10:33:08Z 2009-11-30T23:04:50Z <p>I have an application where I need to store 3rd party credentials to services like Amazon S3, FTP, SFTP, etc..</p> <p>I know that it is possible to access some of those systems without passwords, but that has its own issues. If our customers gave us access to their S3 buckets via ACL we would still need to verify which bucket belongs to which user, same goes for SFTP and ssh key auth.</p> <p>We will try our best to allow non-password alternatives where possible, but sometimes (FTP) it just won't be possible. Therefor I am looking for advice on how to store this sensitive data in our database (MySql) or elsewhere.</p> <p>In the past I have read about people using TrueCrypt partitions that automatically unmount, but that would probably require decent intrusion detection. For now I'm interested in simple approaches that lead to reasonable security and can improved upon in the future.</p> <p>Any advice on the subject would be highly appriciated!</p> http://stackoverflow.com/questions/1822358/getting-an-http-403-access-denied-upon-successful-authentication-when-using-con 0 Getting an HTTP 403 (Access Denied) upon successful authentication when using container-managed security Bears will eat you 2009-11-30T21:00:16Z 2009-11-30T22:26:59Z <p>I've been working on setting up container-managed security (see previous question <a href="http://stackoverflow.com/questions/1793188/configuring-container-based-authentication-with-alternative-digest-methods">here</a>). According to everything I've read on the topic, it looks like things should be configured correctly (using the FORM auth method). If a user requests a URL matching a pattern I've specified in the DD, they are correctly redirected to the login page I've set up.</p> <p>Once at the login page, if an invalid username/password is entered, the user is correctly redirected the error page. However, if valid credentials are supplied, instead of seeing the originally requested page, the user gets the standard JBoss 403 error page (see screenshot).</p> <p><img src="http://img121.imageshack.us/img121/9495/capturemw.png" alt="alt text"></p> <p>What's going on here?</p> <p><strong>Edit:</strong> this seems to be a common problem (when using Google) but posts on other sites/forums didn't have much in the way of solutions or probable causes.</p> <p><strong>Edit 2:</strong> Here's the security-related stuff requested. From the DD:</p> <pre><code>&lt;security-role&gt; &lt;role-name&gt;executive&lt;/role-name&gt; &lt;/security-role&gt; &lt;security-constraint&gt; &lt;web-resource-collection&gt; &lt;web-resource-name&gt;JSPs&lt;/web-resource-name&gt; &lt;url-pattern&gt;/dashtabs/*&lt;/url-pattern&gt; &lt;/web-resource-collection&gt; &lt;auth-constraint&gt;&lt;/auth-constraint&gt; &lt;/security-constraint&gt; &lt;security-constraint&gt; &lt;web-resource-collection&gt; &lt;web-resource-name&gt;ExecutiveDashboard&lt;/web-resource-name&gt; &lt;url-pattern&gt;/EDB&lt;/url-pattern&gt; &lt;/web-resource-collection&gt; &lt;auth-constraint&gt; &lt;role-name&gt;executive&lt;/role-name&gt; &lt;/auth-constraint&gt; &lt;/security-constraint&gt; &lt;login-config&gt; &lt;auth-method&gt;FORM&lt;/auth-method&gt; &lt;form-login-config&gt; &lt;form-login-page&gt;/login.jsp&lt;/form-login-page&gt; &lt;form-error-page&gt;/login.jsp?error=Invalid credentials&lt;/form-error-page&gt; &lt;/form-login-config&gt; &lt;/login-config&gt; </code></pre> <p>I didn't do anything involving a Realm (I don't think I need to) since I defined a new application policy in <code>conf/login-config.xml</code>:</p> <pre><code>&lt;application-policy name="BlowfishAuth"&gt; &lt;authentication&gt; &lt;login-module code="[redacted].BlowfishLoginModule" flag="required"&gt; &lt;module-option name="dsJndiName"&gt;java:/Dashboard_CO_DS&lt;/module-option&gt; &lt;module-option name="principalsQuery"&gt;SELECT u.password FROM gem."user" WHERE u.userid=?&lt;/module-option&gt; &lt;module-option name="rolesQuery"&gt;SELECT 'executive', 'Roles'&lt;/module-option&gt; &lt;module-option name="debug"&gt;true&lt;/module-option&gt; &lt;/login-module&gt; &lt;/authentication&gt; &lt;/application-policy&gt; </code></pre> <p>which refers to a Login Module I wrote:</p> <pre><code>public class BlowfishLoginModule extends UsernamePasswordLoginModule { @Override protected String getUsersPassword() throws LoginException { User user = Users.getUser(getUsername()); byte[] encrypted = user.getPassword(); return StringCrypt.decrypt(encrypted); } @Override protected Group[] getRoleSets() throws LoginException { Group g = new SimpleGroup("Roles"); Group[] groups = {g}; return groups; } } </code></pre> <p><strong>Edit 3:</strong> I'm using JBoss 5, but I can't find docs on the JBoss site analogous to something like <a href="http://docs.jboss.org/jbossas/jboss4guide/r3/html/ch8.chapter.html" rel="nofollow">http://docs.jboss.org/jbossas/jboss4guide/r3/html/ch8.chapter.html</a> for the newer version.</p> http://stackoverflow.com/questions/1822457/why-are-codeigniter-application-files-in-the-publichtml-folder 0 Why are CodeIgniter application files in the public_html folder? Matt 2009-11-30T21:17:47Z 2009-11-30T21:44:04Z <p>Isn't having all of the files in public view a bad thing?</p> <p>Surely things such as /system/application/config/database.php should not be publicly visible!</p> http://stackoverflow.com/questions/1821483/advantages-and-disadvantages-of-using-asp-net-custom-handlers 0 advantages and disadvantages of using asp.net custom handlers? Ainab 2009-11-30T18:22:36Z 2009-11-30T20:30:36Z <p>what are the advantages and disadvantages of using asp.net custom handlers such as http handlers and etc? what kind of security issues will I face?</p> http://stackoverflow.com/questions/1722908/multiplicative-inverse 0 multiplicative inverse?!?!? unknown (yahoo) 2009-11-12T15:13:43Z 2009-11-30T19:19:54Z <p>Hi, I know that an affine cipher substitutes BD with SG. I need to find the encryption formula, in the form <code>y = a x + b</code>, where a and b are coefficients. From the information above I end up having to equations: <code>a+b=18</code> and <code>3a+b=6</code> So I am working like this: <code>a+b=18</code> and <code>3a + b = 6-&gt; 3a+18-a=6-&gt;  2a= 6-18 -&gt; 2a=14 </code>(cuz it is mod 26)</p> <p><code>b=18-a </code></p> <p><code>2a=?</code> So, O want to multiply by the multiplicative inverse of  2 mod 26</p> <p>I can't find a multiplicative inverse of number 2 with 26 (<code>y = ax + b mod 26</code>)</p> <p>Can anyone please help me find a and b???</p> http://stackoverflow.com/questions/1503840/convert-certificate-pem-to-der-cer 1 Convert certificate .pem to .der/.cer da Mata 2009-10-01T13:06:27Z 2009-11-30T19:09:29Z <p>Hi, I'm trying convert .pem to .cer using OpenSSL...</p> <pre><code>openssl x509 -inform PEM -in root.pem -outform DER -out root.cer </code></pre> <p>But, I don't know how to install the certificate on IIS 7.0 over Win Server 2008.</p> <p>I read some tutorials about it and tried to install the cert in IIS 7.0</p> <blockquote> <p>Server Certificates -> complete certificate request -> </p> </blockquote> <p>The following error appears</p> <blockquote> <p>Cannot find the certificate request associated with this certificate file. A certificate request must be completed on the computer where it was created.</p> </blockquote> <p>The installation of the certificate to IIS fails.</p> <p>Any suggestions on how to proceed installing the .cer in IIS 7?</p> http://stackoverflow.com/questions/1780884/secpkcs12import-from-security-framework-fails-on-os-x-10-6 2 SecPKCS12Import() from Security.framework fails on OS X 10.6 Sedate Alien 2009-11-23T02:53:46Z 2009-11-30T18:39:32Z <p>When I attempt to use <code>SecPKCS12Import()</code> from the Security framework as provided by Mac OS X 10.6, the result code is always <code>errSecUnimplemented</code>, regardless of the arguments provided. </p> <p>Furthermore, the linker is unable to find symbols for the constants relevant to this function declared in SecImportExport.h (i.e. <code>kSecImportExportPassphrase</code>, <code>kSecImportItemIdentity</code>, et al.).</p> <p>What on Earth is going on with this library -- is the function implemented or is it not? Why can the linker resolve all other symbols in the framework, but not these? How should I convert a PKCS12-formatted binary blob to a SecIdentityRef or SecCertificateRef and SecKeyRef pair?</p> <p>What am I doing wrong? I'm sure this is a PEBKAC issue. :-)</p> <p><hr></p> <p>EDIT: I see that I was very unclear in my question. I'm aware that Security.framework is implemented, given that I am able to use the other functionality it provides without an issue. Given this, I'm fairly certain that I'm linking against the framework correctly, since if I remove the link, none of the symbols can be found -- as expected. When I relink the framework, all the symbols are found, with the exception of the constants relevant to <code>SecPKCS12Import()</code>, e.g. <code>kSecImportExportPassphrase</code>, <code>kSecImportItemIdentity</code>, etc.</p> <p>Given that I cannot use these symbols, I passed in what could have been incorrect strings (<code>@"kSecImportItemIdentity"</code>, etc.), but the error code returned was <code>errSecUnimplemented</code>. This led me to believe that perhaps this specific functionality has not been implemented.</p> <p>I tried using the 10.5 SDK, but that didn't work, of course. :-)</p> <p><hr></p> <p>EDIT: My import is just a regular <code>#import &lt;Security/Security.h&gt;</code>. For kicks, I tried <code>#import &lt;Security/SecImportExport.h&gt;</code> as well, but this effected no change. That said, the error is issued by the linker, not the compiler.</p> <p>I ran <code>dyldinfo -export Security.framework/Security</code> to list the symbols exported by the library and found many of the <a href="http://developer.apple.com/mac/library/documentation/Security/Reference/SecurityRefUpdate/Articles/Security_10.5-10.6_SymbolChanges.html#//apple_ref/doc/uid/TP40008013" rel="nofollow">new</a> symbols, but <code>kSecImportExportPassphrase</code> and friends were conspicuously missing. This might explain why the linker cannot find the symbols. The symbol for <code>SecPKCS12Import</code> appears in the symbol table and I can call that with no issues, it's just the functionality does not seem to be there.</p> http://stackoverflow.com/questions/1821178/java-ajax-webapp-security 0 Java AJAX webapp security Mike Warren 2009-11-30T17:26:44Z 2009-11-30T18:09:05Z <p>I'm experimenting with creating a simple AJAX Java webapp. </p> <p>I'd like to use the container managed security provided by the Servlet container, but having investigated it have a feeling that it isn't going to work how I'd like it to. Basically I'd like to be able to have a login prompt on the main page, without the user having to navigate away to a login form.</p> <p>As an example imagine a simple message board application and a user who wants to post a new message enters the text directly into a form on the screen, when it comes to pressing the submit button I would like be able to make an ajax call to determine if the user is already logged in, if not then I'd like to display a login div on the same page to allow the user to log in without navigating away to a separate login page.</p> <p>The form based login provided by the servlet container seems to be based on the assumption that the user will be redirected to a separate login page at the point where they try to access something that is "secured", which isn't what I want to happen.</p> <p>So I suppose what I'd like to know is if there is a standard way of allowing users to login within a single page ajax application using the container managed security, or some 3rd party library? I'm going to have a look at Spring security, but at first glance it seems to have the same problem that I'm having with the standard security. </p> http://stackoverflow.com/questions/1181105/how-safe-are-php-session-variables 0 How safe are PHP session variables? es11 2009-07-25T03:20:52Z 2009-11-30T18:00:18Z <p>I have a login script that verifies a username/password against data in a 'user' table. Furthermore, I have a 'roles' table that specifies the access level of a given user. Assuming I am using safe login scripts, are there any security holes in simply performing an additional query, upon successful login, against the 'roles' table to discover the user's authorization level and storing this into a session variable? The idea would then be that on any page with mixed authority, I could simply query the session variable to discover the logged in user's authorization level. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen 77 What's the worst security hole you've ever seen? Si 2009-09-24T05:34:21Z 2009-11-30T14:49:47Z <p>Subject says it all, probably a good idea to keep details basic to protect the guilty.</p> <p>See also <a href="http://stackoverflow.com/questions/667147/hacking-and-exploiting-how-do-you-deal-with-any-security-holes-you-find">another question</a> about what to do once you find a security hole.</p> http://stackoverflow.com/questions/1812987/wcf-custom-membership-provider-and-httpcontext 0 WCF, Custom Membership Provider and HttpContext Owen 2009-11-28T16:45:06Z 2009-11-30T11:04:48Z <p>Ok, Im really going to show my stupidity regarding the ASP.NET security model here but here goes. </p> <p>I have a WCF web service and I have managed to hack my way around to having it pipe through my custom membership provider. </p> <p>My membership provider overrides "ValidateUser" in which I attempt to load a user object with data from our SQL server instance. All good so far, I retrieve the creds, load the users object and return true if I don't hit any bumps in the road. </p> <p>At this point, I would usually stuff the user object (or id) into session or actually just some state bag that's accessible for the lifetime of the request. The problem that I am hitting is that HttpContext is null at this point, even though Im using ASP compatability attributes.</p> <p>What other options do I have at hand? Cheers, Chris. </p> <p><strong>EDIT:</strong></p> <p>Just to clarify what I want to do. I want to pass user credentials to be authenticated on the server, and once this has happened I would like to keep the the details of the authenticated user <strong>somewhere</strong> that I can access for the <strong>lifetime of the service request</strong> only. This would be the equiv of Http.Current.Items?</p> <p>Is there any object that is instantiated per-request that I can access globally via a static property (i.e. in a similar way to HttpContext.Current)? I assumed that OperationContext was the this, but this is also null?</p> <p>Can this really be such an uncommon problem? Send creds > retrieve user > stuff user somewhere for access throughout processing the request. Seems pretty common to me, what am I missing?</p> <p>Cheers, Chris. </p> http://stackoverflow.com/questions/1807390/grails-security 2 Grails security Joshua Kamau 2009-11-27T08:19:37Z 2009-11-30T07:24:12Z <p>Which is the best security solution for grails among acegi, jsecurity and Stark security?</p> <p>regards</p> <p>Josh</p> http://stackoverflow.com/questions/129677/whats-the-best-method-for-sanitizing-user-input-with-php 14 What's the best method for sanitizing user input with PHP? UltimateBrent 2008-09-24T20:20:39Z 2009-11-30T04:45:50Z <p>Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?</p> http://stackoverflow.com/questions/1817668/networking-and-network-security-book 0 Networking and network security book [closed] Euclid 2009-11-30T03:09:56Z 2009-11-30T03:09:56Z <p>i am in the early stages of producing a thesis 'Network security: Cost Vs Security', are there any books that can give me an insight to real world setups and costing of such systems, as I am purely form an educational background?</p> http://stackoverflow.com/questions/1786697/shared-hosting-and-sql-server-environment-security 1 shared hosting and sql server environment security zaladane 2009-11-23T23:07:41Z 2009-11-29T20:55:38Z <p>I was readin this month edition of SQL Server Magazine and in an article about securing Sql Server environment , the author mentioned that developer should try to have the website and the databases run in separate servers for security. I have a shared hosting account and was wondering if it makes sense to buy a second account to move all databases there. Or does it only make sense when using dedicated servers? How would it affect performances on my website? I use asp.net and have a hosting account with DisountAsp</p> http://stackoverflow.com/questions/1815506/how-to-obtain-codesigned-application-certificate-info 0 How to obtain codesigned application certificate info Martin Kovachev 2009-11-29T13:11:44Z 2009-11-29T20:41:25Z <p>Hi folks,</p> <p>I am having a tough time finding an answer to my codesigning issues.</p> <p>We have an application for Mac OS written under Cocoa. Finally - we did our codesigning, but i would like to add an extra security check - within the executable itself.</p> <p>My idea is to validate the fingerprint of the certificate with which the current executable is signed when it is started. If it is missing or invalid (checked against a hardcoded hash within the application) - we shut it down.</p> <p>So far, i haven't been able how to obtain the certificate used to codesign the executable programatically and check its data.</p> <p>Does anyone have a clue on how to do this?</p> <p>Thank you veery much! Martin K.</p> http://stackoverflow.com/questions/1813393/how-can-i-protect-my-assembly-to-being-used-by-someother 2 How can I protect my Assembly to being used by someother? shahjapan 2009-11-28T18:54:46Z 2009-11-29T13:45:23Z <p>how can I protect my assembly, because once I deploy the setup, assembly will be deployed too, and there are chances that user will get the assembly from Program Files, and may add reference to any other project or create new project based on it ! any solution or help would be appreciated thanks.</p> http://stackoverflow.com/questions/1814803/api-security-sending-cc-info 0 API Security - Sending CC info Faisal Abid 2009-11-29T06:10:40Z 2009-11-29T11:10:08Z <p>Im trying to design a payments API, and it requires the sending of CC info over the wire. So for this I was thinking of using a public key to encrypt the CC info and decrypt it on the server. Keep in mind that the connection is https also. Any suggestions on the topic?</p> http://stackoverflow.com/questions/1813078/restricting-user-password-character-set 1 Restricting user password character set stampos 2009-11-28T17:06:22Z 2009-11-29T09:54:56Z <p>Working on a login system - the point where customer chooses their password for site access. </p> <p>Beyond using RegEx to ensure that the password is strong enough, normally on our system all data that will wind up in the database is checked against injection etc and a reasonably restricted character set is enforced on all fields. I don't really want a particularly restrictive character set for the password, as I think it is a bit of an anti-pattern on security to control it too much. </p> <p>However in the case of the password, I'll be hashing it with a salted SHA-512 for insert anyway which raises a handful of questions:</p> <ul> <li><p>Is there any point whatsoever in restricting the character set that the customer can use in the password - ie am I exposed to any vulnerabilities outside of injection which I am assuming would be circumvented completely by the hashing?</p></li> <li><p>There must be negatives to an allow-all approach - I can think of the fact that in the future what is an innocent combination now could become a dangerous one - is that a real concern, and are there others I may have missed?</p></li> <li><p>Are there any characters/strings that must be rejected - would they get through the native ASP.NET protection anyway?</p></li> <li><p>A bit more subjective maybe, but given it is a SHA-512 hash - is there any point in restricting the maximum length of password that the user can choose (within reasonable parameters), assuming that a password of significant size/complexity could raise a warning to confirm that they do want to set it.</p></li> </ul> <p>Thanks for your help.</p> <p>EDIT: This is an ASP.NET web application accessing a MSSQL2008 database using ADO.NET (not LINQ/EF).</p> http://stackoverflow.com/questions/1812541/cannot-create-sspi-context 0 Cannot create SSPI context Prasanna 2009-11-28T13:41:19Z 2009-11-29T09:26:17Z <p>Hi All,</p> <p>I am working on a .NET application where I am trying to build the database scripts. While building the project, I am getting an error "Cannot create SSPI context.". This error is shown in the output window (inside VS2008 screen) and the building process failed. Please help on this. SQL Server is configured to work on Windows authentication &amp; running as network service (these two things are must for my project).</p> <p>Please help on this. This error is not seems to be consistent. It was fixed in the past by restarting the machine, changing the system time to match the domain time and some suggestions in the net. Please help on this. </p> <p>Thank you in advance! Prasanna</p> http://stackoverflow.com/questions/1795690/coercive-parsing-attack 1 coercive parsing attack Rohit 2009-11-25T09:23:56Z 2009-11-29T05:45:28Z <p>when studying about xml vulnerabilities , i came accross coercive parsing attack. can anybody say what exactly is Coercive parsing attack(in SOA applications). How does the attack take place? How can one implement this attack using xml parser in java?</p> http://stackoverflow.com/questions/1608703/reading-static-variable-from-a-binary 0 Reading static variable from a binary marco 2009-10-22T17:22:49Z 2009-11-29T05:13:53Z <p>I am trying to read the value of a static variable in C like:</p> <pre><code>int variable = value; </code></pre> <p>The thing is that I only have the binary, and the code with a fake value (it is for a lecture, where we study security aspects of software development). </p> <p>I have been trying to read the value using the <a href="http://en.wikipedia.org/wiki/GNU%5FDebugger" rel="nofollow">GDB</a>, and </p> <p><code>(gdb)info variables</code></p> <p>which just gives me a list of the variables (including the one I'm looking for) and what seems to be an address, so I would like to know if there is a way to read the value using GDB?</p> http://stackoverflow.com/questions/1577514/is-setting-the-uploads-folder-777-permision-secure 0 Is setting the uploads folder 777 permision secure? solomongaby 2009-10-16T11:27:26Z 2009-11-29T04:57:18Z <p>I have seen a lot of upload forms hacked, and some had some really good security checks of the file being uploaded (at least I think so), but still somebody managed to upload a PHP file.</p> <p>I was wondering: is there is a way to upload a file in the uploads folder that has 777 permissions? I am thinking of using HTTP PUT.</p> http://stackoverflow.com/questions/1503535/how-to-set-the-default-file-permissions-on-all-newly-created-files-in-linux 0 How to set the default file permissions on ALL newly created files in linux [closed] eviljack 2009-10-01T11:56:45Z 2009-11-29T02:57:08Z <p>My question is similar to this:</p> <p><a href="http://stackoverflow.com/questions/228534/linux-default-file-permission">http://stackoverflow.com/questions/228534/linux-default-file-permission</a></p> <p>but there is no scp/ftp client involved and that question looks abandoned. Simply put: I want to be able to, at some global level decree that all newly created files will never have world writable permissions (0775). </p> <p>I tried putting a umask 02 in /etc/profile then in my bash_profile but it only works for scripts or new files that I create in a shell. It doesn't work for files that another binary creates. Is there anyway to have all new files that are created?</p>