at path:
ROOT
/
wp-content
/
plugins
/
jetpack
/
modules
/
scan
/
scan.php
run:
R
W
Run
admin-bar-notice.js
1.4 KB
2026-04-17 06:07:59
R
W
Run
Delete
Rename
class-admin-bar-notice.php
6.62 KB
2026-04-17 06:07:59
R
W
Run
Delete
Rename
class-admin-sidebar-link.php
6.42 KB
2026-04-17 06:07:59
R
W
Run
Delete
Rename
scan.php
490 By
2026-04-17 06:07:59
R
W
Run
Delete
Rename
error_log
up
📄
scan.php
Save
<?php /** * Jetpack Scan features that show up on the jetpack admin side. * - Adds a admin bar notice when the site has threats. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Scan; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } if ( ! apply_filters( 'jetpack_disable_scan', false ) ) { require_once __DIR__ . '/class-admin-bar-notice.php'; require_once __DIR__ . '/class-admin-sidebar-link.php'; Admin_Bar_Notice::instance(); Admin_Sidebar_Link::instance(); }