Browse Source

初始化其他工具

liuyuqi-dellpc 4 years ago
parent
commit
7977a9d685

+ 8 - 2
C#/DecryptPwd.csproj

@@ -45,8 +45,14 @@
   <ItemGroup>
     <Compile Include="Program.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
-    <Compile Include="utils\FoxmailUtils.cs" />
-    <Compile Include="utils\LoginEvent.cs" />
+    <Compile Include="Utils\FileZilla.cs" />
+    <Compile Include="Utils\FoxmailUtils.cs" />
+    <Compile Include="Utils\LoginEvent.cs" />
+    <Compile Include="Utils\Navicat.cs" />
+    <Compile Include="Utils\Net.cs" />
+    <Compile Include="Utils\TeamViewer.cs" />
+    <Compile Include="Utils\WinSCP.cs" />
+    <Compile Include="Utils\Xmangager.cs" />
   </ItemGroup>
   <ItemGroup>
     <None Include="App.config" />

+ 32 - 7
C#/Program.cs

@@ -1,4 +1,4 @@
-using DecryptPwd.utils;
+using DecryptPwd.Utils;
 using System;
 using System.Collections.Generic;
 using System.Linq;
@@ -17,20 +17,45 @@ namespace DecryptPwd
                 System.Console.WriteLine("Usage: DecryptPwd.exe -4624");
                 System.Console.WriteLine("       DecryptPwd.exe -4625");
             }
-            if (args.Length == 1 && (args[0] == "-4624"))
+            if (args[0] == "-NavicatCrypto")
             {
-                LoginEvent.EventLog_4624();
+
+            }
+            else if (args[0] == "-TeamViewer")
+            {
+
+            }
+            else if (args[0] == "-FileZilla")
+            {
+
+            }
+            else if (args[0] == "-WinSCP")
+            {
+
+            }
+            else if (args[0] == "-Xmangager")
+            {
+
+            }
+            else if (args[0] == "-LoginEvent")
+            {
+                if (args.Length == 1 && (args[0] == "-4624"))
+                {
+                    LoginEvent.EventLog_4624();
+                }
+                if (args.Length == 1 && (args[0] == "-4625"))
+                {
+                    LoginEvent.EventLog_4625();
+                }
             }
-            if (args.Length == 1 && (args[0] == "-4625"))
+            else if (args[0] == "-Foxmail")
             {
-                LoginEvent.EventLog_4625();
-            }if (args.Length == 1 && (args[0] == "")) {
                 String res = FoxmailUtils.decodePW(19, "fff");
                 System.Console.WriteLine(res);
             }
         }
 
-       static void Welcome()
+        static void Welcome()
         {
             System.Console.WriteLine("");
             System.Console.WriteLine("Author: liuyuqi");

+ 12 - 0
C#/Utils/FileZilla.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class FileZilla
+    {
+    }
+}

+ 12 - 0
C#/Utils/Navicat.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class Navicat
+    {
+    }
+}

+ 13 - 0
C#/Utils/Net.cs

@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class Net
+    {
+
+    }
+}

+ 12 - 0
C#/Utils/TeamViewer.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class TeamViewer
+    {
+    }
+}

+ 12 - 0
C#/Utils/WinSCP.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class WinSCP
+    {
+    }
+}

+ 12 - 0
C#/Utils/Xmangager.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DecryptPwd.Utils
+{
+    class Xmangager
+    {
+    }
+}

+ 1 - 1
C#/utils/FoxmailUtils.cs

@@ -4,7 +4,7 @@ using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 
-namespace DecryptPwd.utils
+namespace DecryptPwd.Utils
 {
     class FoxmailUtils
     {

+ 1 - 1
C#/utils/LoginEvent.cs

@@ -5,7 +5,7 @@ using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 
-namespace DecryptPwd.utils
+namespace DecryptPwd.Utils
 {
     class LoginEvent
     {