ChangeTower is intended to help you watch changes in web pages and get notified of any changes written in Go. This tool is good to know the web pages are updated something or not to work on the new site before others
ChangeTower requires go1.16+ to install successfully. Run the following command to get the repo
go get -v github.com/Dc4ts/ChangeTower
If you haven't got Go in your OS you can use the pre-build version by going to release
- To see help.
./ChangeTower -h
- Print banner without color if your OS can't print the ASCII colors.
cat links.txt | ./ChangeTower -w
- Show the results in silent mode to parse the final result into another tools.
cat links.txt | ./ChangeTower -s
- Run ChangeTower without logging the results.
echo "https://example.com" | ./ChangeTower -d
- Show the results without any stuff.
cat links.txt | ./ChangeTower -s -l
Here is a sample wich use cronjob for run every 2 hours and notify by ProjectDiscovery to send result in our telegram bot
- Make a bot in botfather and get the API-KEY
- Send a message to getidsbot and get your CHAT-ID
- Get notify from HERE
- Add your target links in a txt file (E.x. links.txt)
- Type this
crontab -e
- In the end, you can send ChangeTower results on every social media. In this example we send our results with the telegram bot. (Edit the command below and add your API-KEY, CHAT-ID and etc)
* */2 * * * cat ~/links.txt | ChangeTower -s | notify -telegram -telegram-api-key 18620*****:AA*******tu-7qDyQUy7VcQs******5ZAPE -telegram-chat-id 1234567890
- Now every 2 hours its give to ChangeTower and run ChangeTower without a banner to don't send it by notify and notify will send all
cat ~/links.txt | ChangeTower -s
result in the telegram bot to the CHAT-ID is given.
Contributions are always welcome! See contributing.md for ways to get started. Please adhere to this project's code of conduct.
ChangeTower is made with