metasploit console 命令解释

折腾几天,总算是在虚拟机中安装好了4.2版本的metasploit,能够成功打开console,这里将metasploit console的指令用中文翻一下:

原文及翻译:

    back          Move back from the current context
    返回          从当前上下文返回
    banner        Display an awesome metasploit banner
    横幅          显示一个 真棒 的横幅(测试后发现在图片下面还有当前metasploit的
                  版本信息,以及exploits,auxiliary,payload,encoders的总数信息)
    cd            Change the current working directory
    		  改变当前的工作目录,类似于dos命令
    color         Toggle color
                  切换颜色
    connect       Communicate with a host
		  与主机通讯
    exit          Exit the console
                  退出控制台程序
    help          Help menu
                  帮助菜单
    info          Displays information about one or more module
                  显示关于一个或多个模块的信息
    irb           Drop into irb scripting mode
                  落入IRB脚本模式
    jobs          Displays and manages jobs
                  显示和管理工作
    kill          Kill a job
                  取消一个工作
    load          Load a framework plugin
                  加载一个框架插件
    loadpath      Searches for and loads modules from a path
                  查找并且加载指定路径下的模块
    makerc        Save commands entered since start to a file
                  保存自开始时输入的命令到一个文件
    popm          Pops the latest module off of the module stack and makes it active
                  ???
    previous      Sets the previously loaded module as the current module
                  设置先前加载模块,作为当前的模块
    pushm         Pushes the active or list of modules onto the module stack
                  ???
    quit          Exit the console
                  退出控制台程序
    reload_all    Reloads all modules from all defined module paths
                  重新加载所有模块的所有定义的模块路径
    resource      Run the commands stored in a file
                  运行存储在一个文件中的命令
    route         Route traffic through a session
                  在路由中通过一个会话
    save          Saves the active datastores
                  保存活动数据存储
    search        Searches module names and descriptions
                  搜索模块名称和说明
    sessions      Dump session listings and display information about sessions
                  转储会话列表和显示有关会话的信息
    set           Sets a variable to a value
                  设置一个变量的值
    setg          Sets a global variable to a value
                  设置一个全局变量的值
    show          Displays modules of a given type, or all modules
                  显示给定类型的模块或所有模块
    sleep         Do nothing for the specified number of seconds
                  休眠指定的秒数
    spool         Write console output into a file as well the screen
                  写控制台输出到一个文件中,以及在屏幕
    threads       View and manipulate background threads
                  显示和操作后台线程
    unload        Unload a framework plugin
                  卸载一个框架插件
    unset         Unsets one or more variables
                  取消设置一个变量的值
    unsetg        Unsets one or more global variables
                  取消设置一个全局变量的值
    use           Selects a module by name
                  根据名称选择一个模块
    version       Show the framework and console library version numbers
                  显示框架和类库的版本信息

  

时间: 2024-10-11 03:36:09

metasploit console 命令解释的相关文章

metasploit msfconsole 命令

metasploit msfconsole 命令 msf > help db_autopwn Commands =================== Command Description ------- ----------- db_autopwn Automatically exploit everything Core Commands ============= Command Description ------- ----------- ? Help menu banner Dis

九个Console命令,让 JS 调试更简单

一.显示信息的命令 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>常用console命令</title> 5 <meta http-equiv="Content-Type"content="text/html; charset=utf-8" /> 6 </head> 7 <body> 8 <script type=&quo

【转】九个Console命令,让js调试更简单

一.显示信息的命令 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title>常用console命令</title> 5: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 6: </head> 7: <body> 8: <script

mysql explain 命令解释

转载http://bzyyc.happy.blog.163.com/blog/static/6143064720115102551554/ key实 际使用的索引.如果为NULL,则没有使用索引.很少的情况下,MYSQL会选择优化不足的索引.这种情况下,可以在SELECT语句中使用USE INDEX(indexname)来强制使用一个索引或者用IGNORE INDEX(indexname)来强制MYSQL忽略索引 key_len使用的索引的长度.在不损失精确性的情况下,长度越短越好 mysql

九个Console命令,让js调试更简单

一.显示信息的命令 <!DOCTYPE html> <html> <head> <title>常用console命令</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <script type="text/javascri

MongoDB与Mysql常用命令解释

原文 本文旨在介绍MongoDB,Mysql的常用命令:将MongoDB 和传统的关系型数据库的常用命令对照起来学习,更加便于记忆和理解. mongodb与mysql命令对比 MongoDB是由数据库(database/repository).集合(collection).文档对象(document)三个层次组成.MongoDB中集合对应关系型数据库里的表,但是集合中没有列.行和关系的概念,这体现了模式自由的特点. 传统的关系数据库一般由数据库(database).表(table).记录(rec

js调试工具Console命令详解

一.显示信息的命令 代码如下: <!DOCTYPE html> <html> <head> <title>常用console命令</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <script type="text/ja

rm删除命令解释及实例

rm删除命令 1.  命令解释 Remove,删除文件或目录 2.  命令格式 rm 文件名 3.  命令常用参数 -i 在删除之前提示是否确定要删除 -f force强制删除而不管改文件是否存在,不再提示是否要删除 -r recursive(递归的)递归删除目录及目录中的内容,也就是说可以用该命令删除多层目录及目录中的文件. 4.  命令实例 实例一:rm –i在删除之前提示是否确定要删除 在删除前会提示你是否要删除该文件,是的话输入y删除 当我们不加任何参数时 系统也会提示你是否确定要删除,

RYU改动监听port Mininet在custom自建拓扑和连接到指定控制器命令解释

1.RYU控制器改动监听port 在ryu/ryu/ofproto以下的ofproto_common.py 这个以下进行改动.感谢@北京-御宅小受@独行虾 2.Mininet在custom自建拓扑和连接到指定控制器命令解释 在mininet上假设想简单的自建拓扑,就在mininet/custom以下建立就能够.最后命名成.py文件就能够 执行的命令是 mn --custom 自建拓扑文件名称 --topo mytopo 假设指定须要连接的控制器.能够加入连接參数 mn --custom 自建拓扑