runas user:懒惰的神(自己指定用户) net start mssqlserver(或者其他命令) 密码提前打好

runas user:懒惰的神(自己指定用户) net start mssqlserver(或者其他命令) 密码提前打好,第1张

使用 sanur,sanur 是一个小程序,能以管道的方法将密码或者文件中的内容传递给 runas 程序。

runas | sanur password

runas | sanur /i [drive:][path]filename

特点:密码明文保存。

----------------------------------

About Sanur

Sanur is a tiny Win32 console utility that 'pipes' a password into the Windows 2000/XP/2003 Runas utility, thereby making Runas scriptable.

Licencing

Sanur is freeware. There is no fee for personal or corporate use. For more details see the 'readme.txt' file included in sanur.zip.

Usage

Pipe your normal Runas commandline into Sanur and specify the password on Sanur's commandline or use the /i switch to have Sanur read the password from a file:-

RUNAS <options>| SANUR password

RUNAS <options>| SANUR /i [drive:][path]filename

In otherwords, just add | SANUR password to the end of your working Runas command.

Examples

Pipe the password 'pa55w0rd' into Runas:-

runas /u:domain\username program.exe | sanur pa55w0rd

Pipe the password from the file named password.txt into Runas:-

runas /u:domain\username program.exe | sanur /i password.txt

Same as above but any Runas errors, such as a logon failure, will be displayed:-

runas /u:domain\username program.exe >&2 | sanur /i password.txt

Support

As of 2005-01-11 Sanur is no longer supported. If you are having problems getting Sanur to work please read the troubleshooting AND the FAQ pages, or seek an alternative solution. Please don't send me any emails relating to Sanur.

例:runas /u:domain\guest notepad.exe | sanur /i 123.jpg 我们使用guest用户,密码正在123.txt里面,由于密码是用明文存贮,不安全,所以将.txt改为了.jpg,这样就不能直接查看了,并把它设了系统隐藏。

----------------------------------

相关页面

http://www.commandline.co.uk/sanur_unsupported/index.html

3、使用 lsrunas,功能类似 sanur,不过它无需运行 runas,自带完整的参数来执行。

特点:密码明文保存。

相关页面:

http://www.moernaut.com/default.aspx?item=lsrunas

4、使用 lsrunase,lsrunas 的加强版本,可以使用加密的密码。自带一个小软件 LSencrypt 用来生成加密的字串。

用法:

lsrunase /user:administrator /password:41BngA== /domain: /command:notepad.exe /runpath:c:\

所有的参数必须齐全,其中:

user 为运行的账号

password 为密码加密后的字串

domain 为机器名或域名,也可留空代表本机

command 为要运行的程序名,如果携带参数需要在命令的首尾加引号

runpath 为程序启动的路径

特点:可以较完美的替代 runas,并避免直接将密码明文保存在脚本中。

相关页面:

http://www.moernaut.com/default.aspx?item=lsrunase

5、使用 cpau,cpau 也是一个替代 runas 的程序,并且功能强大,可以使用加密的密码。

用法:

cpau -u administrator -p password -ex notepad -file start_notepad.txt -enc

cpau -file start_notepad.txt -dec

以上命令可以先将要执行的指令加密保存为一个文件,执行时载入此文件。

特点:可以保护执行的脚本及命令不被他人查看,但在使用网络路径时存在一些问题。

相关页面:

http://www.joeware.net/win/free/tools/cpau.htm

6、使用 autoit,autoit 是一个脚本自动化执行的工具,可以完成很多自动化的任务,并且可以将脚本编译成 exe 文件来直接运行,从而达到了隐藏密码信息的目的。

特点:功能强大,但 *** 作复杂。

相关页面:

http://www.autoitscript.com/autoit3/

还有其他一些工具能够完成类似的 *** 作。

参考页面:

http://www.commandline.co.uk/sanur/


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/6687173.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-26
下一篇 2023-03-26

发表评论

登录后才能评论

评论列表(0条)

保存