gitextract_dgoijda3/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── WPELibrary/ │ ├── Lib/ │ │ ├── IconExtractor/ │ │ │ ├── IconExtractor.cs │ │ │ └── IconUtil.cs │ │ ├── MultiLanguage.cs │ │ ├── NativeMethods/ │ │ │ ├── Kernel32.cs │ │ │ ├── Mswsock.cs │ │ │ ├── User32.cs │ │ │ ├── WS2_32.cs │ │ │ └── WSock32.cs │ │ ├── Proxy_AccountInfo.cs │ │ ├── Proxy_AuthInfo.cs │ │ ├── Proxy_MapLocal.cs │ │ ├── Proxy_MapRemote.cs │ │ ├── Socket_BitInfo.cs │ │ ├── Socket_Cache.cs │ │ ├── Socket_FilterInfo.cs │ │ ├── Socket_LogInfo.cs │ │ ├── Socket_Operation.cs │ │ ├── Socket_PacketInfo.cs │ │ ├── Socket_ProxyData.cs │ │ ├── Socket_ProxyTCP.cs │ │ ├── Socket_ProxyUDP.cs │ │ ├── Socket_Robot.cs │ │ ├── Socket_RobotInfo.cs │ │ ├── Socket_Send.cs │ │ ├── Socket_SendInfo.cs │ │ ├── UserControl/ │ │ │ └── HotkeyTextBox.cs │ │ ├── WebAPI/ │ │ │ ├── CCProxy_Controller.cs │ │ │ ├── ProxyAccount_Controller.cs │ │ │ ├── ProxyInfo_Controller.cs │ │ │ ├── SocketInfo_Controller.cs │ │ │ ├── Socket_Web.cs │ │ │ └── SystemInfo_Controller.cs │ │ └── WinSockHook.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── app.manifest │ ├── Proxy_AccountAuthForm.Designer.cs │ ├── Proxy_AccountAuthForm.cs │ ├── Proxy_AccountAuthForm.en-US.resx │ ├── Proxy_AccountAuthForm.resx │ ├── Proxy_AccountDevicesForm.Designer.cs │ ├── Proxy_AccountDevicesForm.cs │ ├── Proxy_AccountDevicesForm.en-US.resx │ ├── Proxy_AccountDevicesForm.resx │ ├── Proxy_AccountForm.Designer.cs │ ├── Proxy_AccountForm.cs │ ├── Proxy_AccountForm.en-US.resx │ ├── Proxy_AccountForm.resx │ ├── Proxy_AccountLinksForm.Designer.cs │ ├── Proxy_AccountLinksForm.cs │ ├── Proxy_AccountLinksForm.en-US.resx │ ├── Proxy_AccountLinksForm.resx │ ├── Proxy_AccountListForm.Designer.cs │ ├── Proxy_AccountListForm.cs │ ├── Proxy_AccountListForm.en-US.resx │ ├── Proxy_AccountListForm.resx │ ├── Proxy_AccountLoginForm.Designer.cs │ ├── Proxy_AccountLoginForm.cs │ ├── Proxy_AccountLoginForm.en-US.resx │ ├── Proxy_AccountLoginForm.resx │ ├── Proxy_AccountTimeForm.Designer.cs │ ├── Proxy_AccountTimeForm.cs │ ├── Proxy_AccountTimeForm.en-US.resx │ ├── Proxy_AccountTimeForm.resx │ ├── Proxy_MapLocalForm.Designer.cs │ ├── Proxy_MapLocalForm.cs │ ├── Proxy_MapLocalForm.en-US.resx │ ├── Proxy_MapLocalForm.resx │ ├── Proxy_MapLocalListForm.Designer.cs │ ├── Proxy_MapLocalListForm.cs │ ├── Proxy_MapLocalListForm.en-US.resx │ ├── Proxy_MapLocalListForm.resx │ ├── Proxy_MapRemoteForm.Designer.cs │ ├── Proxy_MapRemoteForm.cs │ ├── Proxy_MapRemoteForm.en-US.resx │ ├── Proxy_MapRemoteForm.resx │ ├── Proxy_MapRemoteListForm.Designer.cs │ ├── Proxy_MapRemoteListForm.cs │ ├── Proxy_MapRemoteListForm.en-US.resx │ ├── Proxy_MapRemoteListForm.resx │ ├── Socket_CompareForm.Designer.cs │ ├── Socket_CompareForm.cs │ ├── Socket_CompareForm.en-US.resx │ ├── Socket_CompareForm.resx │ ├── Socket_FilterForm.Designer.cs │ ├── Socket_FilterForm.cs │ ├── Socket_FilterForm.en-US.resx │ ├── Socket_FilterForm.resx │ ├── Socket_FindForm.Designer.cs │ ├── Socket_FindForm.cs │ ├── Socket_FindForm.en-US.resx │ ├── Socket_FindForm.resx │ ├── Socket_Form.Designer.cs │ ├── Socket_Form.cs │ ├── Socket_Form.en-US.resx │ ├── Socket_Form.resx │ ├── Socket_PasswordFrom.Designer.cs │ ├── Socket_PasswordFrom.cs │ ├── Socket_PasswordFrom.en-US.resx │ ├── Socket_PasswordFrom.resx │ ├── Socket_RobotForm.Designer.cs │ ├── Socket_RobotForm.cs │ ├── Socket_RobotForm.en-US.resx │ ├── Socket_RobotForm.resx │ ├── Socket_SendForm.Designer.cs │ ├── Socket_SendForm.cs │ ├── Socket_SendForm.en-US.resx │ ├── Socket_SendForm.resx │ ├── Socket_SendListForm.Designer.cs │ ├── Socket_SendListForm.cs │ ├── Socket_SendListForm.en-US.resx │ ├── Socket_SendListForm.resx │ ├── TextComparison/ │ │ ├── TextCompareForm.Designer.cs │ │ ├── TextCompareForm.cs │ │ ├── TextCompareForm.en-US.resx │ │ ├── TextCompareForm.resx │ │ ├── TextDuplicateForm.Designer.cs │ │ ├── TextDuplicateForm.cs │ │ ├── TextDuplicateForm.en-US.resx │ │ └── TextDuplicateForm.resx │ ├── WPELibrary.csproj │ ├── app.config │ └── packages.config ├── WinSockPacketEditor.sln └── WinsockPacketEditor/ ├── Injector_Form.Designer.cs ├── Injector_Form.cs ├── Injector_Form.en-US.resx ├── Injector_Form.resx ├── Lib/ │ └── Program.cs ├── ProcessList_Form.Designer.cs ├── ProcessList_Form.cs ├── ProcessList_Form.en-US.resx ├── ProcessList_Form.resx ├── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── app.manifest ├── SocketProxy_Form.Designer.cs ├── SocketProxy_Form.cs ├── SocketProxy_Form.en-US.resx ├── SocketProxy_Form.resx ├── SystemMode_Form.Designer.cs ├── SystemMode_Form.cs ├── SystemMode_Form.en-US.resx ├── SystemMode_Form.resx ├── Web/ │ ├── CCProxy/ │ │ └── cn_acclistadmin.htm │ ├── EditAccount.html │ ├── ProxyAccount.html │ ├── SystemLog.html │ ├── footer.html │ ├── header.html │ ├── index.html │ └── web_images/ │ ├── downloads.css │ ├── github-dark.css │ ├── print.css │ ├── script.js │ └── stylesheet.css ├── WinsockPacketEditor.csproj ├── app.config └── packages.config