├── .github └── CODEOWNERS ├── Blank.md ├── CODEOWNERS ├── Example.md ├── HeadersOnly.md ├── LICENSE ├── README.md └── short.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /Blank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/Blank.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/Example.md -------------------------------------------------------------------------------- /HeadersOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/HeadersOnly.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/README.md -------------------------------------------------------------------------------- /short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BugBountyTemplates/HEAD/short.md --------------------------------------------------------------------------------