Skip to content

Commit 8f531f8

Browse files
committed
(feat) force keychain flags
1 parent bf4d010 commit 8f531f8

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

objection/commands/ios/keychain.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,18 @@ def remove(args: list) -> None:
149149
account = _get_flag_value(args, '--account')
150150
service = _get_flag_value(args, '--service')
151151

152+
if not account or not service:
153+
click.secho('Either --account or --service is not set. We need both', bold=True)
154+
return
155+
152156
click.secho('Removing entry from the iOS keychain...', dim=True)
153157
click.secho('Account: {0}'.format(account), dim=True)
154158
click.secho('Service: {0}'.format(service), dim=True)
155159

156160
api = state_connection.get_api()
157161
api.ios_keychain_remove(account, service);
158162
click.secho('Successfully removed matching keychain items', fg='green')
159-
163+
160164

161165
def update(args: list) -> None:
162166
"""
@@ -168,17 +172,22 @@ def update(args: list) -> None:
168172

169173
account = _get_flag_value(args, '--account')
170174
service = _get_flag_value(args, '--service')
171-
newData = _get_flag_value(args, '--newData')
175+
newdata = _get_flag_value(args, '--newdata')
176+
177+
if not account or not service or not newdata:
178+
click.secho('All flags need to be set, incl. --account, --service and --newdata')
179+
return
172180

173181
click.secho('Updating entries from the iOS keychain...', dim=True)
174182
click.secho('Account: {0}'.format(account), dim=True)
175183
click.secho('Service: {0}'.format(service), dim=True)
176-
click.secho('New Data: {0}'.format(newData), dim=True)
184+
click.secho('New Data: {0}'.format(newdata), dim=True)
177185

178186
api = state_connection.get_api()
179-
api.ios_keychain_update(account, service, newData);
187+
api.ios_keychain_update(account, service, newdata)
180188
click.secho('Successfully updated matching keychain item', fg='green')
181-
189+
190+
182191
def add(args: list) -> None:
183192
"""
184193
Adds a new kSecClassGenericPassword keychain entry to the keychain
@@ -189,7 +198,7 @@ def add(args: list) -> None:
189198

190199
if not _data_flag_has_identifier(args):
191200
click.secho('When specifying the --data flag, either --account or '
192-
'--server should also be added', fg='red')
201+
'--service should also be added', fg='red')
193202
return
194203

195204
account = _get_flag_value(args, '--account')

0 commit comments

Comments
 (0)