-
Notifications
You must be signed in to change notification settings - Fork 4
/
install_pentest_iOS_env.sh
executable file
·77 lines (59 loc) · 2.04 KB
/
install_pentest_iOS_env.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
#!/bin/sh
# lun jun 30 18:03:10 CEST 2014
# Install pentesting tools on an ios device
# dpkg -l | grep -q openssh \
# || { echo "[!] INSTALL OpenSSH"; exit 1; }
# dpkg -l | grep -q bigbosshackertools \
# || { echo "[!] INSTALL Big Boss Recommended Tools"; exit 1; }
apps_needed="openssh bigbosshackertools"
for app in $apps_needed; do
dpkg -l | grep -q $app || {
echo "[!] INSTALL $app before start"
exit 1
}
done
# --- repositories ----------------------------------------------------------
repodir="/etc/apt/sources.list.d"
echo "[*] Adding repos $repo"
# snoopit
echo "deb http://repo.nesolabs.de/ ./" > $repodir/neso.list
# dumpdecrypted
echo "deb http://DJHartley.myrepospace.com ./" > $repodir/djhartley.list
# perl
echo "deb http://coredev.nl/cydia iphone main" > $repodir/coredev.nl.list
# theos
echo "deb http://nix.howett.net/theos ./" > $repodir/howett.net.list
# --- install apps ----------------------------------------------------------
apt-get update
# development
apt-get install org.coolstar.iostoolchain
apt-get install org.coolstar.cctools
apt-get install com.bigboss.20toolchain
#apt-get install net.howett.theos
apt-get install --yes net.howett.theos
# programming languages
apt-get install python
apt-get install file
apt-get install perl
# system utils
apt-get install com.slugrail.ipainstaller
apt-get install com.myrepospace.DJHartley.dumpdecrypted
apt-get install mobileterminal
# command line utils
apt-get install bash
apt-get install adv-cmds
apt-get install com.ericasadun.utilities
# networking
apt-get install tcpdump
# keychain_dumper
wget --no-check-certificate \
https://github.com/ptoomey3/Keychain-Dumper/raw/master/keychain_dumper \
-O /usr/bin/keychain_dumper \
&& chmod +x /usr/bin/keychain_dumper
# dumpdecrypted
# https://github.com/iMokhles/DumpDecrypted7
# git clone https://github.com/stefanesser/dumpdecrypted.git
# class-dump-z
wget --no-check-certificate \
http://networkpx.googlecode.com/files/class-dump-z_0.2-0.tar.gz