Toggle navigation
Toggle navigation
This project
Loading...
Sign in
I_Jemin
/
ITHVNR_kor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
I_Jemin
2016-12-11 12:01:42 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
d1e6b824a19644e51434c8e27d72c73691bc10dc
d1e6b824
2 parents
2022aa04
a0f7e1e7
Merge remote-tracking branch 'refs/remotes/mireado/master'
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletions
vnr/vnrhook/src/engine/engine.cc
vnr/vnrhook/src/engine/engine.h
vnr/vnrhook/src/engine/match.cc
vnr/vnrhook/src/engine/engine.cc
View file @
d1e6b82
This diff is collapsed. Click to expand it.
vnr/vnrhook/src/engine/engine.h
View file @
d1e6b82
...
...
@@ -120,6 +120,7 @@ bool InsertMBLHook(); // MBL: *.mbl
bool
InsertMEDHook
();
// MED: *.med
bool
InsertMinkHook
();
// Mink: *.at2
//bool InsertMonoHook(); // Mono (Unity3D): */Mono/mono.dll
bool
InsertNekopackHook
();
// Nekopack: *.dat
bool
InsertNeXASHook
();
// NeXAS: Thumbnail.pac
bool
InsertNextonHook
();
// NEXTON: aInfo.db
bool
InsertNexton1Hook
();
...
...
vnr/vnrhook/src/engine/match.cc
View file @
d1e6b82
...
...
@@ -121,7 +121,7 @@ bool DetermineEngineByFile1()
InsertSideBHook
();
return
true
;
}
if
(
IthFindFile
(
L"bgi.*"
)
||
IthFindFile
(
L"
BHVC.exe"
)
||
IthFindFile
(
L"
sysgrp.arc"
))
{
if
(
IthFindFile
(
L"bgi.*"
)
||
IthFindFile
(
L"sysgrp.arc"
))
{
InsertBGIHook
();
return
true
;
}
...
...
@@ -329,6 +329,10 @@ bool DetermineEngineByFile3()
InsertStuffScriptHook
();
return
true
;
}
if
(
IthFindFile
(
L"USRDIR
\\
*.mpk"
))
{
// jichi 12/2/2014
InsertStuffScriptHook
();
return
true
;
}
if
(
IthCheckFile
(
L"Execle.exe"
))
{
InsertTriangleHook
();
return
true
;
...
...
@@ -613,6 +617,9 @@ bool DetermineEngineAtLast()
if
(
IthFindFile
(
L"*.pak"
)
// jichi 12/25/2014: too common
&&
InsertLeafHook
())
return
true
;
if
(
IthFindFile
(
L"*.dat"
)
// mireado 08/22/2016: too common
&&
InsertNekopackHook
())
return
true
;
// jichi 10/31/2014
// File description: Adobe Flash Player 10.2r153
// Product name: Shockwave Flash
...
...
Please
register
or
login
to post a comment