Building an in-browser Auto-clicker with JavaScript

แชร์
ฝัง

ความคิดเห็น • 5

  • @Mw-un8yy
    @Mw-un8yy หลายเดือนก่อน

    I tried this it worked on static and not on popup dynamic buttons. Is there a way it can work on them too?

    • @HAMYLABS
      @HAMYLABS  หลายเดือนก่อน

      Interesting - I bet if you remove the clearInterval when the button is not found it will work. Kinda wasteful but this will mean the interval just runs, tries to find button, and if not it just waits to do it again.

  • @nark4837
    @nark4837 2 หลายเดือนก่อน

    this is cool, but at this point you might as well just get the network request for it, it's just a simple POST
    you can then just spam requests to this endpoint on a rotating proxy, since he does ratelimit clicks :)

    • @HAMYLABS
      @HAMYLABS  2 หลายเดือนก่อน

      Yeah could do this for sure but I liked the idea of doing in browser cause then anyone can easily do it (even if not that technical).
      Also I think the network requests are rate limited server-side with 429 error code so p sure that would get blocked too.
      Ofc we could do some botnet tomfoolery to get around what's probably a simple ip-based rate limiter but that's for another post I suppose

    • @nark4837
      @nark4837 2 หลายเดือนก่อน

      @HAMYLABS yeah ofc there is a ratelimit but that's true whether you spam click the button or spam requests (the button click is just firing that request indirectly)