├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── python-package-conda.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── IMPORTANT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cookies.py ├── files └── requirements.txt ├── igfi.py ├── photos ├── increaser.png ├── increaser_kali.jpg ├── menu_kali.png └── menu_windows.png └── tests ├── IGFItest.py └── __init__.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-package-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.github/workflows/python-package-conda.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/Dockerfile -------------------------------------------------------------------------------- /IMPORTANT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/IMPORTANT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/cookies.py -------------------------------------------------------------------------------- /files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/files/requirements.txt -------------------------------------------------------------------------------- /igfi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/igfi.py -------------------------------------------------------------------------------- /photos/increaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/photos/increaser.png -------------------------------------------------------------------------------- /photos/increaser_kali.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/photos/increaser_kali.jpg -------------------------------------------------------------------------------- /photos/menu_kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/photos/menu_kali.png -------------------------------------------------------------------------------- /photos/menu_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/photos/menu_windows.png -------------------------------------------------------------------------------- /tests/IGFItest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new92/igfi/HEAD/tests/IGFItest.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------