MCPcopy Index your code
hub / github.com/secdev/scapy / nmap_fp

Function nmap_fp

scapy/modules/nmap.py:219–225  ·  view source on GitHub ↗

nmap fingerprinting nmap_fp(target, [oport=80,] [cport=81,]) -> list of best guesses with accuracy

(target, oport=80, cport=81)

Source from the content-addressed store, hash-verified

217
218@conf.commands.register
219def nmap_fp(target, oport=80, cport=81):
220 # type: (str, int, int) -> Tuple[Union[int, float], List]
221 """nmap fingerprinting
222nmap_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

Callers

nothing calls this directly

Calls 2

nmap_sigFunction · 0.85
nmap_searchFunction · 0.85

Tested by

no test coverage detected