Represents text that should be kept confidential. The text is encrypted for privacy when being used, and deleted from computer memory when no longer needed

learn more… | top users | synonyms

0
votes
0answers
38 views

Passing SecureStrings in Powershell for LDAP query when not a member of domain

I've saved a SecureString with ConvertFrom-SecureString to a file and have code to extract and convert the encrypted string back to a SecureString. However, when using the SecureString to authenticate ...
1
vote
0answers
81 views

CredUIPromptForCredentials from .NET with SecureString

I'd like to show the standard system dialog to ask the user for an account username and password to use this information to start a process with these credentials. I've been pointed to the ...
1
vote
1answer
99 views

PasswordBox binding issue MVVM

I have come across the problem of password box binding. My application follows MVVM. When I tried to search google to find out how to solve the issue of password box binding, I found two kinds of ...
1
vote
1answer
151 views

How to save a password properly

I attemt to write a program, with which you can login to a remote website. For some people having multiple accounts, I try to make it easy for them and store account data in IsolatedStorage. At the ...
0
votes
2answers
159 views

How can I use powershell's read-host function to accept a password for an external service?

I have a script I'm writing that makes a connection to a SOAP service. After the connection is made, I need to pass in a the username/pass with every command I send. The problem I have is that when I ...
0
votes
0answers
106 views

Aspnet_setreg.exe registry value to SecureString

I have some encrypted credentials stored in the registry using aspnet_setreg.exe. I use these credentials in web.configs so IIS impersonates applications once you gain access to the applications ...
1
vote
1answer
544 views

Can I change the server administrator password using PowerShell SecureString?

I'm looking to write a script that will change the administrator password on a remote server using PowerShell. The following command will do this $Admin=[adsi]("WinNT://" + MyServer + ...
5
votes
2answers
148 views

Safe use of SecureString for login form

So there's this class that seems very seldom used: SecureString. It's been around since 2.0 at least, and there are a few SO questions on it, but I thought I'd ask my own specific questions: I have a ...
5
votes
2answers
244 views

Hashing a SecureString in .NET

In .NET, we have the SecureString class, which is all very well until you come to try and use it, as to (for example) hash the string, you need the plaintext. I've had a go here at writing a function ...
1
vote
0answers
193 views

Processing a powershell SecureString as a parameter or console entry

I'm having a lot of difficulty with a powershell script that I'm trying to call a DirectoryServices query from. Currently, if I do a $password = read-host "Password" -asSecureString and ...
0
votes
0answers
117 views

convert encrypted text to securestring

I have a text file that contains an encrypted string that was generated by using a powershell script that prompts a user for a username and password. The powershell script then converts the username ...
0
votes
1answer
133 views

How do I encrypt a SecureString using DPAPI for saving to disk without first converting to an unsecured string?

I'd like to encrypt a SecureString using DPAPI so that I can save it to disk. The .net DPAPI class is the ProtectedData class, however, ProtectedData.Protect has a single overload which takes a byte ...
0
votes
0answers
165 views

Getting password from PasswordBox

I have found several information on this issue here at SO but somehow I'm not really getting it ;-) From what I have read, the password of a PasswordBox cannot be bound to a property due to security ...
1
vote
2answers
369 views

WPF PasswordBox & SecureString: Can't MakeReadOnly()?

Is it possible to mark the PasswordBox.SecurePassword as ReadOnly? Consider this simple code: XAML: <StackPanel> <PasswordBox Name="pBox" MinWidth="100" /> <Button ...
0
votes
0answers
55 views

Protecting sensitive PII data in a WPF Textbox

I'm looking for some guidance on using securestring with a regular WPF textbox. The application has several different Personally Identifiable Information (PII) fields that are entered, displayed and ...
0
votes
2answers
874 views

How secure is PowerShell's ConvertFrom-SecureString -key

I have a module that includes some strings with some private data that should be hard to attain, but changes frequently. I need to put this script on a variety of machines where it might be accessed ...
0
votes
0answers
377 views

How to implement a DataGridView column using SecureString?

I'm working on implementing a custom DataGridView column backed by SecureStrings. I've already got a working implementation of a SecureTextBox, and my DataGridView appears to partially work, but I ...
0
votes
2answers
400 views

Reading single chars from a .NET SecureString in C#?

WPF's PasswordBox returns a SecureString, which hides the password from snoopers. The problem is that you eventually have to get the value of the password, and the suggestions I've found on the net ...
0
votes
1answer
90 views

Securestring and other ways to hiding string data

I recently came across SecureString, but as most of you know, you would be unable to use it because most of the functions you want to use accept string as parameter, not SecureString. How to use ...
4
votes
1answer
359 views

in C#, what is the proper way to handle sensitive data such as a password?

This app displays a form with a textbox where the user is supposed to enter a password used to decrypt a document. I have code that looks like this: string password = passwordTextBox.Text; ... ...
1
vote
2answers
518 views

Issues hiding password to MySQL Database in PHP file

I have an HTML file with a Form on it, where once the user clicks "submit", a PHP file is called which connects to a MySQL database and updates it with data from the Form. Question is, how do I ...
0
votes
2answers
133 views

SecureString and IIS?

user has an ASPX page. it has textox input ( for password). the user fill his password. the page is submitted to the IIS. it first goes to the iis. by this stage the password is in memory at plain ...
2
votes
2answers
487 views

Rfc2898DeriveBytes + PBKDF2 + SecureString is it possible to use a secure string instead of a string?

I've a function GetPassword, that returns a SecureString type. When I pass this secure string to Rfc2898DeriveBytes to generate a key, Visual Studio shows an error. My limited knowledge tells me that ...
0
votes
2answers
114 views

Oracle DB and SecureString

I am currently storing the user password in a SecureString. Which is also kept around in case the connection to the DB resets. My problem is, I'm trying to pass this password to an OracleParamater, ...
0
votes
0answers
531 views

Best way to retrieve the value of a SecureString

I'm trying to build an automated tool that goes out and checks recent transactions on my checking account (spying on my wife's purchases lol). The tool posts my username and password over SSL and then ...
20
votes
1answer
7k views

Secure random token in node.js

In this question Erik needs to generate a secure random token in node.js. There's the method crypto.randomBytes that generates a random Buffer. However, the base64 encoding in node is not url-safe, it ...
3
votes
2answers
177 views

SecureString Solution is fine but has inner contradiction?

I saw this thread : When would I need a SecureString in .NET? the code there is : SecureString password = new SecureString("password"); vs SecureString pass = new SecureString(); foreach ...
1
vote
2answers
2k views

Store, retrieve and validate password (SecureString) in SQL Server

I have a login window that gets the username and password from the user and I would like to know the best way to handle the password. The username is just a regular textbox, but the password is a ...
25
votes
4answers
2k views

How is SecureString “encrypted” and still usable?

According to MSDN SecureString contents is encrypted for additional safety so that if the program is swapped to disk the string contents can't be sniffed. How is such encryption possible I wonder? ...
2
votes
2answers
262 views

Will SecureString give me any advantage when it comes to MSIL decompilation?

Is it in any way better to do this char[] sec = { 'a', 'b', 'c'}; SecureString s = new SecureString(); foreach (char c in sec) { s.AppendChar(c); } IntPtr pointerName = ...
4
votes
3answers
1k views

SecureString for storing in memory and presenting passwords? Or something else?

G'day! I have been writing a little program for myself using C# that I can use to store my passwords and then retrieve them for viewing/editing. While the passwords are stored to disk in an ...
1
vote
2answers
438 views

Is SecureString a write-only class?

I recently discovered SecureString and it seems to fit a perfect application where I want to basically initialize a static secret string at the beginning of an application, and then make it read-only ...
2
votes
2answers
319 views

Is string.ToCharArray() necessary for enumerating?

Why on Earth would someone convert a string to a char[] before enumerating the characters in it? The regular pattern for initializing a System.Security.SecureString found all around the net follows: ...
0
votes
1answer
53 views

How to send a string with security, iphone

How to send a string in most securely. Got some issue with encryption. My encrypted value in iPhone is not similar to webapp. So please suggest the most secured form of sending a string from iphone ...
3
votes
2answers
425 views

powershell and secureString class

Attempting to access an FTP site, I can use a plain text password in credentials and it works fine, but when I use a SecureString it fails to authenticate. Examples: $pw = "mypw" $ftp = ...
3
votes
1answer
142 views

tracking sensitive data in memory from my WPF application and C# libraries

I've been trying to go through a couple of my C# libraries and a WPF application that uses them and replace plain-text, string passwords with SecureString. I do have to convert a SecureString back to ...
1
vote
3answers
2k views

C# - RSACryptoServiceProvider Decrypt into a SecureString instead of byte array

I have a method that currently returns a string converted from a byte array: public static readonly UnicodeEncoding ByteConverter = new UnicodeEncoding(); public static string Decrypt(string ...
11
votes
1answer
2k views

C# - compare two SecureStrings for equality

I have a WPF application with two PasswordBoxes, one for the password and another for the password to be entered a second time for confirmation purposes. I was wanting to use ...
21
votes
3answers
1k views

Is there any benefit to using SecureString in ASP.NET?

If I understand correctly, this is for keeping plain text out of memory, so that the app is secure against esoteric attacks on memory, the garbage heap, or memory paged to disk. The SecureString is ...
1
vote
2answers
212 views

How should I manage password strings in .net?

I know there is the SecureString class, but for most scenarios I don't think it's really useful. For example, let's say I have a client/server system. The server doesn't need an application made by ...
3
votes
2answers
455 views

Use SecureString for credit card numbers

I've been looking into using the System.Security.SecureString class to hold credit card numbers in memory while they are being processed. Has anyone used the SecureString class for holding credit ...
5
votes
7answers
3k views

Securely store a password in program code?

My application makes use of the RijndaelManaged class to encrypt data. As a part of this encryption, I use a SecureString object loaded with a password which get's get converted to a byte array and ...
11
votes
5answers
5k views

Using SecureString

Can this be simplified to a one liner? Feel free to completely rewrite it as long as secureString gets initialized properly. SecureString secureString = new SecureString (); foreach (char c in ...
2
votes
4answers
2k views

using securestring for a sql connection

I want to use a SecureString to hold a connection string for a database. But as soon as I set the SqlConnection object's ConnectionString property to the value of the securestring surely it will ...
13
votes
5answers
6k views

C# SecureString Question

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 ...
5
votes
2answers
2k views

Is it possible to safely get a SecureString value from VB .NET?

I've always felt like SecureString was a little odd, but assumed most of my issues with it were due to security problems I don't understand. Today I decided to sit down and teach myself about it, but ...
0
votes
2answers
2k views

How do a use a SecureString to create a SHA1 or SHA512 Hash?

I would like to use a SecureString varible within VB.NET and convert that to a SHA1 or SHA512 hash. How would I securely convert the SecureString to the Byte array that HashAlgorithm.ComputeHash will ...
0
votes
1answer
764 views

How to initialize SecureString for readonly

I would like to create a variable, a secure one, that is more or less a CONST to use in my code. I've looked into using System.Security.SecureString, and that looks like it could be the ticket as I ...
0
votes
2answers
2k views

Using System.Security.SecureString in .NET Remoting App?

I am developing a Remoting application where a client looks up store specific information to login to a web server. It sets the user name and passwords in a class that stores the properties as ...
0
votes
3answers
680 views

Considerations in building a Secure string type

I have begun building a secure string type - which i call SecureStringV2 - to extend the existing SecureString type in the .Net framework. This new type is going to add some basic functionality ...

1 2