Excel 2010的,宏有密码,怎么破解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Excel 2010的,宏有密码,怎么破解相关的知识,希望对你有一定的参考价值。
新建一个文件,打开VBA编辑器。
新建一个模块。
输入以下代码。
Sub MoveProtect()
Dim FileName As String
FileName = Application.GetOpenFilename("Excel文件(*.xls & *.xla & *.xlsm),*.xls;*.xla;*.xlsm", , "VBA破解")
If FileName = CStr(False) Then
Exit Sub
Else
VBAPassword FileName, False
End If
End Sub
\'设置VBA编码保护
Sub SetProtect()
Dim FileName As String
FileName = Application.GetOpenFilename("Excel文件(*.xls & *.xla& *.xlsm),*.xls;*.xla;*.xlsm", , "VBA破解")
If FileName = CStr(False) Then
Exit Sub
Else
VBAPassword FileName, True
End If
End Sub
Private Function VBAPassword(FileName As String, Optional Protect As Boolean = False)
If Dir(FileName) = "" Then
Exit Function
Else
FileCopy FileName, FileName & ".bak"
End If
Dim GetData As String * 5
Open FileName For Binary As #1
Dim CMGs As Long
Dim DPBo As Long
For i = 1 To LOF(1)
Get #1, i, GetData
If GetData = "CMG=""" Then CMGs = i
If GetData = "[Host" Then DPBo = i - 2: Exit For
Next
If CMGs = 0 Then
MsgBox "请先对VBA编码设置一个保护密码...", 32, "提示"
Exit Function
End If
If Protect = False Then
Dim St As String * 2
Dim s20 As String * 1
\'取得一个0D0A十六进制字串
Get #1, CMGs - 2, St
\'取得一个20十六制字串
Get #1, DPBo + 16, s20
\'替换加密部份机码
For i = CMGs To DPBo Step 2
Put #1, i, St
Next
\'加入不配对符号
If (DPBo - CMGs) Mod 2 <> 0 Then
Put #1, DPBo + 1, s20
End If
MsgBox "文件解密成功......", 32, "提示"
Else
Dim MMs As String * 5
MMs = "DPB="""
Put #1, CMGs, MMs
MsgBox "对文件特殊加密成功......", 32, "提示"
End If
Close #1
End Function
保存后打开。
ALT+F8运行宏。
按要求破解就是了。
十有八九能破的。 参考技术A 可以发过来帮你解密。2424918521@qq.com
打开和写入excel文件
一.使用win32读取excel内容
# -*- coding: utf-8 -*- from win32com import client as wc def open_excel(): excel = wc.Dispatch(‘EXCEL.Application‘) #使用excel程序 excel.Visible = 0 #不打开excel界面 my_excel = excel.Workbooks.Open(u‘新建表格.xls‘) #指定表格路径 my_sheet = my_excel.Sheets(‘Sheet1‘) #打开表格中的sheet1,根据实际情况而定 for i in range(my_sheet.UsedRange.Rows.Count): #遍历sheet1中的表格列数 for j in range(my_sheet.UsedRange.Columns.Count): #遍历sheet1中的表格行数 print my_sheet.Cells(i + 1, j + 1).Value #读取相应的坐标表格值,并打印 my_excel.Close() #关闭表格 excel.Quit() open_excel()
二.使用xlrd读取excel内容(比第一种方法快很多)
# -*- coding: utf-8 -*- from xlrd import open_workbook def open_excel2(): #快很多 wb = open_workbook(u‘新建表格.xls‘) #指定路径 for s in wb.sheets(): #遍历sheet表 for row in range(s.nrows): #遍历列 for col in range(s.ncols): #遍历行 print s.cell(row,col).value #打印值 open_excel()
以上是关于Excel 2010的,宏有密码,怎么破解的主要内容,如果未能解决你的问题,请参考以下文章