MCPcopy
hub / github.com/Z4nzu/hackingtool / xsstools

Method xsstools

hackingtool.py:2753–2786  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2751
2752 ########### XSS Attack Tools ##
2753 def xsstools(self):
2754 self.clear_scr()
2755 os.system("figlet -f standard -c XSS Attack Tools | lolcat")
2756
2757 print("""
2758 [1] DalFox(Finder of XSS)
2759 [2] XSS Payload Generator
2760 [3] Extended XSS Searcher and Finder
2761 [4] XSS-Freak
2762 [5] XSpear
2763 [6] XSSCon
2764 [7] XanXSS
2765 [8] Advanced XSS Detection Suite
2766 [9] RVuln
2767 [99] Back
2768 """)
2769
2770 functions_xsstools = {
2771 '1':self.dalfox,
2772 '2':self.xsspayload,
2773 '3':self.xssfinder,
2774 '4':self.xssfreak,
2775 '5':self.xspear,
2776 '6':self.xsscon,
2777 '7':self.xanxss,
2778 '8':self.xss_strike,
2779 '9':self.rvuln,
2780 '99':self.menu
2781 }
2782
2783 choice = input("Z4nzu =>> ")
2784 self.check_input(choice, self.xsstools, functions_xsstools.keys())
2785
2786 functions_xsstools[choice]()
2787 def rvuln(self):
2788 os.system("echo \"RVuln is multi-threaded and Automated Web Vulnerability Scanner written in Rust\n\t [!]https://github.com/iinc0gnit0/RVuln \" | boxes -d boy | lolcat")
2789 choice = input("[1]Install [2]Run [99]Back >> ")

Callers 9

rvulnMethod · 0.95
dalfoxMethod · 0.95
xsspayloadMethod · 0.95
xssfinderMethod · 0.95
xssfreakMethod · 0.95
xspearMethod · 0.95
xssconMethod · 0.95
xanxssMethod · 0.95
xss_strikeMethod · 0.95

Calls 2

clear_scrMethod · 0.95
check_inputMethod · 0.95

Tested by

no test coverage detected