Skip to content

Commit c0b2b47

Browse files
author
İsmail Taşdelen
authored
version information updated
1 parent 3633cd1 commit c0b2b47

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Diff for: hackertarget.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
from source import hackertarget_api
5+
import time
56

67
hackertarget_logo = """
78
_ _ _ _
@@ -28,7 +29,8 @@
2829
[12] Subnet Lookup
2930
[13] HTTP Header Check
3031
[14] Extract Page Links
31-
[15] Exit
32+
[15] Version
33+
[16] Exit
3234
"""
3335

3436
print(hackertarget_logo)
@@ -150,8 +152,16 @@ def run():
150152
print("\n")
151153
txt = hackertarget_api.hackertarget_api(14, target)
152154
print(txt)
153-
155+
154156
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':
155165
exit()
156166

157167
except KeyboardInterrupt:

0 commit comments

Comments
 (0)