(self)
| 2891 | self.xsstools() |
| 2892 | |
| 2893 | def xspear(self): |
| 2894 | self.clear_scr() |
| 2895 | os.system("echo \" XSpear is XSS Scanner on ruby gems\n\b [!]https://github.com/hahwul/XSpear \"|boxes -d boy | lolcat") |
| 2896 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 2897 | |
| 2898 | self.check_input(choice, self.xspear, ['1', '2', '99']) |
| 2899 | |
| 2900 | if choice == "1": |
| 2901 | os.system("gem install XSpear") |
| 2902 | self.xspear() |
| 2903 | |
| 2904 | if choice == "2": |
| 2905 | os.system("XSpear -h") |
| 2906 | self.xspear() |
| 2907 | |
| 2908 | if choice == "99": |
| 2909 | self.xsstools() |
| 2910 | |
| 2911 | def xsscon(self): |
| 2912 | self.clear_scr() |
nothing calls this directly
no test coverage detected