cesafe给用户们带来了Excel工作表保护密码破解器
作者:二师兄的小弟五 时间:2021-11-05 08:34:20
cesafe给用户们带来了excel工作表保护密码破解器是一款十分功能强大的破解工具。Excel是工薪族最常见的办公室软件。我们在应用Excel的情况下,常常会根据自身的工作簿维护作用来保护工作表。可是,在应用全过程中,大家很有可能会由于時间过长而密码忘了,因而打不开。今日带来客户的破解专用工具,能够处理迅速破解的难题,并且实际操作比较简单。客户能够在这儿轻轻松松极致的破解,让每一个客户都能轻轻松松开启这些数据加密的Excel文本文档。Excel工作簿维护登陆密码破解专用工具拥有全新升级的应用方法。它是一个不用安裝就可以立即在Excel上开启的掩藏软件,让客户能够轻轻松松一站破解,感受非常简单的Excel文本文档破解。Excel工作簿维护登陆密码破解专用工具电脑版本极致支持256位登陆密码的数据加密和破解,轻轻松松打开文档上的各种各样受维护的Excel文本文档,迅速编辑他们,一键就可以免费试用。
软件使用简介说明:
客户发的需求文档中有一份excel表格需要用到,可这份表格被加密了,怎么办呢?,只能想办法破解掉密码咯!
找无所不知的度娘咯,但是这次度娘有点不搭理我,可能是我太丑了,找到两种方法,如下:
第一种方法把Excel的xslx格式改为压缩包rar/zip格式,试了格式改完后就打不开了,内容被损坏,好几种方法试了都不行,可能是我电脑加装了加密系统Excel被加密了(此加密非彼加密保护);
第二种方法就是新建一个表格,重新录制宏修改或清除保护密码,方法是可行的就是度娘上的宏代码有报错,所以还是没有解决;
软件主要使用功能:
1、解除工作簿密码:解除工作簿密码保护,且计算出密码。
2、解除工作表密码:在未知密码的前提下批量清除工作表密码。
3、解除VBA密码:解除VBA工程保护,对xls和xla格式有效。
4、解除IE上网密码:清除IE的上网密码,突破限制。
5、工作表批量加密码:对工作表批量加密码。
6、工作表批量解密码:在知道密码的前提下,批量解除工作表保护。
软件使用步骤教程:
在这里介绍第二种方法,用宏删除Excel保护密码,第一种方法有兴趣的爱友可以自测(手动滑稽)
step1:既然要用到宏肯定要先启动宏咯,依次打开“文件→选项→信任中心→信任中心设置→启动所有宏”
step2:先打开需要删除保护密码的工作表,再新建一个工作簿,在视图界面打开宏-录制宏,宏名随便填,保存在当前工作簿-确认,再打开宏,停止录制
step3:Alt+F11打开VBA界面,双击打开ThisWorkbook输入框,并把下面的代码复制进去,可以查看到是没有报错的,保存
step4:打开需要删除保护密码的工作表,在视图界面打开宏-查看宏-宏名选择“ThisWorkbook-工作表保护密码”,位置选择你需要打开删除保护密码的工作表,再点击执行,宏就可以跑起来了接着按照提示点就行啦~
软件参考代码:
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