├── .gitignore ├── AppdataInfo.txt ├── README.md ├── folder.txt ├── scanpath.txt └── sign.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | *.bat 34 | *.vbs 35 | -------------------------------------------------------------------------------- /AppdataInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiHaiYiYeQiu/SoftCnKiller/55c7d2a56661fae2724e76232de9fc4db47eb204/AppdataInfo.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SoftCnKiller 2 | 流氓软件黑名单 3 | 4 | 流氓软件目录、数字签名黑名单 5 | -------------------------------------------------------------------------------- /folder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiHaiYiYeQiu/SoftCnKiller/55c7d2a56661fae2724e76232de9fc4db47eb204/folder.txt -------------------------------------------------------------------------------- /scanpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiHaiYiYeQiu/SoftCnKiller/55c7d2a56661fae2724e76232de9fc4db47eb204/scanpath.txt -------------------------------------------------------------------------------- /sign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiHaiYiYeQiu/SoftCnKiller/55c7d2a56661fae2724e76232de9fc4db47eb204/sign.txt --------------------------------------------------------------------------------