Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knownsec/Minitools-bin_extractor
A simple script for quickly mining sensitive information in binary files.
https://github.com/knownsec/Minitools-bin_extractor
bin extractor python
Last synced: 21 days ago
JSON representation
A simple script for quickly mining sensitive information in binary files.
- Host: GitHub
- URL: https://github.com/knownsec/Minitools-bin_extractor
- Owner: knownsec
- Created: 2020-09-21T02:47:17.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-01T03:27:26.000Z (about 4 years ago)
- Last Synced: 2024-08-05T17:33:51.619Z (4 months ago)
- Topics: bin, extractor, python
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 29
- Watchers: 9
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - knownsec/Minitools-bin_extractor - A simple script for quickly mining sensitive information in binary files. (Python)
README
# Minitools-bin_extractor
ps: Please run the script in python2.7/python3 environment.
一个简单的用于快速挖掘二进制文件中敏感信息的脚本。
```
$ python bin_extractor.py -h
Usage: bin_extractor.py [options]Options:
--version show program's version number and exit
-h, --help show this help message and exit
-f FILENAME, --file=FILENAME
strings dump file
-s SCHEME, --scheme=SCHEME
url scheme http or https, default(http)
-d DOMAIN, --domain=DOMAIN
url domain
-p PORT, --port=PORT url port
-t TIMEOUT, --timeout=TIMEOUT
url verify timeout
-v, --verify url path verify```
## Usage
建议配合strings使用,效果更好。
```
strings * > /tmp/data.txt
python bin_extractor.py -f /tmp/data.txt -s https -d 10.10.0.106 -p 10443 -v
```一个简单的范例图片
![image-20200824162332360](./image-20200824162332360.png)