Skip to content

ucsb-seclab/symbexcel-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

symbexcel COM server

This component allows symbexcel to interact with Office VBA. The symbexcel server implements a multithreaded XML-RPC server, and it exposes serveral functions which are used by the symbexcel client to process Excel files.

Quick Start

  1. Install Windows 10 and Office 2019 in a virtual machine

  2. Install Python 3.9.6 from the Microsoft Store

  3. Install Windows Terminal from the Microsoft Store (recommended)

  4. Clone this repository inside the VM

    git clone git@github.com:ucsb-seclab/symbexcel-server.git
  1. Install dependencies
    cd symbexcel-server
    pip install -e requirements.txt
  1. Run a test
    Z:\> python excel.py .\tests\test.xlsm
    [~] Running a test, NOT starting the server..
    Defined Names:
    {'TEST_NAME': ('=Macro1!$A$3', 1)}
    Macro Sheets:
    {'Macro1': {'$A$1': (False, '=ALERT("FORMULA1")'),
                '$A$2': (2.0, '=SUM(1, 1)'),
                '$A$3': (False, '=ALERT(TEST_NAME)'),
                '$B$1': (10.0, None)}}
  1. Run the server:
    Z:\> python server.py
    14:53:18 [INFO] Server started: listening on 0.0.0.0 port 8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages