HTA - json

Posted reboost

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTA - json相关的知识,希望对你有一定的参考价值。

hta,js,json

json cmd over http

<html>
<meta charset="utf-8" />
<head>
<title>Call webservice via ajax</title>
<script>
var xhr = new XMLHttpRequest();
function sendMsg()
var name = document.getElementById(‘name‘).value;
//服务的地址
var wsUrl = ‘http://192.168.0.24:4888‘;
//请求体
var param = ‘"command":"API_start","ver":"1.1"‘;
//打开连接
xhr.open(‘POST‘, wsUrl, true);
//重新设置请求头
xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
//xhr.setRequestHeader("SOAPAction", "http://WebXml.com.cn/getRegionCountry");
//设置回调函数
xhr.onreadystatechange = _back;
//发送请求
xhr.send(param);

function _back()
if (xhr.readyState == 4)
if (xhr.status == 200)
document.getElementById(‘showInfo‘).innerHTML = xhr.responseText;



function sendMsg2()

</script>
</head>
<body>
<input type="button" value="send command" onclick="sendMsg();">
<input type="text" id="name"><br />
<div id="showInfo">
</div>
</body>
</html>

   

以上是关于HTA - json的主要内容,如果未能解决你的问题,请参考以下文章

在 vbscript 中使用 HTA

HTA - 基础

HTA 游戏手柄 API(或替代方案)

HTA 中的 JavaScript 版本

HTA 中的外部 VBScript

153.网络安全渗透测试—[Cobalt Strike系列]—[生成hta/exe/宏后门]