mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
Made requested changes -- I think
This commit is contained in:
parent
5ccc749f23
commit
0579b8f63c
4 changed files with 49 additions and 9 deletions
|
@ -1,3 +1,18 @@
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# See LICENSE.txt for the text of the license.
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
# Default standalone if no standalone specified
|
# Default standalone if no standalone specified
|
||||||
DEFAULT_STANDALONE=LF_SAMYRUN
|
DEFAULT_STANDALONE=LF_SAMYRUN
|
||||||
HELP_EXAMPLE_STANDALONE=LF_SAMYRUN
|
HELP_EXAMPLE_STANDALONE=LF_SAMYRUN
|
||||||
|
@ -47,7 +62,7 @@ define KNOWN_STANDALONE_DEFINITIONS
|
||||||
| HF_14ASNIFF | 14a sniff to flashmem |
|
| HF_14ASNIFF | 14a sniff to flashmem |
|
||||||
| (RDV4 only) | |
|
| (RDV4 only) | |
|
||||||
+----------------------------------------------------------+
|
+----------------------------------------------------------+
|
||||||
| HF_15693SNIFF | 15693 sniff to flashmem |
|
| HF_15SNIFF | 15693 sniff to flashmem |
|
||||||
| (RDV4 only) | |
|
| (RDV4 only) | |
|
||||||
+----------------------------------------------------------+
|
+----------------------------------------------------------+
|
||||||
| HF_AVEFUL | Mifare ultralight read/simulation |
|
| HF_AVEFUL | Mifare ultralight read/simulation |
|
||||||
|
|
|
@ -1,4 +1,20 @@
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# See LICENSE.txt for the text of the license.
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
# Generic standalone Mode injection of source code
|
# Generic standalone Mode injection of source code
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
SRC_STANDALONE = placeholder.c
|
SRC_STANDALONE = placeholder.c
|
||||||
# WITH_STANDALONE_LF_SKELETON
|
# WITH_STANDALONE_LF_SKELETON
|
||||||
|
@ -41,9 +57,9 @@ endif
|
||||||
ifneq (,$(findstring WITH_STANDALONE_HF_14ASNIFF,$(APP_CFLAGS)))
|
ifneq (,$(findstring WITH_STANDALONE_HF_14ASNIFF,$(APP_CFLAGS)))
|
||||||
SRC_STANDALONE = hf_14asniff.c
|
SRC_STANDALONE = hf_14asniff.c
|
||||||
endif
|
endif
|
||||||
# WITH_STANDALONE_HF_15693SNIFF
|
# WITH_STANDALONE_HF_15SNIFF
|
||||||
ifneq (,$(findstring WITH_STANDALONE_HF_15693SNIFF,$(APP_CFLAGS)))
|
ifneq (,$(findstring WITH_STANDALONE_HF_15SNIFF,$(APP_CFLAGS)))
|
||||||
SRC_STANDALONE = hf_15693sniff.c
|
SRC_STANDALONE = hf_15sniff.c
|
||||||
endif
|
endif
|
||||||
# WITH_STANDALONE_HF_AVEFUL
|
# WITH_STANDALONE_HF_AVEFUL
|
||||||
ifneq (,$(findstring WITH_STANDALONE_HF_AVEFUL,$(APP_CFLAGS)))
|
ifneq (,$(findstring WITH_STANDALONE_HF_AVEFUL,$(APP_CFLAGS)))
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright 2021 Nathan Glaser <startrk1995@gmail.com>
|
// Copyright (C) Nathan Glaser, 2021
|
||||||
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
||||||
//
|
//
|
||||||
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
// This program is free software: you can redistribute it and/or modify
|
||||||
// at your option, any later version. See the LICENSE.txt file for the text of
|
// it under the terms of the GNU General Public License as published by
|
||||||
// the license.
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
// See LICENSE.txt for the text of the license.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// main code for standalone HF/iso15693 Sniff to flash
|
// main code for standalone HF/iso15693 Sniff to flash
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
|
@ -113,7 +113,7 @@ Here are the supported values you can assign to `STANDALONE` in `Makefile.platfo
|
||||||
| LF_SKELETON | standalone mode skeleton - Iceman1001
|
| LF_SKELETON | standalone mode skeleton - Iceman1001
|
||||||
| LF_THAREXDE | LF EM4x50 simulator/read standalone mode - tharexde
|
| LF_THAREXDE | LF EM4x50 simulator/read standalone mode - tharexde
|
||||||
| HF_14ASNIFF | 14a sniff storing to flashmem - Micolous
|
| HF_14ASNIFF | 14a sniff storing to flashmem - Micolous
|
||||||
| HF_15693SNIFF | 15693 sniff storing to flashmem - Glaser
|
| HF_15SNIFF | 15693 sniff storing to flashmem - Glaser
|
||||||
| HF_AVEFUL | MIFARE Ultralight read/simulation - Ave Ozkal
|
| HF_AVEFUL | MIFARE Ultralight read/simulation - Ave Ozkal
|
||||||
| HF_BOG | 14a sniff with ULC/ULEV1/NTAG auth storing in flashmem - Bogito
|
| HF_BOG | 14a sniff with ULC/ULEV1/NTAG auth storing in flashmem - Bogito
|
||||||
| HF_CRAFTBYTE | UID stealer - Emulates scanned 14a UID - Anze Jensterle
|
| HF_CRAFTBYTE | UID stealer - Emulates scanned 14a UID - Anze Jensterle
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue