@Kalaratri there was a bug in dradis-metasploit
that saved the port information as strings instead of numbers (!). If you navigate to that same page and append “/edit” to the end, you can tweak the JSON data from:
{
"protocol": "tcp",
"port": "445",
"state": "open",
"info": "Windows XP SP3 (language:English) (name:MAS) (domain:IA)",
"name": "smb"
}
to
{
"protocol": "tcp",
"port": 445,
"state": "open",
"info": "Windows XP SP3 (language:English) (name:MAS) (domain:IA)",
"name": "smb"
}
That being said, the bug is now fixed, if you git pull
and bundle update dradis-metasploit
you should no longer experience this problem.
Let us know how it goes!
HTH,
Daniel