mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 23:06:11 +00:00
Add Fedora support to setup
This commit is contained in:
parent
4f5423c6e9
commit
17e8ad6494
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
6
setup.py
6
setup.py
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue