mirror of
https://github.com/nmap/nmap.git
synced 2025-12-19 05:59:01 +00:00
[NSE] Added support for decoding EIGRP broadcasts from Cisco routers to broadcast-listener.nse
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Added support for decoding EIGRP broadcasts from Cisco routers
|
||||
to broadcast-listener. [Tom]
|
||||
|
||||
o [NSE] Added redirect support to the http library. All calls to http.get and
|
||||
http.head now transparently handle any HTTP redirects. [Patrik]
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -134,8 +134,8 @@ sniffInterface = function(iface, Decoders, decodertab)
|
||||
-- default to 30 seconds, if nothing else was set
|
||||
timeout = timeout and (timeout * 1000) or (30 * 1000)
|
||||
|
||||
-- We wan't all packets that aren't explicitly for us
|
||||
sock:pcap_open(iface.name, 1500, false, ("!host %s"):format(iface.address))
|
||||
-- We want all packets that aren't explicitly for us
|
||||
sock:pcap_open(iface.name, 1500, true, ("!host %s"):format(iface.address))
|
||||
|
||||
-- Set a short timeout so that we can timeout in time if needed
|
||||
sock:set_timeout(100)
|
||||
|
||||
Reference in New Issue
Block a user