CSRF Error during update process of Zope catalog

I'm trying to add new Items to an existing Zope catalog. After an update to Plone 5.1 there ist the following error:
2019-05-03 14:25:03 INFO plone.protect File "/home/depotng/Plone/buildout-cache/eggs/Zope2-2.13.26-py2.7.egg/ZServer/PubCore/ZServerPublisher.py", line 31, in init
response=b)

`File "/home/depotng/Plone/buildout-cache/eggs/Zope2-2.13.26-py2.7.egg/ZPublisher/Publish.py", line 455, in publish_module
environ, debug, request, response)

File "/home/depotng/Plone/buildout-cache/eggs/Zope2-2.13.26-py2.7.egg/ZPublisher/Publish.py", line 249, in publish_module_standard
response = publish(request, module_name, after_list, debug=debug)

File "/home/depotng/Plone/buildout-cache/eggs/Zope2-2.13.26-py2.7.egg/ZPublisher/Publish.py", line 143, in publish
notify(PubBeforeCommit(request))

File "/home/depotng/Plone/buildout-cache/eggs/zope.event-3.5.2-py2.7.egg/zope/event/init.py", line 31, in notify
subscriber(event)

File "/home/depotng/Plone/buildout-cache/eggs/zope.component-4.4.1-py2.7.egg/zope/component/event.py", line 27, in dispatch
component_subscribers(event, None)

File "/home/depotng/Plone/buildout-cache/eggs/zope.component-4.4.1-py2.7.egg/zope/component/_api.py", line 139, in subscribers
return sitemanager.subscribers(objects, interface)

File "/home/depotng/Plone/buildout-cache/eggs/zope.interface-4.4.3-py2.7-linux-x86_64.egg/zope/interface/registry.py", line 442, in subscribers
return self.adapters.subscribers(objects, provided)

File "/home/depotng/Plone/buildout-cache/eggs/zope.interface-4.4.3-py2.7-linux-x86_64.egg/zope/interface/adapter.py", line 607, in subscribers
subscription(*objects)

File "/home/depotng/Plone/buildout-cache/eggs/plone.transformchain-1.2.2-py2.7.egg/plone/transformchain/zpublisher.py", line 86, in applyTransformOnSuccess
transformed = applyTransform(event.request)

File "/home/depotng/Plone/buildout-cache/eggs/plone.transformchain-1.2.2-py2.7.egg/plone/transformchain/zpublisher.py", line 75, in applyTransform
transformed = transformer(request, result, encoding)

File "/home/depotng/Plone/buildout-cache/eggs/plone.transformchain-1.2.2-py2.7.egg/plone/transformchain/transformer.py", line 50, in call
newResult = handler.transformIterable(result, encoding)

File "/home/depotng/Plone/buildout-cache/eggs/plone.protect-3.1.2-py2.7.egg/plone/protect/auto.py", line 186, in transformIterable
if not self.check():

File "/home/depotng/Plone/buildout-cache/eggs/plone.protect-3.1.2-py2.7.egg/plone/protect/auto.py", line 211, in check
return self._check()

File "/home/depotng/Plone/buildout-cache/eggs/plone.protect-3.1.2-py2.7.egg/plone/protect/auto.py", line 283, in _check
'\n'.join(traceback.format_stack()),

aborting transaction due to no CSRF protection on url https://depotng.depot.local3/depot/l/i/vergebe_objectids`

I have no idea, how I can add an Auth-Token to zope catalog. Do you have any ideas?

Your request must be a POST request if you want to write back to the ZODB.

A GET must not modify any data.

Disable the CSRF protection if needed by checking the plone.protect documentation.

I've tryied to add enableCSRFProtection = false to the calling script and PLONE_CSRF_DISABLED = True to buildout.cfg But when I'm builign plone it does not work any more. Is there a trick, how to build Plone which had been installed by ./install.sh standalone --build-python?