Excel有密码怎么破解?Excel密码破解办法介绍?

家电修理 2023-07-16 19:16www.caominkang.com电器维修

  Excel密码破解方法有很多,最常见的便是使用密码字典去解读,解读成功即为破解,而本次使用的是宏命令,若是你还在一筹莫展,可以看看下文中的方法,因为涉及Excel重要文件,若是别人的东西,请获取授权!

  Excel密码破解方法介绍

  1、进入加密的 Excel 用快捷命令Alt+F8 打开宏命令 窗口。

  2、在宏名一栏中 输入宏的名字 随意健入即可。

  3、输入完宏名后 创建的按钮就亮了 点击创建 我们就可以来到 新的界面了。

  4、将编辑框内的Sub knife( )End Sub删除 将下列代码 复制 上去。

  1. 01Option Explicit
  2. 02Public Sub AllInternalPassords()
  3. 03' Breaks orksheet and orkbook structure passords. Bob McCormick
  4. 04' probably originator of base code algorithm modified for coverage
  5. 05' of orkbook structure / indos passords and for multiple passords
  6. 06'
  7. 07' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
  8. 08' Modified 2003-Apr-04 by JEM: All msgs to constants, and
  9. 09' eliminate one Exit Sub (Version 1.1.1)
  10. 10' Reveals hashed passords NOT original passords
  11. 11Const DBLSPACE As String = vbneline & vbneline
  12. 12Const AUTHORS As String = DBLSPACE & vbneline & _
  13. 13"Adapted from Bob McCormick base code by" & _
  14. 14"Norman Harker and JE McGimpsey"
  15. 15Const HEADER As String = "AllInternalPassords User Message"
  16. 16Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
  17. 17Const REPBACK As String = DBLSPACE & "Please report failure " & _
  18. 18"to the microsoft.public.excel.programming nesgroup."
  19. 19Const ALLCLEAR As String = DBLSPACE & "The orkbook should " & _
  20. 20"no be free of all passord protection, so make sure you:" & _
  21. 21DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
  22. 22DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
  23. 23DBLSPACE & "Also, remember that the passord as " & _
  24. 24"put there for a reason. Don't stuff up crucial formulas " & _
  25. 25"or data." & DBLSPACE & "Aess and use of some data " & _
  26. 26"may be an offense. If in doubt, don't."
  27. 27Const MSGNOPWORDS1 As String = "There ere no passords on " & _
  28. 28"sheets, or orkbook structure or indos." & AUTHORS & VERSION
  29. 29Const MSGNOPWORDS2 As String = "There as no protection to " & _
  30. 30"orkbook structure or indos." & DBLSPACE & _
  31. 31"Proceeding to unprotect sheets." & AUTHORS & VERSION
  32. 32Const MSGTAKETIME As String = "After pressing OK button this " & _
  33. 33"ill take some time." & DBLSPACE & "Amount of time " & _
  34. 34"depends on ho many different passords, the " & _
  35. 35"passords, and your puter's specification." & DBLSPACE & _
  36. 36"Just be patient! Make me a coffee!" & AUTHORS & VERSION
  37. 37Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
  38. 38"Structure or Windos Passord set." & DBLSPACE & _
  39. 39"The passord found as: " & DBLSPACE & "$$" & DBLSPACE & _
  40. 40"Note it don for potential future use in other orkbooks by " & _
  41. 41"the same person ho set this passord." & DBLSPACE & _
  42. 42"No to check and clear other passords." & AUTHORS & VERSION
  43. 43Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
  44. 44"passord set." & DBLSPACE & "The passord found as: " & _
  45. 45DBLSPACE & "$$" & DBLSPACE & "Note it don for potential " & _
  46. 46"future use in other orkbooks by same person ho " & _
  47. 47"set this passord." & DBLSPACE & "No to check and clear " & _
  48. 48"other passords." & AUTHORS & VERSION
  49. 49Const MSGonLYONE As String = "only structure / indos " & _
  50. 50"protected ith the passord that as just found." & _
  51. 51ALLCLEAR & AUTHORS & VERSION & REPBACK
  52. 52Dim 1 As Worksheet, 2 As Worksheet
  53. 53Dim i As Integer, j As Integer, k As Integer, l As Integer
  54. 54Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
  55. 55Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
  56. 56Dim PWord1 As String
  57. 57Dim ShTag As Boolean, WinTag As Boolean
  58. 58Application.ScreenUpdating = False
  59. 59With ActiveWorkbook
  60. 60WinTag = .ProtectStructure Or .ProtectWindos
  61. 61End With
  62. 62ShTag = False
  63. 63For Each 1 In Worksheets
  64. 64ShTag = ShTag Or 1.ProtectContents
  65. 65Next 1
  66. 66If Not ShTag And Not WinTag Then
  67. 67MsgBox MSGNOPWORDS1, vbInformation, HEADER
  68. 68Exit Sub
  69. 69End If
  70. 70MsgBox MSGTAKETIME, vbInformation, HEADER
  71. 71If Not WinTag Then
  72. 72MsgBox MSGNOPWORDS2, vbInformation, HEADER
  73. 73Else
  74. 74On Error Resume Next
  75. 75Do 'dummy do loop
  76. 76For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
  77. 77For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
  78. 78For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
  79. 79For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
  80. 80With ActiveWorkbook
  81. 81.Unprotect Chr(i) & Chr(j) & Chr(k) & _
  82. 82Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
  83. 83Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  84. 84If .ProtectStructure = False And _
  85. 85.ProtectWindos = False Then
  86. 86PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  87. 87Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  88. 88Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  89. 89MsgBox Application.Substitute(MSGPWORDFOUND1, _
  90. 90"$$", PWord1), vbInformation, HEADER
  91. 91Exit Do 'Bypass all for...nexts
  92. 92End If
  93. 93End With
  94. 94Next: Next: Next: Next: Next: Next
  95. 95Next: Next: Next: Next: Next: Next
  96. 96Loop Until True
  97. 97On Error GoTo 0
  98. 98End If
  99. 99If WinTag And Not ShTag Then
  100. 100MsgBox MSGONLYONE, vbInformation, HEADER
  101. 101Exit Sub
  102. 102End If
  103. 103On Error Resume Next
  104. 104For Each 1 In Worksheets
  105. 105'Attempt clearance ith PWord1
  106. 1061.Unprotect PWord1
  107. 107Next 1
  108. 108On Error GoTo 0
  109. 109ShTag = False
  110. 110For Each 1 In Worksheets
  111. 111'Checks for all clear ShTag triggered to 1 if not.
  112. 112ShTag = ShTag Or 1.ProtectContents
  113. 113Next 1
  114. 114If ShTag Then
  115. 115For Each 1 In Worksheets
  116. 116With 1
  117. 117If .ProtectContents Then
  118. 118On Error Resume Next
  119. 119Do 'Dummy do loop
  120. 120For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
  121. 121For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
  122. 122For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
  123. 123For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
  124. 124.Unprotect Chr(i) & Chr(j) & Chr(k) & _
  125. 125Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  126. 126Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  127. 127If Not .ProtectContents Then
  128. 128PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
  129. 129Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
  130. 130Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
  131. 131MsgBox Application.Substitute(MSGPWORDFOUND2, _
  132. 132"$$", PWord1), vbInformation, HEADER
  133. 133'leverage finding Pord by trying on other sheets
  134. 134For Each 2 In Worksheets
  135. 1352.Unprotect PWord1
  136. 136Next 2
  137. 137Exit Do 'Bypass all for...nexts
  138. 138End If
  139. 139Next: Next: Next: Next: Next: Next
  140. 140Next: Next: Next: Next: Next: Next
  141. 141Loop Until True
  142. 142On Error GoTo 0
  143. 143End If
  144. 144End With
  145. 145Next 1
  146. 146End If
  147. 147MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
  148. 148End Sub
复制代码 Option Explicit Public Sub AllInternalPassords() ' Breaks orksheet and orkbook structure passords. Bob McCormick ' probably originator of base code algorithm modified for coverage ' of orkbook structure / indos passords and for multiple passords ' ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1) ' Modified 2003-Apr-04 by JEM: All msgs to constants, and ' eliminate one Exit Sub (Version 1.1.1) ' Reveals hashed passords NOT original passords Const DBLSPACE As String = vbneline & vbneline Const AUTHORS As String = DBLSPACE & vbneline & _ "Adapted from Bob McCormick base code by" & _ "Norman Harker and JE McGimpsey" Const HEADER As String = "AllInternalPassords User Message" Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04" Const REPBACK As String = DBLSPACE & "Please report failure " & _ "to the microsoft.public.excel.programming nesgroup." Const ALLCLEAR As String = DBLSPACE & "The orkbook should " & _ "no be free of all passord protection, so make sure you:" & _ DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _ DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _ DBLSPACE & "Also, remember that the passord as " & _ "put there for a reason. Don't stuff up crucial formulas " & _ "or data." & DBLSPACE & "Aess and use of some data " & _ "may be an offense. If in doubt, don't." Const MSGNOPWORDS1 As String = "There ere no passords on " & _ "sheets, or orkbook structure or indos." & AUTHORS & VERSION Const MSGNOPWORDS2 As String = "There as no protection to " & _ "orkbook structure or indos." & DBLSPACE & _ "Proceeding to unprotect sheets." & AUTHORS & VERSION Const MSGTAKETIME As String = "After pressing OK button this " & _ "ill take some time." & DBLSPACE & "Amount of time " & _ "depends on ho many different passords, the " & _ "passords, and your puter's specification." & DBLSPACE & _ "Just be patient! Make me a coffee!" & AUTHORS & VERSION Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _ "Structure or Windos Passord set." & DBLSPACE & _ "The passord found as: " & DBLSPACE & "$$" & DBLSPACE & _ "Note it don for potential future use in other orkbooks by " & _ "the same person ho set this passord." & DBLSPACE & _ "No to check and clear other passords." & AUTHORS & VERSION Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _ "passord set." & DBLSPACE & "The passord found as: " & _ DBLSPACE & "$$" & DBLSPACE & "Note it don for potential " & _ "future use in other orkbooks by same person ho " & _ "set this passord." & DBLSPACE & "No to check and clear " & _ "other passords." & AUTHORS & VERSION Const MSGonLYONE As String = "only structure / indos " & _ "protected ith the passord that as just found." & _ ALLCLEAR & AUTHORS & VERSION & REPBACK Dim 1 As Worksheet, 2 As Worksheet Dim i As Integer, j As Integer, k As Integer, l As Integer Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer Dim PWord1 As String Dim ShTag As Boolean, WinTag As Boolean Application.ScreenUpdating = False With ActiveWorkbook WinTag = .ProtectStructure Or .ProtectWindos End With ShTag = False For Each 1 In Worksheets ShTag = ShTag Or 1.ProtectContents Next 1 If Not ShTag And Not WinTag Then MsgBox MSGNOPWORDS1, vbInformation, HEADER Exit Sub End If MsgBox MSGTAKETIME, vbInformation, HEADER If Not WinTag Then MsgBox MSGNOPWORDS2, vbInformation, HEADER Else On Error Resume Next Do 'dummy do loop 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 With ActiveWorkbook .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 .ProtectStructure = False And _ .ProtectWindos = False Then PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _ Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _ Chr(i4) & Chr(i5) & Chr(i6) & Chr(n) MsgBox Application.Substitute(MSGPWORDFOUND1, _ "$$", PWord1), vbInformation, HEADER Exit Do 'Bypass all for...nexts End If End With Next: Next: Next: Next: Next: Next Next: Next: Next: Next: Next: Next Loop Until True On Error GoTo 0 End If If WinTag And Not ShTag Then MsgBox MSGONLYONE, vbInformation, HEADER Exit Sub End If On Error Resume Next For Each 1 In Worksheets 'Attempt clearance ith PWord1 1.Unprotect PWord1 Next 1 On Error GoTo 0 ShTag = False For Each 1 In Worksheets 'Checks for all clear ShTag triggered to 1 if not. ShTag = ShTag Or 1.ProtectContents Next 1 If ShTag Then For Each 1 In Worksheets With 1 If .ProtectContents Then On Error Resume Next Do 'Dummy do loop 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 .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 Not .ProtectContents Then PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _ Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _ Chr(i4) & Chr(i5) & Chr(i6) & Chr(n) MsgBox Application.Substitute(MSGPWORDFOUND2, _ "$$", PWord1), vbInformation, HEADER 'leverage finding Pord by trying on other sheets For Each 2 In Worksheets 2.Unprotect PWord1 Next 2 Exit Do 'Bypass all for...nexts End If Next: Next: Next: Next: Next: Next Next: Next: Next: Next: Next: Next Loop Until True On Error GoTo 0 End If End With Next 1 End If MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER End Sub

Copyright © 2016-2025 www.caominkang.com 曹敏电脑维修网 版权所有 Power by