diff --git a/broken_link.info.yml b/broken_link.info.yml
index c487ac6..14e5153 100644
--- a/broken_link.info.yml
+++ b/broken_link.info.yml
@@ -2,7 +2,7 @@ name: Broken Link
 type: module
 description: 404 Broken links
 core: 8.x
-core_version_requirement: ^8 || ^9
+core_version_requirement: ^8 || ^9 || ^10
 package: Custom
 dependencies:
   - drupal:views
diff --git a/src/BrokenLinkListBuilder.php b/src/BrokenLinkListBuilder.php
index 70d2ec7..1dbab56 100644
--- a/src/BrokenLinkListBuilder.php
+++ b/src/BrokenLinkListBuilder.php
@@ -48,7 +48,7 @@ class BrokenLinkListBuilder extends EntityListBuilder {
     if ($this->limit) {
       $query->pager($this->limit);
     }
-    return $query->execute();
+    return $query->accessCheck(FALSE)->execute();
   }
 
 }
diff --git a/src/BrokenLinkRedirectListBuilder.php b/src/BrokenLinkRedirectListBuilder.php
index 7a82756..fc40bfa 100644
--- a/src/BrokenLinkRedirectListBuilder.php
+++ b/src/BrokenLinkRedirectListBuilder.php
@@ -46,7 +46,7 @@ class BrokenLinkRedirectListBuilder extends EntityListBuilder {
     if ($this->limit) {
       $query->pager($this->limit);
     }
-    return $query->execute();
+    return $query->accessCheck(FALSE)->execute();
   }
 
 }
diff --git a/src/EventSubscriber/BrokenLinkSubscriber.php b/src/EventSubscriber/BrokenLinkSubscriber.php
index e0f4391..a214b2b 100644
--- a/src/EventSubscriber/BrokenLinkSubscriber.php
+++ b/src/EventSubscriber/BrokenLinkSubscriber.php
@@ -2,8 +2,8 @@
 
 namespace Drupal\broken_link\EventSubscriber;
 
+use Symfony\Contracts\EventDispatcher\Event;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
-use Symfony\Component\EventDispatcher\Event;
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 use Drupal\broken_link\Entity\BrokenLink;
 use Drupal\broken_link\Entity\BrokenLinkRedirect;
@@ -38,7 +38,7 @@ class BrokenLinkSubscriber implements EventSubscriberInterface {
    * Logs the broken link hit rate. And redirect to path configured, if broken
    * link matches any pattern defined.
    *
-   * @param \Symfony\Component\EventDispatcher\Event $event
+   * @param \Symfony\Contracts\EventDispatcher\Event $event
    *   Event object.
    */
   public function handleBrokenLink(Event $event) {
