├── .gitignore ├── LICENSE ├── README.md └── src ├── config.h ├── exception.h ├── hijacker.cpp ├── hijacker.h ├── includes.h ├── logger.hpp ├── main.cpp ├── threader.cpp └── threader.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/README.md -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/config.h -------------------------------------------------------------------------------- /src/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/exception.h -------------------------------------------------------------------------------- /src/hijacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/hijacker.cpp -------------------------------------------------------------------------------- /src/hijacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/hijacker.h -------------------------------------------------------------------------------- /src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/includes.h -------------------------------------------------------------------------------- /src/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/logger.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/threader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/threader.cpp -------------------------------------------------------------------------------- /src/threader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/threadfire/HEAD/src/threader.h --------------------------------------------------------------------------------