Results 1 to 5 of 5

Thread: Metasploit .run Installation

  1. #1
    Join Date
    Apr 2012
    Beans
    65
    Distro
    Xubuntu 11.10 Oneiric Ocelot

    Metasploit .run Installation

    I am trying to install Metasploit(A Penetration Testing Framework). I when I download it is a .run file. How would I install this file?
    Have a Linux Day,
    Roffis

  2. #2
    Join Date
    Jun 2011
    Location
    The Shadow Gallery
    Beans
    6,744

    Re: Metasploit .run Installation

    Quote Originally Posted by roffisserver View Post
    I am trying to install Metasploit(A Penetration Testing Framework). I when I download it is a .run file. How would I install this file?
    LOL, no offence but if you cant run a .run file you will have a experience to say the least using MSF especially in its preffered format which is the MSF CLI or MSFconsole. You might want to learn some more Linux first.

    Anyways a .run file is run as

    Code:
    sh ./file<name>.run
    or

    Code:
    sudo ./<filename>.run
    ./ presumes you are in the files location.

    If you want to learn and play with it you are better off downloading the BT 5 R3 .iso and playing with it in a VM or live CD as it is already configured.

    If not then read this http://www.darkoperator.com/installi...loit-in-ubunt/

    and the free offensive security course on it here http://www.offensive-security.com/me...d/Introduction
    Last edited by haqking; March 2nd, 2013 at 11:22 PM.
    Backtrack - Giving machine guns to monkeys since 2006
    Kali-Linux - Adding a grenade launcher to the machine guns since 2013

  3. #3
    Join Date
    Apr 2012
    Beans
    65
    Distro
    Xubuntu 11.10 Oneiric Ocelot

    Re: Metasploit .run Installation

    I know quite a bit about Linux I just haven't come upon a .run file before.

    Thanks
    Have a Linux Day,
    Roffis

  4. #4
    Join Date
    Sep 2009
    Beans
    2

    Re: Metasploit .run Installation

    I think that you actually need to run that file with ./filename.run
    It may work with sh filename.run but in case you get some executable script which isn't a bash script, you can get in troubles. The thing is that the first line of such scripts usually is something like #!/usr/bin/pythoon or #!/bin/sh which tells "the system" which interpreter to use. So chmod +x and just ./filename.run is maybe a better choice.

  5. #5
    Join Date
    Jun 2011
    Location
    The Shadow Gallery
    Beans
    6,744

    Re: Metasploit .run Installation

    Quote Originally Posted by Atlantic777 View Post
    I think that you actually need to run that file with ./filename.run
    It may work with sh filename.run but in case you get some executable script which isn't a bash script, you can get in troubles. The thing is that the first line of such scripts usually is something like #!/usr/bin/pythoon or #!/bin/sh which tells "the system" which interpreter to use. So chmod +x and just ./filename.run is maybe a better choice.
    That is why I gave both options

    Anyways to the OP you can read there instructions at their official docs here https://community.rapid7.com/docs/DOC-1293

    and specifically for Ubuntu using the binary here https://community.rapid7.com/docs/DOC-1296
    Backtrack - Giving machine guns to monkeys since 2006
    Kali-Linux - Adding a grenade launcher to the machine guns since 2013

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •