aboutsummaryrefslogtreecommitdiffstats
path: root/pySim-prog.py
AgeCommit message (Collapse)AuthorFilesLines
2018-01-11Make derive_milenage_opc and calculate_luhn publicly available through utils.pyAlexander Chemeris1-19/+1
Change-Id: I2effc85fd55da0981de0ada74dcb28b7e8e56a01
2018-01-10pySim-prog: Replace magic numbers with a readable EF file name.Alexander Chemeris1-1/+1
Change-Id: Ibda7d5a4132971e884f6d760baf20cd33025a2af
2018-01-10pySim-prog: ADM code can be longer 8 digits, it's implementation specific.Alexander Chemeris1-4/+3
E.g. Fairwaves SIM cards have longer ADM codes. Change-Id: I87d61764eeba4bcf7525ee4778cb8f244930db9b
2018-01-10Fix comment: Ki -> OPCAlexander Chemeris1-1/+1
Change-Id: I566cf7bc658c730b4381c0f145bfc4f805cca42a
2017-12-29pySim-prog.py: Fix trailing whitespacePau Espin Pedrol1-1/+0
Change-Id: I735dc7bb774d77d3b60b1712b0f0afcbb81dc726
2017-12-29pySim-*.py: Set shebang to use python v2Pau Espin Pedrol1-1/+1
Nowadays bin/python usually points to python3, and this script is written in python2, which means if run directly from terminal it will fail with some print syntax errors. Change-Id: I6ab4e9edc44a8045915d4828c6de2fa98027fb7e
2016-05-22re-program: Instead of specifying the IMSI, read it from the card.Holger Hans Peter Freyther1-6/+16
2015-08-20Add PIN-ADM argument to the command lineJan Balke1-1/+13
Allow overwriting the default PIN-ADM set in the card implementation.
2015-08-20Introduce a '--dry-run' option to skip actual card accessHarald Welte1-21/+31
This can be used for example to batch convert from CSV input to HLR output without writing cards.
2015-08-20read_params_csv: Make sure we don't end up in endless loopHarald Welte1-7/+13
as a side effect, the first line is now specified with '-j 0' and not '-j 1'
2015-08-20pySim-prog: Add mode where it can re-generate a card from CSVHarald Welte1-5/+54
Rather than just having the capability of writing to CSV, it now has the capability to (re)write a card based on data from the CSV: ./pySim-prog.py -S csv --read-csv /tmp/sim.csv -i 901701234567890 or in batch mode (from the first line onwards): ./pySim-prog.py -S csv --read-csv /tmp/sim.csv --batch -j 1
2015-08-20split parameter writing for CSV and SQL into separate functionsHarald Welte1-2/+7
2013-07-02Implement setting of EF.ACC file in GrcardSim and _MagicSimBaseAlexander Chemeris1-0/+16
From: Alexander Chemeris <Alexander.Chemeris@gmail.com> Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2012-03-22usim/opc: Derive OPC from KI and OPHolger Hans Peter Freyther1-1/+18
2012-03-22usim/opc: Add support to write completely random OPCHarald Welte1-1/+17
Allow to set the OPC, write it out to the state, generate it randomly.
2011-12-10pySim-prog: Fix SMSC 'number type' field to 0x81Sylvain Munaut1-1/+1
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2011-12-08Fix computation of SMSP from a SMSC numberSylvain Munaut1-5/+30
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2011-12-08Whitespace fixesSylvain Munaut1-2/+2
2011-12-08correctly compute the ICCID (19 digits, including luhn checksum)Harald Welte1-4/+11
2011-11-22pySim-prog.py: pyflakes doesn't find Importerror..Holger Hans Peter Freyther1-1/+1
Importerror -> ImportError, spotted by pyflakes.
2010-12-23pySim-prog: Fix insertion of Ki in HLR. Need to escape like DBI does itSylvain Munaut1-1/+34
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-23pySim-prog: Fix crash when using manuam imsi/iccid/kcSylvain Munaut1-1/+2
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-23pySim-prog: Check that batch mode is used with auto parametersSylvain Munaut1-0/+4
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-09pySim-prog: Change logic to support batch programmingSylvain Munaut1-29/+129
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-09transport: Change transport api to allow for wait_for_card/connect/disconnectSylvain Munaut1-0/+3
This way, we can re-use the same transport parameters for several cards for a future batch mode Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-08pySim-prog: Fix pcsc device selection and link creationSylvain Munaut1-2/+2
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-08pySim-prog: Add options to save generated parameters to CVS or OpenBSC HLRSylvain Munaut1-0/+51
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-08pySim-prog: Show default for mnc in help modeSylvain Munaut1-1/+1
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-08pySim-prog: Group option for serial (dev & baud) togetherSylvain Munaut1-4/+4
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-12-07Split all things into a more "library-like" packageSylvain Munaut1-0/+288
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>