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:

jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year 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.

   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:
GlitchHop
  • Junior Member
Status: Offline
Joined: Jun 09, 20149Year Member
Posts: 92
Reputation Power: 3
Status: Offline
Joined: Jun 09, 20149Year 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.
#3. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
GlitchHop wrote
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.


I was proving that I can code a little. What is IDA?
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.