You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
728 B

  1. # Botnet Crafter
  2. ![https://mirella-gabriele.deviantart.com/](https://raw.githubusercontent.com/arnaucode/botnetCrafter/master/bot.png "https://mirella-gabriele.deviantart.com/")
  3. (image from https://mirella-gabriele.deviantart.com )
  4. ## Instructions
  5. - First, get geckhodriver:
  6. put geckodriver https://github.com/mozilla/geckodriver/releases
  7. - Then export path (not really necessary if in the code puts the path):
  8. ```
  9. export PATH=$PATH:/path/to/directory/of/executable/downloaded
  10. ```
  11. Or put the path in the code:
  12. ```
  13. driver = webdriver.Firefox(executable_path='/path/to/directory/of/executable/downloaded/in/previous/step')
  14. ```
  15. - Install Python Selenium library:
  16. ```
  17. pip install selenium
  18. ```
  19. - Use:
  20. ```
  21. python main.py
  22. ```