Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohsec/bountymeter
[BASH] Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year.
https://github.com/rohsec/bountymeter
Last synced: 3 months ago
JSON representation
[BASH] Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year.
- Host: GitHub
- URL: https://github.com/rohsec/bountymeter
- Owner: rohsec
- Created: 2023-04-16T06:37:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-21T05:48:42.000Z (over 1 year ago)
- Last Synced: 2023-07-21T06:38:37.756Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 26
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - rohsec/bountymeter - [BASH] Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track th (Shell)
README
![bmbanner](https://user-images.githubusercontent.com/63975446/232277969-c4fd1424-55ac-4005-8856-18ccbe57ba90.png)
# Bounty Meter
Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year. With Bounty Meter, you can add and subtract bounties, view your total bounties earned this year, and display an interactive stats card to visualize your progress.
## Getting Started
### Prerequisites
Bounty Meter is built using Bash scripting language and requires the following tools to be installed on your system:
- sed (4.0 or later)
- jq
- bc### Installation
You can download and use the latest version of Bounty Meter by running the following command in your terminal:
```
curl https://raw.githubusercontent.com/rohsec/bountymeter/master/bountymeter.sh -o bm && chmod +x bm && mv bm /usr/local/bin/
```### Usage
[ + ] To initialize Bounty Meter and set your bounty target for the year, run the following command:
```
bm init bounty_target username
```Replace `bounty_target` with your desired bounty target for the year and `username` with your hacking alias.
[ + ] To add a new bounty amount to a specified month, run the following command:
```
bm add month_name bounty_amount
```Replace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you wish to add to that particluar month.
[ + ] To remove a specified bounty amount from a specified month, run the following command:
```
bm sub month_name bounty_amount
```Replace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you want to remove.
[ + ] To display total bounty earned in a particular month, run the following command:
```
bm monthly month_name
```
Replace `month_name` with the name of the month (e.g. January, February, etc.)[ + ] To display total bounty earned the current year, run the following command:
```
bm total
```[ + ] To display an interactive stats card that shows your progress throughout the year, run the following command:
```
bm stats
```If you want to make the `bm stats` command your banner in the terminal, you can add the ```bm stats``` command to your `.bashrc` or `.zshrc` file.
### Note: For MacOS run 'brew install bash' and rerun the script in a new terminal.
## Screnshots
![bmusage](https://user-images.githubusercontent.com/63975446/232277645-5c7f4d74-f1a5-4afc-b91d-1001108576db.png)
![bmmonthly](https://user-images.githubusercontent.com/63975446/232277651-e35d6ed4-b555-49e0-a68c-766a15f450fa.png)
![bmstatscard](https://user-images.githubusercontent.com/63975446/232277657-7d01f347-d39a-4406-9ad2-abba053c55b5.png)## License
Bounty Meter is licensed under the [MIT License](https://github.com///blob/main/LICENSE).
## Contributing
If you would like to contribute to Bounty Meter, please feel free to fork the repository, make your changes, and submit a pull request.