-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsanity.sh
executable file
·174 lines (136 loc) · 4.7 KB
/
sanity.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#! /bin/sh
# sanity.sh -- a growing testsuite for unhide.
#
# Copyright (C) 2010-2024 Patrick Gouin.
#
# This program 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, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#
# Original Author: Patrick Gouin
# remove pre-existing local ps
rm -f ./ps
# test 1
# Call ps, but hide the last line of output
cat <<EOF
Test #1
Call ps, but hide the last line of its output.
Usually, this should find no hidden process, as the last
process is very often the ps command launched by unhide.
This ps is not check by unhide (C version).
EOF
cat <<EOF >./ps
#! /bin/bash
/bin/ps "\$@" | head -n-1
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux sys
# remove pre-existing local ps
rm -f ./ps
# test 2
# Don't call ps : let all processes appear hidden
cat <<EOF
Test #2
Don't call ps : let all processes appear hidden.
This should find all processes as hidden..
EOF
cat <<EOF >./ps
#! /bin/bash
false
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux procall
# remove pre-existing local ps
rm -f ./ps
# test 3
# Call ps, but add a faked process.
cat <<EOF
Test #3
Call ps, but add a faked process.
This should show something like:
"1 HIDDEN Process Found sysinfo.procs reports xxx processes and ps sees xxx-1 processes"
But due to the large increase in the number of processes in recent years checksysinfo tests take a very long time.
Processes therefore have time to appear and disappear making the tests unreliable.
EOF
cat <<EOF >./ps
#! /bin/bash
/bin/ps "\$@"
echo 65535 my_false_proc
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux -v checksysinfo checksysinfo2
# test 4
# Call ps, but add a faked process.
cat <<EOF
Test #4
Call ps, but add a faked process.
This should show "my_false_proc" as faked process
EOF
cat <<EOF >./ps
#! /bin/bash
/bin/ps "\$@"
echo 65535 my_false_proc
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux reverse
# remove pre-existing local ps
rm -f ./ps
# test 5
# Call ps, but add a faked process.
cat <<EOF
Test #5
Call ps, but add a faked process.
This should show "my_false_proc" repeated enough times for a length > 1023 as faked process
EOF
cat <<EOF >./ps
#! /bin/bash
/bin/ps "\$@"
echo 65535 my_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_00procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_procmy_false_proc
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux reverse
# remove pre-existing local ps
rm -f ./ps
# test 6
# Call ps, but add a faked process.
cat <<EOF
Test #6
Call ps, but add a faked process with a non numeric PID
This should show: "Warning : No numeric pid found on ps output line, skip line"
EOF
cat <<EOF >./ps
#! /bin/bash
/bin/ps "\$@"
echo abcde bad_proc_number
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux -v reverse
# test 7
# Call ps, but add a temporary process.
# not working
cat <<EOF
Test #7
Call ps, but add a temporary process
This should show: "Warning : No numeric pid found on ps output line, skip line"
This test does not work.
EOF
unset UNH_PASSAGE
cat <<'EOF' >./ps
#! /bin/bash
/bin/ps "$@"
if [[ -z "${UNH_PASSAGE}" ]]; then
export UNH_PASSAGE=1
echo abcde bad_proc_number
fi
EOF
chmod 754 ./ps
PATH=.:$PATH ./unhide-linux -v quick