├── .gitmodules ├── CMakeLists.txt ├── README.md ├── example └── decode.cpp └── include └── deCAPTCHA ├── antigate_decoder.hpp ├── avplayer_free_decoder.hpp ├── channel_friend_decoder.hpp ├── deathbycaptcha_decoder.hpp ├── decaptcha.hpp ├── hydati_decoder.hpp └── jsdati_decoder.hpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/README.md -------------------------------------------------------------------------------- /example/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/example/decode.cpp -------------------------------------------------------------------------------- /include/deCAPTCHA/antigate_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/antigate_decoder.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/avplayer_free_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/avplayer_free_decoder.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/channel_friend_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/channel_friend_decoder.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/deathbycaptcha_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/deathbycaptcha_decoder.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/decaptcha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/decaptcha.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/hydati_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/hydati_decoder.hpp -------------------------------------------------------------------------------- /include/deCAPTCHA/jsdati_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avplayer/deCAPTCHA/HEAD/include/deCAPTCHA/jsdati_decoder.hpp --------------------------------------------------------------------------------