We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3633cd1 commit c0b2b47Copy full SHA for c0b2b47
hackertarget.py
@@ -2,6 +2,7 @@
2
# -*- coding: utf-8 -*-
3
4
from source import hackertarget_api
5
+import time
6
7
hackertarget_logo = """
8
_ _ _ _
@@ -28,7 +29,8 @@
28
29
[12] Subnet Lookup
30
[13] HTTP Header Check
31
[14] Extract Page Links
-[15] Exit
32
+[15] Version
33
+[16] Exit
34
"""
35
36
print(hackertarget_logo)
@@ -150,8 +152,16 @@ def run():
150
152
print("\n")
151
153
txt = hackertarget_api.hackertarget_api(14, target)
154
print(txt)
-
155
+
156
elif choice == '15':
157
+ print("\n")
158
+ print("[+] Version Checking..")
159
+ time.sleep(2)
160
+ version_number = "2.0"
161
+ time.sleep(3)
162
+ print("[+] Version : " + version_number)
163
164
+ elif choice == '16':
165
exit()
166
167
except KeyboardInterrupt:
0 commit comments