mirror of
https://github.com/Mr-xn/Penetration_Testing_POC.git
synced 2026-05-28 01:44:21 +08:00
add getAV---windows杀软进程对比工具单文件版
This commit is contained in:
@@ -283,6 +283,7 @@
|
|||||||
- [【Android脱壳】之一键提取APP敏感信息](https://github.com/TheKingOfDuck/ApkAnalyser)
|
- [【Android脱壳】之一键提取APP敏感信息](https://github.com/TheKingOfDuck/ApkAnalyser)
|
||||||
- [Shiro系列漏洞检测GUI版本-ShiroExploit GUI版本](https://github.com/feihong-cs/ShiroExploit_GUI)
|
- [Shiro系列漏洞检测GUI版本-ShiroExploit GUI版本](https://github.com/feihong-cs/ShiroExploit_GUI)
|
||||||
- [通过phpinfo获取cookie突破httponly](./通过phpinfo获取cookie突破httponly.md)
|
- [通过phpinfo获取cookie突破httponly](./通过phpinfo获取cookie突破httponly.md)
|
||||||
|
- [getAV---windows杀软进程对比工具单文件版](./tools/getAV/)
|
||||||
|
|
||||||
## <span id="head8"> 文章/书籍/教程相关</span>
|
## <span id="head8"> 文章/书籍/教程相关</span>
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,39 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>getAVName</title>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<center>
|
||||||
|
<h4>tasklist /svc</h4><br>
|
||||||
|
<textarea style="width: 950px; height: 341px;" id="content"></textarea><br><br>
|
||||||
|
<input type="submit" id="search" value="查询" onclick="getAVName();"><br>
|
||||||
|
<div id="result"></div>
|
||||||
|
</center>
|
||||||
|
|
||||||
|
<script src="./avlist.js"></script>
|
||||||
|
<script>
|
||||||
|
function getAVName() {
|
||||||
|
var tasklist = document.getElementById('content').value;
|
||||||
|
var re = new RegExp("(.*?)\.exe", "g");
|
||||||
|
var tasks = tasklist.match(re);
|
||||||
|
var result = document.getElementById('result');
|
||||||
|
var htmlContent = "";
|
||||||
|
for (i = 0; i < Object.keys(avList).length; i++) {
|
||||||
|
var taskid = Object.keys(avList)[i];
|
||||||
|
for (x = 0; x < tasks.length; x++) {
|
||||||
|
if (taskid == tasks[x]) {
|
||||||
|
htmlContent += taskid + " <=> " + avList[taskid] + "<br>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
result.innerHTML = htmlContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user