Codebase list massdns / dcb4ffb
Add a warning about Python 2 EOL Sophie Brun 4 years ago
2 changed file(s) with 23 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Sophie Brun <[email protected]>
1 Date: Fri, 24 Jan 2020 11:12:57 +0100
2 Subject: Add a warning about Python 2 EOL
3
4 ---
5 crowbar.py | 3 +++
6 1 file changed, 3 insertions(+)
7
8 diff --git a/crowbar.py b/crowbar.py
9 index d35135c..ea891bc 100644
10 --- a/crowbar.py
11 +++ b/crowbar.py
12 @@ -14,6 +14,9 @@ except Exception, err:
13
14 if __name__ == "__main__":
15
16 + print("WARNING: This tool needs to be ported to Python 3 or it might be removed from Kali")
17 + print("See https://gitlab.com/kalilinux/packages/crowbar/issues/1 for information")
18 +
19 try:
20 crowbar = Main()
21 crowbar.run(crowbar.args.brute)
0 Add-a-warning-about-Python-2-EOL.patch