mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
80 lines
2.3 KiB
HTML
80 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
|
|
<div class="col-md-3">
|
|
|
|
<form method="POST" enctype="multipart/form-data" action="/add_project">
|
|
|
|
<input type="text" name="project_name" class="form-control" placeholder="Projekt" aria-label="PROJECTNAME" aria-describedby="basic-addon1">
|
|
|
|
<div class="row row-cols-lg-auto g-3">
|
|
|
|
<select class="form-select" name="shellcode" aria-label="SHELLCODE">
|
|
{% for shellcode in shellcodes %}
|
|
<option value="{{shellcode}}">{{shellcode}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="exe" aria-label="EXE">
|
|
{% for exe in exes %}
|
|
<option value="{{exe}}">{{exe}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="source_style" aria-label="SOURCESTYLE">
|
|
{% for name, value in sourcestyles %}
|
|
<option value="{{name}}">{{value}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="alloc_style" aria-label="ALLOCSTYLE">
|
|
{% for name, value in allocstyles %}
|
|
<option value="{{name}}">{{value}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="decoder_style" aria-label="DECODERESTYLE">
|
|
{% for name, value in decoderstyles %}
|
|
<option value="{{name}}">{{value}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="exec_style" aria-label="EXECSTYLE">
|
|
{% for name, value in execstyles %}
|
|
<option value="{{name}}">{{value}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<select class="form-select" name="inject_style" aria-label="INJECTSTYLE">
|
|
{% for name, value in injectstyles %}
|
|
<option value="{{name}}">{{value}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
|
|
<label class="form-check-label" for="flexCheckDefault">
|
|
Execute after injection
|
|
</label>
|
|
</div>
|
|
|
|
<button class="btn btn-primary" type="submit" value="save">Save</button>
|
|
<button class="btn btn-primary" type="submit" value="Verify">Verify</button>
|
|
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |