forked from Ed1s0nZ/cool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" href="/statics/index.css"> | ||
<title>免杀平台v0.1.2</title> | ||
<style> | ||
.container{max-width: 800px;margin: 20px auto;} | ||
input,select,textarea{margin: 1px 0;border: 1px solid #999;padding: .3em 0.1em;border-radius: 3px;} | ||
p{text-align: right;} | ||
h1{text-align: center;} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>免杀平台v0.1.2</h1> | ||
<form action="/" method="post" novalidate autocomplete="off" enctype="multipart/form-data"> | ||
免杀方式: | ||
<select name="bypass"> | ||
<option value="AES1">AES加密shellcode1(.exe)</option> | ||
<option value="AES2">AES加密shellcode2(.exe)</option> | ||
<option value="HouQing">分离免杀HouQing(golang)(.zip)</option> | ||
<option value="AES_GO_separate">分离免杀(.zip)</option> | ||
</select> | ||
<br><br> | ||
shellcode 生成方式: | ||
<br><br> | ||
<input type="radio" value="cs" name="choose_shellcode" checked > | ||
1. Cobalt Strike shellcode: | ||
<br> | ||
Payolad: | ||
<select name="output"> | ||
<option value="C">C</option> | ||
<option value="C#">C#</option> | ||
<option value="Java">Java</option> | ||
<option value="Perl">Perl</option> | ||
<option value="Python">Python</option> | ||
<option value="Ruby">Ruby</option> | ||
</select> | ||
<br><br> | ||
Cobalt Strike Listener: | ||
<br> | ||
IP: <input type="text" name="ip" placeholder="xxx.xxx.xxx.xxx"> PORT: <input type="text" name="port" placeholder="1-65535"> | ||
<br><br> | ||
回连类型: | ||
<input type="radio" value="http" name="type" checked>Beacon_HTTP | ||
<input type="radio" value="https" name="type">Beacon_HTTPS | ||
<br><br> | ||
x64: | ||
<input type="radio" value="1" name="x64" checked>Use x64 payload | ||
<input type="radio" value="0" name="x64">Use x32 payload | ||
<br><br> | ||
<input type="radio" value="custom" name="choose_shellcode" > | ||
2. 自定义shellcode: | ||
<br> | ||
<textarea name="shellcode" id="" cols="45" rows="10" placeholder="此处可自定义shellcode,格式为:0xfc,0x12,0x34,0x56"></textarea> | ||
<br><br> | ||
<input type="checkbox" value="binder" name="binder" > | ||
3. 捆绑上线: | ||
<br> | ||
<input type="radio" value="bindertype1" name="bindertype" > | ||
捆绑内置免杀马: | ||
<input type="file" name="f1"> | ||
<br> | ||
<input type="radio" value="bindertype2" name="bindertype"> | ||
捆绑自定义木马: | ||
<input type="file" name="f2"> | ||
<input type="file" name="f3"> | ||
<br><br> | ||
<input type="submit" name="生成免杀" value="生成免杀"> | ||
<input type="reset" name="重置"> | ||
</div> | ||
</form> | ||
<p>问题反馈or建议 QQ:1310796748</p> | ||
<p>捆绑上线生成的木马改后缀为"exe"</p> | ||
<p>使用捆绑自定义木马时,第一个文件上传自己的木马,第二个文件上传你需要捆绑的文件</p> | ||
</body> | ||
</html> |