fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. void insecure_function(char *input) {
  5. char buffer[10];
  6. strcpy(buffer, input);
  7. printf("Entered: %s\n", buffer);
  8. }
  9.  
  10. int main() {
  11. char data[50];
  12. scanf("%s", data);
  13. insecure_function(data);
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Entered: