├── LICENSE ├── README.md ├── boobsnail.py ├── docs └── excel4lib │ ├── config │ ├── excel4_config.html │ ├── excel4_obfuscator_config.html │ ├── excel4_translator_config.html │ └── index.html │ ├── exception │ ├── excel4_exception.html │ └── index.html │ ├── generator │ ├── download_execute │ │ ├── download_execute_generator.html │ │ └── index.html │ ├── excel_nt_donut │ │ ├── excel_nt_donut_generator.html │ │ └── index.html │ ├── exec │ │ ├── exec_generator.html │ │ └── index.html │ ├── generator.html │ └── index.html │ ├── index.html │ ├── lang │ ├── excel4_translator.html │ └── index.html │ ├── macro │ ├── analysis │ │ ├── excel4_anti_analysis.html │ │ └── index.html │ ├── excel4_argument.html │ ├── excel4_formula.html │ ├── excel4_instruction.html │ ├── excel4_macro.html │ ├── excel4_macro_extension.html │ ├── excel4_name.html │ ├── excel4_register_formula.html │ ├── excel4_result.html │ ├── excel4_value.html │ ├── excel4_variable.html │ ├── index.html │ ├── obfuscator │ │ ├── excel4_obfuscator.html │ │ ├── excel4_rc4_obfuscator.html │ │ └── index.html │ └── routine │ │ ├── excel4_routine.html │ │ └── index.html │ ├── sheet │ ├── cell.html │ ├── index.html │ └── worksheet.html │ └── utils │ ├── index.html │ ├── rc4.html │ └── utils.html ├── excel4lib ├── __init__.py ├── __init__.pyc ├── __pycache__ │ └── __init__.cpython-38.pyc ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── excel4_config.cpython-38.pyc │ │ ├── excel4_obfuscator_config.cpython-38.pyc │ │ └── excel4_translator_config.cpython-38.pyc │ ├── excel4_config.py │ ├── excel4_obfuscator_config.py │ └── excel4_translator_config.py ├── exception │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── excel4_exception.cpython-38.pyc │ ├── excel4_exception.py │ └── excel4_exception.pyc ├── generator │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── generator.cpython-38.pyc │ ├── download_execute │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── download_execute_generator.cpython-38.pyc │ │ └── download_execute_generator.py │ ├── excel_nt_donut │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── excel_nt_donut_generator.cpython-38.pyc │ │ └── excel_nt_donut_generator.py │ ├── exec │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── exec_generator.cpython-38.pyc │ │ └── exec_generator.py │ ├── generator.py │ └── template.txt ├── lang │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── excel4_translator.cpython-38.pyc │ ├── excel4_translator.py │ └── langs │ │ └── pl_PL.json ├── macro │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── excel4_argument.cpython-38.pyc │ │ ├── excel4_formula.cpython-38.pyc │ │ ├── excel4_instruction.cpython-38.pyc │ │ ├── excel4_macro.cpython-38.pyc │ │ ├── excel4_macro_extension.cpython-38.pyc │ │ ├── excel4_name.cpython-38.pyc │ │ ├── excel4_register_formula.cpython-38.pyc │ │ ├── excel4_result.cpython-38.pyc │ │ ├── excel4_value.cpython-38.pyc │ │ └── excel4_variable.cpython-38.pyc │ ├── analysis │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── excel4_anti_analysis.cpython-38.pyc │ │ └── excel4_anti_analysis.py │ ├── excel4_argument.py │ ├── excel4_formula.py │ ├── excel4_formula.pyc │ ├── excel4_instruction.py │ ├── excel4_instruction.pyc │ ├── excel4_macro.py │ ├── excel4_macro.pyc │ ├── excel4_macro_extension.py │ ├── excel4_name.py │ ├── excel4_register_formula.py │ ├── excel4_result.py │ ├── excel4_value.py │ ├── excel4_variable.py │ ├── obfuscator │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── excel4_obfuscator.cpython-38.pyc │ │ │ └── excel4_rc4_obfuscator.cpython-38.pyc │ │ ├── excel4_obfuscator.py │ │ ├── excel4_obfuscator.pyc │ │ └── excel4_rc4_obfuscator.py │ └── routine │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── excel4_routine.cpython-38.pyc │ │ └── excel4_routine.py ├── sheet │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── cell.cpython-38.pyc │ │ └── worksheet.cpython-38.pyc │ ├── cell.py │ ├── cell.pyc │ ├── worksheet.py │ └── worksheet.pyc └── utils │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── rc4.cpython-38.pyc │ └── utils.cpython-38.pyc │ ├── rc4.py │ ├── utils.py │ └── utils.pyc ├── requirements.txt ├── temp ├── msg_x64.msf └── msg_x86.msf └── tests ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── test_cell.cpython-38.pyc ├── test_excel4_argument.cpython-38.pyc ├── test_excel4_formula.cpython-38.pyc ├── test_excel4_instruction.cpython-38.pyc ├── test_excel4_macro.cpython-38.pyc ├── test_excel4_obfuscator.cpython-38.pyc ├── test_excel4_translator.cpython-38.pyc ├── test_excel4_variable.cpython-38.pyc └── test_worksheet.cpython-38.pyc ├── test_cell.py ├── test_excel4_argument.py ├── test_excel4_formula.py ├── test_excel4_instruction.py ├── test_excel4_macro.py ├── test_excel4_obfuscator.py ├── test_excel4_translator.py ├── test_excel4_variable.py └── test_worksheet.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/README.md -------------------------------------------------------------------------------- /boobsnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/boobsnail.py -------------------------------------------------------------------------------- /docs/excel4lib/config/excel4_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/config/excel4_config.html -------------------------------------------------------------------------------- /docs/excel4lib/config/excel4_obfuscator_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/config/excel4_obfuscator_config.html -------------------------------------------------------------------------------- /docs/excel4lib/config/excel4_translator_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/config/excel4_translator_config.html -------------------------------------------------------------------------------- /docs/excel4lib/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/config/index.html -------------------------------------------------------------------------------- /docs/excel4lib/exception/excel4_exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/exception/excel4_exception.html -------------------------------------------------------------------------------- /docs/excel4lib/exception/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/exception/index.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/download_execute/download_execute_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/download_execute/download_execute_generator.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/download_execute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/download_execute/index.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/excel_nt_donut/excel_nt_donut_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/excel_nt_donut/excel_nt_donut_generator.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/excel_nt_donut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/excel_nt_donut/index.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/exec/exec_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/exec/exec_generator.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/exec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/exec/index.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/generator.html -------------------------------------------------------------------------------- /docs/excel4lib/generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/generator/index.html -------------------------------------------------------------------------------- /docs/excel4lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/index.html -------------------------------------------------------------------------------- /docs/excel4lib/lang/excel4_translator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/lang/excel4_translator.html -------------------------------------------------------------------------------- /docs/excel4lib/lang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/lang/index.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/analysis/excel4_anti_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/analysis/excel4_anti_analysis.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/analysis/index.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_argument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_argument.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_formula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_formula.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_instruction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_instruction.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_macro.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_macro_extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_macro_extension.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_name.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_register_formula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_register_formula.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_result.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_value.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/excel4_variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/excel4_variable.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/index.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/obfuscator/excel4_obfuscator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/obfuscator/excel4_obfuscator.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/obfuscator/excel4_rc4_obfuscator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/obfuscator/excel4_rc4_obfuscator.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/obfuscator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/obfuscator/index.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/routine/excel4_routine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/routine/excel4_routine.html -------------------------------------------------------------------------------- /docs/excel4lib/macro/routine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/macro/routine/index.html -------------------------------------------------------------------------------- /docs/excel4lib/sheet/cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/sheet/cell.html -------------------------------------------------------------------------------- /docs/excel4lib/sheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/sheet/index.html -------------------------------------------------------------------------------- /docs/excel4lib/sheet/worksheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/sheet/worksheet.html -------------------------------------------------------------------------------- /docs/excel4lib/utils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/utils/index.html -------------------------------------------------------------------------------- /docs/excel4lib/utils/rc4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/utils/rc4.html -------------------------------------------------------------------------------- /docs/excel4lib/utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/docs/excel4lib/utils/utils.html -------------------------------------------------------------------------------- /excel4lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/__init__.py -------------------------------------------------------------------------------- /excel4lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/__init__.py -------------------------------------------------------------------------------- /excel4lib/config/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/config/__pycache__/excel4_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/__pycache__/excel4_config.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/config/__pycache__/excel4_obfuscator_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/__pycache__/excel4_obfuscator_config.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/config/__pycache__/excel4_translator_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/__pycache__/excel4_translator_config.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/config/excel4_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/excel4_config.py -------------------------------------------------------------------------------- /excel4lib/config/excel4_obfuscator_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/excel4_obfuscator_config.py -------------------------------------------------------------------------------- /excel4lib/config/excel4_translator_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/config/excel4_translator_config.py -------------------------------------------------------------------------------- /excel4lib/exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/__init__.py -------------------------------------------------------------------------------- /excel4lib/exception/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/exception/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/exception/__pycache__/excel4_exception.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/__pycache__/excel4_exception.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/exception/excel4_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/excel4_exception.py -------------------------------------------------------------------------------- /excel4lib/exception/excel4_exception.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/exception/excel4_exception.pyc -------------------------------------------------------------------------------- /excel4lib/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/__init__.py -------------------------------------------------------------------------------- /excel4lib/generator/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/__pycache__/generator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/__pycache__/generator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/download_execute/__init__.py: -------------------------------------------------------------------------------- 1 | from .download_execute_generator import * -------------------------------------------------------------------------------- /excel4lib/generator/download_execute/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/download_execute/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/download_execute/__pycache__/download_execute_generator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/download_execute/__pycache__/download_execute_generator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/download_execute/download_execute_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/download_execute/download_execute_generator.py -------------------------------------------------------------------------------- /excel4lib/generator/excel_nt_donut/__init__.py: -------------------------------------------------------------------------------- 1 | from .excel_nt_donut_generator import * -------------------------------------------------------------------------------- /excel4lib/generator/excel_nt_donut/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/excel_nt_donut/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/excel_nt_donut/__pycache__/excel_nt_donut_generator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/excel_nt_donut/__pycache__/excel_nt_donut_generator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/excel_nt_donut/excel_nt_donut_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/excel_nt_donut/excel_nt_donut_generator.py -------------------------------------------------------------------------------- /excel4lib/generator/exec/__init__.py: -------------------------------------------------------------------------------- 1 | from .exec_generator import * -------------------------------------------------------------------------------- /excel4lib/generator/exec/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/exec/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/exec/__pycache__/exec_generator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/exec/__pycache__/exec_generator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/generator/exec/exec_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/exec/exec_generator.py -------------------------------------------------------------------------------- /excel4lib/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/generator.py -------------------------------------------------------------------------------- /excel4lib/generator/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/generator/template.txt -------------------------------------------------------------------------------- /excel4lib/lang/__init__.py: -------------------------------------------------------------------------------- 1 | from .excel4_translator import * -------------------------------------------------------------------------------- /excel4lib/lang/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/lang/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/lang/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/lang/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/lang/__pycache__/excel4_translator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/lang/__pycache__/excel4_translator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/lang/excel4_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/lang/excel4_translator.py -------------------------------------------------------------------------------- /excel4lib/lang/langs/pl_PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/lang/langs/pl_PL.json -------------------------------------------------------------------------------- /excel4lib/macro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__init__.py -------------------------------------------------------------------------------- /excel4lib/macro/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_argument.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_argument.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_formula.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_formula.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_instruction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_instruction.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_macro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_macro.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_macro_extension.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_macro_extension.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_name.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_name.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_register_formula.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_register_formula.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_result.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_result.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_value.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_value.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/__pycache__/excel4_variable.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/__pycache__/excel4_variable.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | from .excel4_anti_analysis import * -------------------------------------------------------------------------------- /excel4lib/macro/analysis/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/analysis/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/analysis/__pycache__/excel4_anti_analysis.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/analysis/__pycache__/excel4_anti_analysis.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/analysis/excel4_anti_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/analysis/excel4_anti_analysis.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_argument.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_formula.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_formula.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_formula.pyc -------------------------------------------------------------------------------- /excel4lib/macro/excel4_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_instruction.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_instruction.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_instruction.pyc -------------------------------------------------------------------------------- /excel4lib/macro/excel4_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_macro.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_macro.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_macro.pyc -------------------------------------------------------------------------------- /excel4lib/macro/excel4_macro_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_macro_extension.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_name.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_register_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_register_formula.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_result.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_value.py -------------------------------------------------------------------------------- /excel4lib/macro/excel4_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/excel4_variable.py -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/__init__.py -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/__pycache__/excel4_obfuscator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/__pycache__/excel4_obfuscator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/__pycache__/excel4_rc4_obfuscator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/__pycache__/excel4_rc4_obfuscator.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/excel4_obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/excel4_obfuscator.py -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/excel4_obfuscator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/excel4_obfuscator.pyc -------------------------------------------------------------------------------- /excel4lib/macro/obfuscator/excel4_rc4_obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/obfuscator/excel4_rc4_obfuscator.py -------------------------------------------------------------------------------- /excel4lib/macro/routine/__init__.py: -------------------------------------------------------------------------------- 1 | from .excel4_routine import * -------------------------------------------------------------------------------- /excel4lib/macro/routine/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/routine/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/routine/__pycache__/excel4_routine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/routine/__pycache__/excel4_routine.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/macro/routine/excel4_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/macro/routine/excel4_routine.py -------------------------------------------------------------------------------- /excel4lib/sheet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/__init__.py -------------------------------------------------------------------------------- /excel4lib/sheet/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/sheet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/sheet/__pycache__/cell.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/__pycache__/cell.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/sheet/__pycache__/worksheet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/__pycache__/worksheet.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/sheet/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/cell.py -------------------------------------------------------------------------------- /excel4lib/sheet/cell.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/cell.pyc -------------------------------------------------------------------------------- /excel4lib/sheet/worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/worksheet.py -------------------------------------------------------------------------------- /excel4lib/sheet/worksheet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/sheet/worksheet.pyc -------------------------------------------------------------------------------- /excel4lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/__init__.py -------------------------------------------------------------------------------- /excel4lib/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/__init__.pyc -------------------------------------------------------------------------------- /excel4lib/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/utils/__pycache__/rc4.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/__pycache__/rc4.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /excel4lib/utils/rc4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/rc4.py -------------------------------------------------------------------------------- /excel4lib/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/utils.py -------------------------------------------------------------------------------- /excel4lib/utils/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/excel4lib/utils/utils.pyc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/requirements.txt -------------------------------------------------------------------------------- /temp/msg_x64.msf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/temp/msg_x64.msf -------------------------------------------------------------------------------- /temp/msg_x86.msf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/temp/msg_x86.msf -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_cell.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_cell.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_argument.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_argument.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_formula.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_formula.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_instruction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_instruction.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_macro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_macro.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_obfuscator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_obfuscator.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_translator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_translator.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_excel4_variable.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_excel4_variable.cpython-38.pyc -------------------------------------------------------------------------------- /tests/__pycache__/test_worksheet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/__pycache__/test_worksheet.cpython-38.pyc -------------------------------------------------------------------------------- /tests/test_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_cell.py -------------------------------------------------------------------------------- /tests/test_excel4_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_argument.py -------------------------------------------------------------------------------- /tests/test_excel4_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_formula.py -------------------------------------------------------------------------------- /tests/test_excel4_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_instruction.py -------------------------------------------------------------------------------- /tests/test_excel4_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_macro.py -------------------------------------------------------------------------------- /tests/test_excel4_obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_obfuscator.py -------------------------------------------------------------------------------- /tests/test_excel4_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_translator.py -------------------------------------------------------------------------------- /tests/test_excel4_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_excel4_variable.py -------------------------------------------------------------------------------- /tests/test_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMCyber/boobsnail/HEAD/tests/test_worksheet.py --------------------------------------------------------------------------------