忘记 VS 项目 pfx 文件的密码
我正在尝试从另一台计算机处理旧的 Visual Studio 2010 项目,但我忘记了用于对程序集进行签名的 pfx 文件的密码。是否有可能破解密码或者有没有办法在不知道密码的情况下构建项目?
I'm trying to work on an old Visual Studio 2010 project from another computer, but I forgot the password for the pfx file used to sign the assembly. Is it possible to crack the password or is there a way to build the project without knowing the password?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您记得密码的某些特征(即以“pass”开头,不包含波浪号、与号、数字 6 - 9 等),您可以使用 此实用程序 (boredwookie.net) 我编写的目的是帮助您恢复密码。它是根据开源 (MIT) 许可证发布的,因此您可以了解它的工作原理。
If you remember certain characteristics about your password (i.e. starts with 'pass', does not contain tilde, ampersand, digits 6 - 9, etc...) you could use this utility (boredwookie.net) I wrote to help you recover the password. It is released under an Open Source (MIT) License so you can see how it works.
您可以创建一个新密钥来对程序集进行签名。
1)打开项目。
2) 在解决方案资源管理器中右键单击项目名称,然后单击属性。
3) 在“签名”选项卡上显示“选择强名称密钥文件:”时,选择“新建..”
4) 使用对话框窗口创建新的密钥文件,并使用您能记住的内容对其进行密码编码。
You can create a new key to sign the assembly with.
1) Open the project.
2) Right click the project name in solution explorer and click properties.
3) On the Signing tab where it says "Choose a strong name key file:", select "New.."
4) Use the dialog window to create a new key file and password encode it with something you can remember.
在记事本中打开项目文件。找到signtool.exe命令行。这是 /p 开关后面的字符串...
Open the project file in Notepad. Find the signtool.exe command line. It's the string after the /p switch...
你可以创建一个新的吗?您也许能够破解密码,但如果您不在其他项目中使用它,那就更容易了。
Can you just create a new one? You might be able to crack the password but if you arent using it in other projects it would be easier.
这是一个旧项目,作者已经走了。我只是确保未选中程序集的标志,并且删除了项目中的所有 pfx 文件。
This was an old project and the author was gone. I just made sure the sign the assembly was unchecked and the I deleted any pfx files in the project.