首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Python > 对于Python框架转换为

对于Python框架转换为

  • 资源大小:19.15 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: python 框架 转换 对于

资 源 简 介

PyMaltego is a python module which provides facilities for creating and interacting with Maltego Transforms. The module provides both a WSGI compliant server application, and also client utilities. The PyMaltego module is primarily designed for creating new Transforms, however it is equally capable of querying remote Transforms. Using PyMaltego, it is possible to easily create Transform middleware. An example transform: ``` import maltego import socket class DNSToIPAddress(maltego.Transform): def init(self): super(DNSToIPAddress, self).init( display_name = "DNS name to IP Address", author = "My Self", input = maltego.DNSName, output = maltego.IPAddress, ) def transfrom(self, entities, *args, **kwargs): ret_list = [] for dnsname in entities: ip = socket.gethosybyname( dnsname.value ) ipaddr = maltego.IPAddress( ip ) ret_list.append( ipaddr ) return ret_list ```

文 件 列 表

maltego
CREDITS
INSTALL
README
bin
doc
example
setup.py
src
VIP VIP
  • Aaron 1小时前 成为了本站会员

  • 1小时前 成为了本站会员

  • DAAD 8小时前 成为了本站会员

  • 哇哈哈哈哈哈哈哈 1天前 成为了本站会员

  • 1天前 成为了本站会员

  • 维他 1天前 成为了本站会员

  • agnostic 2天前 成为了本站会员

  • 子非鱼 2天前 成为了本站会员

  • 柠檬汽水 3天前 成为了本站会员

  • 歪猴 3天前 成为了本站会员

0.183031s