vote up 2 vote down star
1

Is there any way to get the value of a SecureString without comprising security? For example, in the code below as soon as you do PtrToStringBSTR the string is no longer secure because strings are immutable and garbage collection is non-deterministic for strings.

IntPtr ptr = Marshal.SecureStringToBSTR(SecureString object);
string value = Marshal.PtrToStringBSTR(ptr);

What if there were a way to get a char[] or byte[] of the unmanaged BSTR string? Would that mean garbage collection is more predictable (since you would be using a char[] or byte[] rather than a string? Is this assumption correct, and if so, how would you get back the char[] or byte[]?

flag

2  
I know what you mean - I've never understood the point of them either, they've always got to get casted to an array at some point! – Kieran Benton Nov 25 at 23:40

4 Answers

vote up 3 vote down check

This should help you: http://dotnet.org.za/markn/archive/2008/10/04/handling-passwords.aspx

From the article, the key points are:

  • Pin the string in memory.
  • Use managed pointers to mutate the System.String.
  • Use the strong guarantees of the ExecuteCodeWithGuaranteedCleanup method.
link|flag
1  
Thats a good article, but its absolutely bonkers - not only that but you've still had the string in memory for some time, quick admin access on the machine -> hook in a debugger = thanks for your password. Can anyone really see the point of these? – Kieran Benton Nov 25 at 23:56
My thoughts are that it would be easier to just use a char[] rather than having to use "pinned" strings. That's what I was looking for with this question. – Taylor L Nov 26 at 0:00
@Kieran - It does reduce the amount of time the string is available and ensures it's in one place. What I was looking to do is something similar with char[] but w/o all the additional complications of having to use a "pinned" string. This way I could just zero out the char[] when I'm done with it. I'm not clear on how to get a char[] from the unmanaged BSTR string though. – Taylor L Nov 26 at 0:02
1  
Taylor L: you could use a char[] instead but you would still have to pin it. If you didn't the GC could relocate it during a garbage collection, and then you'd have no way to zero original copy. – Mark Byers Nov 26 at 0:06
I see, well that definitely limits their usability. – Taylor L Nov 26 at 0:25
vote up 1 vote down

The link Mark provided is about the best you can do, and is the approach my team has taken to address this problem (although we didn't go to the complexity of using CERs). I was a little dubious about using pinning to essentially break C# String immutability, but it does work.

link|flag
vote up -1 vote down

Just a thought: Could not just cast to a CharArray from the string and remove the string from memory.

char[] charray = value.toCharArray();
value = string.Empty();
link|flag
1  
I think you are missing the point which is that as soon you create a managed string it's no longer secure. – Taylor L Nov 25 at 23:44
1  
No!! The old instance of value remain in memory. value=xxx only overwrites the reference 'value' with another reference. – Henk Holterman Nov 25 at 23:45
vote up -1 vote down

Use Marshal.ZeroFreeBSTR:

EDIT: Yes, creating a new String will create a copy, so you will lose control over cleanup of the contents. You can access the char[] by casting the pointer returned by IntPtr.ToPointer() in an unsafe context:

IntPtr ptr = Marshal.SecureStringToBSTR(str);
unsafe
{
    char *cp = (char*)ptr.ToPointer();
    //access char[] through cp
}

Marshal.ZeroFreeBSTR(ptr);
link|flag
That only removes the unmanaged BSTR string. It wouldn't remove "string value". This doesn't make it anymore secure. – Taylor L Nov 25 at 23:47

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.