(self)
| 2929 | self.xsstools() |
| 2930 | |
| 2931 | def xanxss(self): |
| 2932 | self.clear_scr() |
| 2933 | os.system("echo \" XanXSS is a reflected XSS searching tool\n that creates payloads based from templates\n\b [!]https://github.com/Ekultek/XanXSS \"|boxes -d boy | lolcat") |
| 2934 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 2935 | |
| 2936 | self.check_input(choice, self.xanxss, ['1', '2', '99']) |
| 2937 | |
| 2938 | if choice == "1": |
| 2939 | os.system("git clone https://github.com/Ekultek/XanXSS.git ") |
| 2940 | self.xanxss |
| 2941 | |
| 2942 | if choice == "2": |
| 2943 | os.system("cd XanXSS ;python xanxss.py -h") |
| 2944 | print("\033[96m You Have to run it manually By Using \n [!]python xanxss.py [Options] ") |
| 2945 | self.xanxss() |
| 2946 | |
| 2947 | if choice == "99": |
| 2948 | self.xsstools() |
| 2949 | |
| 2950 | def xss_strike(self): |
| 2951 | self.clear_scr() |
nothing calls this directly
no test coverage detected