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
bundle exec ruby -Itest path/to/test/file.rb |
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
import code; code.interact(local=dict(globals(), **locals())) |
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
\>{0,1}([^\s]*)\s+(?:Virus identified|Found)\s+([^\s:]+) |
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 <windows.h> | |
#include <iostream> | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'x'; | |
} | |
} | |
void exec(char * d, int n) { |
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 <windows.h> | |
#include <iostream> | |
#define TOO_MUCH_MEM 100000000 | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'f'; | |
} | |
} |
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 <windows.h> | |
#include <iostream> | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'f'; | |
} | |
} |
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 <windows.h> | |
#include <iostream> | |
#pragma warning(disable:4996) | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'f'; | |
} | |
} |
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 <windows.h> | |
#include <iostream> | |
#define FILE_PATH "C:\\Users\\ferna\\Desktop\\tmp.file" | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'f'; | |
} | |
} |
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 <windows.h> | |
#include <iostream> | |
#include <Wininet.h> | |
#pragma comment(lib, "Wininet.lib") | |
void decrypt(char * b, char * c, int n) { | |
for (int i = 0; i < n; i++) { | |
c[i] = b[i] ^ 'f'; | |
} |
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
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab |
OlderNewer