-
I noticed when taking the CyberMentor's practical ethical hacking course that in MSF5, there existed a set of options in smb_version that do not exist in MSF6. I presume they have been depreciated, my question is what is the best way to determine WHY module options might have been depreciated? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The best way is probably to search the GitHub issue tracker and pull requests.
All new changes are submitted as pull requests and then merged. You will be able to read the motivating reasons for the change and subsequent discussions. You could also look at the Metasploit blog which publishes weekly updates including a changelog. If you have some familiarity with the framework you could also look through the git change history, starting with However, changes to core libraries (ie, You may also need to track down dependencies. For example, change history for the https://github.com/rapid7/metasploit-framework/commits/master/lib/rex/proto/smb
The options may have been renamed or change to advanced options. You can show advanced options with |
Beta Was this translation helpful? Give feedback.
The best way is probably to search the GitHub issue tracker and pull requests.
All new changes are submitted as pull requests and then merged. You will be able to read the motivating reasons for the change and subsequent discussions.
You could also look at the Metasploit blog which publishes weekly updates including a changelog.
If you have some familiarity with the framework you could also look through the git change history, starting with
auxiliary/scanner/smb/sm…