Skip to content

Commit

Permalink
Replace jumps to NOP in auth_req patch. Should help to join off with …
Browse files Browse the repository at this point in the history
…GProxy
  • Loading branch information
w3lh committed May 22, 2016
1 parent 5998503 commit 17ccdad
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 17 deletions.
4 changes: 2 additions & 2 deletions dll/patches.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ t_sig auth_req_sig = {

/* Force verify */
char auth_req_patch_data[] = {
0x74
0x66, 0x90
};

t_patch auth_req_patch = {
1,
2,
auth_req_patch_data,
"auth_req"
};
Expand Down
8 changes: 4 additions & 4 deletions dll/w3lh.rc
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
//

1 VERSIONINFO
FILEVERSION 1,4,0,1
PRODUCTVERSION 1,4,0,1
FILEVERSION 1,4,1,0
PRODUCTVERSION 1,4,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,12 +43,12 @@ BEGIN
VALUE "Comments", "Latest versions of this loader and other tools @ http://keres.myftp.org"
VALUE "CompanyName", "w3l"
VALUE "FileDescription", "Warcraft 3 Game.dll hook for PvPGN"
VALUE "FileVersion", "1.4.0.1"
VALUE "FileVersion", "1.4.1.0"
VALUE "InternalName", "w3lh"
VALUE "LegalCopyright", "(c) 2008 Keres / Rupan / phatdeeva"
VALUE "OriginalFilename", "w3lh.dll"
VALUE "ProductName", "w3l"
VALUE "ProductVersion", "1.4.0.1"
VALUE "ProductVersion", "1.4.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions dll_27a/patches.h
Original file line number Diff line number Diff line change
Expand Up @@ -240,17 +240,17 @@ char auth_req_sig_data[] = {
t_sig auth_req_sig = {
21,
auth_req_sig_data,
5,
4,
"auth_req"
};

/* Force verify */
char auth_req_patch_data[] = {
0x84
0x66, 0x0F, 0x1F, 0x44, 0x00, 0x00
};

t_patch auth_req_patch = {
1,
6,
auth_req_patch_data,
"auth_req"
};
Expand Down
8 changes: 4 additions & 4 deletions dll_27a/w3lh.rc
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
//

1 VERSIONINFO
FILEVERSION 1,4,0,1
PRODUCTVERSION 1,4,0,1
FILEVERSION 1,4,1,0
PRODUCTVERSION 1,4,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,12 +43,12 @@ BEGIN
VALUE "Comments", "Latest versions of this loader and other tools @ http://keres.myftp.org"
VALUE "CompanyName", "w3l"
VALUE "FileDescription", "Warcraft 3 Game.dll hook for PvPGN"
VALUE "FileVersion", "1.4.0.1"
VALUE "FileVersion", "1.4.1.0"
VALUE "InternalName", "w3lh"
VALUE "LegalCopyright", "(c) 2008 Keres / Rupan / phatdeeva"
VALUE "OriginalFilename", "wl27.dll"
VALUE "ProductName", "w3l"
VALUE "ProductVersion", "1.4.0.1"
VALUE "ProductVersion", "1.4.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions exe/w3l.rc
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
//

1 VERSIONINFO
FILEVERSION 1,4,0,1
PRODUCTVERSION 1,4,0,1
FILEVERSION 1,4,1,0
PRODUCTVERSION 1,4,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -54,12 +54,12 @@ BEGIN
VALUE "Comments", "Latest versions of this loader and other tools @ http://keres.myftp.org"
VALUE "CompanyName", "w3l"
VALUE "FileDescription", "Warcraft 3 1.22a-1.27a+ loader for PvPGN"
VALUE "FileVersion", "1.4.0.1"
VALUE "FileVersion", "1.4.1.0"
VALUE "InternalName", "w3l"
VALUE "LegalCopyright", "(c) 2008 Keres / Rupan / phatdeeva"
VALUE "OriginalFilename", "w3l.exe"
VALUE "ProductName", "w3l"
VALUE "ProductVersion", "1.4.0.1"
VALUE "ProductVersion", "1.4.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 6 additions & 0 deletions readme_w3l.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ Latest releases of w3l @ http://keres.myftp.org
PvPGN forums @ http://pelish.spfree.net/

Changelog:
Version 1.4.1.0
* Allows connect to official BNet through GProxy

Version 1.4.0.1
* Remove tons of CRT code to reduce executable size

Version 1.4
* Added 1.27a version support

Expand Down

0 comments on commit 17ccdad

Please sign in to comment.