(self)
| 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 >> ") |
| 2790 | |
| 2791 | self.check_input(choice, self.rvuln, ['1', '2', '99']) |
| 2792 | |
| 2793 | if choice == "1": |
| 2794 | os.system("sudo git clone https://github.com/iinc0gnit0/RVuln;curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;source $HOME/.cargo/env") |
| 2795 | os.system("sudo apt install openssl-dev;sudo cp -r RVuln/ /usr/bin") |
| 2796 | self.rvuln() |
| 2797 | |
| 2798 | if choice == "2": |
| 2799 | os.system("RVuln") |
| 2800 | |
| 2801 | if choice == "99": |
| 2802 | self.xsstools() |
| 2803 | |
| 2804 | def dalfox(self): |
| 2805 | self.clear_scr() |
nothing calls this directly
no test coverage detected