Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #
  2. # #########################################################
  3. # #                                                       #
  4. # #   THIS IS PHOTONCHECKER DEFAULT CONFIGURATION FILE.   #
  5. # #                                                       #
  6. # #   To enable an option (boolean), just set "true" or   #
  7. # #   "false" (no quotes "). E.g: save-failed: true       #
  8. # #                                                       #
  9. # #   If the configuration property is about choosing     #
  10. # #   file location, on Windows "\" must be replaced      #
  11. # #   with "/". Path to file which doesn't start with     #
  12. # #   "/" on linux or hard drive name on windows, then    #
  13. # #   that path is set to default path which is Photon    #
  14. # #   Checker path.                                       #
  15. # #                                                       #
  16. # #   Conversion: 1 second = 1000 milliseconds            #
  17. # #                                                       #
  18. # #########################################################
  19. #
  20.  
  21. # After purchasing PhotonChecker, you will receive a license key.
  22. # Put the license key here to run.
  23. license-key: LICENSE_KEY
  24.  
  25. # Green, red, black, blue... on the Windows Command Prompt, yay! If you don't enable this, it will just print out
  26. # some bizarre characters anyway.
  27. colorful-print: true
  28.  
  29. # How many threads should PhotonChecker assign for checking (Multi-threading)?
  30. # The higher you set the faster it runs, but sure that your PC can handle this because it will consume your CPU and RAM
  31. max-threads: 200
  32.  
  33. # How long should PhotonChecker wait for connection to the server completed (in seconds)?
  34. # The higher the more accurate, the lower the faster.
  35. timeout: 15
  36.  
  37. #  Amount of retries of checking the account (combo), including Server Stats + Capes checks (with
  38. # another proxy) if it is failed (or no stats or capes found)?
  39. # The higher the more accurate, the lower the faster.
  40. rechecks: 3
  41.  
  42. # Recheck times only get incremented when no error occurred (not response from the server!), such errors comprise:
  43. # - Timeout
  44. # - Invalid proxy
  45. # - Max connections to proxy exceeded
  46. # - etc, ...
  47. # So what does this do? Just the same as "rechecks" option, except it also counts the retries of erroneous requests.
  48. # If you don't want PhotonChecker count the retries of erroneous requests, set this to negative.
  49. # WARNING: If you think your proxies are likely to mostly encounter such errors above, consider not setting to
  50. # negative, since it WILL slow down the checking or process, may be not too long, consider seeing it yourself ;)
  51. extended-rechecks: -1
  52.  
  53. # The proxy type (protocol) of your proxies, used for checking. Available options are:
  54. # - DIRECT
  55. # - HTTP
  56. # - SOCKS4
  57. # - SOCKS5
  58. # DIRECT is proxyless, which will use your IP to check! You can place your proxies in "proxy.txt".
  59. proxy-type: SOCKS4
  60.  
  61. # Order to select proxy from the proxy list (Increment, Decrement, Random)
  62. proxy-selection-order: Random
  63.  
  64. # 3 check modes: "NORMAL", "UNMIGRATED" and "DOMAIN_REMOVER" (without quotes), used for Combo Check
  65. # - NORMAL: Normal check (NFA, SFA, Demo), input combo is email:pass (user:pass works fine, but you should use UNMIGRATED mode instead).
  66. # - UNMIGRATED: Crack/check unmigrated accounts even faster and more accurate using our method, input combo has to be user:pass of
  67. # course. Please note that this mode is still in further experimental development and might be buggy.
  68. # - DOMAIN_REMOVER: Remove domains from emails in your combo list (to become user:pass combo). Then check them using
  69. # UNMIGRATED mode.
  70. # - BAN_CHECKER: Check if accounts are banned on a specifically selected server of course.
  71. mode: NORMAL
  72.  
  73. # Should PhotonChecker only display hits (no failed or errors) on the console?
  74. display-hits-only: false
  75.  
  76. # Should PhotonChecker save failed accounts (combo) to a text file (failed.txt)?
  77. save-failed: true
  78.  
  79. # If this is set to true, NFA hits will be saved as user:email:pass.
  80. # Otherwise, they will be saved as email:pass.
  81. full-nfa-output: false
  82.  
  83. # If this is set to true, SFA hits will be saved as user:email:pass.
  84. # Otherwise, they will be saved as email:pass.
  85. full-sfa-output: false
  86.  
  87. # Minimum interval to wait for next recheck, in millisecond.
  88. min-recheck-delay-interval: 1000
  89.  
  90. # Maximum interval to wait for next recheck,  in millisecond.
  91. max-recheck-delay-interval: 1000
  92.  
  93. # Rate of delay for rechecking, only used if "recheck-delay-heuristics" is enabled.
  94. recheck-delay-rate: 2
  95.  
  96. # Intelligent mode for setting delay interval between rechecks.
  97. # Let's say the Checker has to do more than 10 thousands concurrent connections (only recheck) to the server, unluckily
  98. # the server might not be able to handle all of them, sometimes eventually lead to inaccurate or erroneous responses.
  99. # This will significantly help reduce recheck overload in such cases but will recheck slower, of course.
  100. recheck-delay-heuristics: false
  101.  
  102. # Check for Mail Access, MFA (or Full Access ,FA) accounts?
  103. mail-access-check:
  104.  # Enable?
  105.   enable: true
  106.  
  107.   # Path to your domains (email providers) file to check for mail access. Many thanks to Bath for his list.
  108.   domains-file: config/domains.txt
  109.  
  110. # Dehash/Crack emails of unmigrated hits, not always 100% can they be dehased/cracked
  111. unmigrated-dehasher:
  112.  # Enable?
  113.   enable: true
  114.  
  115.   # Set this to true then more techniques would be used to dehash if it cannot be dehashed using normal method
  116.   intelligent: false
  117.  
  118.   # Path to the file contains email keywords (for instance: gmail.com, hotmail.com, ...) use to dehash.
  119.   keywords-file: config/email-providers.txt
  120.  
  121.   # Path to the dictionary file
  122.   dictionary-file: config/dictionary.txt
  123.  
  124. # Check for OG (meaningful) usernames of hits
  125. og-check:
  126.  # Enable?
  127.   enable: true
  128.  
  129.   # The path to the dictionary file
  130.   dictionary-file: config/dictionary.txt
  131.  
  132. # Check for stats of hits on some servers
  133. server-stats-check:
  134.  # Disable recheck, check faster of course but the accurate might decrease.
  135.   disable-recheck: true
  136.  
  137.   # Check for Hypixel stats
  138.   check-hypixel-stats:
  139.    # Enable?
  140.     enable: true
  141.  
  142.     # Minimum level for accounts to be over level (if account's current level is greater than or equal to this)
  143.     minimum-level: 25
  144.  
  145.   # Check for Mineplex stats
  146.   check-mineplex-stats:
  147.    # Enable?
  148.     enable: true
  149.  
  150.     # Minimum level for accounts to be over level (if account's current level is greater than or equal to this)
  151.     minimum-level: 15
  152.  
  153.   # Check for HiveMC stats
  154.   check-hivemc-stats: true
  155.  
  156.   # Check for Wynncraft stats
  157.   check-wynncraft-stats:
  158.    # Enable?
  159.     enable: true
  160.  
  161.     # Minimum level for accounts to be over level (if account's current level is greater than or equal to this)
  162.     minimum-level: 25
  163.  
  164. # Check for capes of hits
  165. capes-check:
  166.  # Check if account has Optifine cape
  167.   check-optifine-capes: true
  168.  
  169.   # Check if account has Minecon (Official, Vanilla) cape
  170.   check-minecon-capes: true
  171.  
  172.  
  173. # Check if accounts are banned
  174. ban-checker:
  175.  # Lower threads for best result
  176.   max_threads: 25
  177.  
  178.   # Connection timeout to server, higher for better result.
  179.   timeout: 30
  180.  
  181.   # Before checking for ban status, the account needs to be authenticated. This is just as doing
  182.   # Combo Check before Ban Check, but more lightweight.
  183.   rechecks: 3
  184.  
  185.   # Server IP of the Minecraft Server
  186.   server-ip: mc.hypixel.net
  187.  
  188.   # Server connection port
  189.   server-port: 25565
  190.  
  191.   # Minecraft (server) version, in order for PhotonChecker to connect. Supported minecraft versions are between 1.7.2 and 1.13.1 (inclusive).
  192.   # Snapshots releases are not supported. Leave this empty, or if the version specified is not supported, Checker will pick the default
  193.   # Minecraft version, which is 1.11.2.
  194.   # Generally, the best Minecraft versions for Ban Checker to work are around 1.11.*.
  195.   minecraft-version: 1.11.2
  196.  
  197.   # Should be only ONE of followings:
  198.   # - DIRECT
  199.   # - HTTP
  200.   # - SOCKS
  201.   # SOCKS means SOCKS5 proxy! You can place your proxies in "proxy.txt".
  202.   proxy-type: SOCKS
  203.  
  204.   # Order to select proxy from the proxy list (Increment, Decrement, Random)
  205.   proxy-selection-order: Random