detailed explanation of the archlord injector that Emme Wrote (before he deleted it from the attachment hehe):
well practically, its a fake program lol, and these are the details of the files he provided, before he deleted the attachments:
(the connect button)
(it basically views a typical ip address (from the us lol) and a string to the localhost
and creates a fake message the the connection to the archlord database succeeded!
(get accounts)
it basically creates a timer with a 6-10secs random interval and starts that timer to call this method:
which simply creates anothe rfake message of displaying 2148 fake accounts too.
(save accounts button?)
which simply creates a txt file called accounts.txt by reading the contents of anther txt file which is (CppApplication-form.exe )---> rename it to CppApplication-form.txt to see the contentes
so in general what that code does is this: provides fake info, fake coding, fake timer, no connection to any database and nothing.
so basically, all the code is just a fake, and it might be a joke to u emme
but its not for most of the users
Emme dont delete this post lol
srry i didnt run the application lol (because i remember when i was with u emme the other day u were writting another fake C# program which terminates task manager repeatedly and displays a message: "you got owned" and the name of that applicatoni was: "account hacker" lol -- that was when u were asking Dnote to talk to u on msn lol- i caught a glimpse of the other "account hacker" source code on the fly when u were with me on teamsviewer before we dced :).
so i didnt run the tools u provided, just refected them :( to see the source code.
any way, read my email, i still want what i asked for if u have it lol.
well practically, its a fake program lol, and these are the details of the files he provided, before he deleted the attachments:
(the connect button)
Code:
private void button1_Click(object sender, EventArgs e)
{
if (((this.textBox4.Text == "localhost") && (this.textBox5.Text == "19.21.555.2")) && (this.textBox6.Text == "archlordv3"))
{
MessageBox.Show("Connected to Archlord database!", "Success!");
this.panel1.Visible = true;
}
else
{
MessageBox.Show("Could not connect to Archlord database", "No connection!");
}
}
and creates a fake message the the connection to the archlord database succeeded!
(get accounts)
Code:
private void button2_Click(object sender, EventArgs e)
{
Random r = new Random();
this.textBox7.Text = "Getting characters...";
this.t.Interval = r.Next(0x1770, 0x2710);
this.t.Tick += new EventHandler(this.t_Tick);
this.t.Start();
}
Code:
private void t_Tick(object sender, EventArgs e)
{
MessageBox.Show("Loaded 2148 accounts. Wish to save?");
this.textBox7.Text = "Wish to save accounts?";
this.t.Stop();
}
(save accounts button?)
Code:
private void button3_Click(object sender, EventArgs e)
{
if (this.textBox7.Text == "Wish to save accounts?")
{
File.WriteAllText(Application.StartupPath + @"\accounts.txt", File.ReadAllText(Application.StartupPath + @"\CppApplication-form.exe"));
MessageBox.Show("Accounts have been saved in 'accounts.txt'");
}
else
{
MessageBox.Show("No accounts are loaded");
}
}
so in general what that code does is this: provides fake info, fake coding, fake timer, no connection to any database and nothing.
so basically, all the code is just a fake, and it might be a joke to u emme
but its not for most of the users
Emme dont delete this post lol
srry i didnt run the application lol (because i remember when i was with u emme the other day u were writting another fake C# program which terminates task manager repeatedly and displays a message: "you got owned" and the name of that applicatoni was: "account hacker" lol -- that was when u were asking Dnote to talk to u on msn lol- i caught a glimpse of the other "account hacker" source code on the fly when u were with me on teamsviewer before we dced :).
so i didnt run the tools u provided, just refected them :( to see the source code.
any way, read my email, i still want what i asked for if u have it lol.