INSTALL 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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[1]: "The Hive!" (2010/2019) // [https://xsser.03c8.net]
  9. ================================================================
  10. + INSTALL: AUTO
  11. ==================
  12. sudo python setup.py install
  13. ================================================================
  14. + INSTALL: MANUAL
  15. ===================
  16. XSSer runs on many platforms. It requires Python and the following libraries:
  17. - python-pycurl - Python bindings to libcurl
  18. - python-xmlbuilder - create xml/(x)html files - Python 2.x
  19. - python-beautifulsoup - error-tolerant HTML parser for Python
  20. - python-geoip - Python bindings for the GeoIP IP-to-country resolver library
  21. On Debian-based systems (ex: Ubuntu), run:
  22. sudo apt-get install python-pycurl python-xmlbuilder python-beautifulsoup python-geoip
  23. On other systems such as: Kali, Ubuntu, ArchLinux, ParrotSec, Fedora, etc... also run:
  24. pip install geoip
  25. #### Source libs:
  26. * Python: https://www.python.org/downloads/
  27. * PyCurl: http://pycurl.sourceforge.net/
  28. * PyBeautifulSoup: https://pypi.python.org/pypi/BeautifulSoup
  29. * PyGeoIP: https://pypi.python.org/pypi/GeoIP
  30. ================================================================