加载python插件:meterpreter > load python

查看指令集:meterpreter > help

python执行单条语句:
meterpreter > python_execute "import os; cd=os.getcwd()" -r cd # 将os.getcwd()赋值给 cd 这个变量,然后用 -r cd 读取 cd 这个变量的值

python执行py文件:
meterpreter > python_import -f test.py
