Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler. Number of rules (primarily dangerous function names) in C/C++ ruleset: 223 Examining data/fake-1.1.11/send_arp/send_arp.c FINAL RESULTS: data/fake-1.1.11/send_arp/send_arp.c:95:1: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy easily misused). strcpy(sa.sa_data,DEFAULT_DEVICE); data/fake-1.1.11/send_arp/send_arp.c:90:1: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data. memcpy(pkt.sndr_ip_addr,&src_in_addr,IP_ADDR_LEN); data/fake-1.1.11/send_arp/send_arp.c:91:1: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data. memcpy(pkt.rcpt_ip_addr,&targ_in_addr,IP_ADDR_LEN); data/fake-1.1.11/send_arp/send_arp.c:115:17: [2] (buffer) bcopy: Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data. bcopy(hostp->h_addr,in_addr,hostp->h_length); ANALYSIS SUMMARY: Hits = 4 Lines analyzed = 145 in approximately 0.03 seconds (5160 lines/second) Physical Source Lines of Code (SLOC) = 103 Hits@level = [0] 2 [1] 0 [2] 3 [3] 0 [4] 1 [5] 0 Hits@level+ = [0+] 6 [1+] 4 [2+] 4 [3+] 1 [4+] 1 [5+] 0 Hits/KSLOC@level+ = [0+] 58.2524 [1+] 38.835 [2+] 38.835 [3+] 9.70874 [4+] 9.70874 [5+] 0 Minimum risk level = 1 Not every hit is necessarily a security vulnerability. There may be other security vulnerabilities; review your code! See 'Secure Programming HOWTO' (https://dwheeler.com/secure-programs) for more information.