This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
/** | |
* Says hello to the new reader | |
*/ | |
void welcomeReader(char *inputName) { | |
char name[100]; | |
strcpy(name, inputName); | |
printf("Welcome %s to the buffer overflow article! Happy reading!\n", name); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generates an URL from blob data | |
* @param blob data to use for URL generation | |
*/ | |
function generateURL(blob) { | |
return URL.createObjectURL(blob); | |
} | |
/** | |
* Dispose URL previusly generated to avoid memory issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clear | |
$template = ".\web.config.template" | |
$confFile = "web.config" | |
"`n***********************" | |
"* Configuration script *" | |
"*************************" | |
function askConfirm(){ |