├── .gitignore ├── Best-Practices-For-Rest-API └── README.md ├── LICENSE ├── README-ar.md ├── README-de.md ├── README-es.md ├── README-fr.md ├── README-hi.md ├── README-id.md ├── README-it.md ├── README-ja.md ├── README-jp.md ├── README-ko.md ├── README-lo.md ├── README-mk.md ├── README-mn.md ├── README-nl.md ├── README-pl.md ├── README-pt_BR.md ├── README-ru.md ├── README-th.md ├── README-tr.md ├── README-tw.md ├── README-uk.md ├── README-vi.md ├── README-zh.md ├── README.md ├── api-security-part1 ├── LICENSE └── README.md ├── api-security.md ├── code-of-conduct.md └── contributing.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /Best-Practices-For-Rest-API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/Best-Practices-For-Rest-API/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-ar.md -------------------------------------------------------------------------------- /README-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-de.md -------------------------------------------------------------------------------- /README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-es.md -------------------------------------------------------------------------------- /README-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-fr.md -------------------------------------------------------------------------------- /README-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-hi.md -------------------------------------------------------------------------------- /README-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-id.md -------------------------------------------------------------------------------- /README-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-it.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-ja.md -------------------------------------------------------------------------------- /README-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-jp.md -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-ko.md -------------------------------------------------------------------------------- /README-lo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-lo.md -------------------------------------------------------------------------------- /README-mk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-mk.md -------------------------------------------------------------------------------- /README-mn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-mn.md -------------------------------------------------------------------------------- /README-nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-nl.md -------------------------------------------------------------------------------- /README-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-pl.md -------------------------------------------------------------------------------- /README-pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-pt_BR.md -------------------------------------------------------------------------------- /README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-ru.md -------------------------------------------------------------------------------- /README-th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-th.md -------------------------------------------------------------------------------- /README-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-tr.md -------------------------------------------------------------------------------- /README-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-tw.md -------------------------------------------------------------------------------- /README-uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-uk.md -------------------------------------------------------------------------------- /README-vi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-vi.md -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/README.md -------------------------------------------------------------------------------- /api-security-part1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/api-security-part1/LICENSE -------------------------------------------------------------------------------- /api-security-part1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/api-security-part1/README.md -------------------------------------------------------------------------------- /api-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/api-security.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulveillard/cybersecurity-API-security-checklist/HEAD/contributing.md --------------------------------------------------------------------------------