Ilan Ziskind

13 papers Misc 3Journal 8Unranked 2
YearRankTypeTitle / Venue / Authors
1997 conf
ICIP (3)
Meir Barzohar, Moshe Cohen, Ilan Ziskind, David B. Cooper
1993 conf
ICASSP (4)
Ilan Ziskind, David Hertz
1993 J jnl
IEEE Trans. Signal Process.
Ilan Ziskind, David Hertz
1993 J jnl
IEEE Trans. Signal Process.
Ilan Ziskind, David Hertz
1992 J jnl
IEEE Trans. Signal Process.
Ilan Ziskind, Yeheskel Bar-Ness
1992 Misc conf
ICASSP
Ilan Ziskind, David Hertz
1990 J jnl
IEEE Trans. Acoust. Speech Signal Process.
Ilan Ziskind, Mati Wax
1989 J jnl
IEEE Trans. Acoust. Speech Signal Process.
Mati Wax, Ilan Ziskind
1989 J jnl
IEEE Trans. Acoust. Speech Signal Process.
Mati Wax, Ilan Ziskind
1988 Misc conf
ICASSP
Mati Wax, Ilan Ziskind
1988 J jnl
IEEE Trans. Acoust. Speech Signal Process.
Ilan Ziskind, Mati Wax
1987 Misc conf
ICASSP
Ilan Ziskind, Mati Wax
1977 J jnl
IEEE Trans. Inf. Theory
Ilan Ziskind, Toby Berger
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()