fluxion/add.py

15 lines
385 B
Python
Raw Normal View History

2016-06-12 09:41:09 -06:00
#!/usr/bin/python
2016-10-11 15:33:13 -06:00
from os import system
2016-06-12 09:41:09 -06:00
2016-10-11 15:33:13 -06:00
commands = [
"apt-key adv --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6",
2016-11-17 10:18:35 -07:00
"echo '# Kali linux repositories",
2016-10-11 15:33:13 -06:00
"deb http://http.kali.org/kali kali-rolling main contrib non-free",
"deb http://repo.kali.org/kali kali-bleeding-edge main' >> /etc/apt/sources.list",
"apt-get update -m"
]
for i in commands:
system(i)