├── .gitattributes ├── .gitignore ├── HEADER ├── LICENSE ├── README.md ├── cisco-sample-code-license ├── v1.0 │ ├── CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.html │ ├── CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.txt │ ├── CISCO-SAMPLE-CODE-LICENSE-V1.0.html │ └── CISCO-SAMPLE-CODE-LICENSE-V1.0.txt └── v1.1 │ ├── CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.html │ ├── CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.txt │ ├── CISCO-SAMPLE-CODE-LICENSE-V1.1.html │ └── CISCO-SAMPLE-CODE-LICENSE-V1.1.txt ├── docs ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── README.md ├── examples ├── README.md ├── bash │ ├── README.md │ └── example.sh ├── docker │ ├── Dockerfile │ ├── README.md │ └── docker-compose.yml ├── javascript │ ├── README.md │ └── example.js └── python │ ├── README.md │ └── example.py └── formatter ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── format.py ├── requirements-secure-dev.txt ├── requirements-secure.txt └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/HEADER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/README.md -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.html -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.0.txt -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-V1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-V1.0.html -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-V1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.0/CISCO-SAMPLE-CODE-LICENSE-V1.0.txt -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.html -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-HEADER-V1.1.txt -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-V1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-V1.1.html -------------------------------------------------------------------------------- /cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-V1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/cisco-sample-code-license/v1.1/CISCO-SAMPLE-CODE-LICENSE-V1.1.txt -------------------------------------------------------------------------------- /docs/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/AUTHORS.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/bash/README.md -------------------------------------------------------------------------------- /examples/bash/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/bash/example.sh -------------------------------------------------------------------------------- /examples/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/docker/Dockerfile -------------------------------------------------------------------------------- /examples/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/docker/README.md -------------------------------------------------------------------------------- /examples/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/docker/docker-compose.yml -------------------------------------------------------------------------------- /examples/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/javascript/README.md -------------------------------------------------------------------------------- /examples/javascript/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/javascript/example.js -------------------------------------------------------------------------------- /examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/python/README.md -------------------------------------------------------------------------------- /examples/python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/examples/python/example.py -------------------------------------------------------------------------------- /formatter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/Makefile -------------------------------------------------------------------------------- /formatter/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/Pipfile -------------------------------------------------------------------------------- /formatter/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/Pipfile.lock -------------------------------------------------------------------------------- /formatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/README.md -------------------------------------------------------------------------------- /formatter/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/format.py -------------------------------------------------------------------------------- /formatter/requirements-secure-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/requirements-secure-dev.txt -------------------------------------------------------------------------------- /formatter/requirements-secure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/requirements-secure.txt -------------------------------------------------------------------------------- /formatter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSE/cisco-sample-code/HEAD/formatter/requirements.txt --------------------------------------------------------------------------------