1
vote
3answers
57 views
How does the RSA private key passphrase work under the hood?
RSA private keys may be assigned a "passphrase" which - as I understand it - is intended to provide some secondary security in case someone makes off with the private key file.
Ho …
1
vote
6answers
71 views
Password hashing at client browser
What's the best way to hash the user password at the client browser, before sending it to the web server, so that only the hash goes out, not the plain-text password?
EDIT: assumi …
1
vote
1answer
133 views
Custom authorization in ADO.NET Data Services
I have an ADO.NET Data Service that exposes an Entity Framework data model (.edmx).
I need to allow / reject reads/writes to certain entities for certain users. I use Windows Auth …
2
votes
1answer
35 views
+100
Techniques to reduce data harvesting from AJAX/JSON services.
I was wondering if anyone had come across any techniques to reduce the chances of data exposed through JSON type services on the server (intended to supply AJAX functions) from bei …
0
votes
3answers
51 views
What does Silverligtht 4.0 Trusted Mode mean on a Mac?
Are there any special considerations we will need to take into account for Mac scenarios? Furthermore, with features such as COM interop which aren't applicable on a Mac, how do y …
0
votes
2answers
38 views
WCF authentication “friendly” to non-Microsoft clients?
An exploratory question, here. After some reading, I'm getting a sinking feeling that WCF's authentication options aren't "friendly" to non-Microsoft clients, or require a great d …
0
votes
3answers
52 views
+100
Security and roles authorization with model view presenter design pattern
Where is the most fitting place for security and roles authorization to fit into the model view presenter design pattern?
Would it be for all pages that implement security to imp …
1
vote
4answers
443 views
Restricting JMX to localhost
While there appears to some documentation on how to expose JMX through various firewall and tunneling schemes, I sort of want the opposite. I want to ensure that JMX is only acces …
0
votes
3answers
24 views
Pass data from page to page safely
I am looking forward for a method to pass data from page to page safely and avoid as It's possible the tampering.
The best way to solve it, is to save the sensitive data on db …
0
votes
0answers
11 views
ASP.Net Security By Route
I'm working with ASP.Net Dynamic Data and I have a section in my web.config like this:
<location path="Foo/List.aspx">
<system.web>
<authorization>
& …
0
votes
1answer
8 views
Why can’t I see the “value” column in SYS.EXTENDED_PROPERTIES?
I have some extended property column descriptions in a SQL Server 2008 database, and when I login to management studio and do a simple query:
Select * from SYS.EXTENDED_PROPERTIES …
0
votes
8answers
69 views
Best practice to send secure information over e-mail?
I have to send sensitive information (name, address, social security number etc.) collected from a website, that has been entered by a user, to an e-mail address.
What is the best …
1
vote
1answer
11 views
Security of clearing down cookies in IE
Hi,
I've been asked to analyse an old web app which stores sensitive information in cookies rather than sessions/similar. (To be precise, it's classic ASP and uses cookie families …
2
votes
2answers
67 views
+250
Validating Uploaded Files in Django
A Django app that I am working has an Event model. An Event may have associated photos, static html files and pdf files.
I would like to allow trusted users to upload these files, …
2
votes
3answers
71 views
smtp: why does email needs envelope and what does the envelope mean
What is the exact difference between the envelope and the email in smtp?
Why does the protocol need the envelope? In snail mail, the letter needs not contain addresses and is not …
