├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── client ├── __init__.py ├── __main__.py ├── builder.py ├── config.json ├── icons │ ├── README.txt │ ├── pdf.icns │ └── pdf.ico ├── phishforall.spec ├── requirements │ ├── base.txt │ ├── py3.txt │ └── py35.txt ├── search.py └── templates │ ├── media.html │ └── warning.html └── docs ├── client └── client_build.md └── known_issues.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/TODO.md -------------------------------------------------------------------------------- /client/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sean' 2 | -------------------------------------------------------------------------------- /client/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/__main__.py -------------------------------------------------------------------------------- /client/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/builder.py -------------------------------------------------------------------------------- /client/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/config.json -------------------------------------------------------------------------------- /client/icons/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/icons/README.txt -------------------------------------------------------------------------------- /client/icons/pdf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/icons/pdf.icns -------------------------------------------------------------------------------- /client/icons/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/icons/pdf.ico -------------------------------------------------------------------------------- /client/phishforall.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/phishforall.spec -------------------------------------------------------------------------------- /client/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/requirements/base.txt -------------------------------------------------------------------------------- /client/requirements/py3.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | scandir -------------------------------------------------------------------------------- /client/requirements/py35.txt: -------------------------------------------------------------------------------- 1 | -r base.txt -------------------------------------------------------------------------------- /client/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/search.py -------------------------------------------------------------------------------- /client/templates/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/templates/media.html -------------------------------------------------------------------------------- /client/templates/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/client/templates/warning.html -------------------------------------------------------------------------------- /docs/client/client_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/docs/client/client_build.md -------------------------------------------------------------------------------- /docs/known_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanthegeek/phishforall/HEAD/docs/known_issues.md --------------------------------------------------------------------------------