You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improvements
* The user is now notified that the extension must be enabled for the configuration view to work properly. (due to JS)
* Security
* Captcha configuration now requires reauthenticating in FreshRSS to protect the secret key
* Register form wasn't correctly protected because the extension wasn't protecting the POST action, only displaying the captcha widget
* Fixed potential captcha bypass due to checking for `POST_TO_GET` parameter in the session
* Use slightly stronger CSP on login and register pages
* Bug fixes
* Fixed wrong quote in CSP `"` instead of `'`
* Client IP is now taken from `X-Real-IP` instead of `X-Forwarded-For`, since the latter could contain multiple comma-separated IPs
* Refactor
* `data-auto-leave-validation` is now being used in the configure view instead of `data-leave-validation`
* `data-toggle` attributes were removed from the configure view, since they aren't needed anymore as of v1.27.1
* Other minor changes
Copy file name to clipboardExpand all lines: xExtension-Captcha/README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,26 @@ Available configuration settings:
30
30
31
31
</details>
32
32
33
+
## Trouble with login
34
+
35
+
If you are having trouble with logging in after configuring the extension, you can manually disable it in `FreshRSS/data/config.php`, login and reconfigure the extension.
36
+
33
37
## Changelog
34
38
35
-
* 1.0.0
39
+
* 1.0.1 [2025-??-??]
40
+
* Improvements
41
+
* The user is now notified that the extension must be enabled for the configuration view to work properly. (due to JS)
42
+
* Security
43
+
* Captcha configuration now requires reauthenticating in FreshRSS to protect the secret key
44
+
* Register form wasn't correctly protected because the extension wasn't protecting the POST action, only displaying the captcha widget
45
+
* Fixed potential captcha bypass due to checking for `POST_TO_GET` parameter in the session
46
+
* Use slightly stronger CSP on login and register pages
47
+
* Bug fixes
48
+
* Fixed wrong quote in CSP `"` instead of `'`
49
+
* Client IP is now taken from `X-Real-IP` instead of `X-Forwarded-For`, since the latter could contain multiple comma-separated IPs
50
+
* Refactor
51
+
* `data-auto-leave-validation` is now being used in the configure view instead of `data-leave-validation`
52
+
* `data-toggle` attributes were removed from the configure view, since they aren't needed anymore as of v1.27.1
0 commit comments