Skip to content

Commit

Permalink
Streamlines iTunes Backup Browser
Browse files Browse the repository at this point in the history
  • Loading branch information
thehappydinoa committed Jan 8, 2018
1 parent 5723963 commit 73ed426
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ioscrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def input():
def itunes():
path = BACKUP_PATHS
devices = findHashes(path)
return render_template('itunes.html', devices=devices, numDevices=len(devices), path=path)
return render_template('itunes.html', devices=devices, numDevices=len(devices))


@app.route('/crack')
Expand Down
4 changes: 2 additions & 2 deletions templates/itunes.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% extends 'layout.html' %}
{% block body %}
<h1>Backups <small>{{numDevices}} Devices <small>{{path}}</small></small></h1>
<h1><i class="fa fa-music" aria-hidden="true"></i> iTunes Backups <small>{{numDevices}} Devices</small></h1>
<a class="btn btn-success" href="{{url_for('iTunesCrack')}}"><i class="fa fa-code" aria-hidden="true"></i> Crack All</a>
<hr />
<table class="table table-striped">
<tr>
<th>Name</th>
<th>UDID </th>
<th>Pin</th>
<th>Pin <i class="fa fa-unlock" aria-hidden="true"></i></th>
</tr>
{% for device in devices %}
<tr>
Expand Down

0 comments on commit 73ed426

Please sign in to comment.