mirror of
https://github.com/gophish/gophish
synced 2024-11-14 00:07:19 +00:00
2d08befb6b
Co-authored-by: Thomas Castronovo <thocastronovo@cic.be>
144 lines
7.8 KiB
HTML
144 lines
7.8 KiB
HTML
{{define "body"}}
|
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
<h1 class="page-header">
|
|
Sending Profiles
|
|
</h1>
|
|
<div id="flashes" class="row"></div>
|
|
<div class="row">
|
|
<button type="button" class="btn btn-primary" onclick="edit(-1)" data-toggle="modal" data-backdrop="static"
|
|
data-target="#modal"><i class="fa fa-plus"></i> New Profile</button>
|
|
</div>
|
|
|
|
<div id="loading">
|
|
<i class="fa fa-spinner fa-spin fa-4x"></i>
|
|
</div>
|
|
<div id="emptyMessage" class="row" style="display:none;">
|
|
<div class="alert alert-info">
|
|
No profiles created yet. Let's create one!
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<table id="profileTable" class="table" style="display:none;">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-4">Name</th>
|
|
<th>Interface Type</th>
|
|
<th>Last Modified Date</th>
|
|
<th class="col-md-2 no-sort"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="modalLabel">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<!-- New Template Modal -->
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="dismiss()"><span
|
|
aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title" id="profileModalLabel">New Sending Profile</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row" id="modal.flashes"></div>
|
|
<form>
|
|
<div class="form-group">
|
|
<label class="control-label" for="name">Name:</label>
|
|
<input type="text" class="form-control" placeholder="Profile name" id="name" autofocus />
|
|
<label class="control-label" for="interface_type">Interface Type:</label>
|
|
<input type="text" class="form-control" value="SMTP" id="interface_type" disabled />
|
|
<label class="control-label" for="from">SMTP From: <i class="fa fa-question-circle"
|
|
data-toggle="tooltip" data-placement="right" title="Set this to an email address from your sending domain to bypass SPF-checks. You can set the Envelope Sender in Email Templates. The Envelope Sender is shown to the user."></i></label>
|
|
<input type="text" class="form-control" placeholder="test@example.com" id="from"
|
|
required />
|
|
<label class="control-label" for="host">Host:</label>
|
|
<input type="text" class="form-control" placeholder="smtp.example.com:25" id="host" required />
|
|
<label class="control-label" for="username">Username:</label>
|
|
<input type="text" class="form-control" placeholder="Username" id="username" />
|
|
<label class="control-label" for="password">Password:</label>
|
|
<input type="password" class="form-control" placeholder="Password" id="password" />
|
|
<div class="checkbox checkbox-primary">
|
|
<input id="ignore_cert_errors" type="checkbox" checked>
|
|
<label for="ignore_cert_errors">Ignore Certificate Errors <i class="fa fa-question-circle"
|
|
data-toggle="tooltip" data-placement="right" title="Ignore common certificate errors such as self-signed certs (exposes you to MiTM attacks - use carefully!)"></i></label>
|
|
</div>
|
|
</div>
|
|
<fieldset class="form-group">
|
|
<label class="control-label input-group">Email Headers:</label>
|
|
<div class="col-md-4">
|
|
<input type="text" class="form-control" name="headerKey" id="headerKey" placeholder="X-Custom-Header">
|
|
</div>
|
|
<div class="col-md-4">
|
|
<input type="text" class="form-control" name="headerValue" id="headerValue" placeholder='{{"{{"}}.URL{{"}}"}}-gophish'>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<button id="addCustomHeader" class="btn btn-danger btn-headers" type="button"><i class="fa fa-plus"></i> Add
|
|
Custom Header</button>
|
|
</div>
|
|
</fieldset>
|
|
<table id="headersTable" class="table table-hover table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>Header</th>
|
|
<th>Value</th>
|
|
<th class="no-sort"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<button type="button" data-toggle="modal" data-backdrop="static" data-target="#sendTestEmailModal"
|
|
class="btn btn-primary"><i class="fa fa-envelope"></i> Send Test Email</button>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" data-dismiss="modal" class="btn btn-default" onclick="dismiss()">Cancel</button>
|
|
<button type="button" class="btn btn-primary" id="modalSubmit">Save Profile</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Send Test Email Modal -->
|
|
<div class="modal" id="sendTestEmailModal" tabindex="-1" role="dialog" aria-labelledby="modalLabel">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<!-- New Email Modal -->
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title" id="sendTestEmailModalTitle">Send Test Email</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row" id="sendTestEmailModal.flashes"></div>
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<label class="control-label" for="to">Send Test Email to:</label>
|
|
</div>
|
|
<br>
|
|
<div class="col-sm-2">
|
|
<input type="text" class="form-control" placeholder="First Name" name="to_first_name">
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<input type="text" class="form-control" placeholder="Last Name" name="to_last_name">
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<input type="email" class="form-control" placeholder="Email" name="to_email" required>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<input type="text" class="form-control" placeholder="Position" name="to_position">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" data-dismiss="modal" class="btn btn-default">Cancel</button>
|
|
<button type="button" class="btn btn-primary" id="sendTestModalSubmit" onclick="sendTestEmail()"><i
|
|
class="fa fa-envelope"></i> Send</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}} {{define "scripts"}}
|
|
<script src="/js/dist/app/sending_profiles.min.js"></script>
|
|
{{end}}
|