Skip to content

Commit 06759bd

Browse files
authored
Updated serial checkers to include XAJ9 as a refurbished model. (#286)
* Updated serial checkers to include XAJ9 as a refurbished model. * Fixed the table. Oops. * Added korean serials for completeness sake.
1 parent 7ca6364 commit 06759bd

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

docs/_internal/serialNumberChecker.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@
1111
<option>XAJ1</option>
1212
<option>XAJ4</option>
1313
<option>XAJ7</option>
14+
<option>XAJ9</option>
1415
</optgroup>
1516
<optgroup label="XAK (Korea)">
1617
<option>XAK1</option>
18+
<option>XAK4</option>
19+
<option>XAK7</option>
20+
<option>XAK9</option>
1721
</optgroup>
1822
<optgroup label="Mariko (not hackable via software)">
1923
<option>XKW1</option>

docs/public/scripts/ssnc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ function initSerialChecker() {
99

1010
function checkSerial(s) {
1111
if (s.match(/^X[KJWT][JWCE]/)) return 'mariko';
12-
if (s.match(/^XAW[9]/)) return 'refurb';
13-
if (s.match(/^XAK[1]/)) return 'krmaybe';
12+
if (s.match(/^XA[JW][9]/)) return 'refurb';
13+
if (s.match(/^XAK[1479]/)) return 'krmaybe';
1414
if (s.match(/^HA[JKWE]/)) return 'switch2';
1515
if (!s.match(/^XA[JKW9][1479]/)) return 'invalid';
1616

docs/user_guide/getting_started.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ The following information is based on [this GBATemp thread](https://gbatemp.net/
5353
| XAJ1 | XAJ10000000000 to XAJ10020000000 | XAJ10020000000 to XAJ10030000000 | XAJ10030000000 and up |
5454
| XAJ4 | XAJ40000000000 to XAJ40044000000 | XAJ40044000000 to XAJ40083000000 | XAJ40083000000 and up |
5555
| XAJ7 | XAJ70000000000 to XAJ70040000000 | XAJ70040000000 to XAJ70050000000 | XAJ70050000000 and up |
56+
| XAJ9 | **N/A** | XAJ95000000000 and up | **N/A** |
5657
| XAK1 | **N/A** | XAK10000000000 and up | **N/A** |
58+
| XAK4 | **N/A** | XAK40000000000 and up | **N/A** |
59+
| XAK7 | **N/A** | XAK70000000000 and up | **N/A** |
60+
| XAK9 | **N/A** | XAK90000000000 and up | **N/A** |
5761

5862
If your serial number is not listed above, your device is not vulnerable to the fusee-gelee exploit.
5963

0 commit comments

Comments
 (0)