Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stackoverflowexcept1on/idapro90-docker
IDA Pro 9.0 Docker Image
https://github.com/stackoverflowexcept1on/idapro90-docker
ci-cd docker-image ida linux reverse-engineering
Last synced: 7 days ago
JSON representation
IDA Pro 9.0 Docker Image
- Host: GitHub
- URL: https://github.com/stackoverflowexcept1on/idapro90-docker
- Owner: StackOverflowExcept1on
- Created: 2024-08-18T11:58:05.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-18T17:11:10.000Z (3 months ago)
- Last Synced: 2024-10-10T22:23:28.031Z (28 days ago)
- Topics: ci-cd, docker-image, ida, linux, reverse-engineering
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### idapro90-docker
[![Docker Pulls](https://img.shields.io/docker/pulls/stackoverflowexcept1on/idapro)](https://hub.docker.com/r/stackoverflowexcept1on/idapro)
[![Docker Image](https://img.shields.io/badge/docker_image-995MB-blue)](https://hub.docker.com/r/stackoverflowexcept1on/idapro)IDA Pro 9.0 Docker Image that can be used in batch mode (without GUI). You can run IDA Pro on a Linux server at night and get `database.i64` the next day.
### Requirements
- `idapro_90_x64linux.run` file, which can be downloaded from release page
### Building
```bash
docker build --tag stackoverflowexcept1on/idapro .
```### Running
```bash
mkdir -p demo && cd demo
cp /bin/cat .
docker run --rm -it -v $(pwd):/files stackoverflowexcept1on/idapro -P+ -B /files/cat
ls cat.i64
```