在Excel中恢复工作表保护密码


14

我有一个Excel工作簿。

在我为其中一张纸设置密码保护选项之前两年。现在我忘记了密码。有什么方法可以恢复该Excel工作表的密码?

Answers:


17

您无法恢复密码,但可以取消保护工作表的保护(用于保护工作表的哈希在旧版本的excel中很容易发生冲突,因此在此处生成冲突的速度非常快)。

有一些脚本可以在很短的时间内用蛮力打开工作表。

以这里为例:http : //www.theofficeexperts.com/VBASamples/Excel02.htm

这是代码:

Sub PasswordBreaker()
  'Author unknown but submitted by brettdj of www.experts-exchange.com

  Dim i As Integer, j As Integer, k As Integer
  Dim l As Integer, m As Integer, n As Integer
  Dim i1 As Integer, i2 As Integer, i3 As Integer
  Dim i4 As Integer, i5 As Integer, i6 As Integer
  On Error Resume Next
  For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
  For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
  For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
  For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126


 ActiveSheet.Unprotect Chr(i) & Chr(j) & Chr(k) & _
      Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
      Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  If ActiveSheet.ProtectContents = False Then
      MsgBox "One usable password is " & Chr(i) & Chr(j) & _
          Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
          Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
   ActiveWorkbook.Sheets(1).Select
   Range("a1").FormulaR1C1 = Chr(i) & Chr(j) & _
          Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
          Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
       Exit Sub
  End If
  Next: Next: Next: Next: Next: Next
  Next: Next: Next: Next: Next: Next


End Sub

+1个可能的解决方案。解决它的另一种方法..使用Apache POI和Digester编写应用程序。浏览文件并复制它,而无需触摸密码。(是的,在某些方面是可能的)
user8885,2009年

2
+1就像一个护身符,在不到10秒的时间内就会发生碰撞。
约翰-恢复莫妮卡

哇。令人难以置信的是,根据194,560次尝试,碰撞几乎是肯定的。我在第3000次迭代中遇到了我。总共约17位熵!
jonallard

任何非vba方式?我在OSX上,整个文件都受到保护。
强尼

我敢肯定,由于加密级别的提高,该方法不适用于受Excel 2013及更高版本保护的Excel文件。
Ƭᴇcʜιᴇ007
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.