[TSM.ID].[11031972] PXE : Platform X Ecosystem I [118 Module -LIVE-]

This commit is contained in:
TSM.ID
2026-05-25 03:50:05 +07:00
commit e820143b3c
673 changed files with 101320 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import paramiko
c = paramiko.SSHClient()
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
c.connect('160.187.143.253', username='root', password=';ur7n)LC1BQ;')
def r(cmd):
print(f"Executing: {cmd}")
try:
_, so, se = c.exec_command(cmd, timeout=30)
stdout = so.read().decode('utf-8', 'replace').strip()
stderr = se.read().decode('utf-8', 'replace').strip()
if stdout: print(f"STDOUT:\n{stdout}")
if stderr: print(f"STDERR:\n{stderr}")
return stdout
except Exception as e:
return str(e)
r('pm2 logs supreme-iam --lines 100 --nostream')
c.close()