Microsoft releases Entra Connect v2.6.84.0 with security fixes and recommends upgrading to this version as soon as possible!
To download the Microsoft Entra Connect Sync tool:
1. Sign in to Microsoft Entra admin center.
2. Navigate to Entra ID > Entra Connect > Get Started > Manage.
3. Select the "Download Connect Sync agent".
4. Select the "Accept terms & download" button.
5. Run the tool on the Entra Connect server and follow the wizard.
Note: The release is only for download via the Microsoft Entra admin center, and auto-upgrade is not available.
Learn more:
- https://t.co/Cb3UqPcSmL
- https://t.co/Uwzw2y49F7
#Microsoft365 #EntraID #EntraConnect
🐧 Day 25/30 — #Linux
File permissions alone aren't enough to secure a modern Linux system.
Linux includes advanced security frameworks that enforce access policies, isolate applications, and record system activity for auditing.
Linux Security – SELinux, AppArmor, and Auditing with auditd
These security tools help protect servers against unauthorized access, privilege escalation, and configuration mistakes.
SELinux (Security-Enhanced Linux)
SELinux is a Mandatory Access Control (MAC) system that restricts what users, processes, and applications are allowed to access—even if traditional file permissions would permit it.
Useful Commands:
→ sestatus
Displays the current SELinux status.
→ getenforce
Shows the current enforcement mode.
SELinux Modes:
→ Enforcing – Security policies are actively enforced.
→ Permissive – Policy violations are logged but not blocked.
→ Disabled – SELinux is turned off.
AppArmor
AppArmor is another Mandatory Access Control framework used by several Linux distributions.
Instead of labels, it secures applications using predefined security profiles.
Useful Commands:
→ aa-status
Displays loaded AppArmor profiles.
→ sudo aa-enforce profile_name
Enforces a security profile.
Benefits:
→ Application isolation
→ Reduced attack surface
→ Easier profile management on supported distributions
auditd – Linux Auditing System
auditd records security-related events and system activity, making it invaluable for monitoring and compliance.
Examples of what it can log:
→ File access
→ User logins
→ Command execution
→ Permission changes
→ Security policy violations
Useful Commands:
→ sudo systemctl status auditd
Checks whether the auditing service is running.
→ ausearch -k login
Searches audit logs for specific events.
→ aureport
Generates audit reports from collected logs.
Why Linux Security Tools Matter:
→ Protect critical systems from unauthorized access
→ Detect suspicious activity
→ Support compliance and auditing requirements
→ Strengthen server security
→ Reduce the impact of security breaches
Best Practices:
→ Keep SELinux or AppArmor enabled whenever possible.
→ Monitor audit logs regularly.
→ Apply the principle of least privilege.
→ Keep systems updated with the latest security patches.
Mastering SELinux, AppArmor, and auditd is an important step toward becoming a skilled Linux administrator, DevOps engineer, or cybersecurity professional.
🐧 Grab Linux Ebook: https://t.co/DeHjJ1Wubf
#Linux #LinuxTutorial #SELinux #AppArmor #auditd #CyberSecurity #LinuxCommands #DevOps #SystemAdministration #100DaysOfCode
⚠️ 7 Linux commands that can end your career ⚠️
1️⃣ rm -rf / --no-preserve-root
→ Deletes every file on the system. No confirmation. No undo.
2️⃣ :(){ :|:& };:
→ A fork bomb. Spawns processes until the kernel can't schedule anything else.
3️⃣ dd if=/dev/zero of=/dev/sda
→ Zeroes out the disk, byte by byte. Your data is gone before you can Ctrl+C.
4️⃣ dd if=/dev/urandom of=/dev/mem
→ Writes garbage directly into RAM. The kernel doesn't recover from this.
5️⃣ wipefs -a /dev/sda
→ Nukes the partition table. The data's still there — the OS just has no idea how to find it.
6️⃣ while :; do mkdir ; done
→ Floods the filesystem with directories until you're out of inodes, even with free disk space.
7️⃣ echo c > /proc/sysrq-trigger
→ Forces an instant kernel panic. No warning, no logs written.
Every one of these has landed in a real production incident.