Skip to content

Commit

Permalink
Merge pull request #318 from psiinon/feature/attack-icon
Browse files Browse the repository at this point in the history
Changed Attack Mode icon to crosshairs
  • Loading branch information
thc202 authored Dec 28, 2018
2 parents 8636966 + b044db7 commit 29613bf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add HTML report tool. [#312](https://github.com/zaproxy/zap-hud/issues/312)
- Require cookie on all API calls

### Changed

- Changed Attack Mode icon to crosshairs. [#221](https://github.com/zaproxy/zap-hud/issues/221)

### Fixed
- Upgraded vue.js to 2.5.21 and vue-i18n to 8.5.0

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/zapHomeFiles/hud/tools/attack.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var Attack = (function() {
DATA.ON = I18n.t("common_on");
DATA.OFF = I18n.t("common_off");
var ICONS = {};
ICONS.ON = "flame.png";
ICONS.OFF = "flame-grey.png";
ICONS.ON = "crosshairs.png";
ICONS.OFF = "crosshairs-grey.png";
var DIALOG = {};
DIALOG.ON = I18n.t("attack_start");
DIALOG.OFF = I18n.t("attack_stop");
Expand Down
4 changes: 2 additions & 2 deletions src/main/zapHomeFiles/hudtutorial/en_GB/AttackMode.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<body>
<div class="roundContainer">
<h1>Attack Mode</H1>
The 'Attack Mode' <img src="flame-grey.png"> tool performs the same attacks as an Active Scan but works in a subtly different way.
The 'Attack Mode' <img src="crosshairs-grey.png"> tool performs the same attacks as an Active Scan but works in a subtly different way.
<p>
Instead of attacking the URLs known at the time it is started, it attacks any URLs that are in scope as soon as they
are discovered. It does not show any progress because it stays active with the <img src="flame.png"> icon until is is stopped.
are discovered. It does not show any progress because it stays active with the <img src="crosshairs.png"> icon until is is stopped.
<p>
This mode is especially useful for testing a sub section of a large site - when it is enabled it will only attack
the in scope URLs that you visit as you explore them and will not attack any parts of the site that you do not use.
Expand Down

0 comments on commit 29613bf

Please sign in to comment.