Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.08 KB

README.md

File metadata and controls

44 lines (30 loc) · 1.08 KB

MSPP

Build Status Coverage Status Inline docs

Proxy for metasploit-framework payload sessions so you can scale horizontally using one msfconsole

Installation

If available in Hex, the package can be installed as:

  1. Add mspp to your list of dependencies in mix.exs:

    def deps do [{:mspp, "~> 0.0.1"}] end

  2. Ensure mspp is started before your application:

    def application do [applications: [:mspp]] end

Testing

With mettle

Single

  1. iex -S mix
  2. mettle -u 127.0.0.1:8005

Load

  1. for i in `seq 1 100`
    do
      metasploit -u 127.0.0.1:8005 &
    done
    
  2. Wait for all
  3. iex -S mix