Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed1s0nZ authored Nov 22, 2021
1 parent 06c4a99 commit 21d43db
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions templates/index.html
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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cobalt Strike Listener:
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IP:&nbsp;<input type="text" name="ip" placeholder="xxx.xxx.xxx.xxx">&nbsp;PORT:&nbsp;<input type="text" name="port" placeholder="1-65535">
<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;回连类型:&nbsp;
<input type="radio" value="http" name="type" checked>Beacon_HTTP&nbsp;
<input type="radio" value="https" name="type">Beacon_HTTPS
<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;x64:&nbsp;
<input type="radio" value="1" name="x64" checked>Use x64 payload&nbsp;
<input type="radio" value="0" name="x64">Use x32 payload
<br><br>
<input type="radio" value="custom" name="choose_shellcode" >
2. 自定义shellcode:
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="radio" value="bindertype1" name="bindertype" >
捆绑内置免杀马:
<input type="file" name="f1">
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>

0 comments on commit 21d43db

Please sign in to comment.