Bugzilla – Attachment 172238 Details for
Bug 38030
stocknumberAV.pl fails with CSRF protection
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38030: stocknumberAV.pl fails with CSRF protection
Bug-38030-stocknumberAVpl-fails-with-CSRF-protecti.patch (text/plain), 2.40 KB, created by
Roman Dolny
on 2024-09-30 20:17:23 UTC
(
hide
)
Description:
Bug 38030: stocknumberAV.pl fails with CSRF protection
Filename:
MIME Type:
Creator:
Roman Dolny
Created:
2024-09-30 20:17:23 UTC
Size:
2.40 KB
patch
obsolete
>From 0873ae649a2ecec38eea13ef800d2371575ed61a Mon Sep 17 00:00:00 2001 >From: Janusz Kaczmarek <januszop@gmail.com> >Date: Mon, 30 Sep 2024 09:22:03 +0000 >Subject: [PATCH] Bug 38030: stocknumberAV.pl fails with CSRF protection > >The value builder stocknumberAV.pl does not work after applying the CSRF >protection. In console, it generates entries like: > >POST >http://localhost:8081/cgi-bin/koha/cataloguing/plugin_launcher.pl >[HTTP/1.1 403 Forbidden 188ms] > >Test plan: >========== >1. Modify the MARC bibliographic framework for the default framework by > choosing stocknumberAV.pl as plugin for subfield 952 $i. >2. In Authorized values, add a new category 'INVENTORY'. Add a new > entry there, e.g. 'ABC', with any number in Description (eg. 123). >3. Find any bibliographic record, make sure it uses the default framework. > If not set the framework accordingly. >4. Edit an item linked to this record. Go to the 'i - Inventory number' > subfield. You should see three dots on the right. In the input field > put ABC and click the three dots. >5. Nothing happens. You can check in the browser console--there should > be a message like: > POST http://FQDN:8081/cgi-bin/koha/cataloguing/plugin_launcher.pl > [HTTP/1.1 403 Forbidden 188ms] >6. Apply the patch; restart_all. Refresh the browser window. >7. Repeat p. 4. You should now get the next sequence number next to > the 'ABC' (i.e. ABC 0000000124 or similar). > >Sponsored-by: Ignatianum University in Cracow >Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> >--- > cataloguing/value_builder/stocknumberAV.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/cataloguing/value_builder/stocknumberAV.pl b/cataloguing/value_builder/stocknumberAV.pl >index c158ec7688..92e6e59dc0 100755 >--- a/cataloguing/value_builder/stocknumberAV.pl >+++ b/cataloguing/value_builder/stocknumberAV.pl >@@ -50,8 +50,9 @@ my $builder = sub { > function Click$params->{id}(ev) { > ev.preventDefault(); > var code = document.getElementById(ev.data.id); >+ const token = document.getElementsByName('csrf_token')[0].value; > \$.ajax({ >- url: '/cgi-bin/koha/cataloguing/plugin_launcher.pl', >+ url: '/cgi-bin/koha/cataloguing/plugin_launcher.pl?csrf_token=' + token, > type: 'POST', > data: { > 'plugin_name': 'stocknumberAV.pl', >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38030
:
172216
|
172238
|
173086
|
173087