-
Notifications
You must be signed in to change notification settings - Fork 14
/
build
executable file
·265 lines (218 loc) · 7.34 KB
/
build
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
LOGFILE="${DIR}/build.log"
CC="gcc"
LDFLAGS="-lnet -lpcap"
CFLAGS="-g -O2 -D_BSD_SOURCE -DHAVE_SOCKADDR_SA_LEN -DLIBNET_BSDISH_OS\
-DLIBNET_BSD_BYTE_SWAP"
LIBPCAP="/usr/local/opt/libpcap"
LIBNET="/usr/local/opt/libnet"
SRCS="arpspoof.c arp.c"
BIN_PREFIX=
copy(){
agree=""
# Print copy information
cat <<'COPY'
macOS build script for arpspoof of dsniff
Copyright (c) 2017 Marcus Zhou <other.marcus@icloud.com>
Binaries compiled by this script should be used under the restrictions
of local laws. The author of this script will not take any
responsibilities on the consequences caused by the end users nor any
other redistributors.
arpspoof
Redirect packets from a target host (or from all hosts) intended for
another host on the LAN to ourselves.
Copyright (c) 1999, 2000 Dug Song <dugsong@monkey.org>
All rights reserved, all wrongs reversed.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
COPY
printf "[*] I agree to the terms and conditions: (yes/no) "
read agree
if [ ! "$agree" == "yes" ] && [ ! "$agree" == "y" ]; then
echo "[!] You must agree to continue using this script"
exit 1
fi
}
b_log(){
echo "$(date) $1" >> $LOGFILE
}
log(){
if [ ! -z "$2" ]; then
echo "[$2] $1"
else
echo "[*] $1"
fi
b_log $1
}
usage(){
cat <<USAGE
macOS build script for arpspoof of dsniff
Copyright (c) 2017 Marcus Zhou <other.marcus@icloud.com>
Binaries compiled by this script should be used under the restrictions
of local laws. The author of this script will not take any
responsibilities on the consequences caused by the end users nor any
other redistributors.
Usage: $0 <build|help|install|uninstall>
build [cc] Compile all the sources with gcc or given [cc], the
script will try to install all the dependencies using
Homebrew
help Print available options
install [place] Install the compiled binaries to /usr/local/bin or
the given [place] directory
uninstall Uninstall the compiled binaries
USAGE
}
build_deps(){
hb_cli=$(which brew)
if [ -z "$hb_cli" ]; then
log "Unable to locate Homebrew" "!"
log "The script is using Homebrew to install all the dependencies"
log "Please follow the instruction on http://brew.sh to install Homebrew"
exit 1
fi
log "Updating Homebrew..."
"$hb_cli" "update" >> $LOGFILE 2>&1 0>&1
log "Searching for dependencies..."
if [ ! -d "$LIBPCAP" ]; then
log "Installing libpcap..."
"$hb_cli" "install" "homebrew/dupes/libpcap" >> $LOGFILE 2>&1 0>&1
if [ $? -ne 0 ] || [ ! -d "$LIBPCAP" ]; then
log "Unable to install libpcap, check the $LOGFILE for more information"
exit 1
fi
fi
if [ ! -d "$LIBNET" ]; then
log "Installing libnet..."
"$hb_cli" "install" "libnet" >> $LOGFILE 2>&1 0>&1
if [ $? -ne 0 ] || [ ! -d "$LIBNET" ]; then
log "Unable to install libnet, check the $LOGFILE for more information"
exit 1
fi
fi
}
compile(){
log "Compiling..."
b_log "Using CC: ${CC}"
b_log "CFLAGS: ${CFLAGS}"
b_log "LDFLAGS: ${LDFLAGS}"
b_log "LIBPCAP: ${LIBPCAP}"
b_log "LIBNET: ${LIBNET}"
b_log "Source Files: ${SRCS}"
${CC} ${CFLAGS} "-I${LIBPCAP}/include" "-I${LIBNET}/include" ${SRCS} \
"-L${LIBPCAP}/lib" "-L${LIBNET}/lib" ${LDFLAGS} -o arpspoof >> $LOGFILE \
2>&1 0>&1
res=$?
log "Cleaning up..."
rm -rf *dSYM
if [ $res -eq 0 ]; then
log "Succeed, now run '$0 install' to install the compiled executables"
else
log "Compile unsuccessful. Compiler returns: $res" "!"
exit 1
fi
}
install(){
cat <<'COPY'
macOS build script for arpspoof of dsniff
Copyright (c) 2017 Marcus Zhou <other.marcus@icloud.com>
Binaries compiled by this script should be used under the restrictions
of local laws. The redistributor of the sources under this directory
will not take any responsibilities on the consequences caused by the end
users nor any other redistributors.
By running this script, you agree to the terms and conditions stated.
COPY
log "Installing..."
if [ ! -z "$BIN_PREFIX" ]; then
log "Installing to $BIN_PREFIX..."
cp arpspoof "$BIN_PREFIX/arpspoof" >> $LOGFILE 2>&1 0>&1
if [ $? -eq 0 ]; then
echo "$BIN_PREFIX/arpspoof" >> "${DIR}/installed"
log "Succeed"
else
log "Unable to install, check '$LOGFILE' for more information" "!"
fi
else
cp arpspoof.8 /usr/local/share/man/man8 >> $LOGFILE 2>&1 0>&1 && \
cp arpspoof /usr/local/bin >> $LOGFILE 2>&1 0>&1
if [ $? -eq 0 ]; then
log "Succeed"
else
log "Unable to install, check '$LOGFILE' for more information" "!"
fi
fi
}
uninstall(){
cat <<'COPY'
macOS build script for arpspoof of dsniff
Copyright (c) 2017 Marcus Zhou <other.marcus@icloud.com>
Binaries compiled by this script should be used under the restrictions
of local laws. The redistributor of the sources under this directory
will not take any responsibilities on the consequences caused by the end
users nor any other redistributors.
By running this script, you agree to the terms and conditions stated.
COPY
log "Uninstalling..."
if [ -f "${DIR}/installed" ]; then
INSTALLED_PLACES=( $(cat "${DIR}/installed") )
echo > "${DIR}/installed"
for f in "${INSTALLED_PLACES[@]}"; do
log "Uninstalling $f"
rm -f "$f" >> $LOGFILE 2>&1 0>&1
if [ $? -ne 0 ]; then
log "Unable to remove '$f', check '$LOGFILE' for more information" "!"
echo $f >> "${DIR}/installed"
fi
done
fi
rm -f /usr/local/share/man/man8/arpspoof.8 >> $LOGFILE 2>&1 0>&1 && \
rm -f /usr/local/bin/arpspoof >> $LOGFILE 2>&1 0>&1
if [ $? -eq 0 ]; then
log "Succeed"
else
log "Unable to uninstall, check '$LOGFILE' for more information" "!"
fi
}
case $1 in
build)
if [ ! -z "$2" ]; then
CC="$2"
fi
copy
build_deps
compile
;;
install)
if [ ! -z "$2" ]; then
BIN_PREFIX="$2"
fi
install
;;
uninstall)
uninstall
;;
help)
usage
;;
*)
usage
;;
esac