神器mimikatz密码提取工具-Standard模块

Module-Standard

Module :        standard
Full name :     Standard module
Description :   Basic commands (does not require module name)

            exit  -  Quit mimikatz
             cls  -  Clear screen (doesnt work with redirections, like PsExec)
          answer  -  Answer to the Ultimate Question of Life, the Universe, and
Everything
           sleep  -  Sleep an amount of milliseconds
             log  -  Log mimikatz input/output to file
         version  -  Display some version informations

这是mimikatz最主要的模块,它包含了操作这个工具的快速命令,对于这个特殊的模块,不需要添加模块名称为命令前缀(也可以添加),例如exitstandard::exit是一样的

Commands:'exit',`cls`,`answer`,`sleep`,`log`,`version`

exit

在清洁程序后退出mimikatz

mimikatz # exit
Bye!

cls

通过控制台窗口填满空格清洁屏幕

mimikatz # cls

注意:在psexec,meterpreter或者其他的远程执行工具可能不会生效

answer

给出人生的终极问题的答案,宇宙和一切。

mimikatz # answer
42.

sleep

睡眠时间单位为毫秒(默认为1000毫秒)。

参数:
  • number-可选-睡眠的毫秒数(默认为1000)
mimikatz # sleep
Sleep : 1000 ms... End !
mimikatz # sleep 4200
Sleep : 4200 ms... End !

log

将所有输出记录到文件中(mimikatz.log默认情况下)。

参数:
  • filename-可选-日志文件的文件名
  • /stop-可选-停止文件记录
mimikatz # log
Using 'mimikatz.log' for logfile : OK

mimikatz # log other.log
Using 'other.log' for logfile : OK

mimikatz # log /stop
Using '(null)' for logfile : OK

你可能感兴趣的:(神器mimikatz密码提取工具-Standard模块)