mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
Add modules to repository
This commit is contained in:
147
OnlineHashCrack/module.html
Normal file
147
OnlineHashCrack/module.html
Normal file
@@ -0,0 +1,147 @@
|
||||
<div class="panel panel-default" ng-controller="OnlineHashCrack_Controller"><div class="panel-heading"><h4 class="panel-title pull-left">{{title}}</h4><span class="pull-right">{{version}}</span><div class="clearfix"></div></div></div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="panel panel-default" ng-controller="OnlineHashCrack_ControlsController">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">Controls</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<table style="width:100%">
|
||||
<tr>
|
||||
<td style="padding-bottom: .5em;" class="text-muted">Dependencies</td>
|
||||
<td ng-hide="$root.status.installed" style="text-align:right;padding-bottom: .5em;"><button type="button" style="width: 90px;" class="btn btn-{{installLabel}} btn-xs" data-toggle="modal" data-target="#dependenciesInstallModal" ng-disabled="processing">{{install}}</button></td>
|
||||
<td ng-show="$root.status.installed" style="text-align:right;padding-bottom: .5em;"><button type="button" style="width: 90px;" class="btn btn-{{installLabel}} btn-xs" data-toggle="modal" data-target="#dependenciesRemoveModal" ng-disabled="processing">{{install}}</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="dependenciesInstallModal" tabindex="-1" role="dialog" aria-labelledby="dependenciesModalLabel">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<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="dependenciesInstallModalLabel">Install dependencies</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
All required dependencies have to be installed first. This may take a few minutes.<br /><br />
|
||||
Please wait, do not leave or refresh this page. Once the install is complete, this page will refresh automatically.
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-info" ng-click="handleDependencies('internal')" data-dismiss="modal">Internal</button>
|
||||
<button type="button" class="btn btn-info" ng-hide="device == 'tetra' || sdAvailable == false" ng-click="handleDependencies('sd')" data-dismiss="modal">SD Card</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="dependenciesRemoveModal" tabindex="-1" role="dialog" aria-labelledby="dependenciesModalLabel">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<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="dependenciesRemoveModalLabel">Remove dependencies</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
All required dependencies will be removed. This may take a few minutes.<br /><br />
|
||||
Please wait, do not leave or refresh this page. Once the remove is complete, this page will refresh automatically.
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
||||
<button type="button" class="btn btn-info" ng-click="handleDependencies()" data-dismiss="modal">Confirm</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div ng-show="$root.status.installed" class="well">Notice: Hashes and Handshakes are sent to <strong>www.onlinehashcrack.com</strong> web service.</div>
|
||||
|
||||
<div class="panel panel-default" ng-show="$root.status.installed" ng-controller="OnlineHashCrack_SettingsController">
|
||||
<div class="panel-heading pointer" data-toggle="collapse" data-target="#Settings">
|
||||
<h4 class="panel-title">Settings</h4>
|
||||
</div>
|
||||
<div id="Settings" class="panel-collapse collapse">
|
||||
<div class="panel-body">
|
||||
|
||||
<div class="form-group">
|
||||
<div class="btn-group pull-right">
|
||||
<button class="btn btn-{{saveSettingsLabel}} btn-sm" ng-disabled="saving" ng-click="setSettings()">{{saveSettings}}</button>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm">Email</span>
|
||||
<input type="text" class="form-control input-sm" ng-model="settings.email" placeholder="Notification email">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel panel-default" ng-show="$root.status.installed" ng-controller="OnlineHashCrack_HashController">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">Password/Hashes crack</h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm">Hashes</span>
|
||||
<textarea class="form-control input-sm" ng-model="hashes" rows="5" placeholder="Up to 10 hashes. One hash per line."></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-{{submitHashLabel}} btn-sm" ng-disabled="working || (hashes == '')" ng-click="submitHashOnline()">{{submitHash}}</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel panel-default" ng-show="$root.status.installed" ng-controller="OnlineHashCrack_WPAController">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">WiFi WPA crack</h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm">Files</span>
|
||||
<select class="form-control input-sm" ng-model="selectedFile">
|
||||
<option>--</option>
|
||||
<option ng-repeat="file in files">{{ file }}</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div ng-hide="selectedFile != '--'" class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm">File path</span>
|
||||
<input type="text" class="form-control input-sm" ng-model="file" placeholder="Path to Handshake file (*.cap or *.pcap or *.hccap). Max 10 Mb.">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-{{submitWPALabel}} btn-sm" ng-disabled="working || (file == '' && selectedFile == '--')" ng-click="submitWPAOnline()">{{submitWPA}}</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="panel panel-default" ng-show="$root.status.installed" ng-controller="OnlineHashCrack_OutputController">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">Output</h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="btn-group pull-right">
|
||||
<button class="btn btn-danger btn-sm" ng-click="clearOutput()">Clear Log</button>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<pre class="scrollable-pre log-pre">{{output}}</pre>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user