KAntibot

Remove all bots from a kahoot game.

目前为 2021-11-24 提交的版本。查看 最新版本

作者
theusaf
评分
0 0 0
版本
3.2.2
创建于
2018-11-08
更新于
2021-11-24
大小
50.3 KB
许可证
MIT
适用于

KAntibot

Buy Me a Coffee at ko-fi.com


INSTALLATION


  1. Make sure you have a script manager such as https://www.tampermonkey.net/
  2. Come back to this page and press the green install button.
  3. Your script manager should ask to install it. Press install.
  4. Open a kahoot game. The antibot should be installed if you see some text that says "vx.y.z ©theusaf at the bottom right.
  5. Enjoy a bot-less game!


Features

  • Remove all bots with a similarity rating of 60%
    • You can set the similarity in the config. Lower numbers = more strict
  • Extend Kahoot! questions by a few seconds to help with stream delay.
  • Prevent answers that happen before 0.5 seconds after the question starts
  • Ensure names are generated by Kahoot! when using the friendly nickname option
  • Block many naming formats that bots use.
  • Block common bots in team mode
  • Prevent brute forcing the two-step code
  • Auto-lock your game when you get spammed with bots (Enable it in the config). Automatically unlocks after one minute.
  • Auto-start your game when auto-progress is enabled. (Enable it in the config). This will start the quiz if a player joins the lobby after the specified amount of time to prevent a never ending lobby.
  • Counter cheating!
  • Add a CAPTCHA to stop even more bots!
  • Change the two-factor authentification time!

               Join us!

DiscordGitHub
Kahoot Hacker IconKahoot Hacker Icon


How to improve anti-botting:

Sometimes, just an antibot is not enough... Here are ways to prevent bots from joining your games to the best of your ability

  1. Enable Friendly Names - This limits what names can be used, making the antibot more powerful
  2. Enable 2FA - Some bots try to brute force this. The Antibot detects this and can block them.
  3. Enable Team Mode - While team mode no longer prevents most bots from joining, it can help filter out some bots that use the same patters for teams. Some bots may still not support team mode, so this will help.


Features planned:

  • More Blocking Options (When new botting patterns are found).
  • Prevent answers during team talk

Support for other play.kahoot.it scripts

If you are creating your own play.kahoot.it scripts, it will not work with Kahoot Antibot normally. You need to do the following:

  1. Run at document-start
  2. Create or get window.antibotAdditionalScripts to []
  3. Add your code as a function to the array

Example:


// @run-at       document-start
// ==/UserScript==

window.antibotAdditionalScripts = window.antibotAdditionalScripts || [];
window.antibotAdditionalScripts.push(()=>{
  // code to run
});

// To add custom replacements/patches
window.antibotAdditionalReplacements = window.antibotAdditionalReplacements || [];
window.antibotAdditionalReplacements.push((code) => {
  // modify the code
  return code;
});

To detect if the antibot is active, you can check for the kantibotEnabled variable (v3.0.0+)


Contributors and Sources