A tool to notify you of the latest changes in bug bounty programs.
It uses https://github.com/arkadiyt/bounty-targets-data API.
New Assets -> Less Hunted -> Instant Notfication -> More Chance of Hunting
- Get notified of newly launched programs on platforms.
- Get notified of new assets added to programs.
- Get notified of change in payment policies (0->$)
assetNotifier requires Node.js v14+ to run.
I recommend installing Node.js using "nvm" which is a version manager for node. https://github.com/nvm-sh/nvm
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
nvm install node # "node" is an alias for the latest version
Install the dependencies.
cd assetNotifier
npm i
I . Go to helper/constant.js and paste your discord hook.
II. In order to start using the tool you need to first create and intialize your JSON database for each platform. To do so, run the command below.
node index.js init
III. Now you can start watching 👁
node index.js watch
Automate the flow by making a cron job using crontab.
Depend on how you install the node.js the location of its binary might vary.
Use https://crontab.cronhub.io/ to generate your desired cron expression. (e.g */30 * * * * -> run every 30 mintues)
For example copy this into file opened by "crontab -e" and change the directory path with your own.
*/30 * * * * /root/.nvm/versions/node/v17.3.0/bin/node /path/to/proram/assetNotifier/index.js watch >> /var/log/watcher