Codebase list python-faraday / 90fc63f server / www / scripts / dashboard / partials / modal-hosts-by-service.html
90fc63f

Tree @90fc63f (Download .tar.gz)

modal-hosts-by-service.html @90fc63fraw · history · blame

<!-- Faraday Penetration Test IDE -->
<!-- Copyright (C) 2013  Infobyte LLC (http://www.infobytesec.com/) -->
<!-- See the file 'doc/LICENSE' for the license information -->

<div class="modal-header" hotkey="{enter:ok}">
    <h3>Services for {{name}} ({{hosts.length}} total)</h3>
</div>

<div class="modal-body">
    <table class="status-report">
        <thead>
            <tr>
                <th><a href="" ng-click="toggleSort('owned')">Owned</a></th>
                <th><a href="" ng-click="toggleSort('name')">Name</a></th>
                <th><a href="" ng-click="toggleSort('os')">OS</a></th>
            </tr>
        </thead>
        <tbody>
            <tr ng-repeat="host in hosts | orderBy:sortField:sortReverse">
                <td><input disabled type="checkbox" ng-model="host.owned"/></td>
                <td>
                    {{host.name}}
                    <a href="//{{osint.host}}/search?query={{host.name}}" uib-tooltip="Search in {{osint.label}}" target="_blank">
                        <img ng-src="images/{{osint.icon}}.png" height="15px" width="15px" />
                    </a>
                </td>
                <td>{{host.os}}</td>
            </tr>
        </tbody>
    </table>
    <div class="form-group">
        <button class="btn btn-danger" clip-copy="clip" clip-click="messageCopied()">{{clipText}}</button>
    </div>
</div>

<div class="modal-footer">
    <button class="btn btn-success" ng-click="ok()">OK</button>
</div>