Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- void smash(char *payload)
- {
- char buf[64];
- strcpy(buf, payload);
- printf("%s\n", buf);
- }
- int main(int argc, char *argv[])
- {
- smash(argv[1]);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement