blowdart

8,994
Reputation
721 views

Registered User

Name blowdart
Member for 1 year
Seen 3 mins ago
Website
Location GB
Age 39
Yet another MVP
32s
revised Windows Identity Foundation - Third Party Secure Token Server
spelling in title
51s
answered Windows Identity Foundation - Third Party Secure Token Server
3h
comment CSRF token generation
Ah you meant put the session ID in the URL, and then keep half of the CSRF token in the session? When you were talking about the unique user ID I thought you mean the unique value used to generate the token. Apologies.
3h
comment CSRF token generation
Sure you did, "Include that id in a cookie or in the URLs (if cookies are disabled)." - you say to put the id in the URL, this simply isn't secure.
4h
comment Is AppData now the ‘correct’ place to install user-specific apps (which modify their own data)?
Remember don't use the actual path names, use the SpecialFolders enumeration. Then you don't have to care about what it looks like under each OS
4h
answered Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System
4h
accepted Is AppData now the ‘correct’ place to install user-specific apps (which modify their own data)?
5h
comment CSRF token generation
No you don't. One half could be kept in session, or it could be dropped via a cookie. It doesn't have to be stored on the server at all, usually it's cookie based so you don't have to rely on enabling sessions.
5h
comment CSRF token generation
Adding part of the token to a URL, and having the other half in the form means no protection at all.
6h
answered CSRF token generation
6h
comment Is AppData now the ‘correct’ place to install user-specific apps (which modify their own data)?
An INI file? How old school are you :) And yes, Program Files does need Admin rights to install, which isn't a bad thing, network admins won't like users having the ability to install willy nilly :) Under windows there's no offical "Per User" install, unless you're using Click Once, which does that, and uses App Data. As for checking for missing databases, you should be doing that anyway ;)
7h
answered Is AppData now the ‘correct’ place to install user-specific apps (which modify their own data)?
9h
answered Is there a difference bt Integrated Security = True and Integrated Security = SSPI?
1d
answered Public WCF service requires authentication, despite no security being specified
2d
accepted WPF WCF ws-discovery
Dec
1
comment Geneva Server STS
Server does yes - or rather ADFS as it's been branded.
Nov
30
answered my problem lies here
Nov
30
comment my problem lies here
You know when a previous rambling "question" gets closed because it's a question you might take that as a hint to actually look at reframing your "posts"
Nov
29
answered C# constructor chaining? (How to do it?)
Nov
28
comment “Remember password” option [C#]
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 "My documents"
Nov
27
comment Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks?
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
Nov
27
revised Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks?
added 265 characters in body
Nov
27
answered Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks?
Nov
25
comment About cookie expiration
That's actually wrong. Cookie expiration dates are concrete, not a sliding window, unless you write code to rewrite it on every access.
Nov
25
comment coercive parsing attack
Depends on the system, and what it's doing to the document. Validate the document via XSD before parsing, and keep the parsing simple.
Nov
25
revised coercive parsing attack
Retagged
Nov
25
answered coercive parsing attack
Nov
25
accepted WCF + User credentials
Nov
24
comment Whats the difference between Software Developer and Software Engineer
$500 per month usually. And a shed load of attitude.
Nov
23
comment Accepting a SAML 1.1 Assertion
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
Nov
23
answered Accepting a SAML 1.1 Assertion
Nov
23
comment What are the possible ways to send a feedback e-mail form?
Ah homework. You could pop up a window containing the filled out form, along with printing instructions and provide a free physical mailing address .... :)
Nov
23
accepted route a custom url to a web-application
Nov
23
comment route a custom url to a web-application
Nope. You don't want it to reach the proxy. it's lots of manual updates for you!
Nov
23
comment route a custom url to a web-application
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.
Nov
23
comment route a custom url to a web-application
Did you flush the DNS first? Did you make sure notepad didn't save the file as hosts.txt?
Nov
23
answered route a custom url to a web-application
Nov
23
comment C# I want to have security Form ,in which asks me about my user and then load me another form in C#
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?
Nov
22
accepted How can i write stored procedures in my application using SqlHelper?
Nov
20
answered c# FormsAuthentication signOut another user
Nov
19
comment Getting the current ASP.NET machine key
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!
Nov
19
answered Common reasons for bugs in release version not present in debug mode
Nov
18
revised Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?
deleted 74 characters in body
Nov
18
comment Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?
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
Nov
18
comment Getting the current ASP.NET machine key
The Forms Auth provider can get at it because there are internal methods to allow it :)
Nov
18
answered Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?
Nov
18
comment Error using viewstate (in a cluster?)
Multiple duplicates - searching on Validation of viewstate MAC failed gives over 10 pages of results
Nov
18
asked Getting the current ASP.NET machine key
Nov
18
comment WPF WCF ws-discovery
All my work has been with public, internet facing services, so tight coupling to a URL is always going to be there, so it's not been a problem for me - sorry!
Nov
17
comment Can I use JS encryption instead of SSL for credit card payments?
I've favourited this, just because Ggolo's insistence it'll work against everyone's answers is just too funny to lose.