idb 2.7 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +6 -33
- data/lib/gui/images/iphone.ico +0 -0
- data/lib/idb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c98c1c9430c126e41dfc041346dedb07aab04e4
|
|
4
|
+
data.tar.gz: 5d7a887e9ba1376a8c551129c814619e6e49d7e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3e13f69afede872054d9be0bc1130210f744c2a69e8110b66c33a0b92388b1076491e45f399a8cba672e81801b4e879134b4a8a0d0318564143f286a430e5a9
|
|
7
|
+
data.tar.gz: 88ea5bf02d1a45c696d0b05704a2c6c60060b6edbc9c2568ef151f162b4fa6c1ba26e2b7e2a23fb305be3839457e8e96c39c2f959562d41e5308a08cc190987b
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,50 +7,23 @@
|
|
|
7
7
|
|
|
8
8
|
idb is a tool to simplify some common tasks for iOS pentesting and research. Originally there was a command line version of the tool, but it is no longer under development so you should get the GUI version.
|
|
9
9
|
|
|
10
|
-
idb
|
|
10
|
+
**idb has a new homepage at http://www.idbtool.com All documentation and news are posted over there.**
|
|
11
11
|
|
|
12
|
-
## Installation
|
|
13
|
-
|
|
14
|
-
idb has some prerequisites. As it turns out, things like ruby and Qt are difficult to bundle into a stand-alone installer. While idb itself can easily be installed via Ruby Gems, you need to have some additional software first:
|
|
15
|
-
|
|
16
|
-
### 1. Prerequisites
|
|
17
|
-
#### 1.1 Ruby Environment
|
|
18
|
-
idb requires a valid ruby 1.9.3 or 2.1 installation and it is recommended to install the used ruby using [RVM](https://rvm.io/). **Ruby 2.0 does not work properly** due to issues with qtbindings.
|
|
19
|
-
|
|
20
|
-
**Important Note:** Shared library support is required! This is the default for many system rubies, but if you install a ruby via `rvm` or similar, you need to do one of the following:
|
|
21
|
-
* **Under `rvm` use `rvm install 2.1 --enable-shared` when installing ruby.**
|
|
22
|
-
* Under `ruby-install`/`chruby` use `-- --enable-shared` when installing ruby.
|
|
23
|
-
* Under `ruby-build`/`rbenv` with `ruby-build` use `CONFIGURE_OPTS=--enable-shared [command]` when installing Ruby.
|
|
24
12
|
|
|
25
|
-
|
|
26
|
-
* OS X: `brew install qt cmake usbmuxd libimobiledevice`
|
|
27
|
-
* Ubuntu: `apt-get install cmake libqt4-dev git-core libimobiledevice-utils libplist-utils usbmuxd libxml2-dev libsqlite3-dev -y`
|
|
28
|
-
|
|
29
|
-
### 2. Installing idb
|
|
30
|
-
#### 2.1 Production Use
|
|
31
|
-
* Install idb: `gem install idb`
|
|
32
|
-
* Run idb: `idb`
|
|
33
|
-
* Hooray!
|
|
13
|
+
## Installation
|
|
34
14
|
|
|
35
|
-
|
|
36
|
-
* Clone the repository `git clone https://github.com/dmayer/idb`
|
|
37
|
-
* `cd idb`
|
|
38
|
-
* `bundle install` (using the right ruby version)
|
|
39
|
-
* As for every ruby gem, the application code lives in the `lib` folder
|
|
40
|
-
* Run idb by calling `bundle exec rake run`
|
|
41
|
-
* Note: Running `bin/idb` directly won't work since it will not find the idb gem (or use the installed gem and not the checked out source code). Instead, the `rake` task runs idb in the current bundler environment where bundler supplies the gem from source.
|
|
15
|
+
See [installation instructions](http://www.idbtool.com/installation/) on idbtool.com.
|
|
42
16
|
|
|
43
17
|
|
|
44
18
|
## Usage
|
|
45
19
|
|
|
46
|
-
See the basic [manual and walk-through](
|
|
20
|
+
See the basic [manual and walk-through](http://www.idbtool.com/documentation/) to get started.
|
|
47
21
|
|
|
48
|
-
**New as of October 2014:** Idb now stores its configuration and temporary files in `~/.idb/`
|
|
49
22
|
|
|
50
23
|
## FAQ
|
|
51
24
|
|
|
52
|
-
|
|
53
|
-
|
|
25
|
+
See [FAQ](http://www.idbtool.com/faq/)
|
|
26
|
+
|
|
54
27
|
|
|
55
28
|
|
|
56
29
|
## Contributing
|
data/lib/gui/images/iphone.ico
CHANGED
|
Binary file
|
data/lib/idb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: idb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel A. Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|