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/osmctools-0.9/src/osmconvert.c Examining data/osmctools-0.9/src/osmfilter.c Examining data/osmctools-0.9/src/osmupdate.c FINAL RESULTS: data/osmctools-0.9/src/osmconvert.c:522:19: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant for the format specification. if(--msgn>=0) { fprintf(stderr,"Debug memory: " #f); \ data/osmctools-0.9/src/osmconvert.c:823:10: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid()) and try to open the file directly. return access(file_name,R_OK)==0; data/osmctools-0.9/src/osmconvert.c:4822:3: [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(pstw__meme,s); // write string into string memory data/osmctools-0.9/src/osmconvert.c:12519:5: [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(sp,input_file); data/osmctools-0.9/src/osmconvert.c:12524:7: [4] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. sprintf(sp,"_%02i%s",i,s); data/osmctools-0.9/src/osmconvert.c:12542:7: [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(sp,polygon_file); data/osmctools-0.9/src/osmconvert.c:12546:7: [4] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. sprintf(border,"-b=%s,%s,%s,%s",minlon,minlat,maxlon,maxlat); data/osmctools-0.9/src/osmconvert.c:13179:3: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. sprintf(strchr(global_tempfilename,0),".%"PRIi64,(int64_t)getpid()); data/osmctools-0.9/src/osmfilter.c:1896:5: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. sprintf(s,"%11i\t%."count__nameLs"s"NL,kp->counter,kp->name); data/osmctools-0.9/src/osmfilter.c:6993:3: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. sprintf(strchr(global_tempfilename,0),".%"PRIi64,(int64_t)getpid()); data/osmctools-0.9/src/osmupdate.c:193:19: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant for the format specification. if(--msgn>=0) { fprintf(stderr,"Debug memory: " #f); \ data/osmctools-0.9/src/osmupdate.c:469:10: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid()) and try to open the file directly. return access(file_name,R_OK)==0; data/osmctools-0.9/src/osmupdate.c:558:7: [4] (shell) popen: This causes a new program to execute and is difficult to use safely (CWE-78). try using a library call that implements the same functionality if available. fp= popen(command,"r"); data/osmctools-0.9/src/osmconvert.c:9335:28: [3] (buffer) getenv: Environment variables are untrustable input if they can be set by an attacker. They can have any content and length, and the same variable can be set more than once (CWE-807, CWE-20). Check environment variables carefully before using them. original_timezone= getenv("TZ"); data/osmctools-0.9/src/osmfilter.c:5352:15: [3] (buffer) getenv: Environment variables are untrustable input if they can be set by an attacker. They can have any content and length, and the same variable can be set more than once (CWE-807, CWE-20). Check environment variables carefully before using them. oo__tz= getenv("TZ"); data/osmctools-0.9/src/osmconvert.c:597:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_csvseparator[16]= "\t"; // separator for csv data/osmctools-0.9/src/osmconvert.c:642:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_tempfilename[350]= "osmconvert_tempfile"; data/osmctools-0.9/src/osmconvert.c:1855:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[80],*sp; data/osmctools-0.9/src/osmconvert.c:1862:9: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). fi= fopen(fn,"rb"); data/osmctools-0.9/src/osmconvert.c:2204:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char filename[300]; data/osmctools-0.9/src/osmconvert.c:2256:5: [2] (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). Risk is low because the source is a constant string. strcpy(read_infop->filename,"standard input"); data/osmctools-0.9/src/osmconvert.c:2287:23: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). read_infop->fd= open(filename,O_RDONLY|O_BINARY); data/osmctools-0.9/src/osmconvert.c:2289:23: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). read_infop->fi= fopen(filename,"rb"); data/osmctools-0.9/src/osmconvert.c:2524:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char write__buf[UINT64_C(16000000)]; data/osmctools-0.9/src/osmconvert.c:2582:16: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). write__fd= open(filename, data/osmctools-0.9/src/osmconvert.c:2627:16: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). write__fd= open(filename,O_WRONLY|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmconvert.c:2757:9: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char st[30]; data/osmctools-0.9/src/osmconvert.c:2875:9: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char st[30]; data/osmctools-0.9/src/osmconvert.c:2890:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:2926:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:2945:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[30],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:2980:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char s[30],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:3025:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:3050:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:3073:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:3096:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmconvert.c:3152:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[30]; data/osmctools-0.9/src/osmconvert.c:3228:7: [2] (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). Risk is low because the source is a constant string. strcpy(&csv__key[0*csv__keyMM],"@oname"); data/osmctools-0.9/src/osmconvert.c:3230:7: [2] (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). Risk is low because the source is a constant string. strcpy(&csv__key[1*csv__keyMM],"@id"); data/osmctools-0.9/src/osmconvert.c:3232:7: [2] (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). Risk is low because the source is a constant string. strcpy(&csv__key[2*csv__keyMM],"name"); data/osmctools-0.9/src/osmconvert.c:4838:3: [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(*bufpp,pstw__mem,size); data/osmctools-0.9/src/osmconvert.c:4893:5: [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(bufp,tabp->mem0,l); data/osmctools-0.9/src/osmconvert.c:5080:3: [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(pw__objp->bufc,pw__compress_buf,osiz); data/osmctools-0.9/src/osmconvert.c:5211:3: [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(pw__objp->bufe,s,sl); data/osmctools-0.9/src/osmconvert.c:5239:3: [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(pw__objp->bufe,s,sl); data/osmctools-0.9/src/osmconvert.c:5595:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[40],*sp; data/osmctools-0.9/src/osmconvert.c:6328:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char k[modi__pairkM+8]; // key to compare; data/osmctools-0.9/src/osmconvert.c:6330:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char v[modi__pairkM+8]; // value to the key in .k[]; data/osmctools-0.9/src/osmconvert.c:6334:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char nk[modi__pairkM+2]; // new key data/osmctools-0.9/src/osmconvert.c:6335:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char nv[modi__pairkM+2]; // new value data/osmctools-0.9/src/osmconvert.c:6809:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char posr__filename[400]= ""; data/osmctools-0.9/src/osmconvert.c:6846:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(posr__filename,filename,sizeof(posr__filename)-2),".2"); data/osmctools-0.9/src/osmconvert.c:6850:13: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). posr__fd= open(posr__filename,O_RDWR|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmconvert.c:7091:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char rr__filename[400]= ""; data/osmctools-0.9/src/osmconvert.c:7126:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(rr__filename,filename,sizeof(rr__filename)-2),".0"); data/osmctools-0.9/src/osmconvert.c:7130:11: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). rr__fd= open(rr__filename,O_RDWR|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmconvert.c:7217:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char cwn__filename[400]= ""; data/osmctools-0.9/src/osmconvert.c:7253:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(cwn__filename,filename,sizeof(cwn__filename)-2),".3"); data/osmctools-0.9/src/osmconvert.c:7257:12: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). cwn__fd= open(cwn__filename,O_RDWR|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmconvert.c:7349:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char cww__filename[400]= ""; data/osmctools-0.9/src/osmconvert.c:7385:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(cww__filename,filename,sizeof(cww__filename)-2),".5"); data/osmctools-0.9/src/osmconvert.c:7389:12: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). cww__fd= open(cww__filename,O_RDWR|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmconvert.c:7813:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char stw__tab[stw__tabM][256]; data/osmctools-0.9/src/osmconvert.c:8036:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char tab[str__tabM][256]; data/osmctools-0.9/src/osmconvert.c:8150:9: [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(str__infop->tab[str__infop->tabi],*s1p,len1+len2+2); data/osmctools-0.9/src/osmconvert.c:8533:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[25]; data/osmctools-0.9/src/osmconvert.c:8645:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[25]; data/osmctools-0.9/src/osmconvert.c:8733:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[25]; data/osmctools-0.9/src/osmconvert.c:8868:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char o5typerole[4000]; data/osmctools-0.9/src/osmconvert.c:9001:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[84],*sp; data/osmctools-0.9/src/osmconvert.c:9961:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[30]; // timestamp as string data/osmctools-0.9/src/osmconvert.c:10363:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char o5mtempfile[400]; // must be static because data/osmctools-0.9/src/osmconvert.c:10489:5: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(o5mtempfile,global_tempfilename, data/osmctools-0.9/src/osmconvert.c:11925:7: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char timestamp[30]; data/osmctools-0.9/src/osmconvert.c:11931:7: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char timestamp[30]; data/osmctools-0.9/src/osmconvert.c:11937:7: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char coord[20]; data/osmctools-0.9/src/osmconvert.c:12263:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[500]; // temporary string for several purposes data/osmctools-0.9/src/osmconvert.c:12265:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char input_file[500]; data/osmctools-0.9/src/osmconvert.c:12268:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char changefile[500]; data/osmctools-0.9/src/osmconvert.c:12269:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char polygon_file[500]; data/osmctools-0.9/src/osmconvert.c:12270:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char minlon[30],maxlon[30],minlat[30],maxlat[30]; data/osmctools-0.9/src/osmconvert.c:12271:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char output_file[550]= ""; // the first three characters data/osmctools-0.9/src/osmconvert.c:12513:23: [2] (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). Risk is low because the source is a constant string. if(file_type_osm) strcpy(s,".osm"); data/osmctools-0.9/src/osmconvert.c:12514:23: [2] (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). Risk is low because the source is a constant string. if(file_type_osc) strcpy(s,".osc"); data/osmctools-0.9/src/osmconvert.c:12515:23: [2] (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). Risk is low because the source is a constant string. if(file_type_o5m) strcpy(s,".o5m"); data/osmctools-0.9/src/osmconvert.c:12516:23: [2] (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). Risk is low because the source is a constant string. if(file_type_o5c) strcpy(s,".o5c"); data/osmctools-0.9/src/osmconvert.c:12517:23: [2] (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). Risk is low because the source is a constant string. if(file_type_pbf) strcpy(s,".pbf"); data/osmctools-0.9/src/osmconvert.c:12531:12: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char border[550]; data/osmctools-0.9/src/osmconvert.c:12607:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char outputfilename[400]= ""; // standard output file name data/osmctools-0.9/src/osmconvert.c:12692:17: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). parafile= fopen(a+l,"r"); data/osmctools-0.9/src/osmfilter.c:477:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_tempfilename[350]= "osmfilter_tempfile"; data/osmctools-0.9/src/osmfilter.c:1088:21: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). read_infop->fd= open(filename,O_RDONLY|O_BINARY); data/osmctools-0.9/src/osmfilter.c:1239:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char write__buf[UINT64_C(16000000)]; data/osmctools-0.9/src/osmfilter.c:1282:16: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). write__fd= open(filename, data/osmctools-0.9/src/osmfilter.c:1416:9: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char st[30]; data/osmctools-0.9/src/osmfilter.c:1536:9: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char st[30]; data/osmctools-0.9/src/osmfilter.c:1551:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1568:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1587:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[30],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1603:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char s[30],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1621:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1646:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1669:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1692:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20],*s1,*s2,c; data/osmctools-0.9/src/osmfilter.c:1717:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[30],*sp; data/osmctools-0.9/src/osmfilter.c:1772:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char name[count__nameL]; data/osmctools-0.9/src/osmfilter.c:1890:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[20+count__nameL+10]; data/osmctools-0.9/src/osmfilter.c:2330:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char k[fil__pairkM+8]; // key to compare; data/osmctools-0.9/src/osmfilter.c:2332:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char v[fil__pairkM+8]; // value to the key in .k[]; data/osmctools-0.9/src/osmfilter.c:3432:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char k[modi__pairkM+8]; // key to compare; data/osmctools-0.9/src/osmfilter.c:3434:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char v[modi__pairkM+8]; // value to the key in .k[]; data/osmctools-0.9/src/osmfilter.c:3438:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char nk[modi__pairkM+2]; // new key data/osmctools-0.9/src/osmfilter.c:3439:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char nv[modi__pairkM+2]; // new value data/osmctools-0.9/src/osmfilter.c:3736:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char rr__filename[400]= ""; data/osmctools-0.9/src/osmfilter.c:3771:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(rr__filename,filename,sizeof(rr__filename)-2),".0"); data/osmctools-0.9/src/osmfilter.c:3775:11: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). rr__fd= open(rr__filename,O_RDWR|O_CREAT|O_TRUNC|O_BINARY,00600); data/osmctools-0.9/src/osmfilter.c:4170:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char stw__tab[stw__tabM][256]; data/osmctools-0.9/src/osmfilter.c:4389:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char tab[str__tabM][256]; data/osmctools-0.9/src/osmfilter.c:4504:9: [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(str__infop->tab[str__infop->tabi],*s1p,len1+len2+2); data/osmctools-0.9/src/osmfilter.c:5022:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char o5typerole[4000]; data/osmctools-0.9/src/osmfilter.c:5908:7: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char s[256]; data/osmctools-0.9/src/osmfilter.c:5984:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char o5mtempfile[400]; // must be static because data/osmctools-0.9/src/osmfilter.c:6043:3: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(o5mtempfile,global_tempfilename, data/osmctools-0.9/src/osmfilter.c:6430:14: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char ids[30],uids[30]; data/osmctools-0.9/src/osmfilter.c:6589:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char outputfilename[400]= ""; // standard output file name data/osmctools-0.9/src/osmfilter.c:6678:17: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). parafile= fopen(a+l,"r"); data/osmctools-0.9/src/osmfilter.c:6805:14: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char k[300]= {0,0,0}; data/osmctools-0.9/src/osmupdate.c:504:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_tempfile_name[450]= ""; data/osmctools-0.9/src/osmupdate.c:510:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_osmconvert_arguments[2000]= ""; data/osmctools-0.9/src/osmupdate.c:517:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_base_url[400]= data/osmctools-0.9/src/osmupdate.c:519:8: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char global_base_url_suffix[100]=""; data/osmctools-0.9/src/osmupdate.c:594:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[500],*command_p,result[1000]; data/osmctools-0.9/src/osmupdate.c:632:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char ts[30]; data/osmctools-0.9/src/osmupdate.c:635:7: [2] (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). Risk is low because the source is a constant string. strcpy(ts,"(no timestamp)"); data/osmctools-0.9/src/osmupdate.c:652:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[1000],*command_p; data/osmctools-0.9/src/osmupdate.c:654:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char result[1000]; data/osmctools-0.9/src/osmupdate.c:658:12: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char newest_timestamp_file_name[400]; data/osmctools-0.9/src/osmupdate.c:664:7: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(newest_timestamp_file_name,global_tempfile_name, data/osmctools-0.9/src/osmupdate.c:711:11: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). fd= open(newest_timestamp_file_name,O_RDONLY); data/osmctools-0.9/src/osmupdate.c:736:7: [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(result,timestamp_p,13); data/osmctools-0.9/src/osmupdate.c:737:7: [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(result+13,timestamp_p+14,3); data/osmctools-0.9/src/osmupdate.c:738:7: [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(result+16,timestamp_p+18,4); data/osmctools-0.9/src/osmupdate.c:743:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char ts[30]; data/osmctools-0.9/src/osmupdate.c:746:7: [2] (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). Risk is low because the source is a constant string. strcpy(ts,"(no timestamp)"); data/osmctools-0.9/src/osmupdate.c:766:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[2000]; char* command_p; data/osmctools-0.9/src/osmupdate.c:768:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char result[1000]; data/osmctools-0.9/src/osmupdate.c:769:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char timestamp_cachefile_name[400]; data/osmctools-0.9/src/osmupdate.c:771:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char timestamp_contents[1000]; // contents of the timestamp data/osmctools-0.9/src/osmupdate.c:782:3: [2] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. Risk is low because the source has a constant maximum length. sprintf(sp,"%09"PRIi32".txt",file_sequence_number); data/osmctools-0.9/src/osmupdate.c:805:10: [2] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. Risk is low because the source has a constant maximum length. l= sprintf(command_p,"%03i/%03i/%03i", data/osmctools-0.9/src/osmupdate.c:817:7: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362). fd= open(timestamp_cachefile_name,O_RDONLY|O_BINARY); data/osmctools-0.9/src/osmupdate.c:838:7: [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(timestamp_contents,timestamp_p,13); data/osmctools-0.9/src/osmupdate.c:839:7: [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(timestamp_contents+13,timestamp_p+14,3); data/osmctools-0.9/src/osmupdate.c:840:7: [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(timestamp_contents+16,timestamp_p+18,4); data/osmctools-0.9/src/osmupdate.c:846:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char ts[30]; data/osmctools-0.9/src/osmupdate.c:849:7: [2] (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). Risk is low because the source is a constant string. strcpy(ts,"(no timestamp)"); data/osmctools-0.9/src/osmupdate.c:889:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char master_cachefile_name[400]; data/osmctools-0.9/src/osmupdate.c:890:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char master_cachefile_name_temp[400]; data/osmctools-0.9/src/osmupdate.c:891:10: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char cachefile_name[max_number_of_changefiles_in_cache][400]; data/osmctools-0.9/src/osmupdate.c:892:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[4000+200*max_number_of_changefiles_in_cache]; data/osmctools-0.9/src/osmupdate.c:895:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char result[1000]; data/osmctools-0.9/src/osmupdate.c:901:5: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(master_cachefile_name,global_tempfile_name, data/osmctools-0.9/src/osmupdate.c:903:5: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(master_cachefile_name_temp,global_tempfile_name, data/osmctools-0.9/src/osmupdate.c:924:5: [2] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. Risk is low because the source has a constant maximum length. sprintf(sp,"%09"PRIi32".osc.gz",file_sequence_number); data/osmctools-0.9/src/osmupdate.c:967:12: [2] (buffer) sprintf: Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or vsnprintf. Risk is low because the source has a constant maximum length. l= sprintf(command_p,"%03i/%03i/%03i.osc.gz", data/osmctools-0.9/src/osmupdate.c:1061:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char final_osmconvert_arguments[2000]; data/osmctools-0.9/src/osmupdate.c:1074:3: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char tempfile_directory[400]; // directory for temporary files data/osmctools-0.9/src/osmupdate.c:1189:14: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. static char gzip_par[3]= ""; data/osmctools-0.9/src/osmupdate.c:1246:9: [2] (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). Risk is low because the source is a constant string. strcpy(global_base_url,"ftp://ftp5.gwdg.de/pub/misc/" data/osmctools-0.9/src/osmupdate.c:1251:9: [2] (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). Risk is low because the source is a constant string. strcpy(global_base_url,"http://"); data/osmctools-0.9/src/osmupdate.c:1338:7: [2] (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). Risk is low because the source is a constant string. strcpy(global_tempfile_name,"osmupdate_temp"DIRSEPS"temp"); data/osmctools-0.9/src/osmupdate.c:1342:7: [2] (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). Risk is low because the source is a constant string. strcpy(sp,"temp"); // add a file name prefix data/osmctools-0.9/src/osmupdate.c:1543:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char master_cachefile_name[400]; data/osmctools-0.9/src/osmupdate.c:1544:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[2000],*command_p; data/osmctools-0.9/src/osmupdate.c:1546:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char result[1000]; data/osmctools-0.9/src/osmupdate.c:1550:5: [2] (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). Risk is low because the source is a constant string. strcpy(stpmcpy(master_cachefile_name,global_tempfile_name, data/osmctools-0.9/src/osmupdate.c:1662:5: [2] (buffer) char: Statically-sized arrays can be improperly restricted, leading to potential overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. char command[500],*command_p,result[1000]; data/osmctools-0.9/src/osmconvert.c:2367:14: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(read_infop->fd,read_bufe,l); data/osmctools-0.9/src/osmconvert.c:2369:14: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(fileno(read_infop->fi),read_bufe,l); data/osmctools-0.9/src/osmconvert.c:5222:7: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). sl= strlen(s); data/osmctools-0.9/src/osmconvert.c:6899:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(posr__fd,posr__buf,sizeof(posr__buf)); data/osmctools-0.9/src/osmconvert.c:6904:11: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r2= read(posr__fd,posr__bufe,8-(r%8)); data/osmctools-0.9/src/osmconvert.c:7180:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(rr__fd,rr__buf,sizeof(rr__buf)); data/osmctools-0.9/src/osmconvert.c:7185:11: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r2= read(rr__fd,rr__bufe,8-(r%8)); // request the missing bytes data/osmctools-0.9/src/osmconvert.c:7294:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(cwn__fd,cwn__buf,sizeof(cwn__buf)); data/osmctools-0.9/src/osmconvert.c:7299:11: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r2= read(cwn__fd,cwn__bufe,8-(r%8)); data/osmctools-0.9/src/osmconvert.c:7426:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(cww__fd,cww__buf,sizeof(cww__buf)); data/osmctools-0.9/src/osmconvert.c:7431:11: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r2= read(cww__fd,cww__bufe,8-(r%8)); data/osmctools-0.9/src/osmconvert.c:8132:11: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len1= strlen(p); data/osmctools-0.9/src/osmconvert.c:8146:13: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len2= strlen(p); data/osmctools-0.9/src/osmfilter.c:1157:12: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(read_infop->fd,read_bufe,l); data/osmctools-0.9/src/osmfilter.c:3822:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(rr__fd,rr__buf,sizeof(rr__buf)); data/osmctools-0.9/src/osmfilter.c:3827:11: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r2= read(rr__fd,rr__bufe,4-(r%4)); // request the missing bytes data/osmctools-0.9/src/osmfilter.c:4486:11: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len1= strlen(p); data/osmctools-0.9/src/osmfilter.c:4500:13: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len2= strlen(p); data/osmctools-0.9/src/osmfilter.c:6812:14: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len= strlen(global_outkey); data/osmctools-0.9/src/osmupdate.c:567:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(fileno(fp),result_p,maxlen); data/osmctools-0.9/src/osmupdate.c:713:12: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(fd,result,sizeof(result)-1); data/osmctools-0.9/src/osmupdate.c:821:8: [1] (buffer) read: Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20). r= read(fd,timestamp_contents,sizeof(timestamp_contents)-1); data/osmctools-0.9/src/osmupdate.c:1274:12: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). len= strlen(a)+3; data/osmctools-0.9/src/osmupdate.c:1337:8: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). if(strlen(global_tempfile_name)<2) // not set yet ANALYSIS SUMMARY: Hits = 201 Lines analyzed = 21915 in approximately 0.55 seconds (39581 lines/second) Physical Source Lines of Code (SLOC) = 16874 Hits@level = [0] 169 [1] 24 [2] 162 [3] 2 [4] 13 [5] 0 Hits@level+ = [0+] 370 [1+] 201 [2+] 177 [3+] 15 [4+] 13 [5+] 0 Hits/KSLOC@level+ = [0+] 21.9272 [1+] 11.9118 [2+] 10.4895 [3+] 0.888942 [4+] 0.770416 [5+] 0 Dot directories skipped = 1 (--followdotdir overrides) 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.