This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Communication Guidelines | |
### Language | |
Always respond in Turkish unless explicitly requested otherwise. | |
### Git Workflow | |
After completing any task: | |
1. Ask if the user wants to commit and push changes to the GitHub repository | |
2. If confirmed, commit changes with Turkish commit messages | |
3. Push to the remote repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Yeni RDP Port Numarası (gerekirse bu değeri değiştirin) | |
$NewRdpPort = 42500 | |
Write-Host "🔧 RDP ayarları yapılandırılıyor..." -ForegroundColor Cyan | |
# 1. RDP Flood limitlerini kaldır | |
Write-Host "⚙️ Flood limit ayarları kaldırılıyor..." -ForegroundColor Yellow | |
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name "MaxOutstandingConnections" -Value 0 -PropertyType DWord -Force | Out-Null | |
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name "MaxConnectionTimeOut" -Value 0 -PropertyType DWord -Force | Out-Null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Parola politikalarını düzenle | |
secedit /export /cfg "$env:TEMP\secpol.cfg" | |
(gc "$env:TEMP\secpol.cfg") | | |
ForEach-Object { | |
$_ -replace 'PasswordComplexity\s*=\s*\d+', 'PasswordComplexity = 0' ` | |
-replace 'MinimumPasswordLength\s*=\s*\d+', 'MinimumPasswordLength = 0' | |
} | Set-Content "$env:TEMP\secpol.cfg" | |
secedit /configure /db secedit.sdb /cfg "$env:TEMP\secpol.cfg" /areas SECURITYPOLICY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Root kontrolü | |
if [[ $EUID -ne 0 ]]; then | |
echo "❌ Lütfen bu scripti root olarak çalıştırın." | |
exit 1 | |
fi | |
# OS tespiti | |
if [ -f /etc/os-release ]; then |