Program.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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[0] == "-NavicatCrypto")
  20. {
  21. }
  22. else if (args[0] == "-TeamViewer")
  23. {
  24. }
  25. else if (args[0] == "-FileZilla")
  26. {
  27. }
  28. else if (args[0] == "-WinSCP")
  29. {
  30. }
  31. else if (args[0] == "-Xmangager")
  32. {
  33. }
  34. else if (args[0] == "-LoginEvent")
  35. {
  36. if (args.Length == 1 && (args[0] == "-4624"))
  37. {
  38. LoginEvent.EventLog_4624();
  39. }
  40. if (args.Length == 1 && (args[0] == "-4625"))
  41. {
  42. LoginEvent.EventLog_4625();
  43. }
  44. }
  45. else if (args[0] == "-Foxmail")
  46. {
  47. String res = FoxmailUtils.decodePW(19, "fff");
  48. System.Console.WriteLine(res);
  49. }
  50. }
  51. static void Welcome()
  52. {
  53. System.Console.WriteLine("");
  54. System.Console.WriteLine("Author: liuyuqi");
  55. System.Console.WriteLine("Email: liuyuqi.gov@msn.cn");
  56. System.Console.WriteLine("");
  57. }
  58. }
  59. }