Question , phconnector experts.

12/27/2013 18:02 tohoo#1
how can i use phconnector to block opcode :
1-from passing to client?
2-from passing to server?
i can use phconnector right well but only for scanning packets :D but cant use it to block packets :confused:.
anyone can tell me?
pls need ur help
12/27/2013 20:18 DaxterSoul#2
Code:
Private Sub Command2_Click()
'Block opcode
InjectPacket "0001", inversebyte("7021"), False, False
End Sub

Private Sub Command3_Click()
'Unblock opcode
InjectPacket "0002", inversebyte("7021"), False, False
End Sub
Source:
[Only registered and activated users can see links. Click Here To Register...]
12/29/2013 11:51 tohoo#3
Thanx alot Sir "DaxterSoul"
i appreciate ur help .
works like a charm. :)
12/29/2013 11:56 Eslam Galull#4
@Tohoo
What about Posting Your Ways For Only Listen TO 1 packet ? :D
12/29/2013 13:37 tohoo#5
i use phocnnector as proxy between Client and server
Client <-> phconnrctor <-> Server
i use VB6 to connect to Socket in Phconnector
packets i receive come at winsock1_DataArrival event
i parse it by packetparser to any list or text to appear for me in form
at this way
{(S to C ) opcode , data } ' this for packet going from server to client
{(C to S ) opcode , data } ' this for packet going from Client to server
this my general idea i use it.