Files
rengine/scanEngine/templates/scanEngine/_items/form_engine.html
T

93 lines
3.4 KiB
HTML

<div class="form-row layout-spacing">
<div class="col-12">
<label for="domainName" class="text-info">Engine name</label>
{{ form.engine_name }}
</div>
</div>
<div class="form-row layout-spacing">
<table>
<tr>
<td>
<h6 style="margin-right:1%">Subdomain Discovery</h6>
<span class="preview">(Selected by Default)</span>
</td>
<td>
<label class="switch s-icons s-outline s-outline-info">
{{form.subdomain_discovery}}
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>
<h6 style="margin-right:1%">Port Scan</h6>
</td>
<td>
<label class="switch s-icons s-outline s-outline-info">
{{form.port_scan}}
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>
<h6 style="margin-right:1%">Directory and Files Search</h6>
</td>
<td>
<label class="switch s-icons s-outline s-outline-info">
{{form.dir_file_search}}
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>
<h6 style="margin-right:1%">Fetch All Endpoints(URLs)</h6>
<span class="preview">(Open Threat Exchange, Wayback Machine <br>Common Crawl)</span>
</td>
<td>
<label class="switch s-icons s-outline s-outline-info">
{{form.fetch_url}}
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>
<h6 style="margin-right:1%">Vulnerability Scanner&nbsp;&nbsp;&nbsp;</h6>
<span class="preview">Scan for low hanging CVE and vulnerabilities.</span>
<br>
<span class="text-info">
<span class="badge badge-danger"> New </span>
For better Vulnerability Scan results, please turn on the <b>Fetch Endpoints</b>.
<br>reNgine will use nuclei to find vulnerabilities on those endpoints as well.
<br><span class="text-danger">This will also increase the scan time exponentially but much better results.</span>
</span>
</td>
<td>
<label class="switch s-icons s-outline s-outline-info">
{{form.vulnerability_scan}}
<span class="slider round"></span>
</label>
</td>
</tr>
</table>
</div>
<h4>Configurations</h4>
<p>
reNgine supports YAML based configurations for customizing the scan. The default settings are given below, you may choose to proceed with the default settings or configure it according to your choice.
</p>
<h4>reNgine YAML Documentation</h4>
To learn more about YAML config visit the official documentation at <a href="https://rengine.wiki/pentester/scan_engine/" class="text-info" target="_blank">https://rengine.wiki/pentester/scan_engine/</a>
<p class="mt-2 text-danger">
Note: Invalid YAML configuration may crash scans.
<br>
<span class="text-uppercase">Please, do not modify the configuration if you are not sure what you are doing.</span>
<br>
<span class="text-danger">If default YAML configuration doesn't automatically load, download default configuration and paste here <a href="https://raw.githubusercontent.com/yogeshojha/rengine/master/tools/default_settings.yaml" class="text-info" target="_blank">https://raw.githubusercontent.com/yogeshojha/rengine/master/tools/default_settings.yaml</a> </span>
</p>
<div class="col-12">
{{form.yaml_configuration}}
</div>
<br>