diff --git a/CHANGELOG.md b/CHANGELOG.md index d4474ae83..30bf12009 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs-grey.png b/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs-grey.png new file mode 100644 index 000000000..860c75fda Binary files /dev/null and b/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs-grey.png differ diff --git a/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs.png b/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs.png new file mode 100644 index 000000000..eaffc18ed Binary files /dev/null and b/src/main/resources/org/zaproxy/zap/extension/hud/resources/crosshairs.png differ diff --git a/src/main/zapHomeFiles/hud/tools/attack.js b/src/main/zapHomeFiles/hud/tools/attack.js index 10250a3c5..b3599f202 100644 --- a/src/main/zapHomeFiles/hud/tools/attack.js +++ b/src/main/zapHomeFiles/hud/tools/attack.js @@ -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"); diff --git a/src/main/zapHomeFiles/hudtutorial/en_GB/AttackMode.html b/src/main/zapHomeFiles/hudtutorial/en_GB/AttackMode.html index 557dfa7bf..5f896ed28 100644 --- a/src/main/zapHomeFiles/hudtutorial/en_GB/AttackMode.html +++ b/src/main/zapHomeFiles/hudtutorial/en_GB/AttackMode.html @@ -7,10 +7,10 @@
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 icon until is is stopped. + are discovered. It does not show any progress because it stays active with the icon until is is stopped.
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.