├── .deepsource.toml ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── antiddos-yuki ├── functions.sh ├── ruleset ├── 10-main.nft └── 20-user.nft ├── script.conf └── sysctl.conf /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore this: 2 | /backups 3 | /cache 4 | -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/SECURITY.md -------------------------------------------------------------------------------- /antiddos-yuki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/antiddos-yuki -------------------------------------------------------------------------------- /functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/functions.sh -------------------------------------------------------------------------------- /ruleset/10-main.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/ruleset/10-main.nft -------------------------------------------------------------------------------- /ruleset/20-user.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/ruleset/20-user.nft -------------------------------------------------------------------------------- /script.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/script.conf -------------------------------------------------------------------------------- /sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintyYuki/antiddos/HEAD/sysctl.conf --------------------------------------------------------------------------------