├── .dockerignore ├── .github └── workflows │ ├── check.yml │ ├── docker.yml │ └── install.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── logos └── pfFocus.png ├── pf_focus ├── bbcode.py ├── format.py ├── markdown.py ├── parse.py ├── pfsense.py ├── progress.py └── util.py ├── requirements.txt ├── screenshots ├── pfFocus_Filter_rules.png ├── pfFocus_System_Interfaces.png └── pfFocus_xml.png ├── setup.py └── tests ├── Makefile ├── configs ├── .gitignore └── pfSense-CE-2.3.4-RELEASE-amd64-config.xml └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .coverage 3 | .vscode 4 | *.egg-info 5 | test.* 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/README.md -------------------------------------------------------------------------------- /logos/pfFocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/logos/pfFocus.png -------------------------------------------------------------------------------- /pf_focus/bbcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/bbcode.py -------------------------------------------------------------------------------- /pf_focus/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/format.py -------------------------------------------------------------------------------- /pf_focus/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/markdown.py -------------------------------------------------------------------------------- /pf_focus/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/parse.py -------------------------------------------------------------------------------- /pf_focus/pfsense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/pfsense.py -------------------------------------------------------------------------------- /pf_focus/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/progress.py -------------------------------------------------------------------------------- /pf_focus/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/pf_focus/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/pfFocus_Filter_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/screenshots/pfFocus_Filter_rules.png -------------------------------------------------------------------------------- /screenshots/pfFocus_System_Interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/screenshots/pfFocus_System_Interfaces.png -------------------------------------------------------------------------------- /screenshots/pfFocus_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/screenshots/pfFocus_xml.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/configs/.gitignore: -------------------------------------------------------------------------------- 1 | *.md 2 | *.yaml 3 | *.bbcode 4 | -------------------------------------------------------------------------------- /tests/configs/pfSense-CE-2.3.4-RELEASE-amd64-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/tests/configs/pfSense-CE-2.3.4-RELEASE-amd64-config.xml -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TKCERT/pfFocus/HEAD/tests/requirements.txt --------------------------------------------------------------------------------