word 密码破解器 word2007密码破解器
摘要:有谁知道怎样破解WORD文档的密码? 如果您是解密自己的word文档,那么:√---------------------------------------------------1 您可以到以下网...
发布日期:2020-09-03有谁知道怎样破解WORD文档的密码?
如果您是解密自己的word文档,那么:√---------------------------------------------------1. 您可以到以下网站下载密码取回软件,取回word密码。
· WORD文档保护解除器 · · Word Key是由Passware制作的系列密码恢复软件之一,它可以迅速恢复Word文件的密码。
同时它还支持多语言密码设定。
2.如果您有一定的电脑基础,您可以试一下以下方法:1、首先用Word 2003打开已设置有密码的“保护文档”(原始DOC文件),此文档可由Word 2000/XP(2002)/2003创建(保护文档创建方法见上文); 2、在菜单中选择“文件→另存为Web页”,保存为HTML文件后关闭Word; 3、用“记事本”或其他字处理软件打开上步中保存的HTML文件; 4、查找“UnprotectPassword”,“和”之间的为你设置的密码加密后的十六进制格式。
5、记录密码字符,例如本例中“3E36C48A”,关闭“记事本”; 6、使用十六进制文件编辑器(例如WinHex或者UltraEdit)以十六进制(Hex)格式打开原始DOC文件; 7、反序查找记录的十六进制密码字符,例如本例中查找“8A C4 36 3E”; 8、将查找到的4个双字节均用“0”覆盖,保存文件,关闭十六进制文件编辑器;(相信即使破解经验极少的人对步骤6~8操作起来也是易如反掌) 9、使用Word打开原始DOC文件,在菜单中选择“工具→解除文档保护”,密码为空。
至此,设置有密码的“保护文档”完全被破解,与没有经过保护的文档毫无区别[引自] 3.其他,您可以到 给我留言(无需注册即可发帖留言)---------------------------------------------------[奋斗小小鸟声明]·以上内容,仅供参考 (希望对您有所帮助:)·对于 ,仅用于方便您更好地描述问题,如贴图、上传附件等,您不必一定访问它(不想违反百度知道原则:)·感谢您使用百度知道,希望您能一如既往地支持百度(我不是百度员工:)^-^祝早日解决问题^-^
word文件打开密码破解三步法
首先打开需要破译的文档,如图所示(这里以excel2013为例,word和excel设置都是一样的就不用一 一列举了),点击“视图”,选择右边的“宏” 点击宏后,选择“录制宏”,如图所示 弹出录制宏对话框,修改宏的名字,点击确定 再次点击宏,选择“查看宏”,如图所示 然后在弹出的宏对话框中点击“编辑”,如图所示 在编辑中将所有的字符删除,然后添加如下代码 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 passwordsConst DBLSPACE As String = vbNewLine & vbNewLineConst 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 & VERSIONConst MSGNOPWORDS2 As String = "There was no protection to " & _"workbook structure or windows." & DBLSPACE & _"Proceeding to unprotect sheets." & AUTHORS & VERSIONConst 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 & VERSIONConst 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 & VERSIONConst 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 & VERSIONConst MSGONLYONE As String = "Only structure / windows " & _"protected with the password that was just found." & _ALLCLEAR & AUTHORS & VERSION & REPBACKDim w1 As Worksheet, w2 As WorksheetDim i As Integer, j As Integer, k As Integer, l As IntegerDim m As Integer, n As Integer, i1 As Integer, i2 As IntegerDim i3 As Integer, i4 As Integer, i5 As Integer, i6 As IntegerDim PWord1 As StringDim ShTag As Boolean, WinTag As Boolean Application.ScreenUpdating = FalseWith ActiveWorkbookWinTag = .ProtectStructure Or .ProtectWindowsEnd WithShTag = FalseFor Each w1 In WorksheetsShTag = ShTag Or w1.ProtectContentsNext w1If Not ShTag And Not WinTag ThenMsgBox MSGNOPWORDS1, vbInformation, HEADERExit SubEnd IfMsgBox MSGTAKETIME, vbInformation, HEADERIf Not WinTag ThenMsgBox MSGNOPWORDS2, vbInformation, HEADERElseOn Error Resume NextDo "dummy do loopFor i = 65 To 66: For j = 65 To 66: For k = 65 To 66For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126With ActiveWorkbook.Unprotect Chr(i) & Chr(j) & Chr(k) & _Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _Chr(i3) & ...
word文档密码破解高手来!网上的方法都是过了,字典破解暴力破解
你可以用下法快速破解此文档保护功能: 启动Wod 2003后,新建一新文档,随后依次执行“插入-文件”命令,并在之后弹出的“插入文件”窗口中选择受保护的文档,最后单击“插入”按钮完成操作。
此时,你就会发现当前打开的内容已经不受任何保护限制,可以随心进行编辑处理了。
怎么破解word密码
1\打开文件 2\工具---宏----录制新宏---输入名字如:aa3\停止录制(这样得到一个空宏)4\工具---宏----宏,选aa,点编辑按钮 5\删除窗口中的所有字符(只有几个),替换为下面的内容你复制吧)Option ExplicitPublic 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 passwordsConst DBLSPACE As String = vbNewLine & vbNewLineConst 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 & "lease 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 & VERSIONConst MSGNOPWORDS2 As String = "There was no protection to " & _"workbook structure or windows." & DBLSPACE & _"roceeding to unprotect sheets." & AUTHORS & VERSION以下还有很多代码传不上来,去我空间看,如果破解了,记得把我的答案设为最佳答案,我空间还有免费教程视频
word文档加密了忘记密码了,怎么破解啊
解除WORD文档保护方法一:插入文件法启动WORD,新建一个空白文档,执行“插入——〉文件”命令,打开“插入文件”对话框,定位到需要解除保护的文档所在的文件夹,选中相应文档,单击“插入”按钮,将加密保护的文档插入到新文档中,文档保护会被自动撤销。
方法二:文件另存法打开保护的文档,执行“文件——〉另存为”命令,打开“另存为”对话框,将“文件类型”选定为“WORD97—2003&6.0/95—RTF(*.doc)”,然后取名保存,关闭该文档,重新打开一下,执行“工具——〉取消文档保护”命令即可。
或者将文件类型另存为HTML,然后将其中的内容,复制粘贴到新建文档中。
方法三:写字板法启动写字板,打开保护的WORD文档,另存为WORD文档,同时可以取消对文档的保护。
但此方法可能会使文档中的图片等要素丢失。
word文档加密了,忘了密码了,我怎么才能解开???
首先创建一个word文档,使用窗体保护的方式保护文档,工具->保护文档->Check“仅允许在文档中进行此类编辑”->Choose“填写窗体”,此时会弹出一个密码框,输入2次密码(我这里选择123作为word文件密码),这样,该文档就已经被保护起来了。
然我们来破解它,打开刚才创建的word文档,文件->另存为->选择HTML格式,存为一个HTML文档,用记事本打开该HTML文件,搜索"",你会看到5BCECF7A的字样(如果你的密码是用的123的话)。
接着我们用UltraEdit或其他类似的工具打开最初受保护的Word文档,搜索7ACFCE5B,搜索到后,都用8个0来代替,存盘。
此时的Word文档的密码就被清空了,你就可以自己取消文档保护了,密码就不用输入了,按个回车了事。