惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Security Affairs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Jina AI
Jina AI
P
Palo Alto Networks Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
雷峰网
雷峰网
T
Tenable Blog
人人都是产品经理
人人都是产品经理
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
AWS News Blog
AWS News Blog
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Scott Helme
Scott Helme
SecWiki News
SecWiki News
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
I
InfoQ
Security Archives - TechRepublic
Security Archives - TechRepublic
Help Net Security
Help Net Security
Cloudbric
Cloudbric
C
Check Point Blog
Engineering at Meta
Engineering at Meta
TaoSecurity Blog
TaoSecurity Blog
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
N
News and Events Feed by Topic
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
腾讯CDC
量子位
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
Kaspersky official blog
Vercel News
Vercel News
F
Full Disclosure
T
Troy Hunt's Blog
Forbes - Security
Forbes - Security
S
Security @ Cisco Blogs

博客园 - 金鹏

独立的MySQL数据库需要做配置才能在外部访问到。 Visual Studio 2008简体中文试用版(90天)变成永久正式版的两种方法 扫描局域网内电脑,并获得对应的MAC地址和主机名 Zend Studio for Eclipse 环境搭建 巧设路由器 实现电信、网通南北互通 微软官方SQL Server 2008正式中文试用版下载 [转]如何循序渐进向DotNet架构师发展 [转]Asp.net中防止用户多次登录的方法 使用AJAX动态加栽JS脚本和CSS样式 [转]几种流行的AJAX框架jQuery,Mootools,Dojo,Ext JS的对比 [转]七年IT奋斗纪实及感悟 IE8的主页使用IE8访问居然也报JS错误 今天向四川汶川地震灾区捐献了100元,表达自己的心意. 绿豆蛙主题乐园 如何避免出现“终端服务器超出了最大允许连接数” 超越 —— 零点乐队 C# 2005 & .NET 3.0 高级编程(第5版) [转]解开最后期限的镣铐 性能问题依旧困扰着VS 2008
[转]VisualSVN 1.5.x 破解方法详解
金鹏 · 2008-09-02 · via 博客园 - 金鹏

原文地址:http://www.cnblogs.com/nsnail/archive/2008/06/27/1231331.html

1. http://www.visualsvn.com/visualsvn/download,下载1.5.x版安装(需要SVN1.5或以上环境)。
2. 进入.NET Framework命令提示符,输入

ildasm "C:\Program Files\VisualSVN\bin\VisualSVN.Core.dll" /out="C:\Program Files\VisualSVN\bin\VisualSVN.Core.il"


3. 文本编辑器打开刚才输出的il文件,查找

.method public hidebysig static bool  IsValid(

,将该方法括号内的代码体替换成

.maxstack  8
IL_0000:  ldc.i4.
1
IL_0001:  ret


(去掉Lincense判断直接return true)。


4. 回到命令行输入

ilasm "C:\Program Files\VisualSVN\bin\VisualSVN.Core.il" /dll

,编译得到新的dll覆盖原VisualSVN.Core.dll。


5. 破解完毕,打开VS.NET,点击VisualSVN菜单->Registration,输入任意字符点击OK注册成功。

6. 此时About菜单上显示的还是"No License",觉得不好看的话,直接在il文件中查找该字符串替换成你的名字重新编译即可。