Python实现远程调用MetaSploit的方法


Posted in Python onAugust 22, 2014

本文较为详细的讲述了Python实现远程调用MetaSploit的方法,对Python的学习来说有很好的参考价值。具体实现方法如下:

(1)安装Python的msgpack类库,MSF官方文档中的数据序列化标准就是参照msgpack。

root@kali:~# apt-get install python-setuptools
root@kali:~# easy_install msgpack-python

 
(2)创建createdb_sql.txt:

create database msf;
create user msf with password 'msf123';
grant all privileges on database msf to msf;

 
(3)在PostgreSQL 执行上述文件:

root@kali:~# /etc/init.d/postgresql start
root@kali:~# sudo -u postgres /usr/bin/psql < createdb_sql.txt

 
(4)创建setup.rc文件

db_connect msf:msf123@127.0.0.1/msf
load msgrpc User=msf Pass='abc123'

 
(5)启动MSF并执行载入文件

root@kali:~# msfconsole -r setup.rc
* SNIP *
[*] Processing setup.rc for ERB directives.
resource (setup.rc)> db_connect msf:msf123@127.0.0.1/msf
[*] Rebuilding the module cache in the background...
resource (setup.rc)> load msgrpc User=msf Pass='abc123'
[*] MSGRPC Service: 127.0.0.1:55552
[*] MSGRPC Username: msf
[*] MSGRPC Password: abc123
[*] Successfully loaded plugin: msgrpc

 
(6)Github上有一个Python的类库,不过很不好用

root@kali:~# git clone git://github.com/SpiderLabs/msfrpc.git msfrpc
root@kali:~# cd msfrpc/python-msfrpc
root@kali:~# python setup.py install

测试代码如下:

#!/usr/bin/env python
import msgpack
import httplib
 
class Msfrpc:
 class MsfError(Exception):
  def __init__(self,msg):
   self.msg = msg
  def __str__(self):
   return repr(self.msg)
 
 class MsfAuthError(MsfError):
  def __init__(self,msg):
   self.msg = msg
  
 def __init__(self,opts=[]):
  self.host = opts.get('host') or "127.0.0.1"
  self.port = opts.get('port') or 55552
  self.uri = opts.get('uri') or "/api/"
  self.ssl = opts.get('ssl') or False
  self.authenticated = False
  self.token = False
  self.headers = {"Content-type" : "binary/message-pack" }
  if self.ssl:
   self.client = httplib.HTTPSConnection(self.host,self.port)
  else:
   self.client = httplib.HTTPConnection(self.host,self.port)
 
 def encode(self,data):
  return msgpack.packb(data)
 def decode(self,data):
  return msgpack.unpackb(data)
 
 def call(self,meth,opts = []):
  if meth != "auth.login":
   if not self.authenticated:
    raise self.MsfAuthError("MsfRPC: Not Authenticated")
 
  if meth != "auth.login":
   opts.insert(0,self.token)
 
  opts.insert(0,meth)
  params = self.encode(opts)
  self.client.request("POST",self.uri,params,self.headers)
  resp = self.client.getresponse()
  return self.decode(resp.read()) 
 
 def login(self,user,password):
  ret = self.call('auth.login',[user,password])
  if ret.get('result') == 'success':
self.authenticated = True
    self.token = ret.get('token')
    return True
  else:
    raise self.MsfAuthError("MsfRPC: Authentication failed")
 
if __name__ == '__main__':
 
 # Create a new instance of the Msfrpc client with the default options
 client = Msfrpc({})
 
 # Login to the msfmsg server using the password "abc123"
 client.login('msf','abc123')
 
 # Get a list of the exploits from the server
 mod = client.call('module.exploits')
 
 # Grab the first item from the modules value of the returned dict
 print "Compatible payloads for : %s\n" % mod['modules'][0]
 
 # Get the list of compatible payloads for the first option
 ret = client.call('module.compatible_payloads',[mod['modules'][0]])
 for i in (ret.get('payloads')):
  print "\t%s" % i

相信本文所述方法对大家的Python学习可以起到一定的学习借鉴作用。

Python 相关文章推荐
Python的面向对象思想分析
Jan 14 Python
Django实现图片文字同时提交的方法
May 26 Python
详解Python核心编程中的浅拷贝与深拷贝
Jan 07 Python
用python实现百度翻译的示例代码
Mar 09 Python
Python常见内置高效率函数用法示例
Jul 31 Python
Python合并同一个文件夹下所有PDF文件的方法
Mar 11 Python
Python的垃圾回收机制详解
Aug 28 Python
python os.path.isfile 的使用误区详解
Nov 29 Python
Pytorch Tensor基本数学运算详解
Dec 30 Python
使用Python脚本从文件读取数据代码实例
Jan 19 Python
使用python求解二次规划的问题
Feb 29 Python
Python+OpenCV图像处理—— 色彩空间转换
Oct 22 Python
Python解释执行原理分析
Aug 22 #Python
Python实现的石头剪子布代码分享
Aug 22 #Python
Python使用MD5加密字符串示例
Aug 22 #Python
Python中让MySQL查询结果返回字典类型的方法
Aug 22 #Python
Python安装Imaging报错:The _imaging C module is not installed问题解决方法
Aug 22 #Python
Python with的用法
Aug 22 #Python
Tornado服务器中绑定域名、虚拟主机的方法
Aug 22 #Python
You might like
关于PHPDocument 代码注释规范的总结
2013/06/25 PHP
理清PHP在Linxu下执行时的文件权限方法
2017/06/07 PHP
php的无刷新操作实现方法分析
2020/02/28 PHP
用YUI做了个标签浏览效果
2007/02/20 Javascript
firefox 和 ie 事件处理的细节,研究,再研究 书写同时兼容ie和ff的事件处理代码
2007/04/12 Javascript
Js组件的一些写法
2010/09/10 Javascript
用JavaScript仿PS里的羽化效果代码
2011/12/20 Javascript
SeaJS 与 RequireJS 的差异对比
2014/12/08 Javascript
jquery树形菜单效果的简单实例
2016/06/06 Javascript
使用js获取地址栏参数的方法推荐(超级简单)
2016/06/14 Javascript
微信小程序 wxapp内容组件 text详细介绍
2016/10/31 Javascript
jQuery插件echarts实现的单折线图效果示例【附demo源码下载】
2017/03/04 Javascript
深入浅析AngularJS中的一次性数据绑定 (bindonce)
2017/05/11 Javascript
基于VUE选择上传图片并页面显示(图片可删除)
2017/05/25 Javascript
jQuery实现注册会员时密码强度提示信息功能示例
2017/09/05 jQuery
vue中的scope使用详解
2017/10/29 Javascript
webpack4 入门最简单的例子介绍
2018/09/05 Javascript
使用Python进行二进制文件读写的简单方法(推荐)
2016/09/12 Python
Python Numpy库安装与基本操作示例
2019/01/08 Python
python+selenium select下拉选择框定位处理方法
2019/08/24 Python
ipad上运行python的方法步骤
2019/10/12 Python
python GUI库图形界面开发之PyQt5状态栏控件QStatusBar详细使用方法实例
2020/02/28 Python
python小程序之4名牌手洗牌发牌问题解析
2020/05/15 Python
Django中日期时间型字段进行年月日时分秒分组统计
2020/11/27 Python
Python常用GUI框架原理解析汇总
2020/12/07 Python
解决pycharm 格式报错tabs和space不一致问题
2021/02/26 Python
CSS3 绘制BMW logo实的现代码
2013/04/25 HTML / CSS
Html5之webcoekt播放JPEG图片流
2020/09/22 HTML / CSS
岗位职责的定义
2013/11/10 职场文书
关于工资低的辞职信
2014/01/14 职场文书
个人简历中的自我评价怎么写
2014/01/26 职场文书
校园元旦活动总结
2014/07/09 职场文书
就业意向书
2014/07/29 职场文书
忠诚奉献演讲稿
2014/09/12 职场文书
实习指导老师意见
2015/06/04 职场文书
Flask搭建一个API服务器的步骤
2021/05/28 Python