Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/updater/official_up.py
1303 views
1
#!/usr/bin/python3
2
# Author @nu11secur1ty
3
import os
4
os.system('apt update --fix-missing -y')
5
os.system('apt update -y')
6
os.system('apt install -f -y')
7
os.system('apt --fix-broken install -y')
8
os.system('apt --fix-missing install -y')
9
os.system('apt full-upgrade -y')
10
os.system('apt autoremove -y')
11
os.system('dpkg --configure -a')
12
# Dist upgrade
13
os.system('apt dist-upgrade -y')
14
os.system('apt -y full-upgrade -y')
15
os.system('dpkg --configure -a')
16
os.system('apt --fix-broken install -y')
17
os.system('apt install -f -y')
18
os.system('apt autoremove -y')
19
os.system('apt update --fix-missing -y')
20
21