Ingrid Pretzer-Aboff

11 papers A* 1B 7Misc 1Journal 1Unranked 1
YearRankTypeTitle / Venue / Authors
2025 J jnl
CoRR
Chuntian Chi, John Clapham, Leslie Cloud, Ingrid Pretzer-Aboff, Gina Mari Blackwell, Huajie Shao, Gang Zhou
2025 B conf
CHASE
Chen Qian, Chuntian Chi, John Clapham, Jiarui Qi, Zherui Zhang, Gina Mari Blackwell, Ingrid Pretzer-Aboff, Leslie Cloud, Meiyi Ma, Gang Zhou, Huajie Shao
2025 B conf
CHASE
Xinyu Chen, Kenneth Koltermann, John Clapham, Gina Mari Blackwell, Leslie Cloud, Ingrid Pretzer-Aboff, Huajie Shao, Gang Zhou
2024 B conf
CHASE
Kenneth Koltermann, John Clapham, Gina Mari Blackwell, Woosub Jung, Evie N. Burnet, Ye Gao, Huajie Shao, Leslie Cloud, Ingrid Pretzer-Aboff, Gang Zhou
2024 A* conf
MobiCom
Md Touhiduzzaman, Jane Chung, Ingrid Pretzer-Aboff, Eyuphan Bulut
2023 B conf
CHASE
Kenneth Koltermann, Woosub Jung, Gina Mari Blackwell, Abbott Pinney, Matthew Chen, Leslie Cloud, Ingrid Pretzer-Aboff, Gang Zhou
2023 B conf
CHASE
Minglong Sun, Woosub Jung, Kenneth Koltermann, Gang Zhou, Amanda Watson, Gina Mari Blackwell, Noah Helm, Leslie Cloud, Ingrid Pretzer-Aboff
2022 Misc conf
SenSys
Woosub Jung, Kenneth Koltermann, Noah Helm, Gina Mari Blackwell, Ingrid Pretzer-Aboff, Leslie Cloud, Gang Zhou
2022 B conf
CHASE
Woosub Jung, Kenneth Koltermann, Noah Helm, Gina Blackwell, Ingrid Pretzer-Aboff, Leslie Cloud, Gang Zhou
2021 B conf
CHASE
Minglong Sun, Amanda Watson, Gina Blackwell, Woosub Jung, Shuangquan Wang, Kenneth Koltermann, Noah Helm, Gang Zhou, Leslie Cloud, Ingrid Pretzer-Aboff
2012 conf
EMBC
Kyle N. Winfree, Ingrid Pretzer-Aboff, David Hilgart, Rajeev Aggarwal, Madhuri Behari, Sunil Kumar Agrawal
redb/extractors/decompiler/bninja/run.py
← Index redb/extractors/decompiler/bninja/run.py python
import argparse
import json

from decompiler import BinaryNinjaDecompiler
from utils.json_encoder import BinaryNinjaEncoder


def run_from_command_line():
    parser = argparse.ArgumentParser(description="Binary Ninja Decompiler")
    parser.add_argument("filepath", help="Path to the binary file to analyze")
    parser.add_argument(
        "--output", "-o", help="Output JSON file path (default: stdout)"
    )
    parser.add_argument(
        "--timeout",
        "-t",
        type=int,
        default=1200,
        help="Analysis timeout in seconds (default: 1200)",
    )
    args = parser.parse_args()

    with BinaryNinjaDecompiler(args.filepath, args.timeout) as decompiler:
        success = decompiler.extract()

        if not success:
            decompiler.log.error("Analysis failed")
            return 1

        # Output results
        if args.output:
            with open(args.output, "w") as f:
                json.dump(decompiler.analysis_results, f, cls=BinaryNinjaEncoder)
            decompiler.log.info(f"Results written to {args.output}")
        else:
            print(json.dumps(decompiler.analysis_results, cls=BinaryNinjaEncoder))

    return 0


if __name__ == "__main__":
    run_from_command_line()