Welcome to Dream.In.Code
Getting C++ Help is Easy!

Join 136,484 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 1,738 people online right now. Registration is fast and FREE... Join Now!




Quik Questions

 
Reply to this topicStart new topic

Quik Questions, C++ injection?

Buddah_iii
27 Jan, 2008 - 06:06 AM
Post #1

New D.I.C Head
*

Joined: 27 Jan, 2008
Posts: 10

im pretty new to c++ i was just wondering if it were possible to compile a program with c++ to inject a memory address into a server, so if i was to edit something so it wouldnt be clientside or edit serverside particular addresses lol if you catch my drift
User is offlineProfile CardPM
+Quote Post

no2pencil
RE: Quik Questions
27 Jan, 2008 - 06:14 AM
Post #2

My fridge be runnin OH NOEZ!
Group Icon

Joined: 10 May, 2007
Posts: 6,465



Thanked: 66 times
Dream Kudos: 2425
Expert In: Goofing Off

My Contributions
QUOTE(Buddah_iii @ 27 Jan, 2008 - 07:06 AM) *

im pretty new to c++ i was just wondering if it were possible to compile a program with c++ to inject a memory address into a server, so if i was to edit something so it wouldnt be clientside or edit serverside particular addresses lol if you catch my drift

Can you give a useful example?
User is online!Profile CardPM
+Quote Post

Buddah_iii
RE: Quik Questions
27 Jan, 2008 - 06:19 AM
Post #3

New D.I.C Head
*

Joined: 27 Jan, 2008
Posts: 10

QUOTE(no2pencil @ 27 Jan, 2008 - 07:14 AM) *

QUOTE(Buddah_iii @ 27 Jan, 2008 - 07:06 AM) *

im pretty new to c++ i was just wondering if it were possible to compile a program with c++ to inject a memory address into a server, so if i was to edit something so it wouldnt be clientside or edit serverside particular addresses lol if you catch my drift

Can you give a useful example?



ok say i have a memory adress editor in my case is Cheat engine i edit memory addresses but there only clientside was wondering if i could somehow inject that to make it serverside like by sending packets but the server changes packet id everytime and i dont know of any good packet sniffing / sending programs so..

And im heck of frustrated i want to learn c++ but dont know where to begin i found a good guide learn c++ in 21 days! lol which programs would you guys sudgest for c++ ?
User is offlineProfile CardPM
+Quote Post

no2pencil
RE: Quik Questions
27 Jan, 2008 - 06:20 AM
Post #4

My fridge be runnin OH NOEZ!
Group Icon

Joined: 10 May, 2007
Posts: 6,465



Thanked: 66 times
Dream Kudos: 2425
Expert In: Goofing Off

My Contributions
QUOTE(Buddah_iii @ 27 Jan, 2008 - 07:19 AM) *

And im heck of frustrated i want to learn c++ but dont know where to begin i found a good guide learn c++ in 21 days! lol which programs would you guys sudgest for c++ ?

Well, I wouldn't suggest learning memory injection as a beginner program. Check out the great snippets & tutorials here!
User is online!Profile CardPM
+Quote Post

Buddah_iii
RE: Quik Questions
27 Jan, 2008 - 06:23 AM
Post #5

New D.I.C Head
*

Joined: 27 Jan, 2008
Posts: 10

QUOTE(no2pencil @ 27 Jan, 2008 - 07:20 AM) *

QUOTE(Buddah_iii @ 27 Jan, 2008 - 07:19 AM) *

And im heck of frustrated i want to learn c++ but dont know where to begin i found a good guide learn c++ in 21 days! lol which programs would you guys sudgest for c++ ?

Well, I wouldn't suggest learning memory injection as a beginner program. Check out the great snippets & tutorials here!


lol im extremely motivated to learn injection!! lol... but yeah any tips on the memory ordeal? and a program to begin with?

User is offlineProfile CardPM
+Quote Post

NickDMax
RE: Quik Questions
27 Jan, 2008 - 12:46 PM
Post #6

2B||!2B
Group Icon

Joined: 18 Feb, 2007
Posts: 2,858



Thanked: 50 times
Dream Kudos: 550
My Contributions
Basically to control something on the server/host you need to have something running on the host that will receive your request and process it.

There are two basic ways of achieving this:

#1 write your own application that runs on the server.
#2 find a way to use/exploit a current process running on the server.

If you are an admin on the server then #1 is the best way to do (but it give you more info for working on #2).

If you do not have access to the host then you really have to work at either getting the second option to work, or find a way to get your code executed on the server (sometimes a little social engineering works well, but I would not count on it).

Basically -- it is just not very easy to just write an application that edits the memory of a foreign computer without running a process on the computer.
User is offlineProfile CardPM
+Quote Post

Buddah_iii
RE: Quik Questions
27 Jan, 2008 - 08:30 PM
Post #7

New D.I.C Head
*

Joined: 27 Jan, 2008
Posts: 10

QUOTE(NickDMax @ 27 Jan, 2008 - 01:46 PM) *

Basically to control something on the server/host you need to have something running on the host that will receive your request and process it.

There are two basic ways of achieving this:

#1 write your own application that runs on the server.
#2 find a way to use/exploit a current process running on the server.

If you are an admin on the server then #1 is the best way to do (but it give you more info for working on #2).

If you do not have access to the host then you really have to work at either getting the second option to work, or find a way to get your code executed on the server (sometimes a little social engineering works well, but I would not count on it).

Basically -- it is just not very easy to just write an application that edits the memory of a foreign computer without running a process on the computer.



So say for instance ie. i wanted to get $$ on a game i would have to do that? , and if packet ids where changed every packet is there a good program to look at the packets and see if there is a pattern on the id switch
User is offlineProfile CardPM
+Quote Post

Martyr2
RE: Quik Questions
27 Jan, 2008 - 08:39 PM
Post #8

Programming Theoretician
Group Icon

Joined: 18 Apr, 2007
Posts: 5,212



Thanked: 216 times
Expert In: C/C++, Java, VB, VB.NET, C#, PHP, Web Development, HTML & CSS, Javascript

My Contributions
You know, this is beginning to sound very illegal and not something that DIC should be helping with. I think Nick gave you the best most comprehensive advice we would be allowed to give. If you don't own the server and have access to write an application on it, then injecting into any other server's memory is pretty much an exploit/hack and probably illegal in some form.


User is online!Profile CardPM
+Quote Post

Buddah_iii
RE: Quik Questions
28 Jan, 2008 - 05:07 AM
Post #9

New D.I.C Head
*

Joined: 27 Jan, 2008
Posts: 10

QUOTE(Martyr2 @ 27 Jan, 2008 - 09:39 PM) *

You know, this is beginning to sound very illegal and not something that DIC should be helping with. I think Nick gave you the best most comprehensive advice we would be allowed to give. If you don't own the server and have access to write an application on it, then injecting into any other server's memory is pretty much an exploit/hack and probably illegal in some form.



lol i was using that as an example i asked for no help from you guys to hack a server.... I was just curios, alright well down to business time to learn C++
User is offlineProfile CardPM
+Quote Post

Reply to this topicStart new topic
Time is now: 12/2/08 07:11PM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month