├── Breacher.cpp ├── CloudflareBypass.cpp ├── FindPerson.cpp ├── GenerateIP.cpp ├── HttpGet.c ├── HttpPost.c ├── Makefile ├── README.md ├── lib ├── includes.h └── termcolor.hpp ├── main.cpp ├── modules ├── Breacher.h ├── CloudflareBypass.h ├── FindPerson.h ├── GenerateIP.h ├── HttpGet.h └── HttpPost.h ├── pwd ├── path.txt └── sub.txt ├── run.sh └── src ├── clearCurl.c ├── clearCurl.h ├── netCurl.cpp └── netCurl.h /Breacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/Breacher.cpp -------------------------------------------------------------------------------- /CloudflareBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/CloudflareBypass.cpp -------------------------------------------------------------------------------- /FindPerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/FindPerson.cpp -------------------------------------------------------------------------------- /GenerateIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/GenerateIP.cpp -------------------------------------------------------------------------------- /HttpGet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/HttpGet.c -------------------------------------------------------------------------------- /HttpPost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/HttpPost.c -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/README.md -------------------------------------------------------------------------------- /lib/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/lib/includes.h -------------------------------------------------------------------------------- /lib/termcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/lib/termcolor.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/main.cpp -------------------------------------------------------------------------------- /modules/Breacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/Breacher.h -------------------------------------------------------------------------------- /modules/CloudflareBypass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/CloudflareBypass.h -------------------------------------------------------------------------------- /modules/FindPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/FindPerson.h -------------------------------------------------------------------------------- /modules/GenerateIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/GenerateIP.h -------------------------------------------------------------------------------- /modules/HttpGet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/HttpGet.h -------------------------------------------------------------------------------- /modules/HttpPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/modules/HttpPost.h -------------------------------------------------------------------------------- /pwd/path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/pwd/path.txt -------------------------------------------------------------------------------- /pwd/sub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/pwd/sub.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/run.sh -------------------------------------------------------------------------------- /src/clearCurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/src/clearCurl.c -------------------------------------------------------------------------------- /src/clearCurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/src/clearCurl.h -------------------------------------------------------------------------------- /src/netCurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/src/netCurl.cpp -------------------------------------------------------------------------------- /src/netCurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lomasterrrr/HackWebTool/HEAD/src/netCurl.h --------------------------------------------------------------------------------