You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the latest addition of a `client/resources/pm3_generic_private_key.pem` file anyone with a modified Proxmark3 device with SPI eeprom now can add a self signed signature.
128
+
129
+
130
+
To verify the private key pem file
131
+
```
132
+
cd client/resources/
133
+
sha512sum -c pm3_generic_private_key.sha512.txt
134
+
135
+
pm3_generic_private_key.pem: OK
136
+
```
137
+
138
+
Looking at current SPI eeprom information, run
139
+
```
140
+
mem info
141
+
mem info -v
142
+
```
143
+
144
+
Create a signature using the new generic private key, run
145
+
```
146
+
mem info -s -p client/resources/pm3_generic_private_key.pem
147
+
```
148
+
149
+
Create a signature using the new generic private key and write it to the Proxmark3 device, run
150
+
***DANGEROUS*** This will overwrite any current signature. Make sure you backup your current signature before by following instructions: [backup first!](#backup-first)
151
+
```
152
+
mem info -s -p client/resources/pm3_generic_private_key.pem -w
0 commit comments