mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
CHG: removed unused code.
FIX: moved some checks to make the script run a tad bit faster.
This commit is contained in:
parent
26b8f38b63
commit
9c09e006d6
1 changed files with 17 additions and 38 deletions
|
@ -30,9 +30,7 @@ Arguments:
|
||||||
-p : Use the precalc to find all keys
|
-p : Use the precalc to find all keys
|
||||||
-o : filename for the saved dumps
|
-o : filename for the saved dumps
|
||||||
]]
|
]]
|
||||||
|
local RANDOM = '20436F707972696768742028432920323031302041637469766973696F6E2E20416C6C205269676874732052657365727665642E20'
|
||||||
local HASHCONSTANT = '20436F707972696768742028432920323031302041637469766973696F6E2E20416C6C205269676874732052657365727665642E20'
|
|
||||||
|
|
||||||
local TIMEOUT = 2000 -- Shouldn't take longer than 2 seconds
|
local TIMEOUT = 2000 -- Shouldn't take longer than 2 seconds
|
||||||
local DEBUG = false -- the debug flag
|
local DEBUG = false -- the debug flag
|
||||||
local numBlocks = 64
|
local numBlocks = 64
|
||||||
|
@ -96,16 +94,6 @@ local function waitCmd()
|
||||||
return nil, "No response from device"
|
return nil, "No response from device"
|
||||||
end
|
end
|
||||||
|
|
||||||
local function computeCrc16(s)
|
|
||||||
local hash = core.crc16(utils.ConvertHexToAscii(s))
|
|
||||||
return hash
|
|
||||||
end
|
|
||||||
|
|
||||||
local function reverseCrcBytes(crc)
|
|
||||||
crc2 = crc:sub(3,4)..crc:sub(1,2)
|
|
||||||
return tonumber(crc2,16)
|
|
||||||
end
|
|
||||||
|
|
||||||
local function main(args)
|
local function main(args)
|
||||||
|
|
||||||
print( string.rep('--',20) )
|
print( string.rep('--',20) )
|
||||||
|
@ -146,10 +134,6 @@ local function main(args)
|
||||||
|
|
||||||
core.clearCommandBuffer()
|
core.clearCommandBuffer()
|
||||||
|
|
||||||
if 0x01 ~= result.sak then -- NXP MIFARE TNP3xxx
|
|
||||||
-- return oops('This is not a TNP3xxx tag. aborting.')
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Show tag info
|
-- Show tag info
|
||||||
print((' Found tag %s'):format(result.name))
|
print((' Found tag %s'):format(result.name))
|
||||||
|
|
||||||
|
@ -189,6 +173,8 @@ local function main(args)
|
||||||
local block1, err = waitCmd()
|
local block1, err = waitCmd()
|
||||||
if err then return oops(err) end
|
if err then return oops(err) end
|
||||||
|
|
||||||
|
local tmpHash = block0..block1..'%02x'..RANDOM
|
||||||
|
|
||||||
local key
|
local key
|
||||||
local pos = 0
|
local pos = 0
|
||||||
local blockNo
|
local blockNo
|
||||||
|
@ -221,20 +207,16 @@ local function main(args)
|
||||||
-- Block 0-7 not encrypted
|
-- Block 0-7 not encrypted
|
||||||
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
||||||
else
|
else
|
||||||
local base = ('%s%s%02x%s'):format(block0, block1, blockNo, HASHCONSTANT)
|
|
||||||
local baseStr = utils.ConvertHexToAscii(base)
|
|
||||||
local md5hash = md5.sumhexa(baseStr)
|
|
||||||
local aestest = core.aes(md5hash, blockdata)
|
|
||||||
|
|
||||||
local hex = utils.ConvertAsciiToBytes(aestest)
|
|
||||||
hex = utils.ConvertBytesToHex(hex)
|
|
||||||
|
|
||||||
-- blocks with zero not encrypted.
|
-- blocks with zero not encrypted.
|
||||||
if string.find(blockdata, '^0+$') then
|
if string.find(blockdata, '^0+$') then
|
||||||
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
||||||
else
|
else
|
||||||
|
local baseStr = utils.ConvertHexToAscii(tmpHash:format(blockNo))
|
||||||
|
local key = md5.sumhexa(baseStr)
|
||||||
|
local aestest = core.aes128_decrypt(key, blockdata)
|
||||||
|
local hex = utils.ConvertAsciiToBytes(aestest)
|
||||||
|
hex = utils.ConvertBytesToHex(hex)
|
||||||
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,hex)
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,hex)
|
||||||
io.write( blockNo..',')
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
@ -263,7 +245,6 @@ local function main(args)
|
||||||
|
|
||||||
print( string.rep('--',20) )
|
print( string.rep('--',20) )
|
||||||
|
|
||||||
|
|
||||||
local uid = block0:sub(1,8)
|
local uid = block0:sub(1,8)
|
||||||
local toytype = block1:sub(1,4)
|
local toytype = block1:sub(1,4)
|
||||||
local cardidLsw = block1:sub(9,16)
|
local cardidLsw = block1:sub(9,16)
|
||||||
|
@ -273,26 +254,24 @@ local function main(args)
|
||||||
|
|
||||||
-- Write dump to files
|
-- Write dump to files
|
||||||
if not DEBUG then
|
if not DEBUG then
|
||||||
local foo = dumplib.SaveAsBinary(bindata, outputTemplate..'_uid_'..uid..'.bin')
|
local foo = dumplib.SaveAsBinary(bindata, outputTemplate..'-'..uid..'.bin')
|
||||||
print(("Wrote a BIN dump to: %s"):format(foo))
|
print(("Wrote a BIN dump to: %s"):format(foo))
|
||||||
local bar = dumplib.SaveAsText(emldata, outputTemplate..'_uid_'..uid..'.eml')
|
local bar = dumplib.SaveAsText(emldata, outputTemplate..'-'..uid..'.eml')
|
||||||
print(("Wrote a EML dump to: %s"):format(bar))
|
print(("Wrote a EML dump to: %s"):format(bar))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
print( string.rep('--',20) )
|
||||||
|
-- Show info
|
||||||
|
|
||||||
local item = toys.Find(toytype, subtype)
|
local item = toys.Find(toytype, subtype)
|
||||||
if item then
|
if item then
|
||||||
local itemStr = ('%s - %s (%s)'):format(item[6],item[5], item[4])
|
print((' ITEM TYPE : %s - %s (%s)'):format(item[6],item[5], item[4]) )
|
||||||
print(' ITEM TYPE : '..itemStr )
|
|
||||||
else
|
else
|
||||||
print((' ITEM TYPE : 0x%s 0x%s'):format(toytype, subtype))
|
print((' ITEM TYPE : 0x%s 0x%s'):format(toytype, subtype))
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Show info
|
|
||||||
print( (' Alter ego / traptype : 0x%s'):format(traptype) )
|
|
||||||
print( (' UID : 0x%s'):format(uid) )
|
print( (' UID : 0x%s'):format(uid) )
|
||||||
print( (' CARDID : 0x%s'):format(cardid ) )
|
print( (' CARDID : 0x%s'):format(cardid ) )
|
||||||
|
|
||||||
print( string.rep('--',20) )
|
print( string.rep('--',20) )
|
||||||
|
|
||||||
end
|
end
|
||||||
main(args)
|
main(args)
|
Loading…
Add table
Add a link
Reference in a new issue