Program.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using DecryptPwd.utils;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace DecryptPwd
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Welcome();
  14. if (args.Length == 0)
  15. {
  16. System.Console.WriteLine("Usage: DecryptPwd.exe -4624");
  17. System.Console.WriteLine(" DecryptPwd.exe -4625");
  18. }
  19. if (args.Length == 1 && (args[0] == "-4624"))
  20. {
  21. LoginEvent.EventLog_4624();
  22. }
  23. if (args.Length == 1 && (args[0] == "-4625"))
  24. {
  25. LoginEvent.EventLog_4625();
  26. }if (args.Length == 1 && (args[0] == "")) {
  27. String res = FoxmailUtils.decodePW(19, "fff");
  28. System.Console.WriteLine(res);
  29. }
  30. }
  31. static void Welcome()
  32. {
  33. System.Console.WriteLine("");
  34. System.Console.WriteLine("Author: liuyuqi");
  35. System.Console.WriteLine("Email: liuyuqi.gov@msn.cn");
  36. System.Console.WriteLine("");
  37. }
  38. }
  39. }