dev终极破解

 

从上图及前面几图推导,lock代码并不影响(原因在dxlicenseprovider中自行分析)。于是破解代码如下。其实上面我们已经看到还有一种方式,

string environmentVariable = Environment.GetEnvironmentVariable("TeamFoundationServerUrl");
string name = WindowsIdentity.GetCurrent().Name;
if (((environmentVariable != null) && environmentVariable.Contains("visualstudio.com")) && ((name != null) && name.Contains("buildguest")))

 

 

满足以上条件也可破解,当然我们不可能真的按照上图去建立用户,我们可以利用windows编程,做windows的hook拦截某些系统调用,从而达到破解的目的

 

 

posted @ 2014-10-24 19:18  lucylove  阅读(856)  评论(0编辑  收藏  举报