You are viewing our Forum Archives. To view or take place in current topics click here.
Ghost Vapour TU16 Source Code?
Posted:
Ghost Vapour TU16 Source Code?Posted:
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
Does anyone have it?
I just need it to update some of my offsets. I am a noob but I do know how to code a little.
I would love to have the source so I can fix the offset and bytes for my tool I'm making. Thanks!
I just need it to update some of my offsets. I am a noob but I do know how to code a little.
public partial class Form1 : DevComponents.DotNetBar.Metro.MetroForm
{
XRPC Ghost = new XRPC();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Ghost.Connect();
if (Ghost.activeConnection)
MessageBox.Show("Connected!");
else
MessageBox.Show("Failed To Connect!");
I would love to have the source so I can fix the offset and bytes for my tool I'm making. Thanks!
#2. Posted:
Status: Offline
Joined: Jun 09, 201410Year Member
Posts: 92
Reputation Power: 3
Status: Offline
Joined: Jun 09, 201410Year Member
Posts: 92
Reputation Power: 3
jtaghacks135 wrote Does anyone have it?
I just need it to update some of my offsets. I am a noob but I do know how to code a little.
public partial class Form1 : DevComponents.DotNetBar.Metro.MetroForm
{
XRPC Ghost = new XRPC();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Ghost.Connect();
if (Ghost.activeConnection)
MessageBox.Show("Connected!");
else
MessageBox.Show("Failed To Connect!");
I would love to have the source so I can fix the offset and bytes for my tool I'm making. Thanks!
Damn, that's some source you got there brah. Back to what you were saying, getting the source of this tool would mean deobfuscating, which sucks *** and would be pointless in this case. Just look up how to update/find offsets using IDA, there are a lot of tutorials on YouTube and other forums.
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
GlitchHop wrotejtaghacks135 wrote Does anyone have it?
I just need it to update some of my offsets. I am a noob but I do know how to code a little.
public partial class Form1 : DevComponents.DotNetBar.Metro.MetroForm
{
XRPC Ghost = new XRPC();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Ghost.Connect();
if (Ghost.activeConnection)
MessageBox.Show("Connected!");
else
MessageBox.Show("Failed To Connect!");
I would love to have the source so I can fix the offset and bytes for my tool I'm making. Thanks!
Damn, that's some source you got there brah. Back to what you were saying, getting the source of this tool would mean deobfuscating, which sucks *** and would be pointless in this case. Just look up how to update/find offsets using IDA, there are a lot of tutorials on YouTube and other forums.
I was proving that I can code a little. What is IDA?
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.