exploitable.c 181 B

123456789101112
  1. #include <stdio.h>
  2. void exploitableFunction (void) {
  3. char small[30];
  4. gets (small);
  5. printf("%s\n", small);
  6. }
  7. int main(void) {
  8. exploitableFunction();
  9. return 0;
  10. }