标签:cti int port .text ase cut func main text
# python执行lua脚本
import requests
from urllib.parse import quote
lua = '''
function main(splash)
return 'hello'
end
'''
url = 'http://localhost:8050/execute?lua_source=' + quote(lua)
response = requests.get(url)
print(response.text)
标签:cti int port .text ase cut func main text
原文地址:https://www.cnblogs.com/hankleo/p/10807796.html