Skip to content

Commit

Permalink
Fix: Installing w3af 1.6 on CentOS 6.5 #2067
Browse files Browse the repository at this point in the history
  • Loading branch information
andresriancho committed Jun 4, 2014
1 parent e724007 commit 3c68726
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
44 changes: 44 additions & 0 deletions w3af/core/controllers/dependency_check/platforms/centos65.py
@@ -0,0 +1,44 @@
"""
centos65.py
Copyright 2014 Andres Riancho
This file is part of w3af, http://w3af.org/ .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""
import platform

from .centos import CentOS
from ..requirements import CORE, GUI


class CentOS65(CentOS):
SYSTEM_NAME = 'CentOS 6.5'

CORE_SYSTEM_PACKAGES = ['python-pip', 'python-devel', 'python-setuptools',
'sqlite-devel', 'gcc-c++', 'gcc', 'make', 'git',
'libxml2-devel', 'libxslt-devel', 'pyOpenSSL',
'openssl-devel', 'libcom_err-devel', 'libcom_err']

GUI_SYSTEM_PACKAGES = CORE_SYSTEM_PACKAGES[:]
GUI_SYSTEM_PACKAGES.extend(['graphviz', 'gtksourceview2', 'pygtksourceview'])

SYSTEM_PACKAGES = {CORE: CORE_SYSTEM_PACKAGES,
GUI: GUI_SYSTEM_PACKAGES}

@staticmethod
def is_current_platform():
return 'centos' in platform.dist() and '6.5' in platform.dist()
Expand Up @@ -21,14 +21,16 @@
"""
from .ubuntu import Ubuntu1204
from .centos import CentOS
from .centos65 import CentOS65
from .fedora import Fedora
from .kali import Kali
from .mac import MacOSX
from .openbsd import OpenBSD5
from .suse import SuSE
from .default import DefaultPlatform

KNOWN_PLATFORMS = [Ubuntu1204, CentOS, Fedora, Kali, MacOSX, OpenBSD5, SuSE]
KNOWN_PLATFORMS = [Ubuntu1204, CentOS65, CentOS, Fedora, Kali, MacOSX, OpenBSD5,
SuSE]


def get_current_platform(known_platforms=KNOWN_PLATFORMS):
Expand Down

0 comments on commit 3c68726

Please sign in to comment.