Skip to content

Commit

Permalink
Install for Xubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
RedToor committed Sep 23, 2016
1 parent 13a24f1 commit a8e079c
Show file tree
Hide file tree
Showing 146 changed files with 40,161 additions and 1 deletion.
4 changes: 4 additions & 0 deletions LINETIME
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 23/09/16
Added New Dependence : default-jre, for run ktg.gui
Added New Lib ; setuptools, for usblib lib

* 21/09/16
Added the GUI!!!
Install : Install man files
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ The Katana source code is organized as follows:
|Wifislax| |yes| [![Wercker](https://img.shields.io/wercker/ci/wercker/docs.svg?maxAge=2592000)]() |
|Raspbian|4.1.7 |yes| [![Wercker](https://img.shields.io/wercker/ci/wercker/docs.svg?maxAge=2592000)]() |
|Ubuntu|14.04 |yes| [![Wercker](https://img.shields.io/wercker/ci/wercker/docs.svg?maxAge=2592000)]() |
|Xbuntu|4.4.0 |yes| [![Wercker](https://img.shields.io/wercker/ci/wercker/docs.svg?maxAge=2592000)]() |

# INSTALLATION
Installation of Katana framework: is necesary install all [dependencies](https://github.com/PowerScript/KatanaFramework/wiki/Requisites) for a good performance.
Expand Down
8 changes: 7 additions & 1 deletion dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#HEAD#########################################################
#
# Katana Framework | dependencies
# Last Modified: 23/08/2016
# Last Modified: 23/09/2016
#
#########################################################HEAD#

Expand All @@ -22,6 +22,7 @@ if ! hash hostapd 2>/dev/null; then sudo apt-get install hostapd ; fi
if ! hash arpspoof 2>/dev/null; then sudo apt-get install arpspoof ; fi
if ! hash dnsspoof 2>/dev/null; then sudo apt-get install dnsspoof ; fi
if ! hash xterm 2>/dev/null; then sudo apt-get install xterm ; fi
if ! hash default-jre 2>/dev/null; then sudo apt-get install default-jre ; fi

DIR=$(dirname $0)
cd lib/scapy/
Expand All @@ -36,5 +37,10 @@ cd lib/IPy/
sudo python setup.py install
cd ..
cd ..
cd lib/setuptools/
sudo python bootstrap.py
sudo python setup.py install
cd ..
cd ..
cd lib/libusb1/
sudo python setup.py install
Binary file modified lib/dnslib/dist/dnslib-0.9.6-py2.7.egg
Binary file not shown.
Binary file modified lib/libusb1/dist/libusb1-1.5.1-py2.7.egg
Binary file not shown.
15 changes: 15 additions & 0 deletions lib/setuptools/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# syntax: glob
bin
build
dist
include
lib
distribute.egg-info
setuptools.egg-info
.coverage
.tox
*.egg
*.py[cod]
*.swp
*~
.hg*
39 changes: 39 additions & 0 deletions lib/setuptools/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
env:
- ""
- LC_ALL=C LC_CTYPE=C
script:
# avoid VersionConflict when newer version is required
- pip install -U 'pytest>=3.0.2'

# Output the env, because the travis docs just can't be trusted
- env

# update egg_info based on setup.py in checkout
- python bootstrap.py

- python setup.py test --addopts='-rsx'

before_deploy:
- export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=1
deploy:
provider: pypi
# Also update server in setup.cfg
server: https://upload.pypi.org/legacy/
on:
tags: true
all_branches: true
python: 3.5
condition: $LC_ALL != "C"
user: jaraco
password:
secure: tfWrsQMH2bHrWjqnP+08IX1WlkbW94Q30f4d7lCyhWS1FIf/jBDx4jrEILNfMxQ1NCwuBRje5sihj1Ow0BFf0vVrkaeff2IdvnNDEGFduMejaEQJL3s3QrLfpiAvUbtqwyWaHfAdGfk48PovDKTx0ZTvXZKYGXZhxGCYSlG2CE6Y6RDvnEl6Tk8e+LqUohkcSOwxrRwUoyxSnUaavdGohXxDT8MJlfWOXgr2u+KsRrriZqp3l6Fdsnk4IGvy6pXpy42L1HYQyyVu9XyJilR2JTbC6eCp5f8p26093m1Qas49+t6vYb0VLqQe12dO+Jm3v4uztSS5pPQzS7PFyjEYd2Rdb6ijsdbsy1074S4q7G9Sz+T3RsPUwYEJ07lzez8cxP64dtj5j94RL8m35A1Fb1OE8hHN+4c1yLG1gudfXbem+fUhi2eqhJrzQo5vsvDv1xS5x5GIS5ZHgKHCsWcW1Tv+dsFkrhaup3uU6VkOuc9UN+7VPsGEY7NvquGpTm8O1CnGJRzuJg6nbYRGj8ORwDpI0KmrExx6akV92P72fMC/I5TCgbSQSZn370H3Jj40gz1SM30WAli9M+wFHFd4ddMVY65yxj0NLmrP+m1tvnWdKtNh/RHuoW92d9/UFtiA5IhMf1/3djfsjBq6S9NT1uaLkVkTttqrPYJ7hOql8+g=
distributions: release
Loading

0 comments on commit a8e079c

Please sign in to comment.