Advertisement
MGM_user1

Untitled

Oct 1st, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7.  
  8. namespace WorkflowTest
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. using (StreamWriter writer = new StreamWriter("Keylloger.txt"))
  15. {
  16. for (double i = 0; i < 10000000000000000000; i++)
  17. {
  18. string str = Convert.ToString(Console.ReadKey());
  19. Console.WriteLine(str);
  20. writer.Write(str);
  21. }
  22. /* if (Convert.ToString(Console.ReadKey()) == "a")
  23. {
  24. writer.Write("a");
  25. }*/
  26. // string strText = Convert.ToString(Console.ReadKey());
  27. // Console.WriteLine(strText);
  28. // writer.Write(strText);
  29.  
  30. }
  31. }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement