系統(tǒng)之家 - 系統(tǒng)光盤下載網(wǎng)站!

當(dāng)前位置:系統(tǒng)之家 > 系統(tǒng)教程 > Excel密碼破解方法介紹

Excel有密碼怎么破解?Excel密碼破解方法介紹

時間:2017-11-07 09:42:33 作者:quers 來源:系統(tǒng)之家 1. 掃描二維碼隨時看資訊 2. 請使用手機瀏覽器訪問: https://m.xitongzhijia.net/xtjc/20171107/111074.html 手機查看 評論

  Excel密碼破解方法有很多,最常見的便是使用密碼字典去解讀,解讀成功即為破解,而本次使用的是宏命令,若是你還在一籌莫展,可以看看下文中的方法,因為涉及Excel重要文件,若是別人的東西,請獲取授權(quán)!

  Excel密碼破解方法介紹:

  1、進(jìn)入加密的 Excel 用快捷命令A(yù)lt+F8 打開宏命令 窗口。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  2、在宏名一欄中 輸入宏的名字 隨意健入即可。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  3、輸入完宏名后 創(chuàng)建的按鈕就亮了 點擊創(chuàng)建 我們就可以來到 新的界面了。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  4、將編輯框內(nèi)的Sub knife( )End Sub刪除 將下列代碼 復(fù)制 上去。

  1. 01Option Explicit
  2. 02Public Sub AllInternalPasswords()
  3. 03' Breaks worksheet and workbook structure passwords. Bob McCormick
  4. 04' probably originator of base code algorithm modified for coverage
  5. 05' of workbook structure / windows passwords and for multiple passwords
  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 passwords NOT original passwords
  11. 11Const DBLSPACE As String = vbNewLine & vbNewLine
  12. 12Const AUTHORS As String = DBLSPACE & vbNewLine & _
  13. 13"Adapted from Bob McCormick base code by" & _
  14. 14"Norman Harker and JE McGimpsey"
  15. 15Const HEADER As String = "AllInternalPasswords 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 newsgroup."
  19. 19Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
  20. 20"now be free of all password protection, so make sure you:" & _
  21. 21DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
  22. 22DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
  23. 23DBLSPACE & "Also, remember that the password was " & _
  24. 24"put there for a reason. Don't stuff up crucial formulas " & _
  25. 25"or data." & DBLSPACE & "Access and use of some data " & _
  26. 26"may be an offense. If in doubt, don't."
  27. 27Const MSGNOPWORDS1 As String = "There were no passwords on " & _
  28. 28"sheets, or workbook structure or windows." & AUTHORS & VERSION
  29. 29Const MSGNOPWORDS2 As String = "There was no protection to " & _
  30. 30"workbook structure or windows." & DBLSPACE & _
  31. 31"Proceeding to unprotect sheets." & AUTHORS & VERSION
  32. 32Const MSGTAKETIME As String = "After pressing OK button this " & _
  33. 33"will take some time." & DBLSPACE & "Amount of time " & _
  34. 34"depends on how many different passwords, the " & _
  35. 35"passwords, and your computer'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 Windows Password set." & DBLSPACE & _
  39. 39"The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
  40. 40"Note it down for potential future use in other workbooks by " & _
  41. 41"the same person who set this password." & DBLSPACE & _
  42. 42"Now to check and clear other passwords." & AUTHORS & VERSION
  43. 43Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
  44. 44"password set." & DBLSPACE & "The password found was: " & _
  45. 45DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
  46. 46"future use in other workbooks by same person who " & _
  47. 47"set this password." & DBLSPACE & "Now to check and clear " & _
  48. 48"other passwords." & AUTHORS & VERSION
  49. 49Const MSGONLYONE As String = "Only structure / windows " & _
  50. 50"protected with the password that was just found." & _
  51. 51ALLCLEAR & AUTHORS & VERSION & REPBACK
  52. 52Dim w1 As Worksheet, w2 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 .ProtectWindows
  61. 61End With
  62. 62ShTag = False
  63. 63For Each w1 In Worksheets
  64. 64ShTag = ShTag Or w1.ProtectContents
  65. 65Next w1
  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.ProtectWindows = 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 w1 In Worksheets
  105. 105'Attempt clearance with PWord1
  106. 106w1.Unprotect PWord1
  107. 107Next w1
  108. 108On Error GoTo 0
  109. 109ShTag = False
  110. 110For Each w1 In Worksheets
  111. 111'Checks for all clear ShTag triggered to 1 if not.
  112. 112ShTag = ShTag Or w1.ProtectContents
  113. 113Next w1
  114. 114If ShTag Then
  115. 115For Each w1 In Worksheets
  116. 116With w1
  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 Pword by trying on other sheets
  134. 134For Each w2 In Worksheets
  135. 135w2.Unprotect PWord1
  136. 136Next w2
  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 w1
  146. 146End If
  147. 147MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
  148. 148End Sub
復(fù)制代碼
Option Explicit Public Sub AllInternalPasswords() ' Breaks worksheet and workbook structure passwords. Bob McCormick ' probably originator of base code algorithm modified for coverage ' of workbook structure / windows passwords and for multiple passwords ' ' 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 passwords NOT original passwords Const DBLSPACE As String = vbNewLine & vbNewLine Const AUTHORS As String = DBLSPACE & vbNewLine & _ "Adapted from Bob McCormick base code by" & _ "Norman Harker and JE McGimpsey" Const HEADER As String = "AllInternalPasswords 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 newsgroup." Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _ "now be free of all password protection, so make sure you:" & _ DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _ DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _ DBLSPACE & "Also, remember that the password was " & _ "put there for a reason. Don't stuff up crucial formulas " & _ "or data." & DBLSPACE & "Access and use of some data " & _ "may be an offense. If in doubt, don't." Const MSGNOPWORDS1 As String = "There were no passwords on " & _ "sheets, or workbook structure or windows." & AUTHORS & VERSION Const MSGNOPWORDS2 As String = "There was no protection to " & _ "workbook structure or windows." & DBLSPACE & _ "Proceeding to unprotect sheets." & AUTHORS & VERSION Const MSGTAKETIME As String = "After pressing OK button this " & _ "will take some time." & DBLSPACE & "Amount of time " & _ "depends on how many different passwords, the " & _ "passwords, and your computer's specification." & DBLSPACE & _ "Just be patient! Make me a coffee!" & AUTHORS & VERSION Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _ "Structure or Windows Password set." & DBLSPACE & _ "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _ "Note it down for potential future use in other workbooks by " & _ "the same person who set this password." & DBLSPACE & _ "Now to check and clear other passwords." & AUTHORS & VERSION Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _ "password set." & DBLSPACE & "The password found was: " & _ DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _ "future use in other workbooks by same person who " & _ "set this password." & DBLSPACE & "Now to check and clear " & _ "other passwords." & AUTHORS & VERSION Const MSGONLYONE As String = "Only structure / windows " & _ "protected with the password that was just found." & _ ALLCLEAR & AUTHORS & VERSION & REPBACK Dim w1 As Worksheet, w2 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 .ProtectWindows End With ShTag = False For Each w1 In Worksheets ShTag = ShTag Or w1.ProtectContents Next w1 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 _ .ProtectWindows = 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 w1 In Worksheets 'Attempt clearance with PWord1 w1.Unprotect PWord1 Next w1 On Error GoTo 0 ShTag = False For Each w1 In Worksheets 'Checks for all clear ShTag triggered to 1 if not. ShTag = ShTag Or w1.ProtectContents Next w1 If ShTag Then For Each w1 In Worksheets With w1 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 Pword by trying on other sheets For Each w2 In Worksheets w2.Unprotect PWord1 Next w2 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 w1 End If MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER End Sub

  5、關(guān)閉 宏窗口 回到Excel下 按ALT+F8 重新打開 宏命令窗口。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  6、你會發(fā)現(xiàn) 你前面輸入的宏名 變成了AllInternalPasswords 點擊執(zhí)行 會出現(xiàn)如下對話框 點確定。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  7、一直點 確定 直到不在 出現(xiàn)對話框為止。

Excel有密碼怎么破解?Excel密碼破解方法介紹

  8、等待 一段之間之后 系統(tǒng)會 再次跳出對話框 再點確定 保護(hù)就破解成功了。

Excel有密碼怎么破解?Excel密碼破解方法介紹

 。。!注:以上方法僅作為參考教材,請勿用于非法途徑。

  以上內(nèi)容便是Excel密碼破解方法的操作步驟,下次請用戶在設(shè)置Excel密碼的時候盡可能的簡單一些,并記錄下密碼備份,避免再次需要使用宏。

標(biāo)簽 密碼破解

發(fā)表評論

0

沒有更多評論了

評論就這些咯,讓大家也知道你的獨特見解

立即評論

以上留言僅代表用戶個人觀點,不代表系統(tǒng)之家立場

其他版本軟件

人氣教程排行

相關(guān)系統(tǒng)推薦

官方交流群 軟件收錄