The main goal of this project is to check the HTTPS on websites. It can be applied on all the websites. Currently, the project has an old interface to insert the name of the website and test. Thus, at this moment is possible using python scripts test any website.
The project was developed using python3 and Flask.
Future work ( I do not know when :) ):
- Convert to django
- Design and implement an interface to interact with the system.
- Python3
-
Create a venv:
python3 -m venv venv
-
source/venv/bin/activate
-
Install requirements:
pip install -r requirements
-
Run tests
-
Install Selenium
'pip install selenium`
-
Selenium requires a driver to interface with the chosen browser (Firefox) 2.1
wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz
2.2tar xvzf geckodriver-v0.24.0-linux64.tar.gz
2.3chmod +x geckodriver
2.4export PATH=$PATH:/path-to-extracted-file/.
2.5sudo mv geckodriver /usr/local/bin/
- Catarina Silva - catarinaacsilva
This project is licensed under the MIT License - see the LICENSE file for details