INSTALL 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ============================================
  2. Introduction:
  3. ============================================
  4. Cross Site "Scripter" is an automatic -framework- to detect, exploit and report XSS vulnerabilities in web-based applications.
  5. ================================================================
  6. Current Version:
  7. ==============================
  8. XSSer v1.8[3]: "The Hiv€!" (2010/2030) // [https://xsser.03c8.net]
  9. ================================================================
  10. + INSTALL: AUTO
  11. ==================
  12. sudo python setup.py install (or sudo python3 setup.py install)
  13. ================================================================
  14. + INSTALL: MANUAL
  15. ===================
  16. XSSer runs on many platforms. It requires Python (3.x) and the following libraries:
  17. - python3-pycurl - Python bindings to libcurl (Python 3)
  18. - python3-bs4 - error-tolerant HTML parser for Python 3
  19. - python3-geoip - Python3 bindings for the GeoIP IP-to-country resolver library
  20. - python3-gi - Python 3 bindings for gobject-introspection libraries
  21. - python3-cairocffi - cffi-based cairo bindings for Python (Python3)
  22. - python3-selenium - Python3 bindings for Selenium
  23. - firefoxdriver - Firefox WebDriver support
  24. On Debian-based systems (ex: Ubuntu), run:
  25. sudo apt-get install python3-pycurl python3-bs4 python3-geoip python3-cairocffi python3-selenium firefoxdriver
  26. On other systems such as: Kali, Ubuntu, ArchLinux, ParrotSec, Fedora, etc... also run:
  27. sudo pip3 install pycurl bs4 pygeoip gobject cairocffi selenium
  28. #### Source libs:
  29. * Python: https://www.python.org/downloads/
  30. * PyCurl: http://pycurl.sourceforge.net/
  31. * PyBeautifulSoup4: https://pypi.org/project/beautifulsoup4/
  32. * PyGeoIP: https://pypi.org/project/pygeoip/
  33. * PyGObject: https://pypi.org/project/gobject/
  34. * PyCairocffi: https://pypi.org/project/cairocffi/
  35. * PySelenium: https://pypi.org/project/selenium/
  36. ================================================================