Commit Graph

190 Commits

Author SHA1 Message Date
oriagmon
76692a36d7 Finished with the left of the PR comments. 2018-10-21 10:53:50 +03:00
oriagmon
7e324c5374 Fixed safe to change PR comments. the next fixes of these PR would need to be tested 2018-10-21 10:47:48 +03:00
oriagmon
6602821a80 DONE 2018-10-17 20:21:27 +03:00
oriagmon
a109dd956b found another variable I think should be locked 2018-10-17 17:54:11 +03:00
oriagmon
26f3878f7c Using stricter locking "policy" 2018-10-17 15:28:18 +03:00
oriagmon
655467c27a Solved hidden exception that stopped program normal run. 2018-10-17 12:53:31 +03:00
oriagmon
87232a12cd Fixed PR: Used the same lock for each variable & changed locks names 2018-10-17 12:36:04 +03:00
oriagmon
a8762a4ada Fixed PR: Used the same lock for each variable & changed locks names 2018-10-17 11:32:50 +03:00
oriagmon
086a403559 locked variables 2018-10-16 17:03:57 +03:00
oriagmon
8462eba1b1 Intending 2018-10-16 16:53:57 +03:00
oriagmon
229347e9fa Attempting to solve the threading bug, I will do more checking to be sure its gone 2018-10-16 16:53:07 +03:00
Liz Rice
e521c658dc Merge pull request #50 from aquasecurity/addMoreLogs
Add more logs
2018-10-09 08:40:10 +01:00
ori.agmon
30435f2348 Fixed some english mistakes & :-) 2018-10-08 15:45:23 +03:00
ori.agmon
042e57e39f Made some Distinctions between passive hunter and discovery (some discoveries were logged as passive hunters ) 2018-10-07 10:43:24 +03:00
ori.agmon
e1712a7a74 Some passive hunters were logged as active hunters. I've fixed it 2018-10-03 18:58:10 +03:00
ori.agmon
48f0b8d829 Added more logging to most of the hunters.
Hosts.py, hunting/proxy.py, hunting/kubelet.py logging isn't finished yet.
2018-10-02 11:49:16 +03:00
ori.agmon
12c416e643 Added more logging to most of the hunters. 2018-09-30 14:39:37 +03:00
Liz Rice
79a5ca8bde Add link to demo video 2018-09-13 16:14:21 +01:00
Liz Rice
5a687b47b1 Add screenshot 2018-09-13 16:13:08 +01:00
Liz Rice
8da2b588a8 Add logo to readme 2018-09-07 14:08:42 +01:00
Liz Rice
9c44e2c7e7 Add logo image 2018-09-07 14:06:34 +01:00
Liz Rice
fc249df89e Merge pull request #39 from ramshazar/patch-1
Update base image
2018-09-04 18:03:27 +01:00
Liz Rice
6479e03271 Capitalization 2018-09-04 18:03:09 +01:00
Liz Rice
8af84cb008 Capitalization
Thanks @craigbox :-)
2018-09-04 18:01:42 +01:00
Grambulf
3556b112a3 Update base image
There is a newer version of the base image
2018-09-01 16:07:29 +02:00
Liz Rice
a5476d5b85 Merge pull request #34 from manonthemat/master
readme fix
2018-08-25 06:37:40 +01:00
Matthias Sieber
7c4bcd1335 readme fix 2018-08-24 16:21:32 -07:00
Liz Rice
7dff5c12ad Merge pull request #33 from aquasecurity/false-pos
401 status says pod was protected
2018-08-23 09:51:59 +01:00
Liz Rice
15512ba8b8 401 status says pod was protected 2018-08-23 09:42:31 +01:00
Liz Rice
af83103d45 Merge pull request #32 from kinvolk/schu/fix-shebang-env-path
kube-hunter: fix `env` path in shebang
2018-08-22 10:35:16 +01:00
Michael Schubert
d90c75a8f0 kube-hunter: fix env path in shebang
Currently, `./kube-hunter.py` results in:

```
-bash: ./kube-hunter.py: /bin/env: bad interpreter: No such file or directory
```
2018-08-22 10:50:19 +02:00
Liz Rice
c0d6ff1fc1 Include link to EULA for containerised version
Fixes #31
2018-08-21 14:30:08 +01:00
Liz Rice
52c29ab220 Merge pull request #30 from cclauss/patch-1
Travis CI: Test on Python 2.7 and 3.6
2018-08-21 14:24:03 +01:00
cclauss
a7269c5a9b Travis CI: Test on Python 2.7 and 3.6
The Python 3.7 on Travis CI stuff is still a bit too experimental for consistent builds.
2018-08-21 14:39:23 +02:00
Liz Rice
5c2e9afb14 Tweak to get python 3.7 build running. I hope. 2018-08-21 13:20:41 +01:00
Liz Rice
973815bc92 Merge pull request #27 from cclauss/patch-1
Add automated testing on Travis CI
2018-08-21 13:14:03 +01:00
Liz Rice
d050f18cd4 Merge pull request #29 from aquasecurity/menu-order
Shouldn’t rely on the order of a dictionary
2018-08-21 09:58:30 +01:00
Liz Rice
afd3563fc4 Shouldn’t rely on the order of a dictionary 2018-08-21 09:57:09 +01:00
cclauss
6fd15f6555 Add automated testing on Travis CI
Fixes #26 Travis CI needs to be turned ON for this repo at https://travis-ci.org/aquasecurity

Travis CI will run [flake8](http://flake8.pycqa.org) tests on Python 2.7 and 3.7 to find Python syntax errors and undefined names.

__E901,E999,F821,F822,F823__ are the "_showstopper_" flake8 issues that can halt the runtime with a SyntaxError, NameError, etc. Most other flake8 issues are merely "style violations" -- useful for readability but they do not effect runtime safety.
* F821: undefined name `name`
* F822: undefined name `name` in `__all__`
* F823: local variable name referenced before assignment
* E901: SyntaxError or IndentationError
* E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
2018-08-21 10:17:23 +02:00
Liz Rice
1f43ee0ee5 Merge pull request #25 from cclauss/patch-1
print() is a function in Python 3
2018-08-21 09:04:28 +01:00
cclauss
effcbc15c9 print() is a function in Python 3
Just like #15 and #19 but in a new file this time.  Perhaps it is time to add some automated testing like Travis CI, Circle CI, Appveyor, etc.  https://github.com/marketplace/category/continuous-integration
2018-08-21 09:53:24 +02:00
Liz Rice
d126211d6b Merge pull request #20 from ccojocar/yaml_report
Refactor the reporter and add YAML report format
2018-08-20 10:05:37 +01:00
Cosmin Cojocar
de1508dfc7 Add tcpdump and wireshark into the Docker image to make scapy happy 2018-08-20 10:03:26 +02:00
Cosmin Cojocar
74943f10d1 Refactor the reporter and add an YAML report format
Separate the events collection from report rendering, in order
to allow different type of reports.
2018-08-20 10:03:26 +02:00
Liz Rice
e9de79b330 Merge pull request #19 from cclauss/patch-1
print() is a function in Python 3
2018-08-20 08:39:39 +01:00
Liz Rice
7caec3e0c7 Merge pull request #24 from eranbibi/master
change the menu options title
2018-08-18 19:40:21 +01:00
Liz Rice
aedc4767cc Merge pull request #22 from jaxxstorm/kubeadm_port
Add kubeadm API port to API Server discovery
2018-08-18 19:39:00 +01:00
danielsagi
45ca408082 Merge pull request #23 from aquasecurity/danielsagi-plugins-readme-patch
Added explanation about plugins
2018-08-18 19:05:53 +03:00
Eran Bibi
e2038276a5 change the menu options title 2018-08-17 20:04:17 +03:00
Eran Bibi
a45220b753 change the menu options title 2018-08-17 19:58:37 +03:00