You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
super(XSSStrike, self).__init__(runnable = False) instead of calling the class name we can do this: super().__init__(runnable = False) (this is more pythonic)
"sudo git clone https://github.com/iinc0gnit0/RVuln.git;" "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;" "source $HOME/.cargo/env;" "sudo apt install librust-openssl-dev;"
The code snippet doesn't need any ';' at the end, python doesn't require it.
The text was updated successfully, but these errors were encountered:
Describe the bug
super(XSSStrike, self).__init__(runnable = False)
instead of calling the class name we can do this:super().__init__(runnable = False)
(this is more pythonic)"sudo git clone https://github.com/iinc0gnit0/RVuln.git;" "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;" "source $HOME/.cargo/env;" "sudo apt install librust-openssl-dev;"
The code snippet doesn't need any ';' at the end, python doesn't require it.
The text was updated successfully, but these errors were encountered: