Skip to content

Commit 73ed426

Browse files
committed
Streamlines iTunes Backup Browser
1 parent 5723963 commit 73ed426

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ioscrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def input():
9999
def itunes():
100100
path = BACKUP_PATHS
101101
devices = findHashes(path)
102-
return render_template('itunes.html', devices=devices, numDevices=len(devices), path=path)
102+
return render_template('itunes.html', devices=devices, numDevices=len(devices))
103103

104104

105105
@app.route('/crack')

templates/itunes.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% extends 'layout.html' %}
22
{% block body %}
3-
<h1>Backups <small>{{numDevices}} Devices <small>{{path}}</small></small></h1>
3+
<h1><i class="fa fa-music" aria-hidden="true"></i> iTunes Backups <small>{{numDevices}} Devices</small></h1>
44
<a class="btn btn-success" href="{{url_for('iTunesCrack')}}"><i class="fa fa-code" aria-hidden="true"></i> Crack All</a>
55
<hr />
66
<table class="table table-striped">
77
<tr>
88
<th>Name</th>
99
<th>UDID </th>
10-
<th>Pin</th>
10+
<th>Pin <i class="fa fa-unlock" aria-hidden="true"></i></th>
1111
</tr>
1212
{% for device in devices %}
1313
<tr>

0 commit comments

Comments
 (0)