I use this code the specifie the function when I want to call the DLL
void MainThread()
{
again:
SystemProcessesScan();
Sleep(350);
goto again;
}
Type: Posts; User: TheMarKs
I use this code the specifie the function when I want to call the DLL
void MainThread()
{
again:
SystemProcessesScan();
Sleep(350);
goto again;
}
so right! an antidebugger may be a good idea. will try it soon. Thank you guys! you helped me so much
on Windows server 2008..
what should I do to make my server secure? it's a verification server: connect, send information, get information back, close connection.
is there anyway to prevent packet reading or packet sendind if not from my server?
Yeah good option. But I was scared that someone could read the packets that my server need to execute the action. And just send that packets with another application and get authorization to login.
Hi guys how's life?
Well, I am creating a client-server connection, sending and receiving data.
Private Sub RequestAuth_DataArrival(ByVal bytesTotal As Long)
Dim Authorization As...
I GOT IT! the way i wanted.
created a list with the ip adresses currently connected to the anticheat server.
but now I have an other problem..
-> I want to set a timer to verify if the ip...
Yeah, I agree. I will do it.
and I guess he wont be able to disassemble the anticheater, because I wil crypt it with yoda's crypter. I've never seen a yoda's unpacker.
Thats why the official servers sucks. They need to create new features to incentive the players to buy cash. It is all about money.
I had an idea:
I will make the anticheat answer something...
No. It is a GunBound Server.
I cannot edit the GAME server, I can only edit the LOGIN SERVER, and this login server can watch the users using a timer, With this timer I will check if all the users connected to the login server...
flyguille, I am not developing the game. I just have created a LOGIN SERVER, based on an existing one. Everything is ok, working perfecty. So then I put a anticheat server, and I just need to be sure...
Yeah they could be differente. He can be connected to the game with the index 1, and connected to the anticheat server on index 2. Remember, there are 2 WINSOCKS. I just need to be sure that all the...
I have the GAME SOCKET that is working perfectly and another winsock, the anticheat winsock.
I have an application that works as updater and anticheater.
I need to be sure that while the user...
Thank you DataMiser.
but i've just had another idea.
I want to check if the the IP that is connected to Winsock1 is connected to Winsock2 too, how can I do it?
I thought about do this:
...
anyone? :s
Hi guys,
I have a game server, that people can connect using winsock indexes. But in another section of the game, the user get disconnect of Winsock Index 1, and get connected to Winsock Index 2
...
i have 3 programs (example):
program1.exe
program2.exe
program3.exe
the entrypoint of the program1.exe is 00FFFF, then, my VB Program search in the process list if some process has the...
no, i want to find by process entrypoint, and not by process name
pay atention to what i want to do!
i dont want to check if my app is running, i want to check if an another application is running, just using the entrypoint ...
example:
i know this...
hi people,
if you can, help-me! :D
what i want to do is:
Check if a program is running on memory, using EntryPoint and Offsets ..
pay atention:
hello peoples ..
i have a question here..
please, some1 knows how to save a BINARY VALUE to the windows registry ??
like here:
SaveDWord HKEY_LOCAL_MACHINE, "SOFTWARE\Windows\Test",...
woow thank you lavolpe and thanks to every1 who tryies to help me!
the code is working:
Private Sub Form_Load()
' integer is 2 bytes, since you only want to read two bytes
' and you know what...
ye, the files is here http://www.sendspace.com/file/0gjfvy
and look the value is 20 03, if you invert to 03 20, its 800, understand?
smux, using it:
Dim image As String
image = Asc(Mid(globalfile, 14, 1)) + (Asc(Mid(globalfile, 13, 1)) * 256)
txt1.Text = image
remember: byte 13 = 20, byte 14 = 03
i got txt1.text = 19579
Thats a image header, from a gamesystem ..
If i can read the 20 03, I can invert to 03 20 = 800, then I have the width of the image, understand?
in ALL the files I want to read, this...
so HOW can I read the HEX part of the file?
ok
in the imagem we can see the byte 13 and 14 selected right?
why when I use
image = Mid(globalfile, 13, 4)
msgbox image
I get {L{L ..
but can you explain? it returns me: ack. when I use Mid("C:\file.exe", 13, 4)
hi people again :(
I am trying it somethink like 1 hour ago,
but i cant!
i am trying to read a file by BYTE position -> image = Mid("C:\file.exe", 13, 14)
it must show me the byte 13 and...
Dim theString As String
theString = "2003"
theString = Right$(theString, 2) & Left$(theString, 2)
MsgBox theString
it resolvs my problem, thank you!
hello guys, some1 can help ?
I read a byte from a file, and convert to hex,
now i got: 20 03
i want to invert it to 03 20
understand?
how can I do it'?
i am really sorry, i did not know how to explain myself .
pay atention please..
my 6 first bytes on file is:
4D 5A 90 00 03 00 = MZ....
When I open the file, i open in BINARY ACCESS, i want to read as HEX the first 6 bytes understand?
I dont understand .. can you explain ?
hello guys, please help me if u can
i have a file with 48 bytes ..
I want to read this 48 bytes this way:
TextBox 1 = byte 1 to 12 of 48
TextBox 2 = byte 13 to 24 of 48
TextBox 3 = byte...
oh really sorry!
it will not repeat.
hello guys, thanks for reading it.. I hope you can help me ..
i need to do that:
I have a program that have an entrypoint (like that -> 0040694E), at this entrypoint, i have 32 offsets (like...