INSTALL 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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-geoip2 - Python geoip2 API for web services and databases - Python 3.x
  21. - python3-gi - Python 3 bindings for gobject-introspection libraries
  22. - python3-cairocffi - cffi-based cairo bindings for Python (Python3)
  23. - python3-selenium - Python3 bindings for Selenium
  24. - firefoxdriver - Firefox WebDriver support
  25. On Debian-based systems (ex: Ubuntu), run:
  26. sudo apt-get install python3-pycurl python3-bs4 python3-geoip python3-geoip2 python3-cairocffi python3-selenium firefoxdriver
  27. On other systems such as: Kali, Ubuntu, ArchLinux, ParrotSec, Fedora, etc... also run:
  28. sudo pip3 install pycurl bs4 geoip2 gobject cairocffi selenium
  29. #### Source libs:
  30. * Python: https://www.python.org/downloads/
  31. * PyCurl: http://pycurl.sourceforge.net/
  32. * PyBeautifulSoup4: https://pypi.org/project/beautifulsoup4/
  33. * PyGeoIP: https://pypi.python.org/pypi/GeoIP
  34. * PyGeoIP2: https://pypi.org/project/geoip2/
  35. * PyGObject: https://pypi.org/project/gobject/
  36. * PyCairocffi: https://pypi.org/project/cairocffi/
  37. * PySelenium: https://pypi.org/project/selenium/
  38. ================================================================