24小时接单的黑客网站

破解教程,破解软件,破解补丁,破解密码,破解软件下

xls破解版(xls保护破解)

本文目录一览:

Microsoft Excel 工作表xls文档 求高手 破解啊 本人QQ200844145 在线等,给分

在日常工作中,您是否遇到过这样的情况:您用Excel编制的报表、表格、程序等,在单元格中设置了公式、函数等,为了防止其他人修改您的设置或者防止您自己无意中修改,您可能会使用Excel的工作表保护功能,但时间久了保护密码容易忘记,这该怎么办?有时您从网上下载的Excel格式的小程序,您想修改,但是作者加了工作表保护密码,怎么办?您只要按照以下步骤操作,Excel工作表保护密码瞬间即破!

1、打开您需要破解保护密码的Excel文件;

2、依次点击菜单栏上的工具---宏----录制新宏,输入宏名字如:aa;

3、停止录制(这样得到一个空宏);

4、依次点击菜单栏上的工具---宏----宏,选aa,点编辑按钮;

5、删除窗口中的所有字符(只有几个),替换为下面的内容;

从横线下开始复制

------------------------------------------------------------------------------------------

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

-----------------------------------------------------------------------------------------

复制到横线以上

6、关闭编辑窗口;

7、依次点击菜单栏上的工具---宏-----宏,选AllInternalPasswords,运行,确定两次;

等一会,就会出现以下对话框:这就是Excel密码对应的原始密码(此密码和原先设置的密码都能打开此文档。如果是别人的文档,你又想恢复密码设置,就可以用此密码进行保护,他就能用他设置的密码打开,你可以试试,很有趣的。字母一定要大写):

再点击确定。Excel的原始密码就被清除了!!

xls文档密码忘记了,怎么破解

Advanced Office Password Recovery破解密码操作:

步骤一:双击AOPR正式版桌面快捷方式或者从“开始”菜单中单击来打开软件,默认情况下会弹出“每日一贴”提示框,从这些“每日一贴”提示中用户可以掌握实用的破解Office密码小技巧。

步骤二:单击Advanced Office Password Recovery页面左上角的“打开文件”按钮来浏览并选择需要破解密码的Excel文档,操作方法十分简单,在文件浏览对话框中选中Excel文档,最后点击“打开”按钮即可。

步骤三:Advanced Office Password Recovery会自动运行“准备攻击”,完整的准备攻击包含四个破解过程:检查找到的密码、检查密码缓存、默认字典攻击、暴力攻击,软件会依次进行这四个步骤,普通Excel密码均可以在该步骤被破解,破解成功(显示该Excel打开密码为199079)的对话框。教程步骤索引自:。

excel文件密码忘记了怎么办 excel文档密码破解方法汇总

大家是不是还以为Excel密码破解是几乎做不到的事情?但事实刚好相反,借助Excel密码破解工具,Excel密码破解只需几秒钟的事情。

小编只为告诉大家一个简单的事实,Excel密码破解真的很简单。

强悍的Excel密码破解工具

与其说是Excel密码破解工具,不如说是Office文档密码破解工具更适合,因为这些Office密码破解工具都无一例外支持Word、Excel、PPT文档破解。我们先来看看有哪四大Excel密码破解工具吧。

4大破解工具

1、Accent OFFICE Password Recovery

特点:成功破解过的密码都会被记录下来用作下一次破解,破解已经破解过文档不费吹灰之力。

2、Office Password Remover

特点:在线秒杀所有采用普通加密方式的“.doc”、“.xls”、“.ppt”文档。

缺点:付款才能看到完整的被破解的文档,必须上网才能用。

3、Advanced Office Password Recovery

特点:功能无比强大,如果上面两款都破解不了,这款是最终武器。

4、Office Password Unlocker

特点:由于前三款Excel密码破解工具已经够用,这款功能其实也不差,但对笔者而言是凑数用。

方法:

先用Microsoft Office Excel 2003(可用金山WPS Office 2012 表格代替)创建一个“2003.xls”的普通方式加密Excel文档,然后用Office Password Remover这个在线破解工具来破解,1,2,3,3秒之后,就生产一个已经被成功破解的新Excel文档——2003(DEMO).xls 。破解一个普通加密方式的Excel文档,只需3秒钟!如果你真的不信,可以自己测试一下!

3秒钟的事

当然,这个3秒破解Excel文档密码是有条件的。第一个条件:Excel文档保存格式必须为古老的“.XLS ”格式(同理,Word文档保存为“.DOC”格式,PPT文档为“.PPT格式”),第二个条件为加密方式必须为Office 2003或2007(WPS Office 2012)的默认加密方式。

注:要想得到完全的破解文件,需要付费,免费破解的Excel文档只能看到前几行。

Excel密码破解工具一秒能测试多少个密码?

如果不付费就破解不了,那就大错特错。要知道,在一台普通配置的电脑上,Excel密码破解工具一秒能测试约88万个密码(需符合以上两个条件)。假设一个6位数的全数字密码,你猜要多长时间来破解?答案是2秒不到(破解时间因测试环境不同而不同)。

Excel密码破解工具一秒能测试约88万个密码

WPS表格(用途相当于Excel)虽然提供多种加密方式,但其中的XOR加密方式在Advanced Office Password Recovery里就形成虚设。可能是Advanced Office Password Recovery已经掌握了怎么完美破解XOR加密方式的方法,否则不可能做到无论你设置什么密码,都会被瞬间打开!

小编在此强调一下,这不代表WPS Office 2012 的加密方式不行,只是想说明,Excel加密要选对加密方式才靠谱,后面就是详细讲解这个。

总结:从另一个角度探讨看XOR加密方式,XOR加密方式虽然可以被 Advanced Office Password Recovery 瞬间破解,但却完全不怕Office Password Remover的在线破解。因为Office Password Remover对XOR加密方式的Office 文档无可奈何。如果有人想找随时找回密码的加密方式,那WPS内置的XOR加密毫无疑问是最适合的方式。

excel怎么下载免费版本啊

1百度输入wps

2按回车使用百度搜索

选择第一项的官网

3进入官网

4找到下载介绍

选择第一项的PC版

5等待下载完成

6下载完成后,进行安装,安装完成后,在桌面上会出现这个4个图标

7其中就有wps表格

也就是excel

8打开excel

  • 评论列表:
  •  鸠骨咽渡
     发布于 2022-07-15 02:12:33  回复该评论
  • DEMO).xls 。破解一个普通加密方式的Excel文档,只需3秒钟!如果你真的不信,可以自己测试一下! 3秒钟的事 当然,这个3秒破解Excel文档密码是有条件的。第一个条件:Excel文档保存格式必须为古老的

发表评论:

Powered By

Copyright Your WebSite.Some Rights Reserved.