├── .idea ├── CTFWriteupScrapper.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── env.pyc ├── script.py.mako └── versions │ ├── 5aeb14e5225f_.py │ └── 5aeb14e5225f_.pyc ├── project ├── __init__.py ├── __init__.pyc ├── app.sqlite ├── models.py ├── models.pyc ├── routes.py ├── routes.pyc ├── static │ ├── css │ │ ├── jquery.dataTables.min.css │ │ └── style.css │ ├── images │ │ ├── ctftime.png │ │ ├── flask.png │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sqllite.png │ └── js │ │ ├── jquery-1.12.4.js │ │ └── jquery.dataTables.min.js └── templates │ ├── index.html │ └── layout.html ├── requirements.txt ├── runserver.py └── screenshot.png /.idea/CTFWriteupScrapper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/CTFWriteupScrapper.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/env.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/env.pyc -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/5aeb14e5225f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/versions/5aeb14e5225f_.py -------------------------------------------------------------------------------- /migrations/versions/5aeb14e5225f_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/migrations/versions/5aeb14e5225f_.pyc -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/__init__.py -------------------------------------------------------------------------------- /project/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/__init__.pyc -------------------------------------------------------------------------------- /project/app.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/app.sqlite -------------------------------------------------------------------------------- /project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/models.py -------------------------------------------------------------------------------- /project/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/models.pyc -------------------------------------------------------------------------------- /project/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/routes.py -------------------------------------------------------------------------------- /project/routes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/routes.pyc -------------------------------------------------------------------------------- /project/static/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /project/static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/static/images/ctftime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/ctftime.png -------------------------------------------------------------------------------- /project/static/images/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/flask.png -------------------------------------------------------------------------------- /project/static/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/sort_asc.png -------------------------------------------------------------------------------- /project/static/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/sort_both.png -------------------------------------------------------------------------------- /project/static/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/sort_desc.png -------------------------------------------------------------------------------- /project/static/images/sqllite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/images/sqllite.png -------------------------------------------------------------------------------- /project/static/js/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/js/jquery-1.12.4.js -------------------------------------------------------------------------------- /project/static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/templates/index.html -------------------------------------------------------------------------------- /project/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/project/templates/layout.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/runserver.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdilahrf/CTFWriteupScrapper/HEAD/screenshot.png --------------------------------------------------------------------------------