{"id":29195463,"url":"https://github.com/wizardofoz669/kali-auto-updater","last_synced_at":"2026-04-27T00:31:45.691Z","repository":{"id":299931860,"uuid":"1004017337","full_name":"wizardOfOz669/kali-auto-updater","owner":"wizardOfOz669","description":"A simple script to update, upgrade, and clean a Kali Linux system with a single command.","archived":false,"fork":false,"pushed_at":"2025-06-19T02:11:42.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T05:04:28.880Z","etag":null,"topics":["bash","bash-script"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wizardOfOz669.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-18T02:00:20.000Z","updated_at":"2025-06-19T02:11:45.000Z","dependencies_parsed_at":"2025-06-19T02:37:37.430Z","dependency_job_id":"2af4b6d1-080e-487e-8aaf-4da2467359b7","html_url":"https://github.com/wizardOfOz669/kali-auto-updater","commit_stats":null,"previous_names":["wizardofoz669/kali-auto-updater"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wizardOfOz669/kali-auto-updater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wizardOfOz669%2Fkali-auto-updater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wizardOfOz669%2Fkali-auto-updater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wizardOfOz669%2Fkali-auto-updater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wizardOfOz669%2Fkali-auto-updater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wizardOfOz669","download_url":"https://codeload.github.com/wizardOfOz669/kali-auto-updater/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wizardOfOz669%2Fkali-auto-updater/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263077630,"owners_count":23410167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","bash-script"],"created_at":"2025-07-02T05:04:30.231Z","updated_at":"2026-04-27T00:31:45.684Z","avatar_url":"https://github.com/wizardOfOz669.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Kali Linux Auto-Updater Script\n\n![Kali Linux](https://img.shields.io/badge/Kali_Linux-557C94?style=for-the-badge\u0026logo=kali-linux\u0026logoColor=white)\n![Bash](https://img.shields.io/badge/Bash-4EAA25?style=for-the-badge\u0026logo=gnu-bash\u0026logoColor=white)\n![License](https://img.shields.io/badge/License-MIT-green?style=for-the-badge)\n\nA simple yet powerful Bash script to automate Kali Linux system updates, upgrades, and cleanup.\n\n## ✨ Features\n\n- **One-command automation**: Handles all update operations in sequence\n- **Root verification**: Automatically checks for sudo privileges\n- **Verbose output**: Clear progress indicators with emoji visuals\n- **System cleanup**: Removes obsolete packages and cleans cache\n- **Lightweight**: Single script with no dependencies\n\n## 🛠️ Script Contents (updatesys.sh)\n\n```bash\n#!/bin/bash\n\n# =============================================\n# Kali Linux Auto-Updater\n# Version 2.0 - Optimized\n# =============================================\n\n# Verify root privileges\nif [ \"$(id -u)\" -ne 0 ]; then\n  echo \"❗ Please run with sudo\"\n  echo \"Example: sudo ./updatesys.sh\"\n  exit 1\nfi\n\necho -e \"\\n🔹 Starting system update...\"\nsleep 1\n\n# Update package lists\necho -e \"\\n🔸 Updating package lists...\"\napt update\n\n# Upgrade system\necho -e \"\\n🔸 Upgrading packages...\"\napt upgrade -y\napt full-upgrade -y\n\n# Cleanup\necho -e \"\\n🔸 Cleaning system...\"\napt autoremove -y\napt clean -y\n\necho -e \"\\n✅ System update completed successfully!\"\n🚦 Requirements\n\n    Kali Linux system\n\n    sudo/root privileges\n\n    Internet connection\n\n⚡ Quick Start\n1- Download the script:\n    git clone https://github.com/wizardOfOz669/kali-auto-updater.git\n    cd kali-auto-updater\n\n2- Make executable:\n    chmod +x updatesys.sh\n\n3- Run with sudo:\n    sudo ./updatesys.sh\n⚠️ Important Notes\n\n    Always back up important data before system upgrades\n\n    Recommended to run in a terminal (not through GUI)\n\n    Monitor the process if running on critical systems\n\n📜 License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\nMade with ❤️ by WizardOfOz669\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwizardofoz669%2Fkali-auto-updater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwizardofoz669%2Fkali-auto-updater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwizardofoz669%2Fkali-auto-updater/lists"}