Codebase list python-faraday / ea12a37
Updated version 2.6.3 from 'upstream/2.6.3' with Debian dir 97a13744a8d3ee308e889a102efaf4b430a5b449 Sophie Brun 6 years ago
6 changed file(s) with 10 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 server/www/script/* linguist-vendored
66
77 New features in the latest update
88 =====================================
9
10 August 11, 2017:
11 ---
12 * Add check to the vuln creation modal for empty targets in the Web UI
913
1014 August 9, 2017:
1115 ---
0 2.6.2
0 2.6.3
11 <faraday>
22
33 <appname>Faraday - Penetration Test IDE</appname>
4 <version>2.6.2</version>
4 <version>2.6.3</version>
55 <debug_status>0</debug_status>
66 <font>-Misc-Fixed-medium-r-normal-*-12-100-100-100-c-70-iso8859-1</font>
77 <home_path>~/</home_path>
88 from sqlalchemy.ext.declarative import declarative_base
99
1010
11 SCHEMA_VERSION = 'W.2.6.2'
11 SCHEMA_VERSION = 'W.2.6.3'
1212
1313 Base = declarative_base()
1414
44 <form name="form" novalidate>
55 <div class="modal-header">
66 <div class="modal-button">
7 <button class="btn btn-success" ng-click="modal.ok()" ng-disabled="form.$invalid || modal.data.severity === undefined || (modal.data.type === 'VulnerabilityWeb' && modal.host_parents)">OK</button>
7 <button class="btn btn-success" ng-click="modal.ok()" ng-disabled="form.$invalid || modal.data.severity === undefined || (modal.data.type === 'VulnerabilityWeb' && modal.host_parents) || modal.data.parents.length == 0">OK</button>
88 <button class="btn btn-danger" ng-click="modal.cancel()">Cancel</button>
99 </div>
1010 <h3 class="modal-title">Vulnerability creation</h3>
248248 </div><!-- .modal-body -->
249249 <div class="modal-footer">
250250 <div class="modal-button">
251 <button class="btn btn-success" ng-click="modal.ok()" ng-disabled="form.$invalid || modal.data.severity === undefined || (modal.data.type === 'VulnerabilityWeb' && modal.host_parents)">OK</button>
251 <button class="btn btn-success" ng-click="modal.ok()" ng-disabled="form.$invalid || modal.data.severity === undefined || (modal.data.type === 'VulnerabilityWeb' && modal.host_parents) || modal.data.parents.length == 0">OK</button>
252252 <button class="btn btn-danger" ng-click="modal.cancel()">Cancel</button>
253253 </div>
254254 </div>