mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
/*
|
|
* Extract VBA source code for component MS Office Documents
|
|
*
|
|
* Copyright (C) 2007-2008 Sourcefire, Inc.
|
|
*
|
|
* Authors: Trog, Nigel Horne
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __VBA_EXTRACT_H
|
|
#define __VBA_EXTRACT_H
|
|
|
|
#include "others.h"
|
|
#include "cltypes.h"
|
|
#include "uniq.h"
|
|
|
|
typedef struct vba_project_tag {
|
|
char **name;
|
|
uint32_t *colls;
|
|
uint32_t *offset;
|
|
uint32_t *length; /* for Word 6 macros */
|
|
unsigned char *key; /* for Word 6 macros */
|
|
char *dir;
|
|
struct uniq *U;
|
|
int count;
|
|
} vba_project_t;
|
|
|
|
vba_project_t *cli_vba_readdir(const char *dir, struct uniq *U, uint32_t which);
|
|
vba_project_t *cli_wm_readdir(int fd);
|
|
unsigned char *cli_vba_inflate(int fd, off_t offset, int *size);
|
|
int cli_scan_ole10(int fd, cli_ctx *ctx);
|
|
char *cli_ppt_vba_read(int fd, cli_ctx *ctx);
|
|
unsigned char *cli_wm_decrypt_macro(int fd, off_t offset, uint32_t len,
|
|
unsigned char key);
|
|
#endif
|
|
|