diff --git a/README.md b/README.md index 2c8ff90f5..5d781e6aa 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,9 @@ For details, see [Configuration](https://www.blacklanternsecurity.com/bbot/scann ## BBOT as a Python library -BBOT exposes a Python API that allows it to be used for all kinds of fun and nefarious purposes, like a [Discord Bot that responds to `/scan evilcorp.com`](https://www.blacklanternsecurity.com/bbot/dev/#bbot-python-library-advanced-usage#discord-bot-example). +BBOT exposes a Python API that allows it to be used for all kinds of fun and nefarious purposes, like a [Discord Bot](https://www.blacklanternsecurity.com/bbot/dev/#bbot-python-library-advanced-usage#discord-bot-example) that responds to the `/scan` command. + +![bbot-discord](https://github.com/blacklanternsecurity/bbot/assets/20261699/22b268a2-0dfd-4c2a-b7c5-548c0f2cc6f9) **Synchronous** @@ -167,11 +169,13 @@ asyncio.run(main()) - [Troubleshooting](https://www.blacklanternsecurity.com/bbot/troubleshooting) -## Acknowledgements +## Contribution -Thanks to these amazing people for contributing to BBOT! :heart: +BBOT is constantly being improved by the community. Every day it grows more powerful! -If you're interested in contributing to BBOT, or just curious how it works under the hood, see [Contribution](https://www.blacklanternsecurity.com/bbot/contribution/). +We welcome contributions. Not just code, but ideas too! If you have an idea for a new feature, please let us know in [Discussions](https://github.com/blacklanternsecurity/bbot/discussions). If you want to get your hands dirty, see [Contribution](https://www.blacklanternsecurity.com/bbot/contribution/). There you can find setup instructions and a simple tutorial on how to write a BBOT module. We also have extensive [Developer Documentation](https://www.blacklanternsecurity.com/bbot/dev/). + +Thanks to these amazing people for contributing to BBOT! :heart:

diff --git a/docs/dev/index.md b/docs/dev/index.md index 5a9bf88d0..093a3aefb 100644 --- a/docs/dev/index.md +++ b/docs/dev/index.md @@ -6,6 +6,8 @@ Documented in this section are commonly-used classes and functions within BBOT, ## Discord Bot Example +![bbot-discord](https://github.com/blacklanternsecurity/bbot/assets/20261699/22b268a2-0dfd-4c2a-b7c5-548c0f2cc6f9) + Below is a simple Discord bot designed to run BBOT scans. ```python