VULN REPORT
/
gövde gösterisi
/
ID: 113
Linux Komut Satırı ve Sistem Güvenliği Rehberi (Bash, Dosya İzinleri, SUID Yetkileri)
Summary
This entry details a vulnerability found in the target system. The exploit was published on 2026-07-21 and has garnered 23 views from the community. It is classified under the gövde gösterisi category. Users are advised to review the source code in the Detail tab for technical specifics.
exploit_113.txt
# Linux Komut Satırı ve Sistem Güvenliği Rehberi (Bash, Dosya İzinleri, SUID Yetkileri)
> **Başlangıç Seviyesi Rehber**: Siber güvenlik araçlarının %90'ı Linux ortamında çalışır. Bu rehberde Linux temel komutları ve dosya izin yapısı anlatılmaktadır.
---
## 1. Temel Linux Komutları
```bash
# Sistemdeki mevcut dizini ve dosyaları listeleme
pwd
ls -la
# Dosya okuma ve arama yapma
cat /etc/passwd
grep "root" /etc/passwd
# Çalışan süreçleri (Processes) izleme
ps aux | grep python
top
```
---
## 2. Linux Dosya İzin Sistemi (rwx)
```text
- rwx r-x r-- 1 root root 4096 Jan 1 script.sh
│ │ └── Diğer Kullanıcılar (Others): Okuma (4)
│ └────── Grup (Group): Okuma + Çalıştırma (5)
└────────── Dosya Sahibi (User): Okuma + Yazma + Çalıştırma (7)
```
- **r (Read / Okuma)** = 4
- **w (Write / Yazma)** = 2
- **x (Execute / Çalıştırma)** = 1
---
## 3. SUID (Set User ID) Nedir ve Neden Tehlikelidir?
SUID biti ayarlanmış bir çalıştırılabilir dosya, hangi kullanıcı çalıştırırsa çalıştırsın **dosya sahibinin (genellikle root)** yetkileriyle çalışır.
```bash
# SUID bitli dosyaları tespit etme komutu:
find / -perm -4000 -type f 2>/dev/null
```
---
## 4. Sonuç
Linux dosya hiyerarşisini ve izin yapısını öğrenmek siber güvenlik kariyerinin temelidir.
Entry Stats
Views
23
Downloads
4
Comments
1