mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
update licence for proxmark submission
This commit is contained in:
parent
55f8e6ed4b
commit
f85fbe7120
1 changed files with 21 additions and 16 deletions
|
@ -1,28 +1,34 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Revision log:
|
# Revision log & Licence
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
'''
|
'''
|
||||||
1.1.0 - BC - Major refactor
|
1.2.0 - BC - Proxmark3 Submission
|
||||||
1.0.0 - BC - Initial release
|
|
||||||
'''
|
'''
|
||||||
script_ver = "1.1.0"
|
script_ver = "1.2.0"
|
||||||
|
|
||||||
'''
|
'''
|
||||||
This was originally created for my local defcon chapter to aid teaching NFC.
|
Copyright @csBlueChip
|
||||||
We wanted a realistic challenge which could NOT be resolved by typing `autopwn`.
|
|
||||||
Enter FM11RF08S tags ... which (currently) don't get autopwn'ed.
|
|
||||||
|
|
||||||
We decided the flag would be: The MD5 of the card data,
|
This program is free software: you can redistribute it and/or modify
|
||||||
but this had to include all 8 documented Dark blocks AND all 32+2=34 Keys.
|
it under the terms of the GNU General Public License as published by
|
||||||
Not rocket surgery if you know what you're doing, but non-trivial for someone
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
who is still struggling to spell `autoporn` <-- yes, this happened!
|
(at your option) any later version.
|
||||||
|
|
||||||
Ultimately we needed a tool by which to demo everything.
|
This program is distributed in the hope that it will be useful,
|
||||||
This is it; and this is me proffering it to the wider community.
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
BlueChip
|
See LICENSE.txt for the text of the license.
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
The original version of this script can be found at:
|
||||||
|
https://github.com/csBlueChip/Proxmark_Stuff/tree/main/MiFare_Docs/Fudan_RF08(S)/PM3_Script
|
||||||
|
The original version is released with an MIT Licence.
|
||||||
|
Or please reach out to me [BlueChip] personally for alternative licenses.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
@ -85,8 +91,7 @@ def main():
|
||||||
parseCli()
|
parseCli()
|
||||||
|
|
||||||
print(f"{prompt} Fudan FM11RF08[S] full card recovery")
|
print(f"{prompt} Fudan FM11RF08[S] full card recovery")
|
||||||
print(f"{prompt} (C)Copyright BlueChip 2024")
|
print(f"{prompt} (C)Copyright BlueChip, Nov/2024")
|
||||||
print(f"{prompt} Licence: MIT (\"Free as in free.\")")
|
|
||||||
|
|
||||||
print(prompt)
|
print(prompt)
|
||||||
print(f"{prompt} Dump folder: {dpath}")
|
print(f"{prompt} Dump folder: {dpath}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue