nmap fingerprinting nmap_fp(target, [oport=80,] [cport=81,]) -> list of best guesses with accuracy
(target, oport=80, cport=81)
| 217 | |
| 218 | @conf.commands.register |
| 219 | def nmap_fp(target, oport=80, cport=81): |
| 220 | # type: (str, int, int) -> Tuple[Union[int, float], List] |
| 221 | """nmap fingerprinting |
| 222 | nmap_fp(target, [oport=80,] [cport=81,]) -> list of best guesses with accuracy |
| 223 | """ |
| 224 | sigs = nmap_sig(target, oport, cport) |
| 225 | return nmap_search(sigs) |
| 226 | |
| 227 | |
| 228 | @conf.commands.register |
nothing calls this directly
no test coverage detected