Unnamed: 0 int64 0 56k | source_code stringlengths 55 5.98k | comments stringlengths 2 1.76k | label stringclasses 68 values | dataset_name stringclasses 1 value | file_name stringlengths 208 265 | function stringlengths 27 87 | decompiled_code stringlengths 68 3.97k | compiler_options stringclasses 1 value |
|---|---|---|---|---|---|---|---|---|
7,400 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_bad()
{
int data;
/* Initialize data */
data = -1;
if(staticFive==5)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110462/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
if (staticFive == 5) {
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,401 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110462/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_07_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,402 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_bad()
{
int data;
/* Initialize data */
data = -1;
if(staticReturnsTrue())
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110463/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_bad(void)
{
int iVar1;
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
iVar1 = staticReturnsTrue();
if (iVar1 != 0) {
func_0x00400ab0(stdin,&UNK_00401294,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,403 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110463/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_08_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,404 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_bad()
{
int data;
/* Initialize data */
data = -1;
if(GLOBAL_CONST_TRUE)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110464/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
if (GLOBAL_CONST_TRUE != 0) {
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,405 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110464/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_09_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,406 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_bad()
{
int data;
/* Initialize data */
data = -1;
if(globalTrue)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110465/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
if (globalTrue != 0) {
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,407 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110465/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_10_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,408 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_bad()
{
int data;
/* Initialize data */
data = -1;
if(globalReturnsTrue())
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110466/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_bad(void)
{
int iVar1;
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
iVar1 = globalReturnsTrue();
if (iVar1 != 0) {
func_0x00400ab0(stdin,&UNK_00401284,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,409 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110466/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_11_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,410 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_bad()
{
int data;
/* Initialize data */
data = -1;
if(globalReturnsTrueOrFalse())
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
else
{
/* FIX: Set data to a relatively small number greater than zero */
data = 20;
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* FIX: Set data to a relatively small number greater than zero */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110467/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_bad(void)
{
int iVar1;
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
iVar1 = globalReturnsTrueOrFalse();
if (iVar1 == 0) {
iStack_1c = 0x14;
}
else {
func_0x00400ab0(stdin,&UNK_00401284,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,411 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110467/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_12_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,412 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_bad()
{
int data;
/* Initialize data */
data = -1;
if(GLOBAL_CONST_FIVE==5)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110468/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
if (GLOBAL_CONST_FIVE == 5) {
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,413 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110468/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_13_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,414 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_bad()
{
int data;
/* Initialize data */
data = -1;
if(globalFive==5)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110469/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
if (globalFive == 5) {
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
}
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,415 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110469/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_14_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,416 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_bad()
{
int data;
/* Initialize data */
data = -1;
switch(6)
{
case 6:
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
break;
default:
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
break;
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110470/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,417 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110470/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_15_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,418 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_bad()
{
int data;
/* Initialize data */
data = -1;
while(1)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
break;
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110471/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,419 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110471/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_16_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,420 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_bad()
{
int i;
int data;
/* Initialize data */
data = -1;
for(i = 0; i < 1; i++)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110472/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_bad(void)
{
int iStack_24;
undefined4 *puStack_20;
ulong uStack_18;
int iStack_c;
iStack_24 = -1;
for (iStack_c = 0; iStack_c < 1; iStack_c = iStack_c + 1) {
func_0x00400ab0(stdin,&UNK_00401284,&iStack_24);
}
puStack_20 = (undefined4 *)func_0x00400b40((long)iStack_24 << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_24; uStack_18 = uStack_18 + 1) {
puStack_20[uStack_18] = 0;
}
printIntLine(*puStack_20);
func_0x00400aa0(puStack_20);
return;
}
| ['gcc'] |
7,421 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110472/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_17_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,422 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_bad()
{
int data;
/* Initialize data */
data = -1;
goto source;
source:
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110473/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_bad(void)
{
int iStack_1c;
undefined4 *puStack_18;
ulong uStack_10;
iStack_1c = -1;
func_0x00400ab0(stdin,&UNK_00401274,&iStack_1c);
puStack_18 = (undefined4 *)func_0x00400b40((long)iStack_1c << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_1c; uStack_10 = uStack_10 + 1) {
puStack_18[uStack_10] = 0;
}
printIntLine(*puStack_18);
func_0x00400aa0(puStack_18);
return;
}
| ['gcc'] |
7,423 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110473/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_18_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,424 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_bad()
{
int data;
/* Initialize data */
data = -1;
badStatic = 1; /* true */
data = badSource(data);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* true */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110474/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_bad(void)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
badStatic = 1;
iVar1 = badSource(0xffffffff);
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,425 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110474/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_21_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,426 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_bad()
{
int data;
/* Initialize data */
data = -1;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badGlobal = 1; /* true */
data = CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badSource(data);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* true */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110475/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_bad(void)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badGlobal = 1;
iVar1 = CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badSource(0xffffffff);
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,427 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110475/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,428 | int CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badSource(int data)
{
if(CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badGlobal)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
}
return data;
} | ['/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110475/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badSource |
undefined4
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badSource(undefined4 param_1)
{
undefined4 uStack_c;
uStack_c = param_1;
if (CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_badGlobal != 0) {
func_0x00400ab0(stdin,&UNK_004012a4,&uStack_c);
}
return uStack_c;
}
| ['gcc'] |
7,429 | int CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B1Source(int data)
{
if(CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B1Global)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Set data to a relatively small number greater than zero */
data = 20;
}
return data;
} | ['/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */', '/* FIX: Set data to a relatively small number greater than zero */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110475/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B1Source |
undefined4
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B1Source(undefined4 param_1)
{
undefined4 uStack_c;
if (CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B1Global == 0) {
uStack_c = 0x14;
}
else {
printLine(&UNK_004012c4);
uStack_c = param_1;
}
return uStack_c;
}
| ['gcc'] |
7,430 | int CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B2Source(int data)
{
if(CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B2Global)
{
/* FIX: Set data to a relatively small number greater than zero */
data = 20;
}
return data;
} | ['/* FIX: Set data to a relatively small number greater than zero */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110475/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B2Source |
undefined4
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B2Source(undefined4 param_1)
{
undefined4 uStack_c;
uStack_c = param_1;
if (CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_22_goodG2B2Global != 0) {
uStack_c = 0x14;
}
return uStack_c;
}
| ['gcc'] |
7,431 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
{
int dataCopy = data;
int data = dataCopy;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110476/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_bad(void)
{
int iStack_24;
undefined4 *puStack_20;
int iStack_18;
int iStack_14;
ulong uStack_10;
iStack_24 = -1;
func_0x00400ab0(stdin,&UNK_00401284,&iStack_24);
iStack_14 = iStack_24;
iStack_18 = iStack_24;
puStack_20 = (undefined4 *)func_0x00400b40((long)iStack_24 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_18; uStack_10 = uStack_10 + 1) {
puStack_20[uStack_10] = 0;
}
printIntLine(*puStack_20);
func_0x00400aa0(puStack_20);
return;
}
| ['gcc'] |
7,432 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110476/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_31_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,433 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_bad()
{
int data;
int *dataPtr1 = &data;
int *dataPtr2 = &data;
/* Initialize data */
data = -1;
{
int data = *dataPtr1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
*dataPtr1 = data;
}
{
int data = *dataPtr2;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110477/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_bad |
/* WARNING: Restarted to delay deadcode elimination for space: stack */
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_bad(void)
{
int iStack_38;
int iStack_34;
undefined4 *puStack_30;
int iStack_24;
int *piStack_20;
int *piStack_18;
ulong uStack_10;
piStack_18 = &iStack_34;
piStack_20 = &iStack_34;
iStack_34 = -1;
iStack_38 = -1;
func_0x00400ab0(stdin,&UNK_00401294,&iStack_38);
*piStack_18 = iStack_38;
iStack_24 = *piStack_20;
puStack_30 = (undefined4 *)func_0x00400b40((long)iStack_24 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_24; uStack_10 = uStack_10 + 1) {
puStack_30[uStack_10] = 0;
}
printIntLine(*puStack_30);
func_0x00400aa0(puStack_30);
return;
}
| ['gcc'] |
7,434 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110477/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_32_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,435 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_bad()
{
int data;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_unionType myUnion;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
myUnion.unionFirst = data;
{
int data = myUnion.unionSecond;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110479/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_bad(void)
{
int iStack_24;
undefined4 *puStack_20;
int iStack_14;
ulong uStack_10;
iStack_24 = -1;
func_0x00400ab0(stdin,&UNK_00401284,&iStack_24);
iStack_14 = iStack_24;
puStack_20 = (undefined4 *)func_0x00400b40((long)iStack_24 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iStack_14; uStack_10 = uStack_10 + 1) {
puStack_20[uStack_10] = 0;
}
printIntLine(*puStack_20);
func_0x00400aa0(puStack_20);
return;
}
| ['gcc'] |
7,436 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110479/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_34_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,437 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_badSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110480/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,438 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_badSink(data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110480/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_00401284,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_badSink(uStack_c);
return;
}
| ['gcc'] |
7,439 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_goodG2BSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110480/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,440 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110480/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_41_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,441 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_bad()
{
int data;
/* Initialize data */
data = -1;
data = badSource(data);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110481/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_bad(void)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = badSource(0xffffffff);
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,442 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110481/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_42_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,443 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_badSink(data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110485/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_00401284,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_badSink(uStack_c);
return;
}
| ['gcc'] |
7,444 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110485/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,445 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_badSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110485/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,446 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_goodG2BSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110485/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_51b_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,447 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_badSink(data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_004012a4,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_badSink(uStack_c);
return;
}
| ['gcc'] |
7,448 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,449 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_badSink(param_1);
return;
}
| ['gcc'] |
7,450 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52b_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,451 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_badSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,452 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_goodG2BSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110486/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_52c_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,453 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_badSink(data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_004012b4,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_badSink(uStack_c);
return;
}
| ['gcc'] |
7,454 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,455 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_badSink(param_1);
return;
}
| ['gcc'] |
7,456 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53b_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,457 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_badSink(param_1);
return;
}
| ['gcc'] |
7,458 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53c_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,459 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_badSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,460 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_goodG2BSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110487/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_53d_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,461 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_badSink(data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_004012d4,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_badSink(uStack_c);
return;
}
| ['gcc'] |
7,462 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,463 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_badSink(param_1);
return;
}
| ['gcc'] |
7,464 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54b_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,465 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_badSink(param_1);
return;
}
| ['gcc'] |
7,466 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54c_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,467 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_badSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_badSink(data);
} | [] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_badSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_badSink(param_1);
return;
}
| ['gcc'] |
7,468 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_goodG2BSink(int data)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_goodG2BSink(data);
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54d_goodG2BSink(undefined4 param_1)
{
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_goodG2BSink(param_1);
return;
}
| ['gcc'] |
7,469 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_badSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,470 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_goodG2BSink(int data)
{
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110488/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_54e_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,471 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_bad()
{
int data;
/* Initialize data */
data = -1;
data = CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_badSource(data);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110489/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_bad(void)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_badSource(0xffffffff);
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,472 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110489/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,473 | int CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_badSource(int data)
{
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
return data;
} | ['/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110489/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_badSource |
undefined4
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_badSource(undefined4 param_1)
{
undefined4 uStack_c;
uStack_c = param_1;
func_0x00400ab0(stdin,&UNK_00401294,&uStack_c);
return uStack_c;
}
| ['gcc'] |
7,474 | int CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_goodG2BSource(int data)
{
/* FIX: Set data to a relatively small number greater than zero */
data = 20;
return data;
} | ['/* FIX: Set data to a relatively small number greater than zero */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110489/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_goodG2BSource |
undefined4 CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_61b_goodG2BSource(void)
{
return 0x14;
}
| ['gcc'] |
7,475 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_badSink(&data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110491/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_00401294,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_badSink(&uStack_c);
return;
}
| ['gcc'] |
7,476 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110491/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,477 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_badSink(int * dataPtr)
{
int data = *dataPtr;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110491/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_badSink(int *param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *param_1;
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,478 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_goodG2BSink(int * dataPtr)
{
int data = *dataPtr;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110491/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_63b_goodG2BSink(int *param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *param_1;
puVar2 = (undefined4 *)func_0x00400ab0((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400a20(puVar2);
return;
}
| ['gcc'] |
7,479 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_bad()
{
int data;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_badSink(&data);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110492/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_004012a4,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_badSink(&uStack_c);
return;
}
| ['gcc'] |
7,480 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110492/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,481 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_badSink(void * dataVoidPtr)
{
/* cast void pointer to a pointer of the appropriate type */
int * dataPtr = (int *)dataVoidPtr;
/* dereference dataPtr into data */
int data = (*dataPtr);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* cast void pointer to a pointer of the appropriate type */', '/* dereference dataPtr into data */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110492/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_badSink(int *param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *param_1;
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,482 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_goodG2BSink(void * dataVoidPtr)
{
/* cast void pointer to a pointer of the appropriate type */
int * dataPtr = (int *)dataVoidPtr;
/* dereference dataPtr into data */
int data = (*dataPtr);
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* cast void pointer to a pointer of the appropriate type */', '/* dereference dataPtr into data */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110492/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_64b_goodG2BSink(int *param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *param_1;
puVar2 = (undefined4 *)func_0x00400ab0((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400a20(puVar2);
return;
}
| ['gcc'] |
7,483 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_bad()
{
int data;
int dataArray[5];
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
/* put data in array */
dataArray[2] = data;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_badSink(dataArray);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */', '/* put data in array */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110494/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_bad(void)
{
undefined auStack_28 [8];
undefined4 uStack_20;
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_00401294,&uStack_c);
uStack_20 = uStack_c;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_badSink(auStack_28);
return;
}
| ['gcc'] |
7,484 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110494/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,485 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_badSink(int dataArray[])
{
/* copy data out of dataArray */
int data = dataArray[2];
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* copy data out of dataArray */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110494/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_badSink(long param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *(int *)(param_1 + 8);
puVar2 = (undefined4 *)func_0x00400b40((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400aa0(puVar2);
return;
}
| ['gcc'] |
7,486 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_goodG2BSink(int dataArray[])
{
int data = dataArray[2];
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110494/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_66b_goodG2BSink(long param_1)
{
int iVar1;
undefined4 *puVar2;
ulong uStack_10;
iVar1 = *(int *)(param_1 + 8);
puVar2 = (undefined4 *)func_0x00400ab0((long)iVar1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)iVar1; uStack_10 = uStack_10 + 1) {
puVar2[uStack_10] = 0;
}
printIntLine(*puVar2);
func_0x00400a20(puVar2);
return;
}
| ['gcc'] |
7,487 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_bad()
{
int data;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_structType myStruct;
/* Initialize data */
data = -1;
/* POTENTIAL FLAW: Read data from the console using fscanf() */
fscanf(stdin, "%d", &data);
myStruct.structFirst = data;
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_badSink(myStruct);
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data from the console using fscanf() */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110495/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_bad(void)
{
undefined4 uStack_c;
uStack_c = 0xffffffff;
func_0x00400ab0(stdin,&UNK_00401294,&uStack_c);
CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_badSink(uStack_c);
return;
}
| ['gcc'] |
7,488 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110495/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67a.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,489 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_badSink(CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_structType myStruct)
{
int data = myStruct.structFirst;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110495/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_badSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_badSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400b40((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400aa0(puVar1);
return;
}
| ['gcc'] |
7,490 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_goodG2BSink(CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67_structType myStruct)
{
int data = myStruct.structFirst;
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110495/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_goodG2BSink |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_fscanf_67b_goodG2BSink(int param_1)
{
undefined4 *puVar1;
ulong uStack_10;
puVar1 = (undefined4 *)func_0x00400ab0((long)param_1 << 2);
for (uStack_10 = 0; uStack_10 < (ulong)(long)param_1; uStack_10 = uStack_10 + 1) {
puVar1[uStack_10] = 0;
}
printIntLine(*puVar1);
func_0x00400a20(puVar1);
return;
}
| ['gcc'] |
7,491 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_bad()
{
int data;
/* Initialize data */
data = -1;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data using a listen socket */', '/* Abort on error or the connection was closed */', '/* NUL-terminate the string */', '/* Convert to int */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110504/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_bad(void)
{
int iVar1;
undefined auStack_46 [14];
undefined2 uStack_38;
undefined2 uStack_36;
undefined4 uStack_34;
undefined4 *puStack_28;
int iStack_20;
int iStack_1c;
ulong uStack_18;
int iStack_10;
int iStack_c;
iStack_c = -1;
iStack_1c = 0xffffffff;
iStack_10 = -1;
iStack_1c = func_0x00400dd0(2,1,6);
if (iStack_1c != -1) {
func_0x00400cd0(&uStack_38,0,0x10);
uStack_38 = 2;
uStack_34 = 0;
uStack_36 = func_0x00400cb0(0x6987);
iVar1 = func_0x00400d80(iStack_1c,&uStack_38,0x10);
if ((((iVar1 != -1) && (iVar1 = func_0x00400d70(iStack_1c,5), iVar1 != -1)) &&
(iStack_10 = func_0x00400d90(iStack_1c,0,0), iStack_10 != -1)) &&
((iStack_20 = func_0x00400c80(iStack_10,auStack_46,0xd,0), iStack_20 != -1 &&
(iStack_20 != 0)))) {
auStack_46[iStack_20] = 0;
iStack_c = func_0x00400da0(auStack_46);
}
}
if (iStack_1c != -1) {
func_0x00400ce0(iStack_1c);
}
if (iStack_10 != -1) {
func_0x00400ce0(iStack_10);
}
puStack_28 = (undefined4 *)func_0x00400d40((long)iStack_c << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_c; uStack_18 = uStack_18 + 1) {
puStack_28[uStack_18] = 0;
}
printIntLine(*puStack_28);
func_0x00400c70(puStack_28);
return;
}
| ['gcc'] |
7,492 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_good()
{
goodG2B();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110504/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_01_good(void)
{
goodG2B();
return;
}
| ['gcc'] |
7,493 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_bad()
{
int data;
/* Initialize data */
data = -1;
if(1)
{
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data using a listen socket */', '/* Abort on error or the connection was closed */', '/* NUL-terminate the string */', '/* Convert to int */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110505/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_bad(void)
{
int iVar1;
undefined auStack_46 [14];
undefined2 uStack_38;
undefined2 uStack_36;
undefined4 uStack_34;
undefined4 *puStack_28;
int iStack_20;
int iStack_1c;
ulong uStack_18;
int iStack_10;
int iStack_c;
iStack_c = -1;
iStack_1c = 0xffffffff;
iStack_10 = -1;
iStack_1c = func_0x00400dd0(2,1,6);
if (iStack_1c != -1) {
func_0x00400cd0(&uStack_38,0,0x10);
uStack_38 = 2;
uStack_34 = 0;
uStack_36 = func_0x00400cb0(0x6987);
iVar1 = func_0x00400d80(iStack_1c,&uStack_38,0x10);
if ((((iVar1 != -1) && (iVar1 = func_0x00400d70(iStack_1c,5), iVar1 != -1)) &&
(iStack_10 = func_0x00400d90(iStack_1c,0,0), iStack_10 != -1)) &&
((iStack_20 = func_0x00400c80(iStack_10,auStack_46,0xd,0), iStack_20 != -1 &&
(iStack_20 != 0)))) {
auStack_46[iStack_20] = 0;
iStack_c = func_0x00400da0(auStack_46);
}
}
if (iStack_1c != -1) {
func_0x00400ce0(iStack_1c);
}
if (iStack_10 != -1) {
func_0x00400ce0(iStack_10);
}
puStack_28 = (undefined4 *)func_0x00400d40((long)iStack_c << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_c; uStack_18 = uStack_18 + 1) {
puStack_28[uStack_18] = 0;
}
printIntLine(*puStack_28);
func_0x00400c70(puStack_28);
return;
}
| ['gcc'] |
7,494 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110505/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_02_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,495 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_bad()
{
int data;
/* Initialize data */
data = -1;
if(5==5)
{
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data using a listen socket */', '/* Abort on error or the connection was closed */', '/* NUL-terminate the string */', '/* Convert to int */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110506/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_bad(void)
{
int iVar1;
undefined auStack_46 [14];
undefined2 uStack_38;
undefined2 uStack_36;
undefined4 uStack_34;
undefined4 *puStack_28;
int iStack_20;
int iStack_1c;
ulong uStack_18;
int iStack_10;
int iStack_c;
iStack_c = -1;
iStack_1c = 0xffffffff;
iStack_10 = -1;
iStack_1c = func_0x00400dd0(2,1,6);
if (iStack_1c != -1) {
func_0x00400cd0(&uStack_38,0,0x10);
uStack_38 = 2;
uStack_34 = 0;
uStack_36 = func_0x00400cb0(0x6987);
iVar1 = func_0x00400d80(iStack_1c,&uStack_38,0x10);
if ((((iVar1 != -1) && (iVar1 = func_0x00400d70(iStack_1c,5), iVar1 != -1)) &&
(iStack_10 = func_0x00400d90(iStack_1c,0,0), iStack_10 != -1)) &&
((iStack_20 = func_0x00400c80(iStack_10,auStack_46,0xd,0), iStack_20 != -1 &&
(iStack_20 != 0)))) {
auStack_46[iStack_20] = 0;
iStack_c = func_0x00400da0(auStack_46);
}
}
if (iStack_1c != -1) {
func_0x00400ce0(iStack_1c);
}
if (iStack_10 != -1) {
func_0x00400ce0(iStack_10);
}
puStack_28 = (undefined4 *)func_0x00400d40((long)iStack_c << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_c; uStack_18 = uStack_18 + 1) {
puStack_28[uStack_18] = 0;
}
printIntLine(*puStack_28);
func_0x00400c70(puStack_28);
return;
}
| ['gcc'] |
7,496 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110506/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_03_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,497 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_bad()
{
int data;
/* Initialize data */
data = -1;
if(STATIC_CONST_TRUE)
{
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data using a listen socket */', '/* Abort on error or the connection was closed */', '/* NUL-terminate the string */', '/* Convert to int */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110507/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_bad(void)
{
int iVar1;
undefined auStack_46 [14];
undefined2 uStack_38;
undefined2 uStack_36;
undefined4 uStack_34;
undefined4 *puStack_28;
int iStack_20;
int iStack_1c;
ulong uStack_18;
int iStack_10;
int iStack_c;
iStack_c = -1;
iStack_1c = 0xffffffff;
iStack_10 = -1;
iStack_1c = func_0x00400dd0(2,1,6);
if (iStack_1c != -1) {
func_0x00400cd0(&uStack_38,0,0x10);
uStack_38 = 2;
uStack_34 = 0;
uStack_36 = func_0x00400cb0(0x6987);
iVar1 = func_0x00400d80(iStack_1c,&uStack_38,0x10);
if ((((iVar1 != -1) && (iVar1 = func_0x00400d70(iStack_1c,5), iVar1 != -1)) &&
(iStack_10 = func_0x00400d90(iStack_1c,0,0), iStack_10 != -1)) &&
((iStack_20 = func_0x00400c80(iStack_10,auStack_46,0xd,0), iStack_20 != -1 &&
(iStack_20 != 0)))) {
auStack_46[iStack_20] = 0;
iStack_c = func_0x00400da0(auStack_46);
}
}
if (iStack_1c != -1) {
func_0x00400ce0(iStack_1c);
}
if (iStack_10 != -1) {
func_0x00400ce0(iStack_10);
}
puStack_28 = (undefined4 *)func_0x00400d40((long)iStack_c << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_c; uStack_18 = uStack_18 + 1) {
puStack_28[uStack_18] = 0;
}
printIntLine(*puStack_28);
func_0x00400c70(puStack_28);
return;
}
| ['gcc'] |
7,498 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_good()
{
goodG2B1();
goodG2B2();
} | [] | null | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110507/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_good |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_04_good(void)
{
goodG2B1();
goodG2B2();
return;
}
| ['gcc'] |
7,499 | void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_05_bad()
{
int data;
/* Initialize data */
data = -1;
if(staticTrue)
{
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to int */
data = atoi(inputBuffer);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
}
{
size_t i;
int *intPointer;
/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value
* so that the for loop doing the initialization causes a buffer overflow */
intPointer = (int*)malloc(data * sizeof(int));
for (i = 0; i < (size_t)data; i++)
{
intPointer[i] = 0; /* Potentially writes beyond the boundary of intPointer */
}
printIntLine(intPointer[0]);
free(intPointer);
}
} | ['/* Initialize data */', '/* POTENTIAL FLAW: Read data using a listen socket */', '/* Abort on error or the connection was closed */', '/* NUL-terminate the string */', '/* Convert to int */', '/* POTENTIAL FLAW: if data * sizeof(int) > SIZE_MAX, overflows to a small value\r\n * so that the for loop doing the initialization causes a buffer overflow */', '/* Potentially writes beyond the boundary of intPointer */'] | ['CWE680'] | mvd | /work/xgk011/.cache/huggingface/datasets/downloads/extracted/486fbd3d4a8ebc225e93d9cfb666bef6ac127e67788d52f03aa0e741860aa84a/muVulDeePecker-master/source files/upload_source_1/110508/CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_05.c | CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_05_bad |
void CWE680_Integer_Overflow_to_Buffer_Overflow__malloc_listen_socket_05_bad(void)
{
int iVar1;
undefined auStack_46 [14];
undefined2 uStack_38;
undefined2 uStack_36;
undefined4 uStack_34;
undefined4 *puStack_28;
int iStack_20;
int iStack_1c;
ulong uStack_18;
int iStack_10;
int iStack_c;
iStack_c = -1;
if (staticTrue != 0) {
iStack_1c = 0xffffffff;
iStack_10 = -1;
iStack_1c = func_0x00400dd0(2,1,6);
if (iStack_1c != -1) {
func_0x00400cd0(&uStack_38,0,0x10);
uStack_38 = 2;
uStack_34 = 0;
uStack_36 = func_0x00400cb0(0x6987);
iVar1 = func_0x00400d80(iStack_1c,&uStack_38,0x10);
if ((((iVar1 != -1) && (iVar1 = func_0x00400d70(iStack_1c,5), iVar1 != -1)) &&
(iStack_10 = func_0x00400d90(iStack_1c,0,0), iStack_10 != -1)) &&
((iStack_20 = func_0x00400c80(iStack_10,auStack_46,0xd,0), iStack_20 != -1 &&
(iStack_20 != 0)))) {
auStack_46[iStack_20] = 0;
iStack_c = func_0x00400da0(auStack_46);
}
}
if (iStack_1c != -1) {
func_0x00400ce0(iStack_1c);
}
if (iStack_10 != -1) {
func_0x00400ce0(iStack_10);
}
}
puStack_28 = (undefined4 *)func_0x00400d40((long)iStack_c << 2);
for (uStack_18 = 0; uStack_18 < (ulong)(long)iStack_c; uStack_18 = uStack_18 + 1) {
puStack_28[uStack_18] = 0;
}
printIntLine(*puStack_28);
func_0x00400c70(puStack_28);
return;
}
| ['gcc'] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.