Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/2022-2023/Updating-Kali/k1.py
1306 views
1
#!/usr/bin/python
2
# @nu11secur1ty 2023
3
# https://www.nu11secur1ty.com/
4
import os
5
6
os.system("dpkg --configure -a")
7
os.system("apt --fix-broken install -y")
8
os.system("apt update -y")
9
os.system("apt full-upgrade -y")
10
os.system('apt update --fix-missing -y')
11
os.system('apt update -y')
12
os.system('apt install -f -y')
13
os.system('apt autoremove -y')
14
15