extraer_adjuntos_de_ficheros_mbox
Differences
This shows you the differences between two versions of the page.
extraer_adjuntos_de_ficheros_mbox [2020/12/25 22:57] – external edit 127.0.0.1 | extraer_adjuntos_de_ficheros_mbox [2022/03/24 15:25] (current) – busindre | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Extraer ficheros adjuntos | + | Mbox es un término genérico para una familia de formatos de documento que se usa para almacenar conjuntos |
- | **Ejecución**. | + | Al contrario de los protocolos de Internet usados para el intercambio de correo, el formato usado para almacenamiento de correo se dejó completamente en manos del desarrollador del cliente de correo electrónico. Mbox nunca ha sido formalmente definido a través de un RFC, por lo que han aparecido programas de conversión para transferir el correo entre distintos clientes de correo. Estos ficheros suelen tener nombres diferentes dependiendo del cliente de correo, puede ser INBOX, mailbox, INBOX.mbox, etc. |
+ | |||
+ | ====== Extraer Todas las direcciones de correo electrónico de ficheros mailbox) ====== | ||
+ | |||
+ | Este comando extre todas las direcciones de correo electrónico de ficheros de texto y los muestra ordenados alfabéticamente y sin repetidos. | ||
+ | <code bash> | ||
+ | |||
+ | ====== Leer ficheros mailbox ====== | ||
+ | |||
+ | Una manera simple de poder ver los correos de un fichero mailbox e interactuar con ellos (Buscar texto, descargar/ | ||
+ | <code bash> | ||
+ | |||
+ | ====== Extraer ficheros adjuntos de correos guardados en formato mbox ====== | ||
+ | |||
+ | Hay muchas opciones y herramientas para ello, se enumeran dos simples scripts que pueden ayudar a esa tarea de extraer todos los adjuntos de un fichero mailbox. | ||
+ | |||
+ | ===== (Opción 1) Script extract_mbox_attachments.py===== | ||
+ | |||
+ | **Mirror**: https:// | ||
+ | <code bash> | ||
+ | ./ | ||
+ | ./ | ||
+ | </ | ||
+ | |||
+ | <code python extract_mbox_attachments.py> | ||
+ | # | ||
+ | # -*- coding: utf-8 -*- | ||
+ | |||
+ | # Modified. | ||
+ | # Original script source: | ||
+ | # http:// | ||
+ | # https:// | ||
+ | |||
+ | # Usage: | ||
+ | # Run the script from a folder with file " | ||
+ | # Attachments will be extracted into subfolder " | ||
+ | # with prefix "m " where m is a message ID in mbox file. | ||
+ | |||
+ | # Or | ||
+ | # ./ | ||
+ | # ./ | ||
+ | # ./ | ||
+ | |||
+ | # --------------- | ||
+ | # Please check the unpacked files | ||
+ | # with an antivirus before opening them! | ||
+ | |||
+ | # --------------- | ||
+ | # I make no representations or warranties of any kind concerning | ||
+ | # the software, express, implied, statutory or otherwise, | ||
+ | # including without limitation warranties of title, merchantability, | ||
+ | # fitness for a particular purpose, non infringement, | ||
+ | # absence of latent or other defects, accuracy, or the present or | ||
+ | # absence of errors, whether or not discoverable, | ||
+ | # greatest extent permissible under applicable law. | ||
+ | |||
+ | import errno | ||
+ | import mailbox | ||
+ | import os | ||
+ | import pathlib | ||
+ | import re | ||
+ | import traceback | ||
+ | from email.header import decode_header | ||
+ | import argparse | ||
+ | import sys | ||
+ | |||
+ | |||
+ | def parse_options(args=[]): | ||
+ | parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter) | ||
+ | parser.add_argument(' | ||
+ | parser.add_argument(' | ||
+ | parser.add_argument(' | ||
+ | parser.add_argument(' | ||
+ | type=message_id_type, | ||
+ | help=' | ||
+ | parser.add_argument(' | ||
+ | type=message_id_type, | ||
+ | help=' | ||
+ | return parser.parse_args(args) | ||
+ | |||
+ | |||
+ | def message_id_type(arg): | ||
+ | try: | ||
+ | i = int(arg) | ||
+ | except ValueError as e: | ||
+ | raise argparse.ArgumentTypeError(str(e)) | ||
+ | if i < 0: | ||
+ | raise argparse.ArgumentTypeError(" | ||
+ | return i | ||
+ | |||
+ | |||
+ | class Extractor: | ||
+ | def __init__(self, | ||
+ | self.__total = 0 | ||
+ | self.__failed = 0 | ||
+ | |||
+ | self.options = options | ||
+ | |||
+ | assert os.path.isfile(options.input) | ||
+ | self.mbox = mailbox.mbox(options.input) | ||
+ | |||
+ | if not os.path.exists(options.output): | ||
+ | os.makedirs(options.output) | ||
+ | |||
+ | self.inline_image_folder = os.path.join(options.output, | ||
+ | if (not options.no_inline_images) and (not os.path.exists(self.inline_image_folder)): | ||
+ | os.makedirs(self.inline_image_folder) | ||
+ | |||
+ | def increment_total(self): | ||
+ | self.__total += 1 | ||
+ | |||
+ | def increment_failed(self): | ||
+ | self.__failed += 1 | ||
+ | |||
+ | def get_total(self): | ||
+ | return self.__total | ||
+ | |||
+ | def get_failed(self): | ||
+ | return self.__failed | ||
+ | |||
+ | |||
+ | def to_file_path(save_to, | ||
+ | return os.path.join(save_to, | ||
+ | |||
+ | |||
+ | def get_extension(name): | ||
+ | extension = pathlib.Path(name).suffix | ||
+ | return extension if len(extension) <= 20 else '' | ||
+ | |||
+ | |||
+ | def resolve_name_conflicts(save_to, | ||
+ | file_path = to_file_path(save_to, | ||
+ | |||
+ | START = 1 | ||
+ | iteration_number = START | ||
+ | |||
+ | while os.path.normcase(file_path) in file_paths: | ||
+ | extension = get_extension(name) | ||
+ | iteration = '' | ||
+ | new_name = '%s attachment %s%s%s' | ||
+ | file_path = to_file_path(save_to, | ||
+ | iteration_number += 1 | ||
+ | |||
+ | file_paths.append(os.path.normcase(file_path)) | ||
+ | return file_path | ||
+ | |||
+ | |||
+ | # Whitespaces: | ||
+ | FORBIDDEN_WHITESPACE_IN_FILENAMES = re.compile(' | ||
+ | OTHER_FORBIDDEN_FN_CHARACTERS = re.compile(' | ||
+ | |||
+ | |||
+ | def filter_fn_characters(s): | ||
+ | result = re.sub(FORBIDDEN_WHITESPACE_IN_FILENAMES, | ||
+ | result = re.sub(OTHER_FORBIDDEN_FN_CHARACTERS, | ||
+ | return result | ||
+ | |||
+ | |||
+ | def decode_filename(part, | ||
+ | if part.get_filename() is None: | ||
+ | print(' | ||
+ | return fallback_filename | ||
+ | else: | ||
+ | decoded_name = decode_header(part.get_filename()) | ||
+ | |||
+ | if isinstance(decoded_name[0][0], | ||
+ | return decoded_name[0][0] | ||
+ | else: | ||
+ | try: | ||
+ | name_encoding = decoded_name[0][1] | ||
+ | return decoded_name[0][0].decode(name_encoding) | ||
+ | except: | ||
+ | print(' | ||
+ | return fallback_filename | ||
+ | |||
+ | |||
+ | def write_to_disk(part, | ||
+ | with open(file_path, | ||
+ | f.write(part.get_payload(decode=True)) | ||
+ | |||
+ | |||
+ | def save(extractor, | ||
+ | extractor.increment_total() | ||
+ | |||
+ | try: | ||
+ | if inline_image: | ||
+ | attachments_counter[' | ||
+ | attachment_number_string = ' | ||
+ | destination_folder = extractor.inline_image_folder | ||
+ | else: | ||
+ | attachments_counter[' | ||
+ | attachment_number_string = str(attachments_counter[' | ||
+ | destination_folder = extractor.options.output | ||
+ | |||
+ | filename = decode_filename(part, | ||
+ | filename = filter_fn_characters(filename) | ||
+ | filename = '%s %s' % (mid, filename) | ||
+ | |||
+ | previous_file_paths = attachments_counter[' | ||
+ | |||
+ | try: | ||
+ | write_to_disk(part, | ||
+ | destination_folder, | ||
+ | previous_file_paths, | ||
+ | attachment_number_string)) | ||
+ | except OSError as e: | ||
+ | if e.errno == errno.ENAMETOOLONG: | ||
+ | short_name = '%s %s%s' % (mid, attachment_number_string, | ||
+ | write_to_disk(part, | ||
+ | destination_folder, | ||
+ | previous_file_paths, | ||
+ | attachment_number_string)) | ||
+ | else: | ||
+ | raise | ||
+ | except: | ||
+ | traceback.print_exc() | ||
+ | extractor.increment_failed() | ||
+ | |||
+ | |||
+ | def check_part(extractor, | ||
+ | mime_type = part.get_content_type() | ||
+ | if part.is_multipart(): | ||
+ | for p in part.get_payload(): | ||
+ | check_part(extractor, | ||
+ | elif (part.get_content_disposition() == ' | ||
+ | or ((part.get_content_disposition() != ' | ||
+ | save(extractor, | ||
+ | elif (mime_type.startswith(' | ||
+ | or mime_type.startswith(' | ||
+ | or mime_type.startswith(' | ||
+ | or mime_type.startswith(' | ||
+ | message_id_content_type = ' | ||
+ | if part.get_content_disposition() == ' | ||
+ | print(' | ||
+ | else: | ||
+ | print(' | ||
+ | save(extractor, | ||
+ | elif (not extractor.options.no_inline_images) and mime_type.startswith(' | ||
+ | save(extractor, | ||
+ | |||
+ | |||
+ | def process_message(extractor, | ||
+ | msg = extractor.mbox.get_message(mid) | ||
+ | if msg.is_multipart(): | ||
+ | attachments_counter = { | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | } | ||
+ | for part in msg.get_payload(): | ||
+ | check_part(extractor, | ||
+ | |||
+ | |||
+ | def extract_mbox_file(options): | ||
+ | extractor = Extractor(options) | ||
+ | print() | ||
+ | |||
+ | for i in range(options.start, | ||
+ | try: | ||
+ | process_message(extractor, | ||
+ | except KeyError: | ||
+ | print(' | ||
+ | break | ||
+ | if i % 1000 == 0: | ||
+ | print(' | ||
+ | |||
+ | print() | ||
+ | print(' | ||
+ | print(' | ||
+ | |||
+ | |||
+ | if __name__ == " | ||
+ | extract_mbox_file(parse_options(sys.argv[1: | ||
+ | </ | ||
+ | |||
+ | ===== (Opción 2) Script mbox-extract-attachments.py ===== | ||
<code bash> | <code bash> | ||
- | **Script**: https:// | + | **Mirror**: https:// |
<code python mbox-extract-attachments.py> | <code python mbox-extract-attachments.py> | ||
# | # |
extraer_adjuntos_de_ficheros_mbox.1608933466.txt.gz · Last modified: 2020/12/25 22:57 by 127.0.0.1