Change in pysim[master]: pySim-shell: add cardinfo command

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

dexter gerrit-no-reply at lists.osmocom.org
Fri Oct 15 13:31:32 UTC 2021


dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/25805 )


Change subject: pySim-shell: add cardinfo command
......................................................................

pySim-shell: add cardinfo command

It may sometimes be helpful to get a bit of general information about
the card. To sort out problems it sometomes helps to get an idea what
card type an ICCID pySim-shell pySim-shell has in memory.

Change-Id: If31ed17102dc0108e27a5eb0344aabaaf19b19f9
---
M pySim-shell.py
1 file changed, 11 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/05/25805/1

diff --git a/pySim-shell.py b/pySim-shell.py
index a0031a5..6ec6ae6 100755
--- a/pySim-shell.py
+++ b/pySim-shell.py
@@ -605,6 +605,17 @@
 		else:
 			raise ValueError("error: cannot authenticate, no adm-pin!")
 
+	def do_cardinfo(self, opts):
+		"""Display information about the currently inserted card"""
+		self._cmd.poutput("Card info:")
+		self._cmd.poutput(" Name: %s" % self._cmd.card.name)
+		self._cmd.poutput(" ICCID: %s" % self._cmd.iccid)
+		self._cmd.poutput(" Class-Byte: %s" % self._cmd.card._scc.cla_byte)
+		self._cmd.poutput(" Select-Ctrl: %s" % self._cmd.card._scc.sel_ctrl)
+		self._cmd.poutput(" AIDs:")
+		for a in self._cmd.card._aids:
+			print("  %s" % a)
+
 @with_default_category('ISO7816 Commands')
 class Iso7816Commands(CommandSet):
 	def __init__(self):

-- 
To view, visit https://gerrit.osmocom.org/c/pysim/+/25805
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: If31ed17102dc0108e27a5eb0344aabaaf19b19f9
Gerrit-Change-Number: 25805
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20211015/8998eeab/attachment.htm>


More information about the gerrit-log mailing list