-
Notifications
You must be signed in to change notification settings - Fork 1
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
Ilya Shaposhnikov
committed
Dec 5, 2021
1 parent
a82fdfa
commit cccb1bb
Showing
5 changed files
with
179 additions
and
7 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,104 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
{% include 'header.html' %} | ||
<body> | ||
<div id="segment_id"> | ||
{% include 'menu.html' %} | ||
<div class="ui grid"> | ||
<div class="ui column" style="width: 75px; padding-top: 50px;"> | ||
{% include 'project/sidebar.html' %} | ||
</div> | ||
<script> | ||
$(document).ready(function () { | ||
$('.message .close') | ||
.on('click', function () { | ||
$(this) | ||
.closest('.message') | ||
.transition('fade') | ||
; | ||
}); | ||
}); | ||
</script> | ||
<div class="ui column" style="width: calc(100% - 75px)"> | ||
<h1 class="ui dividing header">DNSrecon</h1> | ||
<div class="ui container" style="width: 100%"> | ||
<div class="ui relaxed divided items"> | ||
<div class="item"> | ||
<div class="ui small image"> | ||
{% if external_img %} | ||
<img src="https://i.ibb.co/CQfVf1P/the-Harvester-logo.png"> | ||
{% else %} | ||
<img src="/static/images/theHarvester-logo.png"> | ||
{% endif %} | ||
</div> | ||
<div class="content"> | ||
<a class="header">theHarvester</a> | ||
<div class="meta"> | ||
<a>DNS subdomain finder</a> | ||
</div> | ||
<div class="description"> | ||
theHarvester is a very simple to use, yet powerful and effective tool designed to be used in the early stages of a penetration test or red team engagement. Use it for open source intelligence (OSINT) gathering to help determine a company's external threat landscape on | ||
the internet. | ||
</div> | ||
<div class="extra"> | ||
<a href="https://github.com/laramies/theHarvester" class="ui right floated purple button" target="_blank" rel="noopener noreferrer"> | ||
Official site | ||
<i class="right chevron icon"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="ui divider"></div> | ||
<h2 class="ui header">Upload reports</h2> | ||
<form class="ui form" enctype="multipart/form-data" method="post" action="/project/{{ current_project['id'] }}/tools/theharvester/"> | ||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/> | ||
<div class="two fields"> | ||
<div class="ui field"> | ||
<label>XML-reports:</label> | ||
<input type="file" name="xml_files" placeholder="" multiple accept=".xml"> | ||
</div> | ||
<div class="ui field"> | ||
<label>Hosts description:</label> | ||
<input type="text" name="hosts_description" placeholder="Added from theHarvester scan" value="Added from theHarvester scan"> | ||
</div> | ||
</div> | ||
<div class="two fields"> | ||
<div class="ui field"> | ||
<button style="margin-top:20px" type="submit" class="ui button blue"><i class="plus icon"></i>Submit</button> | ||
</div> | ||
<div class="ui field"> | ||
<label>Hostnames description:</label> | ||
<input type="text" name="hostnamems_description" placeholder="Added from theHarvester scan" value="Added from theHarvester scan"> | ||
</div> | ||
</div> | ||
|
||
|
||
</form> | ||
{% if errors is defined and errors %} | ||
<div class="ui error message visible"> | ||
<i class="close icon"></i> | ||
<div class="header"> | ||
There were some errors with host | ||
</div> | ||
<ul class="list"> | ||
{% for error in errors %} | ||
<li>{{ error }}</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
{% elif errors is defined and not errors %} | ||
<div class="ui success message visible"> | ||
<i class="close icon"></i> | ||
<div class="header"> | ||
Successfully uploaded! | ||
</div> | ||
</div> | ||
{% endif %} | ||
</div> | ||
</div> | ||
{% include 'footer.html' %} | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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