ru
Feedback
All Security Engineering Courses

All Security Engineering Courses

Открыть в Telegram

This channel is being updated often with older than 2020 courses, ebooks, videos, code, etc. to be used responsibly by everyone in CyberSecurity in an ethical manner. Lots of content is being downloaded from other channels or forwarded here. Bookmark me!

Больше

📈 Аналитический обзор Telegram-канала All Security Engineering Courses

Канал All Security Engineering Courses (@allsecurityengineeringcourses) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 19 009 подписчиков, занимая 6 929 место в категории Технологии и приложения и 35 164 место в регионе Россия.

📊 Показатели аудитории и динамика

С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 19 009 подписчиков.

Согласно последним данным от 29 июля, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 151, а за последние 24 часа — 14, при этом общий охват остаётся высоким.

  • Статус верификации: Не верифицирован
  • Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 12.42%. В первые 24 часа после публикации контент обычно набирает 3.35% реакций от общего числа подписчиков.
  • Охват публикаций: В среднем каждый пост получает 2 360 просмотров. В течение первых суток публикация набирает 637 просмотров.
  • Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 3.
  • Тематические интересы: Контент сосредоточен на ключевых темах, таких как git, strace, github, linux, docker.

📝 Описание и контентная политика

Автор описывает ресурс как площадку для выражения субъективного мнения:
This channel is being updated often with older than 2020 courses, ebooks, videos, code, etc. to be used responsibly by everyone in CyberSecurity in an ethical manner. Lots of content is being downloaded from other channels or forwarded here. Bookmar...

Благодаря высокой частоте обновлений (последние данные получены 30 июля, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Технологии и приложения.

19 009
Подписчики
+1424 часа
+407 дней
+15130 день
Архив постов
Repost from 1N73LL1G3NC3
🐶 NetworkHound NetworkHound connects to Active Directory Domain Controllers, discovers computer objects, resolves hostnames
🐶 NetworkHound NetworkHound connects to Active Directory Domain Controllers, discovers computer objects, resolves hostnames to IP addresses using multiple DNS methods, performs comprehensive network scanning (port scanning, HTTP/HTTPS validation), and discovers shadow-IT devices. It then builds a detailed network topology graph in OpenGraph JSON format compatible with BloodHound.

Repost from Offensive-SEC
#Exclusive FOR508: Advanced Incident Response, Threat Hunting, and Digital Forensics 2025 🔗 Download Info : https://www.sans
#Exclusive FOR508: Advanced Incident Response, Threat Hunting, and Digital Forensics 2025 🔗 Download Info : https://www.sans.org/cyber-security-courses/advanced-incident-response-threat-hunting-training @offenciveSec

SEC573: Automating Information Security with Python password : @CyberSecCommunity
SEC573: Automating Information Security with Python password : @CyberSecCommunity

This article is for informational purposes only and is intended for security specialists conducting contract testing. The author and editors assume no liability for any harm caused by the use of the information provided. Distribution of malware, disruption of systems, and violation of the privacy of correspondence are punishable by law. As the case study using Procmon and similar utilities demonstrated, the key idea is to find a driver that records events at the earliest stages of the operating system boot. This naturally raises the question: Is it possible to do without installing custom drivers and additional components, relying only on the mechanisms available in the system and without resorting to symbolic links? What if we slightly change the paths where some logs are already written by the system itself? And there is a great registry branch here HKLM\SYSTEM\CurrentControlSet\Control\WMI in which AutoLogger and GlobalLogger exist. WMI AutoLogger - A way to configure one or more automatic tracing sessions that start at boot. Unlike GlobalLogger, each AutoLogger session independently sends a startup signal to providers and can be precisely configured for the desired set of providers. AutoLogger is not designed to record specific NT Kernel Logger events—GlobalLogger is used for that. WMI GlobalLogger - Historically, the mechanism for a single global session is older. It also starts early in the boot process and can enable kernel providers via special flags. Importantly, the GlobalLogger controller does not call EnableTrace for providers—the provider itself must determine that the global session is active and enable logging. AutoLogger already has a number of different sessions, so you can test them out (some work, some don't). In my case, I used HKLM\SYSTEM\CurrentControlSet\Control\WMI\Autologger\ReadyBoot, where you can replace the path specified in FileName with the path to the service file you want to overwrite. For GlobalLogger, by default I didn't have any settings, but you can add them yourself: $reg = [wmiclass]'root\default:StdRegProv' $HKLM = 2147483650 $base = 'SYSTEM\CurrentControlSet\Control\WMI\GlobalLogger' $null = $reg.CreateKey($HKLM,$base) $reg.SetDWORDValue($HKLM,$base,'Start',1) $reg.SetStringValue($HKLM,$base,'FileName','C:\<path to the service file that needs to be overwritten>.exe') $flags = 0x00000010 -bor 0x00000020 $bytes = [BitConverter]::GetBytes([UInt32]$flags) $reg.SetBinaryValue($HKLM,$base,'EnableKernelFlags',$bytes) The only downsides are the need for admin rights and a host reboot, but overall it looks viable.

↳ Pinkerton A Python project to crawl for JavaScript files and search for secrets like API keys, authorization tokens, hardco
Pinkerton
A Python project to crawl for JavaScript files and search for secrets like API keys, authorization tokens, hardcoded passwords, or related data.
Installation using 🐳 Docker 1. Clone the repository
git clone https://github.com/000pp/pinkerton.git
2. Build the image
sudo docker build -t pinkerton:latest
3. Run container
sudo docker run pinkerton:latest
• Repository: https://github.com/000pp/Pinkerton

Подскажите как заставить работать open web-ui в режиме проброса портов и при этом если модель с ollama на хосте? У меня не хочет работать почему-то через эту команду
docker run -d \
  -p 3001:8080 \
  -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \
  -v open-webui:/app/backend/data \
  --name open-webui \
  --restart always \
  ghcr.io/open-webui/open-webui:main
Вот через эту норм всё
docker run -d \
  --network host \
  -e OLLAMA_BASE_URL=http://127.0.0.1:11434 \
  -v open-webui:/app/backend/data \
  --name open-webui \
  --restart always \
  ghcr.io/open-webui/open-webui:main

Rana_Khalil-Web_Security_Academy_Series_Course(2025.8).z033200.00 MB

Rana_Khalil-Web_Security_Academy_Series_Course(2025.8).z023200.00 MB

Rana_Khalil-Web_Security_Academy_Series_Course(2025.8).z013200.00 MB

Rana_Khalil-Web_Security_Academy_Series_Course(2025.8).zip2681.84 MB

#Exclusive 🔥Rana Khalil – Web Security Academy Series 2025.8 🔥 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup a
#Exclusive 🔥Rana Khalil – Web Security Academy Series 2025.8 🔥 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels link 👨‍💻 Proof of work Link 🔮 Any-Issues: Chat Here

Malware-collection - в этом репозитории вы можете найти огромную коллекцию вредоносного программного обеспечения включая ransomware, RAT (удаленные трояны), ботнеты и многое другое… https://github.com/b30wulf/Malware-collection #статьи_ссылки_scripts

Repost from 1N73LL1G3NC3
WerDump A Beacon Object File BOF for Havoc/CS to dump Process Protected Lsass using WerFaultSecure.
WerDump A Beacon Object File BOF for Havoc/CS to dump Process Protected Lsass using WerFaultSecure.

Course Sektor7 – RED TEAM Operator: Malware Development Advanced – Vol.2 🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : lin
Course Sektor7 – RED TEAM Operator: Malware Development Advanced – Vol.2 🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels link 👨‍💻 Proof of work Link 🔮 Any-Issues: Chat Here 🖥 Download Here1 Here2

1. OSCP Practice Lab: Active Directory Attack Path #1 https://www.youtube.com/watch?v=gY_9Dncjw-s 2. OSCP Practice Lab: Activ
1. OSCP Practice Lab: Active Directory Attack Path #1 https://www.youtube.com/watch?v=gY_9Dncjw-s 2. OSCP Practice Lab: Active Directory Attack Path #2 (Back to the Basics) https://www.youtube.com/watch?v=jBfdlLybMek 3. OSCP Practice Lab: Active Directory Attack Path #3 (Advanced/Client-Side Exploits) https://www.youtube.com/watch?v=Q5D2Yjc-RVc

eLearn Security eJPT 🔥🆕 👨‍💻 Password : @WickHelps 👍 Exam Guide : link ❗️ Backup all channels link 👨‍💻 Proof of work Li
eLearn Security eJPT 🔥🆕 👨‍💻 Password : @WickHelps 👍 Exam Guide : link ❗️ Backup all channels link 👨‍💻 Proof of work Link 🚀 Any-Issues: Chat Here 🖥 Download Here1 Here2

Windows-internals Live Training 2.zip2402.82 MB

Next Windows Internals Training. (2025) Библиотека Cobalt Strike

Next Windows Internals Training. (2025) Цели курса: Понять архитектуру системы Windows. Изучить внутреннее устройство процесс
Next Windows Internals Training. (2025) Цели курса: Понять архитектуру системы Windows. Изучить внутреннее устройство процессов, потоков, заданий, виртуальной памяти, системы ввода-вывода и других механизмов, лежащих в основе работы Windows. Написать любые драйвер программного устройства для доступа/изменения информации, недоступной из пользовательского режима. Целевая аудитория: Опытные программисты Windows в пользовательском или ядровом режиме, заинтересованные в написании более качественных программ путем более глубокого понимания внутренних механизмов операционной системы Windows. Исследователи в области безопасности, заинтересованные в более глубоком понимании механизмов Windows (безопасности или иных), что позволит проводить более продуктивные исследования. #cours

Grzegorz Tworek - Mastering Windows Forensics 2025.8.zip1196.17 MB