├── .gitignore ├── Alimama ├── Alimama.csproj ├── LoginAware.cs ├── LoginWindow.Designer.cs ├── LoginWindow.cs ├── LoginWindow.resx ├── MockWeb.Designer.cs ├── MockWeb.cs ├── MockWeb.resx ├── Pages │ ├── AllPage.cs │ └── LoginPage.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── AlimamaTests ├── AlimamaTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── UnitTest1.cs └── packages.config ├── CleanFans.sln ├── CleanFans.sln.GhostDoc.xml ├── README.md ├── WeChatCleanFans ├── Controls │ ├── WFriendsList.cs │ └── WFriendsList.resx ├── Login.Designer.cs ├── Login.cs ├── Login.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── 045631291[1].gif │ ├── back.png │ ├── female.png │ ├── holmes2.jpg │ ├── ico_close.bmp │ ├── ico_close.png │ ├── ico_logo.ico │ ├── ico_logo.png │ ├── info.png │ ├── male.png │ └── set.png ├── WeChatCleanFans.csproj ├── WeChatCleanFans.csproj.user ├── app.config └── packages.config ├── WwChatHttpCore ├── Exceptions │ └── LoginRequiredException.cs ├── HTTP │ ├── BaseService.cs │ ├── LoginService.cs │ └── WXService.cs ├── Objects │ ├── WXMsg.cs │ ├── WXUser.cs │ └── WxBaseRequest.cs ├── Properties │ └── AssemblyInfo.cs ├── WeChatHttpCore.csproj ├── WeChatHttpCore.csproj.user └── packages.config ├── WwChatHttpCoreTests ├── App.config ├── HTTP │ ├── LoginServiceTests.cs │ └── WXServiceTests.cs ├── Images │ ├── Penguins.jpg │ └── test.png ├── Properties │ └── AssemblyInfo.cs ├── WwChatHttpCoreTests.csproj └── packages.config └── libs ├── Newtonsoft.Json.dll └── webbrowsers ├── CFLite.dll ├── JavaScriptCore.dll ├── SQLite3.dll ├── WebKit.Interop.dll ├── WebKit.dll ├── WebKitBrowser.dll ├── WebKitBrowser.dll.manifest ├── icudt40.dll ├── icuin40.dll ├── icuuc40.dll ├── libcurl.dll ├── libeay32.dll ├── libexslt.dll ├── libxml2.dll ├── libxslt.dll ├── objc.dll ├── pthreadVC2.dll └── ssleay32.dll /.gitignore: -------------------------------------------------------------------------------- 1 | ##ignore this file## 2 | bin 3 | Log 4 | obj 5 | .vs 6 | /packages 7 | -------------------------------------------------------------------------------- /Alimama/Alimama.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/Alimama.csproj -------------------------------------------------------------------------------- /Alimama/LoginAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/LoginAware.cs -------------------------------------------------------------------------------- /Alimama/LoginWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/LoginWindow.Designer.cs -------------------------------------------------------------------------------- /Alimama/LoginWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/LoginWindow.cs -------------------------------------------------------------------------------- /Alimama/LoginWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/LoginWindow.resx -------------------------------------------------------------------------------- /Alimama/MockWeb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/MockWeb.Designer.cs -------------------------------------------------------------------------------- /Alimama/MockWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/MockWeb.cs -------------------------------------------------------------------------------- /Alimama/MockWeb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/MockWeb.resx -------------------------------------------------------------------------------- /Alimama/Pages/AllPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/Pages/AllPage.cs -------------------------------------------------------------------------------- /Alimama/Pages/LoginPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/Pages/LoginPage.cs -------------------------------------------------------------------------------- /Alimama/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Alimama/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/Alimama/packages.config -------------------------------------------------------------------------------- /AlimamaTests/AlimamaTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/AlimamaTests/AlimamaTests.csproj -------------------------------------------------------------------------------- /AlimamaTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/AlimamaTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AlimamaTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/AlimamaTests/UnitTest1.cs -------------------------------------------------------------------------------- /AlimamaTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/AlimamaTests/packages.config -------------------------------------------------------------------------------- /CleanFans.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/CleanFans.sln -------------------------------------------------------------------------------- /CleanFans.sln.GhostDoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/CleanFans.sln.GhostDoc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WeChatCleanFans 2 | 扫描微信僵尸粉 3 | -------------------------------------------------------------------------------- /WeChatCleanFans/Controls/WFriendsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Controls/WFriendsList.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Controls/WFriendsList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Controls/WFriendsList.resx -------------------------------------------------------------------------------- /WeChatCleanFans/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Login.Designer.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Login.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Login.resx -------------------------------------------------------------------------------- /WeChatCleanFans/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/MainForm.Designer.cs -------------------------------------------------------------------------------- /WeChatCleanFans/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/MainForm.cs -------------------------------------------------------------------------------- /WeChatCleanFans/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/MainForm.resx -------------------------------------------------------------------------------- /WeChatCleanFans/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Program.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Properties/Resources.resx -------------------------------------------------------------------------------- /WeChatCleanFans/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WeChatCleanFans/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Properties/Settings.settings -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/045631291[1].gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/045631291[1].gif -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/back.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/female.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/holmes2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/holmes2.jpg -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/ico_close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/ico_close.bmp -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/ico_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/ico_close.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/ico_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/ico_logo.ico -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/ico_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/ico_logo.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/info.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/male.png -------------------------------------------------------------------------------- /WeChatCleanFans/Resources/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/Resources/set.png -------------------------------------------------------------------------------- /WeChatCleanFans/WeChatCleanFans.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/WeChatCleanFans.csproj -------------------------------------------------------------------------------- /WeChatCleanFans/WeChatCleanFans.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/WeChatCleanFans.csproj.user -------------------------------------------------------------------------------- /WeChatCleanFans/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/app.config -------------------------------------------------------------------------------- /WeChatCleanFans/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WeChatCleanFans/packages.config -------------------------------------------------------------------------------- /WwChatHttpCore/Exceptions/LoginRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/Exceptions/LoginRequiredException.cs -------------------------------------------------------------------------------- /WwChatHttpCore/HTTP/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/HTTP/BaseService.cs -------------------------------------------------------------------------------- /WwChatHttpCore/HTTP/LoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/HTTP/LoginService.cs -------------------------------------------------------------------------------- /WwChatHttpCore/HTTP/WXService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/HTTP/WXService.cs -------------------------------------------------------------------------------- /WwChatHttpCore/Objects/WXMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/Objects/WXMsg.cs -------------------------------------------------------------------------------- /WwChatHttpCore/Objects/WXUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/Objects/WXUser.cs -------------------------------------------------------------------------------- /WwChatHttpCore/Objects/WxBaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/Objects/WxBaseRequest.cs -------------------------------------------------------------------------------- /WwChatHttpCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WwChatHttpCore/WeChatHttpCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/WeChatHttpCore.csproj -------------------------------------------------------------------------------- /WwChatHttpCore/WeChatHttpCore.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/WeChatHttpCore.csproj.user -------------------------------------------------------------------------------- /WwChatHttpCore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCore/packages.config -------------------------------------------------------------------------------- /WwChatHttpCoreTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/App.config -------------------------------------------------------------------------------- /WwChatHttpCoreTests/HTTP/LoginServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/HTTP/LoginServiceTests.cs -------------------------------------------------------------------------------- /WwChatHttpCoreTests/HTTP/WXServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/HTTP/WXServiceTests.cs -------------------------------------------------------------------------------- /WwChatHttpCoreTests/Images/Penguins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/Images/Penguins.jpg -------------------------------------------------------------------------------- /WwChatHttpCoreTests/Images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/Images/test.png -------------------------------------------------------------------------------- /WwChatHttpCoreTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WwChatHttpCoreTests/WwChatHttpCoreTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/WwChatHttpCoreTests.csproj -------------------------------------------------------------------------------- /WwChatHttpCoreTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/WwChatHttpCoreTests/packages.config -------------------------------------------------------------------------------- /libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /libs/webbrowsers/CFLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/CFLite.dll -------------------------------------------------------------------------------- /libs/webbrowsers/JavaScriptCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/JavaScriptCore.dll -------------------------------------------------------------------------------- /libs/webbrowsers/SQLite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/SQLite3.dll -------------------------------------------------------------------------------- /libs/webbrowsers/WebKit.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/WebKit.Interop.dll -------------------------------------------------------------------------------- /libs/webbrowsers/WebKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/WebKit.dll -------------------------------------------------------------------------------- /libs/webbrowsers/WebKitBrowser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/WebKitBrowser.dll -------------------------------------------------------------------------------- /libs/webbrowsers/WebKitBrowser.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/WebKitBrowser.dll.manifest -------------------------------------------------------------------------------- /libs/webbrowsers/icudt40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/icudt40.dll -------------------------------------------------------------------------------- /libs/webbrowsers/icuin40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/icuin40.dll -------------------------------------------------------------------------------- /libs/webbrowsers/icuuc40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/icuuc40.dll -------------------------------------------------------------------------------- /libs/webbrowsers/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/libcurl.dll -------------------------------------------------------------------------------- /libs/webbrowsers/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/libeay32.dll -------------------------------------------------------------------------------- /libs/webbrowsers/libexslt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/libexslt.dll -------------------------------------------------------------------------------- /libs/webbrowsers/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/libxml2.dll -------------------------------------------------------------------------------- /libs/webbrowsers/libxslt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/libxslt.dll -------------------------------------------------------------------------------- /libs/webbrowsers/objc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/objc.dll -------------------------------------------------------------------------------- /libs/webbrowsers/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/pthreadVC2.dll -------------------------------------------------------------------------------- /libs/webbrowsers/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomw/WeChatCleanFans/HEAD/libs/webbrowsers/ssleay32.dll --------------------------------------------------------------------------------