Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > .NET Languages
You last visited: Today at 20:34

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

Advertisement



VB.net / C# Hack [Tutorial request]

Discussion on VB.net / C# Hack [Tutorial request] within the .NET Languages forum part of the Coders Den category.

Reply
 
Old   #1
 
ramijafary1's Avatar
 
elite*gold: 60
Join Date: Aug 2012
Posts: 227
Received Thanks: 79
Exclamation VB.net / C# Hack [Tutorial request]

Can someone make a VB.net (c++) or C# Tutorial, In this tutorial i want the MemoryWrite
I am not only the person who want to learn this, I wanna share this in my FB account =)
and Thanks
ramijafary1 is offline  
Old 07/09/2013, 18:42   #2
 
Schlüsselbein's Avatar
 
elite*gold: 0
Join Date: Feb 2013
Posts: 1,137
Received Thanks: 869
Make a video of you doing a lapdance first. Dont forget the sheet of paper with your nickname on it.
Schlüsselbein is offline  
Thanks
10 Users
Old 07/09/2013, 20:54   #3
 
Rorc's Avatar
 
elite*gold: 113
The Black Market: 133/2/0
Join Date: Dec 2009
Posts: 16,685
Received Thanks: 4,449
Quote:
Originally Posted by ramijafary1 View Post
Can someone make a VB.net (c++) or C# Tutorial, In this tutorial i want the MemoryWrite I am not only the person who want to learn this, I wanna share this in my FB account =)
and Thanks
Using Google, just by typing "vb net gamehacking", I found dozens of tutorials.
Maybe just try using Google first, before asking?
Rorc is offline  
Old 07/12/2013, 03:45   #4
 
ramijafary1's Avatar
 
elite*gold: 60
Join Date: Aug 2012
Posts: 227
Received Thanks: 79
Quote:
Originally Posted by Rorc View Post
Using Google, just by typing "vb net gamehacking", I found dozens of tutorials.
Maybe just try using Google first, before asking?
I didnot type "vb net gamehacking"
I typed that i want a VB.net MemoryWrite tutorial -_-
ramijafary1 is offline  
Old 07/12/2013, 07:12   #5


 
Requi's Avatar
 
elite*gold: 3800
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,039
Received Thanks: 8,243
Quote:
Originally Posted by ramijafary1 View Post
I didnot type "vb net gamehacking"
I typed that i want a VB.net MemoryWrite tutorial -_-
Memorywriting is hacking.
Requi is online now  
Old 07/13/2013, 20:36   #6
 
ramijafary1's Avatar
 
elite*gold: 60
Join Date: Aug 2012
Posts: 227
Received Thanks: 79
Exclamation

[QUOTE=Requi;23767836]Memorywriting is hacking.[/QUOE]

I know that -,-"
ramijafary1 is offline  
Old 07/13/2013, 23:32   #7
 
elite*gold: 10
Join Date: Aug 2012
Posts: 813
Received Thanks: 106
[quote=ramijafary1;23796613]
Quote:
Originally Posted by Requi View Post
Memorywriting is hacking.[/QUOE]

I know that -,-"
than type it in google before you ask... -.-

1) search for all words that you want (here it are memorywriting and gamehacking with vb.net)
2) if you didn´t find anything that you can ask here
GodHacker is offline  
Old 09/02/2013, 19:41   #8
 
ramijafary1's Avatar
 
elite*gold: 60
Join Date: Aug 2012
Posts: 227
Received Thanks: 79
[quote=GodHacker;23799579]
Quote:
Originally Posted by ramijafary1 View Post

than type it in google before you ask... -.-

1) search for all words that you want (here it are memorywriting and gamehacking with vb.net)
2) if you didn´t find anything that you can ask here
I didnot get any good result ._.
ramijafary1 is offline  
Old 09/03/2013, 08:28   #9
 
Atzenkeeper's Avatar
 
elite*gold: 6
Join Date: May 2008
Posts: 844
Received Thanks: 840

Ist zwar nicht das beste aber sollte reichen.
Atzenkeeper is offline  
Thanks
1 User
Old 09/09/2013, 11:38   #10
 
Tr.T!mbo's Avatar
 
elite*gold: 0
Join Date: Sep 2013
Posts: 13
Received Thanks: 0
You could start by using an example of MSDN :-D
Check "WriteProcessMemory"
Tr.T!mbo is offline  
Old 09/13/2013, 13:51   #11
 
Mi4uric3's Avatar
 
elite*gold: 405
Join Date: Dec 2007
Posts: 6,615
Received Thanks: 6,356
How about you look in the "Tutorials"-Section..?



Google-Translate is a friend.
Mi4uric3 is offline  
Old 09/14/2013, 20:30   #12
 
ramijafary1's Avatar
 
elite*gold: 60
Join Date: Aug 2012
Posts: 227
Received Thanks: 79
Ty all
ramijafary1 is offline  
Old 09/16/2013, 15:52   #13
 
elite*gold: 0
Join Date: Apr 2009
Posts: 133
Received Thanks: 96
Here is a C# class that can be used to edit integers in the memory, its an incomplete class im working on.

Code:
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace Namespace
{
    public class MemoryManager
    {
        [DllImport("kernel32.dll", SetLastError = true)]
        private static extern IntPtr OpenProcess(UInt32 dwDesiredAccess, Int32 bInheritHandle, Int32 dwProcessId);

        [DllImport("kernel32.dll")]
        public static extern Int32 CloseHandle(IntPtr hObject);

        [DllImport("kernel32.dll", SetLastError = true)]
        public static extern Int32 ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [Out] byte[] buffer, uint size, IntPtr lpNumberOfBytesRead);

        [DllImport("kernel32.dll", SetLastError = true)]
        public static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, uint nSize, IntPtr lpNumberOfBytesWritten);

        Process process;
        IntPtr baseAddress;
        int AddressLength;
        int ProcessID;
        IntPtr LinkHandle;

        public MemoryManager(string ProcessName)
        {
            process = Process.GetProcessesByName(ProcessName)[0];
            baseAddress = process.MainModule.BaseAddress;
            AddressLength = process.MainModule.ModuleMemorySize;
            ProcessID = process.Id;
            LinkHandle = OpenProcess(0x001F0FFF, 1, ProcessID);
            if (LinkHandle == IntPtr.Zero)
                throw new Win32Exception(Marshal.GetLastWin32Error());
        }

        public void Dispose()
        {
            process.Dispose();
            CloseHandle(LinkHandle);
        }

        public uint ReadUInt(uint Address)
        {
            byte[] buffer = new byte[4];
            if (ReadProcessMemory(LinkHandle, (IntPtr)Address, buffer, (uint)buffer.Length, IntPtr.Zero) == 0)
                throw new Win32Exception(Marshal.GetLastWin32Error());
            return BitConverter.ToUInt32(buffer, 0);
        }
        public byte[] ReadBytes(int Address, int byteCount)
        {
            byte[] buffer = new byte[byteCount];
            if (ReadProcessMemory(LinkHandle, (IntPtr)Address, buffer, (uint)buffer.Length, IntPtr.Zero) == 0)
                throw new Win32Exception(Marshal.GetLastWin32Error());
            return buffer;
        }
        public double ReadDouble(int Address)
        {
            byte[] buffer = new byte[8];
            if (ReadProcessMemory(LinkHandle, (IntPtr)Address, buffer, (uint)buffer.Length, IntPtr.Zero) == 0)
                throw new Win32Exception(Marshal.GetLastWin32Error());
            return BitConverter.ToInt64(buffer, 0);
        }

        public void WriteUInt(uint Address, uint Value)
        {
            if (!WriteProcessMemory(LinkHandle, (IntPtr)Address, BitConverter.GetBytes(Value), 4, IntPtr.Zero))
                throw new Win32Exception(Marshal.GetLastWin32Error());
        }
    }
}
You can use the class like this:

Code:
//fill in the process you want to hack
MemoryManager memoryManager = new MemoryManager("ProcessName");
//read an integer from the provided memory address
uint value = memoryManager.ReadUInt(0x009D3FD0);
//write an integer to the provided address
memoryManager.WriteUInt(0x009D3FD0, 123);
//dispose the manager
memoryManager.Dispose();
But as i said before its not complete, but you never really asked for anything specific.
nicolastyler is offline  
Thanks
1 User
Reply

Tags
vb.net / c# hack


Similar Threads Similar Threads
[REQUEST] Tetris Battle Hack Tutorial
02/24/2012 - Facebook - 1 Replies
Can someone please make or teach us how to make their own Hack/cheat in Tetris Battle.
[Request] A Video Tutorial on the injection hack
01/02/2012 - Flyff Hacks, Bots, Cheats, Exploits & Macros - 8 Replies
Hey i am Wondering if somebody could make a video tutorial on how to install/download and use this injection hack because the way its described sounds like the best hack i have ever heard of haha. i would very much love for myself and others to use this hack but there has been difficulties in people using this hack. thanks ^^
REQUEST tutorial for ranhe hack for archer with CE
06/19/2011 - Shaiya - 0 Replies
Hi, ive have been trying to do the range hack with the buff for archer with CE but it never works so i was hoping someone could post a tutorial because the person who wrote the other tutorial wasnt even english.........
1 Hit Hack Cheat Engine Tutorial Request
05/27/2010 - Metin2 - 1 Replies
Hi there, I know how to change Atk Speed, Mov Speed, Range & Type Weapon with CE But i have never find the way to get the 1hit hack like Multihacks. Someone can teach me how to get it with Cheat Engine ??? Thanks
[Request]Vac hack tutorial
02/08/2010 - 12Sky2 - 3 Replies
thx a lot for sharing^^ ps.i do many way but can't vac so plz teach me sorry for my english*-*



All times are GMT +2. The time now is 20:34.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.