Add Fedora support to setup

This commit is contained in:
TrustedSec 2016-02-08 10:02:17 -05:00
parent 4f5423c6e9
commit 17e8ad6494
2 changed files with 6 additions and 1 deletions

View file

@ -13,6 +13,7 @@ version 7.0
* rewrote alphanumeric shellcode injector to be python3 compliant and optimized
* added module_rewrite function instead of reload() for python3
* added Metasploit MS15-100 Microsoft Windows Media Center MCL Vulnerability to fileformat attacks
* added Fedora automatic install thanks to whoismath PR
~~~~~~~~~~~~~~~~
version 6.5.9

View file

@ -51,11 +51,15 @@ if platform.system() == "Linux":
"chmod a+x pefile-1.2.10-139/setup.py", shell=True).wait()
subprocess.Popen("rm -rf pefile-1.2.10-139*", shell=True).wait()
# if dnf.conf is there, we are dealing with a >= fedora 22 - added thanks to whoismath pr
elif os.path.isfile("/etc/dnf/dnf.conf"):
subprocess.Popen("dnf -y install git python-pexpect python-pefile python-crypto pyOpenSSL", shell=True).wait()
# if sources.list or pacman.conf is not available then we're running
# something offset
else:
print(
"[!] You're not running a Debian or Arch variant. Installer not finished for this type of Linux distro.")
"[!] You're not running a Debian, Fedora or Arch variant. Installer not finished for this type of Linux distro.")
print("[!] Install git, python-pexpect, python-crypto, python-openssl, python-pefile manually for all of SET dependancies.")
sys.exit()