Feature #2497
SVN update and module management inside of msfconsole
| Status: | Rejected | Start date: | 09/07/2010 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| Resolution: | worksforme | How To Use: | ||
| Release Note: |
Description
Add the ability to update Metasploit from within msfconsole:
msf> modadmin -h
[*] Module Administration Help
-svn: Update to latest SVN version without altering current sessions
-svnm: Upgrade current meterpreter sessions if meterpreter binaries are altered
-h: This help
-l (PATH): load module from alternate location
-r: reload all modules
msf> modadmin -svnm
[*] Module windows/smb/masspwnage removed => Unloading windows/smb/masspwnage from memory...
[*] Module linux/x86/sudo_local added => Loading linux/x86/sudo_local...
[*] Meterpreter Script hp_nmm_local.rb added!
[*] Meterpreter Session 6 upgraded due to chance 10167:
[*] Revision 10167
Added by Stephen Fewer 11 days ago
Commit the ruby side for meterpreter file search. If available, will leverage Windows Search to speed up searching an indexed directory.
Examples of usage as follows:
Find all .PDF files on the host system:
meterpreter>search *.pdf
Find all files on bob's desktop:
meterpreter>search -d 'c:\users\bob\desktop' -f *
Find all files in the root drive c: but don't search subdirectories:
meterpreter>search -d c: -r false -f *
If Windows Search is available (Vista and above by default, XP/2003 by addon) we can also search any indexed IE history and indexed email
meterpreter>search -d iehistory -f *
meterpreter>search -d mapi -f *
[*] Reloading MSFCONSOLE... done
msf> modadmin -l /home/attacker/test/Win7_Homeshare_0day.rb
[*] Loading test/Win7_Homeshare_0day ... done!
msf> use test/Win7_Homeshare_0day
msf test(Win7_Homeshare_0day) >
History
Updated by Tod Beardsley 4 months ago
- 10 set to 0
- Resolution set to worksforme
- Status changed from New to Rejected
Current updating methods don't suck.