Excel密码破解方法有很多,最常见的便是使用密码字典去解读,解读成功即为破解,而本次使用的是宏命令,若是你还在一筹莫展,可以看看下文中的方法,因为涉及Excel重要文件,若是别人的东西,请获取授权!
Excel密码破解方法介绍:
1、进入加密的 Excel 用快捷命令Alt+F8 打开宏命令 窗口。
2、在宏名一栏中 输入宏的名字 随意健入即可。
3、输入完宏名后 创建的按钮就亮了 点击创建 我们就可以来到 新的界面了。
4、将编辑框内的Sub knife( )End Sub删除 将下列代码 复制 上去。
01 Option Explicit02 Public Sub AllInternalPasswords()03 ' Breaks worksheet and workbook structure passwords. Bob McCormick04 ' probably originator of base code algorithm modified for coverage05 ' of workbook structure / windows passwords and for multiple passwords06'07 ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)08 ' Modified 2003-Apr-04 by JEM: All msgs to constants, and09 ' eliminate one Exit Sub (Version 1.1.1)10 ' Reveals hashed passwords NOT original passwords11 Const DBLSPACE As String = vbNewLine & vbNewLine12 Const AUTHORS As String = DBLSPACE & vbNewLine & _13 "Adapted from Bob McCormick base code by" & _14 "Norman Harker and JE McGimpsey"15 Const HEADER As String = "AllInternalPasswords User Message"16 Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"17 Const REPBACK As String = DBLSPACE & "Please report failure " & _18 "to the microsoft.public.excel.programming newsgroup."19 Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _20 "now be free of all password protection, so make sure you:" & _21 DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _22 DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _23 DBLSPACE & "Also, remember that the password was " & _24 "put there for a reason. Don't stuff up crucial formulas " & _25 "or data." & DBLSPACE & "Access and use of some data " & _26 "may be an offense. If in doubt, don't."27 Const MSGNOPWORDS1 As String = "There were no passwords on " & _28 "sheets, or workbook structure or windows." & AUTHORS & VERSION29 Const MSGNOPWORDS2 As String = "There was no protection to " & _30 "workbook structure or windows." & DBLSPACE & _31 "Proceeding to unprotect sheets." & AUTHORS & VERSION32 Const MSGTAKETIME As String = "After pressing OK button this " & _33 "will take some time." & DBLSPACE & "Amount of time " & _34 "depends on how many different passwords, the " & _35 "passwords, and your computer's specification." & DBLSPACE & _36 "Just be patient! Make me a coffee!" & AUTHORS & VERSION37 Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _38 "Structure or Windows Password set." & DBLSPACE & _39 "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _40 "Note it down for potential future use in other workbooks by " & _41 "the same person who set this password." & DBLSPACE & _42 "Now to check and clear other passwords." & AUTHORS & VERSION43 Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _44 "password set." & DBLSPACE & "The password found was: " & _45 DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _46 "future use in other workbooks by same person who " & _47 "set this password." & DBLSPACE & "Now to check and clear " & _48 "other passwords." & AUTHORS & VERSION49 Const MSGONLYONE As String = "Only structure / windows " & _50 "protected with the password that was just found." & _51 ALLCLEAR & AUTHORS & VERSION & REPBACK52 Dim w1 As Worksheet, w2 As Worksheet53 Dim i As Integer, j As Integer, k As Integer, l As Integer54 Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer55 Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer56 Dim PWord1 As String57 Dim ShTag As Boolean, WinTag As Boolean58 Application.ScreenUpdating = False59 With ActiveWorkbook60 WinTag = .ProtectStructure Or .ProtectWindows61 End With62 ShTag = False63 For Each w1 In Worksheets64 ShTag = ShTag Or w1.ProtectContents65 Next w166 If Not ShTag And Not WinTag Then67 MsgBox MSGNOPWORDS1, vbInformation, HEADER68 Exit Sub69 End If70 MsgBox MSGTAKETIME, vbInformation, HEADER71 If Not WinTag Then72 MsgBox MSGNOPWORDS2, vbInformation, HEADER73Else74 On Error Resume Next75 Do 'dummy do loop76 For i = 65 To 66: For j = 65 To 66: For k = 65 To 6677 For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 6678 For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 6679 For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 12680 With ActiveWorkbook81.Unprotect Chr(i) & Chr(j) & Chr(k) & _82 Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _83 Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)84 If .ProtectStructure = False And _85.ProtectWindows = False Then86 PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _87 Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _88 Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)89 MsgBox Application.Substitute(MSGPWORDFOUND1, _90 "$$", PWord1), vbInformation, HEADER91 Exit Do 'Bypass all for...nexts92 End If93 End With94 Next: Next: Next: Next: Next: Next95 Next: Next: Next: Next: Next: Next96 Loop Until True97 On Error GoTo 098 End If99 If WinTag And Not ShTag Then100 MsgBox MSGONLYONE, vbInformation, HEADER101 Exit Sub102 End If103 On Error Resume Next104 For Each w1 In Worksheets105 'Attempt clearance with PWord1106 w1.Unprotect PWord1107 Next w1108 On Error GoTo 0109 ShTag = False110 For Each w1 In Worksheets111 'Checks for all clear ShTag triggered to 1 if not.112 ShTag = ShTag Or w1.ProtectContents113 Next w1114 If ShTag Then115 For Each w1 In Worksheets116 With w1117 If .ProtectContents Then118 On Error Resume Next119 Do 'Dummy do loop120 For i = 65 To 66: For j = 65 To 66: For k = 65 To 66121 For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66122 For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66123 For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126124.Unprotect Chr(i) & Chr(j) & Chr(k) & _125 Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _126 Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)127 If Not .ProtectContents Then128 PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _129 Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _130 Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)131 MsgBox Application.Substitute(MSGPWORDFOUND2, _132 "$$", PWord1), vbInformation, HEADER133 'leverage finding Pword by trying on other sheets134 For Each w2 In Worksheets135 w2.Unprotect PWord1136 Next w2137 Exit Do 'Bypass all for...nexts138 End If139 Next: Next: Next: Next: Next: Next140 Next: Next: Next: Next: Next: Next141 Loop Until True142 On Error GoTo 0143 End If144 End With145 Next w1146 End If147 MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER148 End Sub复制代码
Option Explicit Public Sub AllInternalPasswords() ' Breaks worksheet andworkbook structure passwords. Bob McCormick ' probably originator of base codealgorithm modified for coverage ' of workbook structure / windows passwordsand 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 originalpasswords Const DBLSPACE As String = vbNewLine & vbNewLine Const AUTHORS AsString = 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 & "Pleasereport failure " & _ "to the microsoft.public.excel.programming newsgroup."Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _ "now be freeof 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 areason. Don't stuff up crucial formulas " & _ "or data." & DBLSPACE & "Accessand use of some data " & _ "may be an offense. If in doubt, don't." ConstMSGNOPWORDS1 As String = "There were no passwords on " & _ "sheets, orworkbook structure or windows." & AUTHORS & VERSION Const MSGNOPWORDS2 AsString = "There was no protection to " & _ "workbook structure or windows." &DBLSPACE & _ "Proceeding to unprotect sheets." & AUTHORS & VERSION ConstMSGTAKETIME As String = "After pressing OK button this " & _ "will take sometime." & DBLSPACE & "Amount of time " & _ "depends on how many differentpasswords, the " & _ "passwords, and your computer's specification." &DBLSPACE & _ "Just be patient! Make me a coffee!" & AUTHORS & VERSION ConstMSGPWORDFOUND1 As String = "You had a Worksheet " & _ "Structure or WindowsPassword 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 andclear other passwords." & AUTHORS & VERSION Const MSGPWORDFOUND2 As String ="You had a Worksheet " & _ "password set." & DBLSPACE & "The password foundwas: " & _ 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 AsInteger, k As Integer, l As Integer Dim m As Integer, n As Integer, i1 AsInteger, i2 As Integer Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 AsInteger Dim PWord1 As String Dim ShTag As Boolean, WinTag As BooleanApplication.ScreenUpdating = False With ActiveWorkbook WinTag =.ProtectStructure Or .ProtectWindows End With ShTag = False For Each w1 InWorksheets ShTag = ShTag Or w1.ProtectContents Next w1 If Not ShTag And NotWinTag Then MsgBox MSGNOPWORDS1, vbInformation, HEADER Exit Sub End If MsgBoxMSGTAKETIME, vbInformation, HEADER If Not WinTag Then MsgBox MSGNOPWORDS2,vbInformation, HEADER Else On Error Resume Next Do 'dummy do loop For i = 65To 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 Fori5 = 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 = FalseAnd _ .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 UntilTrue 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 InWorksheets 'Attempt clearance with PWord1 w1.Unprotect PWord1 Next w1 On ErrorGoTo 0 ShTag = False For Each w1 In Worksheets 'Checks for all clear ShTagtriggered to 1 if not. ShTag = ShTag Or w1.ProtectContents Next w1 If ShTagThen For Each w1 In Worksheets With w1 If .ProtectContents Then On ErrorResume Next Do 'Dummy do loop For i = 65 To 66: For j = 65 To 66: For k = 65To 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: Forn = 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) MsgBoxApplication.Substitute(MSGPWORDFOUND2, _ "$$", PWord1), vbInformation, HEADER'leverage finding Pword by trying on other sheets For Each w2 In Worksheetsw2.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 OnError GoTo 0 End If End With Next w1 End If MsgBox ALLCLEAR & AUTHORS &VERSION & REPBACK, vbInformation, HEADER End Sub
5、关闭 宏窗口 回到Excel下 按ALT+F8 重新打开 宏命令窗口。
6、你会发现 你前面输入的宏名 变成了AllInternalPasswords 点击执行 会出现如下对话框 点确定。
7、一直点 确定 直到不在 出现对话框为止。
8、等待 一段之间之后 系统会 再次跳出对话框 再点确定 保护就破解成功了。
!!!注:以上方法仅作为参考教材,请勿用于非法途径。
以上内容便是Excel密码破解方法的操作步骤,下次请用户在设置Excel密码的时候尽可能的简单一些,并记录下密码备份,避免再次需要使用宏。