Guest User

Config

a guest
Sep 10th, 2018
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. # _ _ ____ _ _____ _
  2. # /\ | | (_) _ \ | | | __ \ | |
  3. # / \ _ __ | |_ _| |_) | ___ | |_| | | | ___| |_ ___ _____
  4. # / /\ \ | '_ \| __| | _ < / _ \| __| | | |/ _ \ | | | \ \/ / _ \
  5. # / ____ \| | | | |_| | |_) | (_) | |_| |__| | __/ | |_| |> < __/
  6. # /_/ \_\_| |_|\__|_|____/ \___/ \__|_____/ \___|_|\__,_/_/\_\___|
  7. #
  8.  
  9.  
  10. ###############################
  11. ## Info ##
  12. ###############################
  13.  
  14. # FAQ (Offline): https://antibotdeluxe.com/webpanel/faq
  15. # Web Panel (Offline): https://antibotdeluxe.com/webpanel/
  16. # Discord: https://discord.gg/xTAzMCx
  17.  
  18. # If you require support, join our Discord as that is the ONLY location that we provide it.
  19. # Anonymous statistics are sent to bStats.
  20.  
  21. # Thank you for purchasing AntiBotDeluxe.
  22. # The default config requires very little configuring to make it fit your server.
  23.  
  24. Version: 10
  25.  
  26.  
  27. ###############################
  28. ## General ##
  29. ###############################
  30.  
  31. General:
  32. # The prefix of all messages.
  33. Prefix: '&8[&6Royal&8] &r'
  34. # Enable or disable the AntiBotDeluxe log. If this is disabled, you will not receive support, as essential data is contained here.
  35. Log: true
  36. # You must enable this if you use a modified proxy, eg Waterfall, Hexacord or Travertine.
  37. Log4J: false
  38. # If enabled the Console will be spammed with for you useless Developer stuff
  39. Debug: false
  40. # Should we show a animation while there is no attack?
  41. Animation: true
  42. # Let Whitelisted players pass
  43. Whitelist: true
  44.  
  45. ConsoleFilter:
  46. - "logged in with entity id"
  47. - "com.mojang.authlib.GameProfile@"
  48. - "lost connection"
  49. - "timed"
  50. - "reset"
  51. - "UUID of player"
  52. - "InitialHandler"
  53. - "UpstreamBridge has disconnected"
  54.  
  55. AutoWhitelist:
  56. Enabled: true
  57. ActTime: 240
  58.  
  59. Storage:
  60. # Options Available: MySQL, FlatFile
  61. # If you are only running AntiBotDeluxe on one server, flat-file is recommended.
  62. Mode: FlatFile
  63.  
  64. # Here you can set how the configuration file should update
  65. # Available options: LIVE, FREQUENTLY, NEVER
  66. # FREQUENTLY will cause a minutely update, when set on NEVER the use of /ab reload is needed.
  67. ConfigUpdate: FREQUENTLY
  68.  
  69. MySQL:
  70. Host: '127.0.0.1'
  71. Username: 'root'
  72. Password: ''
  73. Database: antibotdeluxe
  74. MaximumPoolSize: 10
  75. MinimumIdle: 10
  76. MaximumLifetime: 1800000
  77. ConnectionTimeOut: 5000
  78.  
  79. ###############################
  80. ## Geo ##
  81. ###############################
  82.  
  83. Geographical:
  84. Mode: Blacklist
  85. Countries:
  86.  
  87. Firewall:
  88. Enabled: true
  89.  
  90. # apt install ipset
  91. Firewall: IPSet
  92. FirewallSettings:
  93. IPSet:
  94. # How long IPs are blocked
  95. Timeout: 3600
  96.  
  97. AddCommand: "sudo ipset -A proxies %ip%"
  98. RemoveCommand: "sudo ipset -D proxies %ip%"
  99.  
  100. # Flush all rules only added by AntiBotDeluxe on every plugin load.
  101. # Disabled by default to keep rules for following attacks.
  102. Flush: false
  103.  
  104. # Blacklist a IP if they get blacklisted.
  105. # This wont add IP's that are downloaded
  106. # This option allows efficient mitigation of attacks and is recommended.
  107. AddWhenBlacklisted: true
  108.  
  109. ProxyScraper:
  110. Enabled: false
  111. Threads: 350
  112.  
  113. # Toggle proxy types to scrape for.
  114. # SOCKS is more common for bot attacks.
  115. SearchFor:
  116. HTTP: true
  117. SOCKS: true
  118.  
  119.  
  120. ###############################
  121. ## Checks ##
  122. ###############################
  123.  
  124. Checks:
  125. # This is the order of how checks work. You can comment them out here to disable them but is not recommended for blocking bots.
  126. # The default order is highly recommended to keep.
  127.  
  128. Priority:
  129. ServerListPing:
  130. Condition: "ConnectionsPerSecond > 10"
  131. Nameprefix:
  132. Condition: "ConnectionsPerSecond > -1"
  133. SmartHeuristic:
  134. Condition: "ConnectionsPerSecond > 5"
  135. BlacklistCheck:
  136. Condition: "ConnectionsPerSecond > -1"
  137. MaxAccountsPerIP:
  138. Condition: "ConnectionsPerSecond > -1"
  139. ForceRejoin:
  140. Condition: "ConnectionsPerSecond > 1"
  141. MaxPlayersPerIP:
  142. Condition: "ConnectionsPerSecond > -1"
  143. GeoCheck:
  144. Condition: "ConnectionsPerSecond > -1"
  145. ProxyDetection:
  146. Condition: "ConnectionsPerSecond > -1"
  147.  
  148. # This is looking on how often a IP tries to connect with different names in a specific time, other then MaxPlayersPerIP this is not checking the online players
  149. MaxAccountsPerIP:
  150. Value: 2
  151. Action: Blacklist
  152.  
  153. MaxPlayersPerIP:
  154. Value: 2
  155.  
  156. Nameprefix:
  157. Blockprefix:
  158. - "MCBot_"
  159. - "MCSpam_"
  160. - "Bot_"
  161.  
  162. # Define the percentage of SmartHeuristic
  163. # The first value has to be reached if its very likely a bot
  164. # The second value has to be reached if its not that likely a bot
  165. # Therefore a higher percentage needs to be reached.
  166. SmartHeuristics:
  167. Percentage: 90.0
  168. Unlikely:
  169. Percentage: 99.0
  170.  
  171. # Enable or disable checks to use the hold dynamic mode for.
  172. # If you do not know what this is, leave it alone.
  173. Hold:
  174. - MaxPlayersPerSecond
  175. - MaxAccountsPerIP
  176. ###############################
  177. ## Blacklist ##
  178. ###############################
  179.  
  180. Blacklist:
  181. # Configure the sites where blacklisted IPs are loaded from.
  182. # The default settings are accurately chosen to be efficient and with few false positives.
  183. Synchronization:
  184. SyncBlacklist: false
  185. DirectAccess:
  186. ClickAccess:
  187.  
  188.  
  189. ###############################
  190. ## Proxy ##
  191. ###############################
  192.  
  193. # These sites check if an account is a proxy.
  194. # The condition just disables the site if requirements aren't reached.
  195. #
  196. # HIGHLY RECOMMENDED: Register on https://proxycheck.io/ and get a free API KEY !
  197. # Then replace the URL like this:
  198. # URL: "http://proxycheck.io/v2/%ip%?key=API KEY HERE&vpn=1"
  199.  
  200.  
  201. ProxySettings:
  202. Sites:
  203.  
  204.  
  205. ###############################
  206. ## Locale ##
  207. ###############################
  208.  
  209. Locale:
  210. # Available presets are English (EN), French (FR), German* (DE), Italian* (IT), Dutch* (NL), Turkish* (TU), Romanian* (RO),
  211. # Messages are configurable over in the messages_locale.yml.
  212. # You can enter the name of your presence here.
  213. # * = Currently in progress - Can not be used
  214. Preset: EN
Add Comment
Please, Sign In to add comment