Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<id>bruteforcesettings</id>
<name>Brute-force settings</name>
<summary>Whitelist IPs</summary>
<description><![CDATA[Brute Force Protection is meant to protect Nextcloud servers from attempts to
<description><![CDATA[Brute-force Protection is meant to protect Nextcloud servers from attempts to
guess account passwords in various ways. Besides the obvious "*let's try a big
list of commonly used passwords*" attack, it also makes it harder to use
slightly more sophisticated attacks via the reset password form or trying to
find app password tokens.

If triggered, brute force protection makes requests coming from an IP on a
bruteforce protected controller with the same API slower for a 24 hour period.
If triggered, brute-force protection makes requests coming from an IP on a
brute-force protected controller with the same API slower for a 24 hour period.

With this app, the admin can exempt an IP address or range from this
protection which can be useful for testing purposes or when there are false
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is throttled at the moment by {delay}ms.', { remoteAddress: this.remoteAddress, delay: this.delay })
}
if (this.isBypassListed) {
return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is bypassing bruteforce protection.', { remoteAddress: this.remoteAddress })
return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is bypassing brute-force protection.', { remoteAddress: this.remoteAddress })
}
return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is not actively throttled at the moment.', { remoteAddress: this.remoteAddress })
},
Expand Down