What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[STANDALONE] DemonLoader / AuthBuddy Auth

tehtoad

New Member
Joined
Jun 18, 2012
Messages
88
Reaction score
1
[STANDALONE] DemonLoader / AuthBuddy / Session Killer (Monitors D3 and DB then acts)

DemonLoader ALPHA
(If one of the two apps crashs this kills the other one and loads them both again, log's in, auto kills auth on buddyauth.com then starts bot)


Code:
Monitors DemonBuddy and Diablo 3 proccess's if one closes it will shut both down and restart them.

Loads demonbuddy on auto.

Loads Diablo 3 on auto and log's in 
(Not using Demonbudys login untill it works, using own safe sendkey methods)

Thats it, if one of the two apps crashs this kills the other one and loads them both again, log's in auto kills auto on buddyauth and then starts bot.

[video=youtube;Q7IkmCI9Klc]http://www.youtube.com/watch?v=Q7IkmCI9Klc]demon buddy loader helper - YouTube[/video]

This is complete ALPHA, its working for me as is now, but maybe many tweaks will need to be done for others, more features will come in time, if this seems like a useful tool and people think its needed i will work on it faster, if people wanna work on it to make it better faster, ill make it open source. I would really love to make it opensource, i created this because of all the bitching on support forums and really don't have the time but i will continue to update and clean up and add features, if anyone wants to help the code base is here just hit me up ;), its not obfuscated so if you cant wait for me to reply before you get to work just decompile ><

Runs as Admin, just allow it rights this is in manifest and is so it can load demonbuddy with admin while you are AFK.
let me know how it goes,
-tt

Download Link:
Filebox.com
(rar doesn't work as attachment sorry)

Virus Report:
AVAST Online
VPS version VPS 120710-0 10.07.2012
Scanner version 3.2.1
Scanned files 1
Scanned directories 0
Archives count 0
Infected files 0
Errors 0
File size 27.0 kB
Scan time 0s 6ms
Scanned speed 4.3 MB


FEATURES TO ADD:

Code:
Save config
clean up for public
Add multi bot support 
Add multi session support using timestamps
Add log passing 
Add log event passing and handling
optimize code
comment then open source
repack dlls

SAFETY INFO:

this is 100% safe, uses keysend to login to d3, no memory stuff.

SET ALL SETTINGS CORRECTLY THERE IS POOR ERROR HANDLING IN ALPHA

EDIT:

SECOND TOOL!

stand alone AutoAuth / Session Killer tool here for batch files and auto-it scripts pure alphacurrently kills ALL sessions, will update and release in its own thread to kill sessions based on a passed timestamp.

(buddyauth site make it hard to navigate session collums, not much to tell apart other then a timestamp)

This below application dosnt have the monitoring its just AUTOAUTH/SESSION KILLER for those with there own batchfiles / macros...

Load application once, enter settings and check Auto load, then save, then next time you load settings will remain for uses with auto-it, etc...


autoauth.webp

download:
Download Release Multi Upload biz rar

THIS IS NOT THE DemonLoader this is a second tool just for SESSION KILLING standalone from the DemonLoader.
Will give it, its own thread once outa alpha, just released this for tesslerc.


SOURCE FOR NERDS:
Download Projects Multi Upload biz rar
(if u edit source / update, please share your update)
(Source is GPL)
(Both apps in this one zip)
SOURCE NEEDS UPDATE HERE, STICKING ON SVN NOW, MADE TO MANY CHANGES.
 
Last edited:
Nice work, would be glad to test it. Right now i'm at work.
Have you tested it with BuddyStats plugin perhaps?
 
No restrictions, just set settings "IE: Combat Routine" and such.
hmm actually you might need windows 7 due to UAC controls demonbuddy needs, and obviously you need .net framework, coded in c# if you are interested in code / helping, hit me up and ill stick it on svn.

this is pure ALPHA and more a proof of concept, its working as you can see in video, more testing and development will be done over the next few days, also below is a new tool a standalone session killer.


New TOOL:

stand alone AutoAuth / Session Killer tool here for batch files and auto-it scripts pure alphacurrently kills ALL sessions, will update and release in its own thread to kill sessions based on a passed timestamp.

(buddyauth site make it hard to navigate session collums, not much to tell apart other then a timestamp)

This below application dosnt have the monitoring its just AUTOAUTH/SESSION KILLER for those with there own batchfiles / macros...

Load application once, enter settings and check Auto load, then save, then next time you load settings will remain for uses with auto-it, etc...

Download autoauth Multi Upload biz zip

(scan your self, its in a ZIP anyway so the online scanners are pointless, i could post a report for you but im sure someone else will)

THIS IS NOT THE DemonLoader this is a second tool just for SESSION KILLING standalone from the DemonLoader.
Will give it, its own thread once outa alpha, just released this for teivovo.
 
Last edited:
Thanks alot :)
Btw how do i get this to run? seems all the files aren't executables (unless i'm doing something wrong)
*talking about kill buddyauth
 
The autokill program - opens the website, enters user and pw - opens the sessions tab.
but stops there. it doesn't kill the session atm.
 
multiple bots + window resize + location in future? xD that would be nice
 
Last edited:
The Save Button is greyed out for me... Cant save my settings... And after few min running I get a Framwork Error and the program crashes
 
Thanks trying it now but i get this error whenever it starts :S

asd.webp
 
Last edited:
31.170.160.129 is likely his update server. However, it's still possible that it connects to it for something other than updates. No use in jumping to conclusions of course, but to be on the safe side, it would really be nice if the source code was released.
 
I would be careful It is trying to talk to the IP 31.170.160.129

Demonbuddys auth server is

188.165.234.190

just an FYI


update server, i can see now it might look suss, why didnt you analyse the packets and see for your self?

Code:
class Updater
    {
        public Version checkVersionAutoUpdate(ListBox statusbar)
        {
            Utilities util = new Utilities();
            Version newVersion = null;
            string downloadURL = "http://toad.netau.net/demonloader/download";
            string xmlURL = "http://toad.netau.net/demonloader/update.xml";
            XmlTextReader reader = null;
            try
            {
                reader = new XmlTextReader(xmlURL);
                reader.MoveToContent();
                string elementname = "";
                if ((reader.NodeType == XmlNodeType.Element) && (reader.Name == "DemonLoader"))
                {
                    while (reader.Read())
                    {
                        if (reader.NodeType == XmlNodeType.Element)
                        {
                            elementname = reader.Name;
                        }
                        else
                        {
                            if ((reader.NodeType == XmlNodeType.Text) && (reader.HasValue))
                            {
                                switch (elementname)
                                {
                                    case "version":
                                        newVersion = new Version(reader.Value);
                                        break;
                                    case "url":
                                        downloadURL = reader.Value;
                                        break;
                                }
                            }
                        }

                    }
                }
            }
            catch (Exception ex)
            {
                util.loggerbox("[ERROR] " + ex, statusbar);
                MessageBox.Show("Error: " + ex);

            }
            finally
            {
                reader.Close();
            }
            Version applicationversion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
            if (applicationversion.CompareTo(newVersion) < 0)
            {
                util.loggerbox("New Version found!", statusbar);
                if (MessageBox.Show("There is a new version, would you like to update now?", "DemonLoader - TehToad ^_*", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    // user clicked yes
                    Process.Start(downloadURL);
                }
                else
                {
                    // user clicked no
                }
            }
            else
            {
                util.loggerbox("DemonLoader is up to date", statusbar);
                MessageBox.Show("DemonLoader is up to date");
            }

            return newVersion;
        }
    }
(please feel free to use this code to update your plugins guys, xml structure can be seen from code)

Anyway to those with the problem here is fix:

DELETE THIS LINE: MessageBox.Show("Error: " + ex);

(I left it in by mistake i did say alpha it was from testing >< )

This is discontinued for the other guys one is better, autoauth will be continued though.
 
Last edited:
Back
Top