Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #68

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Mori"
given-names: "Riccardo"
- family-names: "David"
given-names: "Robin"
orcid: "https://orcid.org/0009-0008-8214-875X"
- family-names: "Cohen"
given-names: "Roxane"
- family-names: "Challande"
given-names: "Alexis"
- family-names: "Mengin"
given-names: "Elie"
title: "QBindiff"
version: 1.2.2
date-released: "2023-10-12"
license: Apache-2.0
url: "https://github.com/quarkslab/qbindiff"
preferred-citation:
type: conference
authors:
- family-names: "Cohen"
given-names: "Roxane"
- family-names: "David"
given-names: "Robin"
orcid: "https://orcid.org/0009-0008-8214-875X"
- family-names: "Mori"
given-names: "Riccardo"
- family-names: "Yger"
given-names: "Florian"
- family-names: "Rossi"
given-names: "Fabrice"
# doi: "10.0000/00000"
journal: "Conference on Artificial Intelligence for Defense"
month: 11
# start: XX # First page number
# end: XX # Last page number
title: "Improving binary diffing through similarity and matching intricacies"
issue: 1
volume: 1
year: 2024
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,26 @@ differ.process()
mapping = differ.compute_matching()
output = {(match.primary.addr, match.secondary.addr) for match in mapping}
```
## Citing this work
If you use QBinDiff in your work, please consider to cite it using these references :

```
@inproceedings{CAIDQBinDiff,
author = "Cohen, Roxane and David, Robin and Mori, Riccardo and Yger, Florian and Rossi, Fabrice",
title = "Improving binary diffing through similarity and matching intricacies",
booktitle = "Proc. of the 6th Conference on Artificial Intelligence for Defense",
year = 2024,
}
```

```
@misc{SSTICQBinDiff,
title = "QBinDiff: A modular differ to enhance binary diffing and graph alignment",
author = "Cohen, Roxane and David, Robin and Mori, Riccardo and Yger, Florian and Rossi, Fabrice",
howpublished = "\url{https://www.sstic.org/2024/presentation/qbindiff_a_modular_differ/}",
year = 2024,
}
```
## Contributing & Contributors

Any help, or feedback is greatly appreciated via Github issues, pull requests.
Expand Down