.net - VB.NET - PSEXEC and SecureString Class? -



.net - VB.NET - PSEXEC and SecureString Class? -

i have tool i'm working on in vb.net lets users in org trigger number of remote gui processes on pcs. phone call psexec within application , pass user , password of service business relationship have set up.

i want security conscious possible , looking @ using securestring class store user , password. question this: if store service acct. user , password using secure string, pass these psexec when phone call it, psexec transmit obfuscated password on network or transmit plain string?

any help appreciated little new me!

thanks!

edit:

code utilize phone call psexec:

private sub startprocess(byval remotepc string, byval remotepc_url string, byval remoteuser string, byval password string) dim proc new system.diagnostics.process proc.startinfo = new processstartinfo("cmd") proc.startinfo.arguments = "/k psexec \\" & remotepc & " -u " & remoteuser & " -p " & password & " -i -d ""c:\program files (x86)\internet explorer\iexplore.exe"" -k " & remotepc_url & "" proc.startinfo.createnowindow = true proc.startinfo.useshellexecute = false proc.start() end sub 'startprocess

is user business relationship / login info utilize authenticate remote server? if so, it's secured (same login popup get). otherwise depends on protocol beingness used. http, example, sent in plain text. please provide code improve understand need.

.net vb.net security psexec sysinternals

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

java - Parsing XML, skip certain tags -

c# - ASP.NET MVC Sequence contains no matching element -