├── .gitattributes ├── .gitignore ├── Classes ├── CFIPList.cs ├── CheckIPWorking.cs ├── Config │ ├── AppConfig.cs │ ├── ConfigInterface.cs │ ├── ConfigManager.cs │ ├── RealConfig.cs │ └── ScanResults.cs ├── HTTPRequest │ └── DnsHandler.cs ├── IP │ ├── IPAddressExtensions.cs │ └── SubnetMask.cs ├── LogControl.cs ├── ScanEngine.cs └── ScanProgressInfo.cs ├── LICENSE.txt ├── Program.cs ├── Properties ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources └── github-mark24.png ├── WinCFScan.csproj ├── WinCFScan.sln ├── assets ├── Readme.txt ├── app-config.json ├── cf.local.iplist ├── v2ray-config │ ├── config.json.template │ └── config.real └── v2ray.exe ├── frmMain.Designer.cs ├── frmMain.cs └── frmMain.resx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/CFIPList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/CFIPList.cs -------------------------------------------------------------------------------- /Classes/CheckIPWorking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/CheckIPWorking.cs -------------------------------------------------------------------------------- /Classes/Config/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/Config/AppConfig.cs -------------------------------------------------------------------------------- /Classes/Config/ConfigInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/Config/ConfigInterface.cs -------------------------------------------------------------------------------- /Classes/Config/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/Config/ConfigManager.cs -------------------------------------------------------------------------------- /Classes/Config/RealConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/Config/RealConfig.cs -------------------------------------------------------------------------------- /Classes/Config/ScanResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/Config/ScanResults.cs -------------------------------------------------------------------------------- /Classes/HTTPRequest/DnsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/HTTPRequest/DnsHandler.cs -------------------------------------------------------------------------------- /Classes/IP/IPAddressExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/IP/IPAddressExtensions.cs -------------------------------------------------------------------------------- /Classes/IP/SubnetMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/IP/SubnetMask.cs -------------------------------------------------------------------------------- /Classes/LogControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/LogControl.cs -------------------------------------------------------------------------------- /Classes/ScanEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/ScanEngine.cs -------------------------------------------------------------------------------- /Classes/ScanProgressInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Classes/ScanProgressInfo.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/README.md -------------------------------------------------------------------------------- /Resources/github-mark24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/Resources/github-mark24.png -------------------------------------------------------------------------------- /WinCFScan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/WinCFScan.csproj -------------------------------------------------------------------------------- /WinCFScan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/WinCFScan.sln -------------------------------------------------------------------------------- /assets/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/Readme.txt -------------------------------------------------------------------------------- /assets/app-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/app-config.json -------------------------------------------------------------------------------- /assets/cf.local.iplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/cf.local.iplist -------------------------------------------------------------------------------- /assets/v2ray-config/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/v2ray-config/config.json.template -------------------------------------------------------------------------------- /assets/v2ray-config/config.real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/v2ray-config/config.real -------------------------------------------------------------------------------- /assets/v2ray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/assets/v2ray.exe -------------------------------------------------------------------------------- /frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/frmMain.Designer.cs -------------------------------------------------------------------------------- /frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/frmMain.cs -------------------------------------------------------------------------------- /frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goingfine/WinCFScan/HEAD/frmMain.resx --------------------------------------------------------------------------------