rapid7 / metasploit-framework

Metasploit Framework
https://www.metasploit.com/
Other
33.1k stars 13.76k forks source link

Add https prefix to module URL references #19099

Closed sjanusz-r7 closed 1 month ago

sjanusz-r7 commented 1 month ago

Quick win, this PR adds in the https prefix to module references that were missing them (only two), similar to the PR here: https://github.com/rapid7/metasploit-framework/pull/18923

Fixes an issue where the module couldn't be selected in Pro.

Testing

require 'URI'
ref = 'www.geutebrueck.com'
URI.parse(ref).host
ref = 'https://www.geutebrueck.com'
URI.parse(ref).host

Verification

adfoster-r7 commented 1 month ago

cc @cgranleese-r7 - this should probably be added to the Metasploit validation script - https://github.com/rapid7/metasploit-framework/pull/17804