From 5aee82e35a82cb672da98116c30c9d3b3e27522c Mon Sep 17 00:00:00 2001 From: Spencer McIntyre Date: Fri, 29 Sep 2023 09:21:29 -0400 Subject: [PATCH 1/2] Add a couple of tips --- lib/msf/ui/tip.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/msf/ui/tip.rb b/lib/msf/ui/tip.rb index e4d47c852e..51dcffec8d 100644 --- a/lib/msf/ui/tip.rb +++ b/lib/msf/ui/tip.rb @@ -32,13 +32,15 @@ module Msf "Search can apply complex filters such as #{highlight('search cve:2009 type:exploit')}, see all the filters with #{highlight('help search')}", "Metasploit can be configured at startup, see #{highlight('msfconsole --help')} to learn more", "Display the Framework log using the #{highlight('log')} command, learn more with #{highlight('help log')}", - "Adapter names can be used for IP params #{highlight('set LHOST eth0')}", + "Network adapter names can be used for IP options #{highlight('set LHOST eth0')}", "Use #{highlight('sessions -1')} to interact with the last opened session", "View missing module options with #{highlight('show missing')}", "Start commands with a space to avoid saving them to history", "You can pivot connections over sessions started with the ssh_login modules", "Use the #{highlight('analyze')} command to suggest runnable modules for hosts", - "Set the current module's RHOSTS with database values using #{highlight('hosts -R')} or #{highlight('services -R')}" + "Set the current module's RHOSTS with database values using #{highlight('hosts -R')} or #{highlight('services -R')}", + "Use the 'capture' plugin to start multiple authentication-capturing and poisoning services", + "The #{highlight('use')} command supports fuzzy searching, e.g. #{highlight('use kerberos/get_ticket')} or #{highlight('use kerberos forge silver ticket')}" ].freeze private_constant :COMMON_TIPS From 3baf867c76f6d8fbcdb0ec6dd83bd94809f8361a Mon Sep 17 00:00:00 2001 From: Spencer McIntyre Date: Mon, 2 Oct 2023 16:38:26 -0400 Subject: [PATCH 2/2] Update lib/msf/ui/tip.rb Co-authored-by: Brendan --- lib/msf/ui/tip.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msf/ui/tip.rb b/lib/msf/ui/tip.rb index 51dcffec8d..ebb5e33e75 100644 --- a/lib/msf/ui/tip.rb +++ b/lib/msf/ui/tip.rb @@ -40,7 +40,7 @@ module Msf "Use the #{highlight('analyze')} command to suggest runnable modules for hosts", "Set the current module's RHOSTS with database values using #{highlight('hosts -R')} or #{highlight('services -R')}", "Use the 'capture' plugin to start multiple authentication-capturing and poisoning services", - "The #{highlight('use')} command supports fuzzy searching, e.g. #{highlight('use kerberos/get_ticket')} or #{highlight('use kerberos forge silver ticket')}" + "The #{highlight('use')} command supports fuzzy searching to try and select the intended module, e.g. #{highlight('use kerberos/get_ticket')} or #{highlight('use kerberos forge silver ticket')}" ].freeze private_constant :COMMON_TIPS