Program.cs 1.7 KB

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