Bot Engine - BotKitty (Beta) menu

User Tag List

Results 1 to 5 of 5
  1. #1
    Kickupx's Avatar Active Member CoreCoins Purchaser
    Reputation
    29
    Join Date
    Mar 2013
    Posts
    27
    Thanks G/R
    12/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Bot Engine - BotKitty (Beta)

    What is this?
    BotKitty (currently in beta) is a tool for writing bots in C#.
    It provides an API + runtime + user interface out of the box.
    For full documentation check out here.
    Downloads is below.
    Programming is done in a plugin fashion.


    Win 1 Year subscription

    Some things you can do with it:

    Search for a substring and read in full string of each match:
    Code:
    //Print whole string of some string match
    IProcess process = ...;
    var matches = process.MemFind("substring");
    foreach(var address in matches)
    	Console.WriteLine(process.MemReadString(address));
    More info ->


    Listen for mouse presses on a single window:
    Code:
    var window = ...;
    window.OnMousePress += delegate (
        MouseKey key, Modifier modifiers, double x, double y)
    {
        Console.WriteLine("Pressed: " + key.ToString());
    };
    More info ->


    Press in the middle of a window, and always in the middle:
    Code:
    IWindow window = ...;
    window.MouseClick(MouseKey.Left, 500, 500);
    More info ->

    Fake an browser. Allowing you to make logins and keep sessions alive:
    Code:
    IHttpClient client = ...;
    var req = new HttpRequest
        ("https://accounts.google.com/Login?hl=SV");
        
    var vars = new NameValueCollection();
    vars.Add("var_name", "var_value");
    
    var resp = client.Post(req, vars);
    More info ->


    When dealing with raw data coming from the network a BitExtractor can help.
    With it you can pull off scalars, arrays and individual bits in a streaming
    fashion.


    Code:
    Stream stream = ...;
    BitExtractor extractor = new BitExtractor(stream);
    var integer = extractor.Read<int>();
    var num = extractor.Read<double>();
    var bit_field = extractor.ReadBits(3);
    More info ->

    Edit #2:
    More examples:
    - Read full string in other process

    Today BotKitty has a philosophy of playing nice with as many libraries as possible.
    But it was not that way back in the days.
    Once upon a time I wrote this program using raw C++ and used Javascript as the plugin system.
    What was quickly revealed was that I had to implement or write bindings for any library any
    programmer ever wanted to use.
    Making it hard to interact with amazing libraries like EasyHook and Blackmagic.
    This is why C# is used as the plugin language.
    This allows you to incorporate BlackMagic, EasyHook, AutoIt, Visual Basic and even
    C++ where BotKitty is lacking.
    We are all in the same sandbox.


    How the GUI looks:


    Virus scans:
    - Installer
    - Executable

    Edit #1:
    If you liked it, lets pass on the word. Shall we?

    There is one false alert. This is common with unsigned C# programs.
    Proof here.

    Download:
    BotKitty - The Bot Engine
    Last edited by Kickupx; 02-23-2017 at 06:18 PM. Reason: Better styling.

    Bot Engine - BotKitty (Beta)
  2. Thanks Willy, Corthezz (2 members gave Thanks to Kickupx for this useful post)
  3. #2
    Willy's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    478
    Join Date
    Mar 2007
    Posts
    682
    Thanks G/R
    147/124
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems cool!

    And also; as he says, false/positives are very common with bots and hacks. But you should always be careful with executables from unknown sources! Just putting it out there!

  4. #3
    Kickupx's Avatar Active Member CoreCoins Purchaser
    Reputation
    29
    Join Date
    Mar 2013
    Posts
    27
    Thanks G/R
    12/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by willy t3h whale View Post
    Seems cool!

    And also; as he says, false/positives are very common with bots and hacks. But you should always be careful with executables from unknown sources! Just putting it out there!
    First, thanks
    And second yeah false/positives are common. That is why I wrote the extra note about it so anybody can use their own judgement to fairly judge me

  5. #4
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Oh this is awesome! great job
    Need a guild in the US? Visit murlocs.com

  6. Thanks Kickupx (1 members gave Thanks to ev0 for this useful post)
  7. #5
    SK Bot's Avatar Banned Hack Overlord CoreCoins Purchaser
    Reputation
    88
    Join Date
    Jan 2017
    Posts
    78
    Thanks G/R
    13/83
    Trade Feedback
    9 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow, well done !

Similar Threads

  1. GPBot : new bot for wow, beta tester need
    By guizmows in forum World of Warcraft Bots and Programs
    Replies: 871
    Last Post: 08-09-2016, 10:13 AM
  2. [Level Bot] AoC Grinder + Beta Key
    By r00tman in forum Age of Conan Exploits|Hacks
    Replies: 31
    Last Post: 11-01-2008, 12:49 PM
  3. Replies: 1
    Last Post: 08-23-2008, 01:12 AM
All times are GMT -5. The time now is 10:45 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search