metasploit-framework

https://github.com/rapid7/metasploit-framework

Ruby

Metasploit Framework

MetasploitModule#extend_queue

extend the test queue if MAXDEPTH value not exceeded
checks made to ensure duplicates are not created when extending
process:

when a user is found searching for 'a' the queue for 'a' is extended as
only the first user starting with 'a' will be returned (e.g. 'aanderson')
To find all users the queue must be extended by adding 'aa' through to 'az'

Source | Google | Stack overflow

Edit

git clone [email protected]:rapid7/metasploit-framework.git

cd metasploit-framework

open modules/auxiliary/gather/ibm_sametime_enumerate_users.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-MetasploitModule-extend_queue-for-pr


# Commit to git

git add modules/auxiliary/gather/ibm_sametime_enumerate_users.rbgit commit -m "better docs for MetasploitModule#extend_queue"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-MetasploitModule-extend_queue-for-pr

hub pull-request


# Celebrate!