Project

General

Profile

Actions

Bug #89788

closed

Scheduler task for IP anonymization exclusion

Added by Stefan Berger over 4 years ago. Updated about 4 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
scheduler
Target version:
-
Start date:
2019-11-27
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Hi,

in the scheduler task for IP anonymization (TYPO3\CMS\Scheduler\Task\IpAnonymizationTask) only and always the masked IP addresses for the last 2 bytes are excluded.

The exclusion has to be dynamic concerning the defined selection. The problem exists in the TYPO3 Version 7, 8 and 9.

The fix could be as following:

...
            if ($this->mask == 2) {
                $notLikeMaskPattern = '%.0.0';
            } else {
                $notLikeMaskPattern = '%.0';
            }
...
                    $queryBuilder->expr()->notLike(
                        $configuration['ipField'],
                        $queryBuilder->createNamedParameter($notLikeMaskPattern, \PDO::PARAM_STR)
                    ),
...

Thanks for fixing.

Regards.


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #92098: IpAnonymizationTask BugClosed2020-08-25

Actions
Actions #1

Updated by Riccardo De Contardi over 4 years ago

  • Category set to scheduler
Actions #2

Updated by Gerrit Code Review over 4 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62992

Actions #3

Updated by Gerrit Code Review over 4 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62992

Actions #4

Updated by Gerrit Code Review about 4 years ago

Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63225

Actions #5

Updated by Guido Schmechel about 4 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #6

Updated by Benni Mack about 4 years ago

  • Status changed from Resolved to Closed
Actions #7

Updated by Guido Schmechel over 3 years ago

  • Related to Bug #92098: IpAnonymizationTask Bug added
Actions

Also available in: Atom PDF