├── .env ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.json ├── index.js ├── package.json └── src ├── commands ├── Information │ ├── about.js │ ├── help.js │ └── ping.js ├── Mod │ ├── ban.js │ ├── hide.js │ ├── kick.js │ ├── mute.js │ ├── nuke.js │ ├── role.js │ ├── rolebot.js │ ├── unban.js │ ├── unbanall.js │ └── unhide.js └── others │ ├── eval.js │ ├── profile.js │ └── whois.js ├── events ├── antiBan.js ├── antiChannelCreate.js ├── antiChannelDelete.js ├── antiChannelUpdate.js ├── antiEveryone.js ├── antiGhostPing.js ├── antiGuildBot.js ├── antiGuildUpdate.js ├── antiRoleCreate.js ├── antiRoleDelete.js ├── antiRoleUpdate.js ├── antiSticker..js ├── antiUnban.js ├── antiVanity.js ├── antiWebhook.js ├── help.js ├── interactionCreate.js ├── messageCreate.js └── ready.js └── handler └── index.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## ANY ONE CAN CONTRIBUTUE IN THESE REPO 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Information/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Information/about.js -------------------------------------------------------------------------------- /src/commands/Information/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Information/help.js -------------------------------------------------------------------------------- /src/commands/Information/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Information/ping.js -------------------------------------------------------------------------------- /src/commands/Mod/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/ban.js -------------------------------------------------------------------------------- /src/commands/Mod/hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/hide.js -------------------------------------------------------------------------------- /src/commands/Mod/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/kick.js -------------------------------------------------------------------------------- /src/commands/Mod/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/mute.js -------------------------------------------------------------------------------- /src/commands/Mod/nuke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/nuke.js -------------------------------------------------------------------------------- /src/commands/Mod/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/role.js -------------------------------------------------------------------------------- /src/commands/Mod/rolebot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/rolebot.js -------------------------------------------------------------------------------- /src/commands/Mod/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/unban.js -------------------------------------------------------------------------------- /src/commands/Mod/unbanall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/unbanall.js -------------------------------------------------------------------------------- /src/commands/Mod/unhide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/Mod/unhide.js -------------------------------------------------------------------------------- /src/commands/others/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/others/eval.js -------------------------------------------------------------------------------- /src/commands/others/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/others/profile.js -------------------------------------------------------------------------------- /src/commands/others/whois.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/commands/others/whois.js -------------------------------------------------------------------------------- /src/events/antiBan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiBan.js -------------------------------------------------------------------------------- /src/events/antiChannelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiChannelCreate.js -------------------------------------------------------------------------------- /src/events/antiChannelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiChannelDelete.js -------------------------------------------------------------------------------- /src/events/antiChannelUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiChannelUpdate.js -------------------------------------------------------------------------------- /src/events/antiEveryone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiEveryone.js -------------------------------------------------------------------------------- /src/events/antiGhostPing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiGhostPing.js -------------------------------------------------------------------------------- /src/events/antiGuildBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiGuildBot.js -------------------------------------------------------------------------------- /src/events/antiGuildUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiGuildUpdate.js -------------------------------------------------------------------------------- /src/events/antiRoleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiRoleCreate.js -------------------------------------------------------------------------------- /src/events/antiRoleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiRoleDelete.js -------------------------------------------------------------------------------- /src/events/antiRoleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiRoleUpdate.js -------------------------------------------------------------------------------- /src/events/antiSticker..js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiSticker..js -------------------------------------------------------------------------------- /src/events/antiUnban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiUnban.js -------------------------------------------------------------------------------- /src/events/antiVanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiVanity.js -------------------------------------------------------------------------------- /src/events/antiWebhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/antiWebhook.js -------------------------------------------------------------------------------- /src/events/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/help.js -------------------------------------------------------------------------------- /src/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/interactionCreate.js -------------------------------------------------------------------------------- /src/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/messageCreate.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amit717628/Security-Plus/HEAD/src/handler/index.js --------------------------------------------------------------------------------