Package Details: netdiscover 0.10-0

Git Clone URL: https://aur.archlinux.org/netdiscover.git (read-only, click to copy)
Package Base: netdiscover
Description: ARP Scanner
Upstream URL: https://github.com/netdiscover-scanner/netdiscover/
Keywords: network
Licenses: GPL
Conflicts: netdiscover-debian, netdiscover-svn
Provides: netdiscover
Submitter: danitool
Maintainer: danitool
Last Packager: danitool
Votes: 23
Popularity: 0.000083
First Submitted: 2015-09-15 10:29 (UTC)
Last Updated: 2023-01-21 20:07 (UTC)

Latest Comments

1 2 Next › Last »

wsduvall commented on 2025-06-21 18:53 (UTC) (edited on 2025-06-21 18:55 (UTC) by wsduvall)

Currently fails to build:

main.c:219:13: error: too many arguments to function ‘usage’; expected 0, have 1
  219 |             usage(argv[0]);
      |             ^~~~~ ~~~~~~~
main.c:56:6: note: declared here
   56 | void usage();
      |      ^~~~~
main.c:227:7: error: too many arguments to function ‘usage’; expected 0, have 1
  227 |       usage(argv[0]);
      |       ^~~~~ ~~~~~~~
main.c:56:6: note: declared here
   56 | void usage();
      |      ^~~~~
main.c: At top level:
main.c:547:6: error: conflicting types for ‘usage’; have ‘void(char *)’
  547 | void usage(char *comando)
      |      ^~~~~
main.c:56:6: note: previous declaration of ‘usage’ with type ‘void(void)’
   56 | void usage();
      |      ^~~~~
make[2]: *** [Makefile:409: netdiscover-main.o] Error 1

dreieck commented on 2025-01-31 18:05 (UTC)

Ahoj,

the license identifier needs to be SPDX compliant:

netdiscover E: GPL is not a valid SPDX license identifier. See https://spdx.org/licenses/ for valid identifiers, or prefix the identifier with 'LicenseRef-', if it is custom.

Regards and thanks for the package!

vamastah commented on 2024-08-24 11:11 (UTC)

http://standards-oui.ieee.org/oui/oui.txt expired. I reuploaded it to https://github.com/szymor/oui

system commented on 2021-06-17 21:32 (UTC) (edited on 2021-06-17 21:32 (UTC) by system)

This fixes the problem for newer versions of libpcap (https://github.com/netdiscover-scanner/netdiscover/issues/9):

diff --git a/src/ifaces.h b/src/ifaces.h
index 68ce8a5..3fbdaf4 100644
--- a/src/ifaces.h
+++ b/src/ifaces.h
@@ -45,7 +45,7 @@ extern "C"
      typedef uint16_t u_int16_t;
      typedef uint8_t  u_int8_t;
    #else
-      #define PCAP_TOUT 0
+      #define PCAP_TOUT 512
    #endif

d_fajardo commented on 2021-02-03 11:44 (UTC)

This package is not working properly with the current version of libpcap. According to this: https://forums.kali.org/archive/index.php/t-45949.html it seems that one needs version 1.8 of libpcap. Is anyone else having the same issue, or is there a solution?

ernstDude commented on 2020-09-01 11:49 (UTC)

Thanks for the package but shouldn't automake and autoconf be added as dependencies since you need them to install this package?