-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathlistApps.py
More file actions
84 lines (72 loc) · 2.67 KB
/
Copy pathlistApps.py
File metadata and controls
84 lines (72 loc) · 2.67 KB
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
"""
*******************************************************************************
* Ledger Blue
* (c) 2016 Ledger
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************
"""
import argparse
def get_argparser():
parser = argparse.ArgumentParser(description="List all apps on the device.")
parser.add_argument(
"--targetId",
help="The device's target ID (default is Ledger Blue)",
type=auto_int,
default=0x31000002,
)
parser.add_argument(
"--rootPrivateKey",
help="""The Signer private key used to establish a Secure Channel
(otherwise, a random one will be generated)""",
)
parser.add_argument("--apdu", help="Display APDU log", action="store_true")
parser.add_argument(
"--deployLegacy", help="Use legacy deployment API", action="store_true"
)
parser.add_argument(
"--scp", help="Use a secure channel to list applications", action="store_true"
)
return parser
def auto_int(x):
return int(x, 0)
if __name__ == "__main__":
from .ecWrapper import PrivateKey
from .comm import getDongle
from .deployed import getDeployedSecretV1, getDeployedSecretV2
from .hexLoader import HexLoader
import binascii
args = get_argparser().parse_args()
dongle = getDongle(args.apdu)
if args.scp:
if args.rootPrivateKey is None:
privateKey = PrivateKey()
publicKey = binascii.hexlify(privateKey.pubkey.serialize(compressed=False))
print("Generated random root public key : %s" % publicKey)
args.rootPrivateKey = privateKey.serialize()
if args.deployLegacy:
secret = getDeployedSecretV1(
dongle, bytearray.fromhex(args.rootPrivateKey), args.targetId
)
else:
secret = getDeployedSecretV2(
dongle, bytearray.fromhex(args.rootPrivateKey), args.targetId
)
else:
secret = None
loader = HexLoader(dongle, 0xE0, args.scp, secret)
apps = loader.listApp()
while len(apps) != 0:
print(apps)
apps = loader.listApp(False)
dongle.close()