A python application to solve the SIS Portal CAPTCHA using a custom trained model with TensorFlow and Keras.
- Python 3
- OpenCV
- Keras
- TensorFlow
git clone https://github.com/naman17/Captcha-Solver.git
(or download the zip)
cd Captcha-Solver
pip install -r requirements.txt
make download
make extract-data
make train-model
make captcha-test
make server
The server will start on localhost:5000
.
To test the server send a get
request on /solve?url=<append-url-here>
As a proof of concept you can test the script on http://139.59.7.182:8001/solve?url=
by appending the CAPTCHA Image URL from the SIS Portal.
make clean
docker build -t sis-captcha-solver .
docker run --rm -it -p 5000:5000 sis-captcha-solver
The server will start on localhost:5000.
To test the server send a get request on /solve?url=<append-url-here>