User blowdart - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:09:31Z http://stackoverflow.com/feeds/user/2525 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802500/does-antiforgerytoken-in-asp-net-mvc-prevent-against-all-csrf-attacks/1808577#1808577 1 Answer by blowdart for Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks? blowdart 2009-11-27T12:46:44Z 2009-11-27T12:53:21Z <p><em>But what if malicious script will make first some simple GET request (by AJAX) in order to download the page containing antiforgery token in hidden input field, extracts it, and use it to make valid POST?</em></p> <p>Yes, this is true, but, if it's not ending up in a browser this is NOT a CSRF attack.</p> <p>If it does end it up the browser (for example scraping via an HTTP Request in server side code) then what would happen the scrape code will get a CSRF token. However your legitimate, authenticated users will get a different token put on their machine. Because the token that the scraper lifts is different to the one issued to your users then the POST will fail. </p> <p>If you want to stop non-browser scripts making posts then you need to take another approach to validate it's a human.</p> http://stackoverflow.com/questions/1795690/coercive-parsing-attack/1795755#1795755 0 Answer by blowdart for coercive parsing attack blowdart 2009-11-25T09:38:27Z 2009-11-25T09:38:27Z <p>Because web services need to consume messages and XML documents it is possible to create XML documents which may strain the consuming systems as they try to validate and route it. Send enough of those documents at once and the consuming system may use up all its resources trying to work out if the messages are good or not and reject valid messages. Usually you do it by constructing a message with an insanely deep nesting structure, or even recursive nesting.</p> <p>You'll implement it by constructing such a document and sending it off to the web service.</p> http://stackoverflow.com/questions/1784167/accepting-a-saml-1-1-assertion/1784180#1784180 0 Answer by blowdart for Accepting a SAML 1.1 Assertion blowdart 2009-11-23T16:13:05Z 2009-11-23T16:13:05Z <p>ASP login? Oh dear, you will have to manually decrypt, validate and accept/decline the token, and then map the user to whatever role based mechanism your application uses.</p> <p>If you were on ASP.NET then the Windows Identity Framework would help.</p> http://stackoverflow.com/questions/1781557/route-a-custom-url-to-a-web-application/1781624#1781624 1 Answer by blowdart for route a custom url to a web-application blowdart 2009-11-23T07:36:04Z 2009-11-23T07:36:04Z <p>If you want to fake it then you can add a entry to your hosts file yes. Add</p> <pre><code>192.168.11.40 support.somedomain.com </code></pre> <p>then run, at an elevated command prompt, ipconfig /flushdns</p> <p>Now try pinging that FQDN and you should see it resolve to your 192 address and away you go</p> http://stackoverflow.com/questions/1770093/c-formsauthentication-signout-another-user/1770100#1770100 0 Answer by blowdart for c# FormsAuthentication signOut another user blowdart 2009-11-20T12:14:06Z 2009-11-20T12:14:06Z <p>No it's not. You could probably write something that intercepts authentication, and if it detects a user in the list of users to be logged out does it, but even then what happens if a session times out due to inactivity? The user would never have hit that authentication event and would still be queued.</p> http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode/1762104#1762104 1 Answer by blowdart for Common reasons for bugs in release version not present in debug mode blowdart 2009-11-19T09:49:42Z 2009-11-19T09:49:42Z <p>You'd need to give a lot more information, but yes, it's possible. It depends what your debug version does. You may well have logging or extra checks in that that don't get compiled into a release version. These debug only code paths may have unintended side effects which change state or affect variables in strange ways. Debug builds usually run slower, so this may affect threading and hide race conditions. The same for straight forward optimisations from a release compile, it's possible (although unlikely these days) that a release compile may short circuit something as an optimisation.</p> http://stackoverflow.com/questions/1741375/window-cryptoapi-can-i-choose-the-public-exponent-when-generating-an-rsa-key-pai/1755293#1755293 2 Answer by blowdart for Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair? blowdart 2009-11-18T11:12:34Z 2009-11-18T14:10:52Z <p>No - there we go :) More seriously <a href="http://msdn.microsoft.com/en-us/library/aa379941%28VS.85%29.aspx" rel="nofollow">CryptGenKey</a> The only parameters you can send to CryptGenKey are set in <a href="http://msdn.microsoft.com/en-us/library/aa380272%28VS.85%29.aspx" rel="nofollow">CryptSetKeyParam</a>. You can see from the documentation you can only set a limited number of properties for each key type, and only one for RSA keys.</p> <p>(Plus, as I'm sure you're aware, small exponents are dangerous anyway)</p> http://stackoverflow.com/questions/1755130/getting-the-current-asp-net-machine-key 1 Getting the current ASP.NET machine key blowdart 2009-11-18T10:42:27Z 2009-11-18T11:17:12Z <p>I find myself wanting to get the ASP.NET machine key for the current application. This is, of course, easy if a machine key is specified in the configuration file, but if it's set to auto generate then there doesn't seem to be a public method anywhere to get it.</p> <p>Basically I want at it so I can write an encrypted/MACed cookie for myself, just like the ASP.NET Forms Authentication provider does.</p> <p>Does anyone have any pointers or ideas?</p> http://stackoverflow.com/questions/1702324/creating-an-antiforgerytoken-through-dependency-injection/1749367#1749367 0 Answer by blowdart for Creating an AntiForgeryToken through Dependency Injection blowdart 2009-11-17T14:46:31Z 2009-11-17T14:46:31Z <p>That looks to me as if it's generating a canary with every request. Now what happens if a user opens multiple tabs? :)</p> <p>The problem with your approach (and the ASP.NET MVC implementation) is it relies on developers to implement it. Security like this should be opt-out, not opt-in. When I wrote a <a href="http://anticsrf.codeplex.com" rel="nofollow">AntiCSRF module</a> I ended up using the ASP.NET page lifecycle instead, which mean no changes to the underlying code, unless a developer wanted to opt a page out of the CSRF checks. You'll note that it uses a single token which lasts for the lifetime of that user's browser session - there's no actual need to change the token with every request.</p> <p>Now I wrote the module mainly as a way to illustrate some concepts for my forth coming book (insert advertisement here <em>grin</em>), you could of course use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.viewstateuserkey.aspx" rel="nofollow">ViewStateUserKey</a>, but again this is opt-in, rather than opt-out.</p> http://stackoverflow.com/questions/1747539/wpf-wcf-ws-discovery/1747581#1747581 0 Answer by blowdart for WPF WCF ws-discovery blowdart 2009-11-17T09:25:16Z 2009-11-17T09:25:16Z <p>WS-Discovery sends out a broadcast message saying "Who can handle this"?</p> <p>This is both simple and, err, problematic. Imagine I'm feeling evil so I look at the services on your network and write a server which responds with "I do" ...</p> <p>So you need to ensure your probes are limited by scope, for example put all your services in known LDAP OUs that an attacker cannot run in. The <a href="http://specs.xmlsoap.org/ws/2005/04/discovery/ws-discovery.pdf" rel="nofollow">WS-Discovery spec</a> contains a security section which you should read and understand :)</p> <p>Aside from that yes, it's going to be one approach. Or you could implement a service broker service which accepts all messages and then forwards them onto the current server/implementer, load balancing that to provide resilience.</p> http://stackoverflow.com/questions/1742938/wcf-could-not-establish-trust-relationship-for-the-ssl-tls-secure-channel-with/1742974#1742974 0 Answer by blowdart for WCF : Could not establish trust relationship for the SSL/TLS secure channel with authority - back to the drawing board blowdart 2009-11-16T15:40:57Z 2009-11-16T15:40:57Z <p>Your problem arises because you're using a self signed key. The client does not trust this key, nor does the key itself provide a chain to validate or a certificate revocation list.</p> <p>You have a few options - you can </p> <ol> <li><p>turn off certificate validation on the client (bad move, man in the middle attacks abound)</p></li> <li><p>use makecert to create a root CA and create certificates from that (ok move, but there is still no CRL)</p></li> <li><p>create an internal root CA using Windows Certificate Server or other PKI solution then trust that root cert (a bit of a pain to manage) </p></li> <li><p>purchase an SSL certificate from one of the trusted CAs (expensive)</p></li> </ol> http://stackoverflow.com/questions/1742818/asp-net-mvc-authentication-where-do-i-put-a-custom-session-key/1742874#1742874 1 Answer by blowdart for Asp.Net mvc authentication, where do I put a custom session key? blowdart 2009-11-16T15:24:48Z 2009-11-16T15:24:48Z <p>Sessions are separated from the authentication cookie in ASP.NET, so in order to take over a session the attacker would have to replicate both the authentication cookie and the session cookie.</p> <p>You can write user information as part of the authentication ticket by using one of the <a href="http://msdn.microsoft.com/en-us/library/system.web.security.formsauthenticationticket.formsauthenticationticket.aspx" rel="nofollow">constructors</a> which accept userData before generating it and then reading it via the <a href="http://msdn.microsoft.com/en-us/library/system.web.security.formsauthenticationticket.userdata.aspx" rel="nofollow">UserData</a> property. Be aware though if this user key is sensitive then you may want to encrypt the authentication cookie. This is the default in ASP.NET but it's worth being specific and putting</p> <pre><code>&lt;forms protection="All" &gt; </code></pre> <p>into your web.config</p> http://stackoverflow.com/questions/1742149/sql-server-database-is-not-visible/1742172#1742172 1 Answer by blowdart for SQL Server database is not visible blowdart 2009-11-16T13:22:13Z 2009-11-16T13:22:13Z <p>You won't see databases created with "User Instance=True" unless you login as the exact user the database was created under, and the database has been attached.</p> <p>Given that if ASP.NET created the database it's likely it was created by Network Service then you are not going to see it at all. Whilst you could manually try to attached it as a user instance yourself, you may well end up messing up the permissions or hitting the "database already exists" problem.</p> http://stackoverflow.com/questions/1741789/how-to-setup-a-test-https-site-under-iis/1741808#1741808 2 Answer by blowdart for How to setup a test HTTPS site under IIS blowdart 2009-11-16T12:12:28Z 2009-11-16T12:12:28Z <p>You can mimic this, to a certain extent with a self signed certificate. How you get one depends on your version of IIS - IIS7 has <a href="http://weblogs.asp.net/scottgu/archive/2007/04/06/tip-trick-enabling-ssl-on-iis7-using-self-signed-certificates.aspx" rel="nofollow">built in functionality</a> for this, IIS6 needs you to use <a href="http://codeforeternity.com/blogs/technology/archive/2008/02/15/creating-self-signed-ssl-certificates-on-iis-6-0-and-windows-server-2003.aspx" rel="nofollow">makecert</a>. </p> http://stackoverflow.com/questions/1741767/writing-windows-service-in-wcf/1741782#1741782 2 Answer by blowdart for Writing Windows service in WCF blowdart 2009-11-16T12:05:44Z 2009-11-16T12:05:44Z <p>Windows services are executables. WCF applications are, generally, web services, exposed over a URI. You can host a WCF application within a windows service, not the other way around.</p> http://stackoverflow.com/questions/1741146/how-can-i-write-stored-procedures-in-my-application-using-sqlhelper/1741197#1741197 0 Answer by blowdart for How can i write stored procedures in my application using SqlHelper? blowdart 2009-11-16T10:01:45Z 2009-11-16T10:01:45Z <p>By SqlHelper do you mean the old, deprecated Patterns &amp; Practices class that is now rolled into the Enterprise Library?</p> <p>The simple answer is you can't. Stored procedures are, by their definition, stored on the SQL server. If you want to run queries against SQL databases, but don't want to put the queries in the database as stored procedures then you can use the <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx" rel="nofollow">SqlCommand</a> .NET object which the SqlHelper class wrapped.</p> <p>You should be aware that once you start writing inline SQL like this you must use <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlparameter.aspx" rel="nofollow">SqlParameter</a>s <a href="http://www.codinghorror.com/blog/archives/000275.html" rel="nofollow">parametrised queries</a> to avoid <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a>.</p> http://stackoverflow.com/questions/1703301/saml-why-is-the-certificate-within-the-signature/1703349#1703349 1 Answer by blowdart for SAML: Why is the certificate within the Signature??? blowdart 2009-11-09T19:55:58Z 2009-11-09T20:16:50Z <p>The public part of the signing certificate is in the SAML message. This is used to check the signature for the token itself, and of course to allow receivers to tell who issued the token and treat it accordingly.</p> <p>The fact that it's in there is part of the XML digital signature specs, it's not really anything SAML specific. Without the certificate how could you tell where the token came from, and how could you validate it?</p> <p>XmlDSig does specify other methods, you can identify the signing key by a subject, serial number, hash etc., but this assumes that the receiving party has the public certificate. For SAML this may not be the case, hence the embedding of the public part of the X509 cert.</p> http://stackoverflow.com/questions/1682180/will-visual-studio-2010-support-html-5/1689134#1689134 0 Answer by blowdart for Will Visual Studio 2010 support HTML 5? blowdart 2009-11-06T17:36:13Z 2009-11-06T17:36:13Z <p>How can you support something that doesn't exist? Something you can't validate against because there's no accepted spec? </p> <p>Yes they could build in support for the experimental DTD, but they did that with XML/XSLT/XPath and ended up fragmenting XML support for far too long and were attacked for it from all sides.</p> <p>Giving that people like Google are now pushing for tags they want just to make supporting Wave easier it's going to be a long time before HTML5 is done, and the "standard" is going to fluctuate and change - so why waste time and resources trying to hit a moving target?</p> http://stackoverflow.com/questions/1669198/md5-on-asp-classic-and-net/1669244#1669244 1 Answer by blowdart for MD5 on ASP Classic and .NET blowdart 2009-11-03T18:25:40Z 2009-11-03T18:25:40Z <p>A quick web search for VBScript MD5 turned up <em>lots</em></p> <p>Rather than cut and paste the nicest one I found was <a href="http://www.scriptbox.at.tt/index.php?search=Calculate%20MD5%20Hash.vbs" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1669002/custom-asp-net-handler-not-being-hit/1669013#1669013 0 Answer by blowdart for Custom asp.net handler not being hit blowdart 2009-11-03T17:47:24Z 2009-11-03T17:47:24Z <p>Which version of IIS are you using? Cassini isn't a good test, it routes everything through ASP.NET.</p> <p>IIS6 does not do this, unless you add a wildcard mapping, and IIS7 will do it by default, unless you're in the compatibility app pool.</p> <p>If you are on IIS6, and that's likely, then take a look at <a href="http://stackoverflow.com/questions/1381258/why-isnt-my-ihttphandler-being-called/1381277#1381277">the answer</a> I gave to Jon Skeet's question (oh yes, he asks too)</p> http://stackoverflow.com/questions/1663574/will-validateuser-method-in-the-database-layer-set-the-cookie/1663629#1663629 0 Answer by blowdart for Will ValidateUser() method in the database layer set the cookie? blowdart 2009-11-02T20:52:57Z 2009-11-02T20:52:57Z <p>It needs to be done somewhere where the Response is generated, which is generally in a page class.</p> <p>So it won't work in a DB layer.</p> http://stackoverflow.com/questions/1658753/wcf-client-certificate-signing-how-to 0 WCF client certificate signing : how to? blowdart 2009-11-01T23:20:04Z 2009-11-02T16:12:14Z <p>So I have a WCF service where I have various parts of the service contract with a ProtectionLevel of Sign. I set the credentials on the client side by choosing a certificate from the certificate store. This is fine.</p> <p>However ....</p> <ol> <li>Does this client certificate need to be in the 3rd party certificate store on the server for this to work?</li> <li>If this is the case how can I configure a service which accepts any client certificate?</li> <li>And finally how do I access the signing certificate within the implementation of the operations which require signed messages? Just the signing certificate subject name would do fine!</li> </ol> <p>Thanks</p> http://stackoverflow.com/questions/1658753/wcf-client-certificate-signing-how-to/1662201#1662201 0 Answer by blowdart for WCF client certificate signing : how to? blowdart 2009-11-02T16:12:14Z 2009-11-02T16:12:14Z <p>Ah the joy of self answering.</p> <p>So</p> <ol> <li><p>"It depends". If you have ChainOrPeer validation then both the chain or the presence of the certificate in the trusted people store results in success. Only validating on chain obviously checks the chain, setting Peer validation uses the store, and None lets everything through.</p></li> <li><p>Set the validation mode to none</p></li> <li><p>The SecurityContext for the request contains an X509CertificateClaimSet which in turn exposes the certificate itself.</p></li> </ol> http://stackoverflow.com/questions/1595968/shared-authentication-for-web-services/1596421#1596421 0 Answer by blowdart for Shared authentication for web services blowdart 2009-10-20T18:18:53Z 2009-10-20T18:18:53Z <p>You're really describing federation here, of which OpenId is one example (albeit one that's not suitable in this case). With federated identity Company A allows Company B to authenticate their users. This authentication process results in a token from Company B containing information (claims) about the user which is sent to Company A and used for authorisation.</p> <p>Federation is not single sign-on, that tends to describe the situation where Company A runs lots of services and an authentication service as well - and logging into the authentication service allows a user to access all of the resources without having to re-authenticate.</p> <p>Without knowing what the architectures involved are it's hard to recommend an approach. The standard way to transport claims is in a SAML token. In a Microsoft environment you can use the Windows Identity Framework to write web services which understand SAML, and ADFS "Geneva" to issue SAML tokens from an Active Directory. There are similar solutions for other identity stores, such as IBM's Higgins.</p> http://stackoverflow.com/questions/1565371/access-denied-reading-perfmon-counters-from-a-remote-machine-asp-net/1565458#1565458 2 Answer by blowdart for Access denied reading Perfmon counters from a remote machine (Asp.Net) blowdart 2009-10-14T10:26:15Z 2009-10-14T10:26:15Z <p>The problem you have here is that IIS runs under the context of a local account (by default). This local account doesn't exist on the remote machine, and so can't connect to get the performance counters. When you use the VS development web server it runs under your own local account and so everything works.</p> <p>If you're in a domain environment you can configure the IIS application pool to run as a domain account with access to both machines, and everything will work, however you may want more control over this.</p> <p>You could either use basic authentication, with the application configured for impersonation (or if you're using IIS7 having the pool configured to run under the authenticated account) or you impersonate just before you read the counter.</p> <p>There are a couple of ways to impersonate - the safest is to configure IIS to use integrated authentication and then wrap the call up </p> <pre><code>PerformanceCounter freeSpaceCounter = null; using (((WindowsIdentity)HttpContext.Current.User.Identity).Impersonate()) { freeSpaceCounter = new PerformanceCounter("LogicalDisk", "Free Megabytes", "D:", "RemoteMachine12"); } </code></pre> <p>If you don't want authentication then you'll have to configure the app pool, or hard code a username and password in your application - this should be the last resort, see <a href="http://support.microsoft.com/kb/306158" rel="nofollow">KB306158</a></p> http://stackoverflow.com/questions/1555126/asp-net-mvc-custom-iprincipal-injection/1565127#1565127 1 Answer by blowdart for ASP.NET MVC custom IPrincipal injection. blowdart 2009-10-14T09:14:01Z 2009-10-14T09:14:01Z <blockquote> <p>my problem is that with ASP.NET MVC the Application_AuthenticateRequest seems to fire whenever any request is made (so for JS files, images etc.) which causes the application to die.</p> </blockquote> <p>This isn't an uniquely MVC problem - if you ran your application on IIS7 with the integrated pipeline in place then you would see the same thing.</p> <p>If the problem with the lookup is scalability then I assume the actual problem is within </p> <pre><code>FormsAuthenticationTicket ticket = id.Ticket; SiteUser siteUser = new SiteUser(Convert.ToInt32(id.Name)); </code></pre> <p>I'd guess that your SiteUser class does some sort of database lookup. If you examine how forms auth works the ticket contains all the information necessary to produce a FormsIdentity (this doesn't hold true for roles, unless you specifically enable roles caching to a cookie). So you ought to look at the same approach. The first time you construct your siteUser object cache it within a signed cookie, then use the cookie to rehydrate your SiteUser properties on subsequent requests. </p> <p>If you do this then you can go one step further, replacing the Thread principle with your SiteUser, or at least a custom IPrincipal/IUser combination which has the same information as your SiteUser class would have.</p> <p>So inside AuthenticateRequest you'd have some flow like</p> <pre><code>SiteUserSecurityToken sessionToken = null; if (TryReadSiteUserSecurityToken(ref sessionToken) &amp;&amp; sessionToken != null) { // Call functions to attach my principal. } else { if (HttpContext.Current.User != null &amp;&amp; HttpContext.Current.User.Identity.IsAuthenticated &amp;&amp; HttpContext.Current.User.Identity is FormsIdentity) { // Get my SiteUser object // Create SiteUserSecurityToken // Call functions to attack my principal. } } </code></pre> <p>And the function to attach the principal would contain something like</p> <pre><code>HttpContext.Current.User = sessionSecurityToken.ClaimsPrincipal; Thread.CurrentPrincipal = sessionSecurityToken.ClaimsPrincipal; this.ContextSessionSecurityToken = sessionSecurityToken; </code></pre> <p>You'll want to make sure that the functions which write the Security Token to a cookie add, at a minimum, a checksum/MAC value, and, if you like, support encryption using the machine key if it's configured to do so. The read functions should validate these values.</p> http://stackoverflow.com/questions/1565051/asp-net-cookies-with-multiple-values-how-to/1565067#1565067 3 Answer by blowdart for ASP.NET cookies with multiple values - how to? blowdart 2009-10-14T08:47:57Z 2009-10-14T08:47:57Z <p>You set them via</p> <p>(C#)</p> <pre><code>Response.Cookies["TheCookie"]["Cookie1"] = "Hello World"; </code></pre> <p>(VB)</p> <pre><code>Response.Cookies("TheCookie")("Cookie1") = "Hello World" </code></pre> <p>and read them like so</p> <p>(C#)</p> <pre><code>string myValue = Request.Cookies["TheCookie"]["Cookie1"]; </code></pre> <p>(VB)</p> <pre><code>Dim myValue As String myValue = Request.Cookies("TheCookie")("Cookie1") </code></pre> http://stackoverflow.com/questions/1561174/sha512-vs-blowfish-and-bcrypt/1561232#1561232 2 Answer by blowdart for SHA512 vs. Blowfish and Bcrypt blowdart 2009-10-13T16:06:35Z 2009-10-13T16:06:35Z <p>Blowfish isn't better than MD5 or SHA512, as they serve different purposes. MD5 and SHA512 are hashing algorithms, Blowfish is an encryption algorithm. Two entirely different cryptographic functions.</p> http://stackoverflow.com/questions/1553877/asp-net-question-request-url-host-property/1553920#1553920 0 Answer by blowdart for ASP.NET Question: Request.Url.Host property blowdart 2009-10-12T10:56:45Z 2009-10-12T10:56:45Z <p>Sure - it can return an IP address. Or an internal host name. Basically it returns what the client sent in the host header, and that can even be bogus, depending on how IIS is configured.</p> http://stackoverflow.com/questions/1551070/javascript-based-cryptographic-signing/1551082#1551082 -1 Answer by blowdart for JavaScript based cryptographic signing? blowdart 2009-10-11T16:23:58Z 2009-10-11T16:23:58Z <p>Reasons against then</p> <ol> <li>You would need to unlock the private key - you can't do this with JavaScript</li> <li>You would then need to load the private key into the browser. Which, even if you could, would present a massive risk, as the JavaScript could then send it elsewhere</li> <li>Encryption is computationally heavy. JavaScript is slow enough as it is.</li> <li>Cross site scripting and JSON injection mean that if there is a vulnerability in your web site your JavaScript could be replaced - so even if your code was behaving itself, attackers may be able to inject script that doesn't behave.</li> </ol> <p>Reasons for</p> <p>No, can't think of any.</p> http://stackoverflow.com/questions/1813090/remember-password-option-c/1813116#1813116 Comment by blowdart on "Remember password" option [C#] blowdart 2009-11-28T17:23:13Z 2009-11-28T17:23:13Z Isolated storage is not suitable for this. It's easily discoverable by anyone or anything (excluding silverlight/click once/partially trusted .net applications). You may as well store in &quot;My documents&quot; http://stackoverflow.com/questions/1802500/does-antiforgerytoken-in-asp-net-mvc-prevent-against-all-csrf-attacks/1808577#1808577 Comment by blowdart on Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks? blowdart 2009-11-27T17:52:57Z 2009-11-27T17:52:57Z Ah I see. Well then that won't work because of same original policy, unless they're doing something tricksy, in which case the cookie won't flow anyway, so the token will be different http://stackoverflow.com/questions/1795975/about-cookie-expiration/1795987#1795987 Comment by blowdart on About cookie expiration blowdart 2009-11-25T10:35:44Z 2009-11-25T10:35:44Z That's actually wrong. Cookie expiration dates are concrete, not a sliding window, unless you write code to rewrite it on every access. http://stackoverflow.com/questions/1795690/coercive-parsing-attack/1795755#1795755 Comment by blowdart on coercive parsing attack blowdart 2009-11-25T10:31:22Z 2009-11-25T10:31:22Z Depends on the system, and what it's doing to the document. Validate the document via XSD before parsing, and keep the parsing simple. http://stackoverflow.com/questions/1789995/whats-the-difference-between-software-developer-and-software-engineer Comment by blowdart on Whats the difference between Software Developer and Software Engineer blowdart 2009-11-24T13:26:57Z 2009-11-24T13:26:57Z $500 per month usually. And a shed load of attitude. http://stackoverflow.com/questions/1784167/accepting-a-saml-1-1-assertion/1784180#1784180 Comment by blowdart on Accepting a SAML 1.1 Assertion blowdart 2009-11-23T17:10:09Z 2009-11-23T17:10:09Z It's not that simple. SAML tokens are wrapped in WS-Secure, so you need to pick that apart. They should be encrypting against a public key you supply, and signing with a key pair where they supply you with the public key. In any case VBScript support for these types of functions are minimal http://stackoverflow.com/questions/1779041/what-are-the-possible-ways-to-send-a-feedback-e-mail-form Comment by blowdart on What are the possible ways to send a feedback e-mail form? blowdart 2009-11-23T13:00:56Z 2009-11-23T13:00:56Z Ah homework. You could pop up a window containing the filled out form, along with printing instructions and provide a free physical mailing address .... :) http://stackoverflow.com/questions/1781557/route-a-custom-url-to-a-web-application/1781624#1781624 Comment by blowdart on route a custom url to a web-application blowdart 2009-11-23T09:53:54Z 2009-11-23T09:53:54Z Nope. You don't want it to reach the proxy. it's lots of manual updates for you! http://stackoverflow.com/questions/1781557/route-a-custom-url-to-a-web-application/1781624#1781624 Comment by blowdart on route a custom url to a web-application blowdart 2009-11-23T08:41:15Z 2009-11-23T08:41:15Z Add the same entry in every hosts file. If you have an internal DNS server (which is unlikely for small offices or home) you could create a zone for that domain and add an A record to that zone, but now we're dipping into server fault territory. http://stackoverflow.com/questions/1781557/route-a-custom-url-to-a-web-application/1781624#1781624 Comment by blowdart on route a custom url to a web-application blowdart 2009-11-23T07:59:10Z 2009-11-23T07:59:10Z Did you flush the DNS first? Did you make sure notepad didn't save the file as hosts.txt? http://stackoverflow.com/questions/1781483/c-i-want-to-have-security-form-in-which-asks-me-about-my-user-and-then-load-me Comment by blowdart on C# I want to have security Form ,in which asks me about my user and then load me another form in C# blowdart 2009-11-23T06:56:31Z 2009-11-23T06:56:31Z And I want a pony. What exactly is the question here? How to do it? What to store users in? Is this Winforms? WPF? ASP.NET? http://stackoverflow.com/questions/1755130/getting-the-current-asp-net-machine-key/1755315#1755315 Comment by blowdart on Getting the current ASP.NET machine key blowdart 2009-11-19T10:21:44Z 2009-11-19T10:21:44Z They're available, kind of, but the actual backing store for the auto generated MAC key isn't, so even if used reflector, cut and pasted the methods, the actual key itself seems inaccessible. Which makes me wonder if I missed something! http://stackoverflow.com/questions/1741375/window-cryptoapi-can-i-choose-the-public-exponent-when-generating-an-rsa-key-pai/1755293#1755293 Comment by blowdart on Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair? blowdart 2009-11-18T14:10:02Z 2009-11-18T14:10:02Z Errr doh. Slows how asleep I am :) Still, the parameters structure still applies, it's the only way to effect key generation, and there's nothing there for RSA except for KP_OAEP_PARAMS http://stackoverflow.com/questions/1755130/getting-the-current-asp-net-machine-key/1755315#1755315 Comment by blowdart on Getting the current ASP.NET machine key blowdart 2009-11-18T11:39:24Z 2009-11-18T11:39:24Z The Forms Auth provider can get at it because there are internal methods to allow it :) http://stackoverflow.com/questions/1755257/error-using-viewstate-in-a-cluster Comment by blowdart on Error using viewstate (in a cluster?) blowdart 2009-11-18T11:06:53Z 2009-11-18T11:06:53Z Multiple duplicates - searching on Validation of viewstate MAC failed gives over 10 pages of results