https://m.blog.naver.com/PostView.nhn?blogId=sol9501&logNo=70107857763
https://blesseddeveloper.tistory.com/56
게임 프로그램 하나 구동시키는데 필요한 dll 파일에 멀웨어 감지가 되어 자꾸 검역소로 간다.
현재 멀웨어 감지되는 dll 파일의 manifest 파일은 다음과 같다.
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
혹시나 해서 다음의 권한 수정 구문을 지워보았더니 멀웨어 진단을 안한다..
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
다른 일반적으로 배포되는 프로그램들에 딸려오는 dll들은 어지간하면 안잡히던데 이 dll파일은 왜 그런걸까