https://github.com/shuygena/sanitizer_checker
Utility to detect sanitizers used in compilation
https://github.com/shuygena/sanitizer_checker
binary-file-search elf-files kaspersky python3 sanitizers
Last synced: 7 months ago
JSON representation
Utility to detect sanitizers used in compilation
- Host: GitHub
- URL: https://github.com/shuygena/sanitizer_checker
- Owner: shuygena
- Created: 2023-04-22T07:29:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-26T16:41:51.000Z (over 2 years ago)
- Last Synced: 2025-01-17T02:22:37.947Z (9 months ago)
- Topics: binary-file-search, elf-files, kaspersky, python3, sanitizers
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sanitizer_checker
Utility to detect sanitizers used in compilation## :toolbox: Requirements:
This project was done with python-3.8.10## :link: Download & Run
Clone repository:
```
git clone https://github.com/shuygena/sanitizer_checker sanitizer_checker
```
Go to directory:
```
cd sanitizer_checker
```
Run:
```
python3 sanitizer_checker.py [file] [option]
```
## :clipboard: Checker options
1. Check only 1/3 sanitizer types: AddressSanitizer, MemorySanitizer, ThreadSanitizer
```
python3 sanitizer_checker.py [file]
```
2. Check all sanitizers: AddressSanitizer, MemorySanitizer, ThreadSanitizer, UndefinedBehaviorSanitizer, DataFlowSanitizer, LeakSanitizer
```
python3 sanitizer_checker.py [file] -a
```
3. Help option:
```
python3 sanitizer_checker.py -h
```