|
You last visited: Today at 00:08
Advertisement
Sending Packets
Discussion on Sending Packets within the PW Hacks, Bots, Cheats, Exploits forum part of the Perfect World category.
10/13/2010, 08:01
|
#46
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
You mean you don't actually have one of those in your inventory?
|
|
|
10/13/2010, 09:08
|
#47
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
not exactly lol, actually I used up all of the gsp I had before I got that message, was hoping it would do the opposite and keep giving me reps
|
|
|
10/13/2010, 09:45
|
#48
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
Hehehe, one can always try I suppose, but don't get your hopes up trying to cheat by sending packets, any decent game will check the actions server side
Botting will always be the easiest way to cheat
|
|
|
10/13/2010, 10:41
|
#49
|
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 794
|
Am I blind or there`s no need for encryption? o.o
|
|
|
10/13/2010, 12:57
|
#50
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
Interest07, just a quick question, not sendpacket related though but since u'r here i'll ask anyway
what can be used to detect connection state to the server so we can make an alarm to sound if a char is disconnected ?
sometimes having several clients running and logged in, after a few hours or days, only some of them might be disconnected while the others are fine.
|
|
|
10/13/2010, 14:02
|
#51
|
elite*gold: 0
Join Date: Jan 2010
Posts: 3
Received Thanks: 1
|
By sending packets all clear, but somebody has found how to read the received packets?
|
|
|
10/13/2010, 23:57
|
#52
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
Quote:
Originally Posted by Smurfin
Interest07, just a quick question, not sendpacket related though but since u'r here i'll ask anyway
what can be used to detect connection state to the server so we can make an alarm to sound if a char is disconnected ?
sometimes having several clients running and logged in, after a few hours or days, only some of them might be disconnected while the others are fine.
|
Prolly have to see if the window informing you you have been disconnected is up. I've never looked around for it though, so don't have that info available.
Quote:
Originally Posted by KraHen
Am I blind or there`s no need for encryption? o.o
|
This way you inject the packets just befor they are encrypted and sent to the server, so you don't need to encrypt them yourself indeed
|
|
|
10/14/2010, 06:22
|
#53
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
can they put like 'reject unencrypted packet' routine in their patch ?
|
|
|
10/14/2010, 07:40
|
#54
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
Well, in order to send encrypted packets, they have to create the unencrypted packet first. Then send that packet to an encryption function. So you can always find the place where they do this, and inject your packet there. Until they start using a separate encryption function for every different packet, there won't be any problem.
They can't detect the fact you are injecting an unencrypted packet server side, because they are receiving an encrypted packet.
|
|
|
10/14/2010, 08:09
|
#55
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
nice, then this sendpacket script will always work
|
|
|
10/14/2010, 09:15
|
#56
|
elite*gold: 0
Join Date: Sep 2008
Posts: 35
Received Thanks: 0
|
Hello everyone, I am just switching from using C++ dll to inline C# code for injection code, but the client just crash all the time 
Please take a look at the code and help me
Code:
public void testInjectNormalAtk(int pID)
{
string opcode = "";
// asm
// pushad;
// mov eax, commonAtkAddress;
// call eax;
// popad;
// ret;
opcode += "60";
opcode += "B8" + "5F51A0";
opcode += "FFD0";
opcode += "61";
opcode += "C3";
byte[] baOpcode = CalcBytes(opcode);
IntPtr hProcess = openProcess(pID);
IntPtr allocatedAddress = VirtualAllocEX(hProcess, IntPtr.Zero, (IntPtr)baOpcode.Length );
bool success = WriteMemory(hProcess, intPtr2UIntPtr(allocatedAddress), baOpcode, (uint)baOpcode.Length);
IntPtr threadid = CreateRemoteThread(hProcess, allocatedAddress, IntPtr.Zero);
WaitForSingleObject(hProcess);
// clean up
CloseHandle(threadid);
VirtualAllocFree(hProcess, allocatedAddress, baOpcode.Length);
CloseHandle(hProcess);
}
Is there any thing wrong with the opcode ?
the last post was in wrong thread 
thank all ^^
|
|
|
10/14/2010, 09:32
|
#57
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
I replied in the other thread you posted
|
|
|
10/17/2010, 08:37
|
#58
|
elite*gold: 0
Join Date: Sep 2008
Posts: 35
Received Thanks: 0
|
I tracked the value in ESI when the call function call SendPackage but I dont know how to convert them like you guys did 
Do I need to swap the high byte and low byte around? I think it's the way
|
|
|
10/18/2010, 17:08
|
#59
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
Interest07, do yo have the log back in packet after using logout=1 or also the log in with id&pass packet after using logout=0 ?
|
|
|
10/20/2010, 12:09
|
#60
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
They aren't sent with this sendPacket function.
By the way I suppose nobody actually uses these cos I just noticed some mistakes hehehe.
|
|
|
 |
|
Similar Threads
|
Help with sending packets in autoit
08/16/2010 - AutoIt - 1 Replies
ive been lookin around different sites for ways to send packets to the game server. the only examples i see is to create a server and a client which i dont need, i think. well to the point now, can someone lead me in a direction or tell me how to send packets to a game? also if i send packets then that means i dont need the game to be active, correct? Because in autoit when u use keys u need to have the game active, and control send does not work. ty
|
Sending Packets !!!
09/07/2008 - Kal Online - 14 Replies
now i know how to sniff / analyse packets ... but what then ? :)
how can i send packets ?? to pimp or mix weapon for example
i just need the way to send , and then i can depend on myself :D
|
Sending Packets (need advice)
03/20/2008 - Conquer Online 2 - 7 Replies
OK well im finaly trying to stop leaching off of everybodys work its been great n all download n play :D But im tired of being a begger n the past couple months ive been learning as much as i can about macros memery add blah blah you know ...
After playing around with ce and ahk the past couple months i stumbled across wpe pro, theres not alot of tuturals and its hard to find good help.
Well heres what ive been doing so far, open my CO then i attach it to my sniffer.
I change my...
|
Scamming by sending packets???
04/15/2006 - Conquer Online 2 - 1 Replies
Well my friend and i came up with the idea to send packets to the server to show a certain item in the trade window. We want to use this as a type of scam. I didnt see this in any other threads and was wondering if anyone knew if this is possible and if they could point use in the right direction. My friend was pretty good with packets in CO 1.0 but we arent really sure to go about doing it. If anyone one could please lend a helping hand?
P.S.- Before I get flamed for this because i know i...
|
Sending packets
10/12/2005 - Conquer Online 2 - 10 Replies
I've a question. Is it possible to send 1 packet multiple times at the exact same time?
|
All times are GMT +1. The time now is 00:08.
|
|