aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--etc/disable-devel.inc2
-rw-r--r--etc/filezilla.profile3
-rwxr-xr-xtest/apps/apps.sh9
-rwxr-xr-xtest/apps/filezilla.exp83
5 files changed, 97 insertions, 1 deletions
diff --git a/README.md b/README.md
index 029a7c904..8c2e9d9b6 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,7 @@ AppImage project home: https://github.com/probonopd/AppImageKit
68## Converting profiles to private-bin - work in progress 68## Converting profiles to private-bin - work in progress
69 69
70BitTorrent profiles converted to private-bin: deluge, qbittorrent, rtorrent, transmission-gtk, transmission-qt 70BitTorrent profiles converted to private-bin: deluge, qbittorrent, rtorrent, transmission-gtk, transmission-qt
71File transfer: filezilla
71 72
72## New security profiles 73## New security profiles
73 74
diff --git a/etc/disable-devel.inc b/etc/disable-devel.inc
index 99f059c44..8c18ec2c3 100644
--- a/etc/disable-devel.inc
+++ b/etc/disable-devel.inc
@@ -37,7 +37,7 @@ blacklist /usr/lib/php*
37blacklist /usr/bin/ruby 37blacklist /usr/bin/ruby
38blacklist /usr/lib/ruby 38blacklist /usr/lib/ruby
39 39
40# Programs using python: deluge, some firefox addons 40# Programs using python: deluge, some firefox addons, filezilla
41# Python 2 41# Python 2
42#blacklist /usr/bin/python2* 42#blacklist /usr/bin/python2*
43#blacklist /usr/lib/python2* 43#blacklist /usr/lib/python2*
diff --git a/etc/filezilla.profile b/etc/filezilla.profile
index 3cb4890e2..35663f2fa 100644
--- a/etc/filezilla.profile
+++ b/etc/filezilla.profile
@@ -13,3 +13,6 @@ noroot
13nosound 13nosound
14protocol unix,inet,inet6 14protocol unix,inet,inet6
15seccomp 15seccomp
16
17shell none
18private-bin filezilla,uname,sh,python,lsb_release,fzputtygen,fzsftp
diff --git a/test/apps/apps.sh b/test/apps/apps.sh
index 3ecc161a1..fa56ce370 100755
--- a/test/apps/apps.sh
+++ b/test/apps/apps.sh
@@ -69,6 +69,15 @@ else
69 echo "TESTING SKIP: qbittorrent not found" 69 echo "TESTING SKIP: qbittorrent not found"
70fi 70fi
71 71
72which filezilla
73if [ "$?" -eq 0 ];
74then
75 echo "TESTING: filezilla"
76 ./filezilla.exp
77else
78 echo "TESTING SKIP: filezilla not found"
79fi
80
72which evince 81which evince
73if [ "$?" -eq 0 ]; 82if [ "$?" -eq 0 ];
74then 83then
diff --git a/test/apps/filezilla.exp b/test/apps/filezilla.exp
new file mode 100755
index 000000000..7f232f311
--- /dev/null
+++ b/test/apps/filezilla.exp
@@ -0,0 +1,83 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2016 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail filezilla\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Reading profile /etc/firejail/filezilla.profile"
14}
15expect {
16 timeout {puts "TESTING ERROR 1\n";exit}
17 "Child process initialized"
18}
19sleep 3
20
21spawn $env(SHELL)
22send -- "firejail --list\r"
23expect {
24 timeout {puts "TESTING ERROR 3\n";exit}
25 ":firejail"
26}
27expect {
28 timeout {puts "TESTING ERROR 3.1\n";exit}
29 "filezilla"
30}
31sleep 1
32
33# grsecurity exit
34send -- "file /proc/sys/kernel/grsecurity\r"
35expect {
36 timeout {puts "TESTING ERROR - grsecurity detection\n";exit}
37 "grsecurity: directory" {puts "grsecurity present, exiting...\n";exit}
38 "cannot open" {puts "grsecurity not present\n"}
39}
40
41send -- "firejail --name=blablabla\r"
42expect {
43 timeout {puts "TESTING ERROR 4\n";exit}
44 "Child process initialized"
45}
46sleep 2
47
48spawn $env(SHELL)
49send -- "firemon --seccomp\r"
50expect {
51 timeout {puts "TESTING ERROR 5\n";exit}
52 ":firejail filezilla"
53}
54expect {
55 timeout {puts "TESTING ERROR 5.1 (seccomp)\n";exit}
56 "Seccomp: 2"
57}
58expect {
59 timeout {puts "TESTING ERROR 5.1\n";exit}
60 "name=blablabla"
61}
62sleep 1
63send -- "firemon --caps\r"
64expect {
65 timeout {puts "TESTING ERROR 6\n";exit}
66 ":firejail filezilla"
67}
68expect {
69 timeout {puts "TESTING ERROR 6.1\n";exit}
70 "CapBnd:"
71}
72expect {
73 timeout {puts "TESTING ERROR 6.2\n";exit}
74 "0000000000000000"
75}
76expect {
77 timeout {puts "TESTING ERROR 6.3\n";exit}
78 "name=blablabla"
79}
80sleep 1
81
82puts "\nall done\n"
83