viplugin2的破解

今天升级了一下viplugin,这个是eclipse下模拟vi的一个插件,结果发现它的验证机制更新了,原来的破解不能用了。好在java的程 序反编译不是很麻烦,于是就去看了一下,发现新版的加密程序在com.mbartl.viplugin.eclipse.layer_2.0.0/lib /licensechecker.jar中,你只需要将lib下的文件放在classhpath上,然后调用 CheckLicenseFile.encrypt(name, email)方法就能得到一个注册码,将这个注册码保存到一个叫viPlugin2.lic的文件中放在workspace或者eclipse根目录下就 可以了。

如果嫌麻烦的话,这里提供了一个可用的注册码如下:

q1MHdGlxh7nCyn_FpHaVa8ucV6QZwObn-_yM-8HcMu4

 

 

转自:http://blog.csdn.net/hopingwhite/article/details/7098606

 org.springframework.web.context.WebApplicationContext

org.springframework.web.context.support.WebApplicationContextUtils

com.apusic.content.security.PrincipalManager

com.apusic.content.security.User

WebApplicationContext wac = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());

PrincipalManager pm = (PrincipalManager)wac.getBean("principalManager");

com.apusic.content.security.User user = pm.getUser(name);

String label = user.getLabel();

 

SessionManager sysSessionManager = (SessionManager)InternalAcmContext.getInternal(SessionManager.class.getName());

 

import com.apusic.content.util.repository.InternalAcmContext;

 

import com.apusic.content.util.repository.SessionManager;

你可能感兴趣的:(plugin)