Category Archives: Simple Repairs

Motorola Mototrbo TRBOnet TextMessenger (download)

Latest version – allow sending text messages / files to Motorola Mototrbo radios.

Polish T2 Tactical VHF Manpack Two Way Radio

Programming Tutorial:

Technical Instruction + Schematics (digitalised by Henri call sign: OH6CMM )

NSS6000 Linksys Cisco NAS Server U1 Rack – Firmware Update + Discovery Tool + Recovery

Start update from oldest to newest (if You try latest it will fail as corrupted – most like they change way of signing image and it fail check if trying update latest)

[Mac Monterey / Brew] keep showing (using) wrong (old) version of NPM / Node – when trying to reinstall / link – say it’s already done!

Today I have quite funny experience, I tried update node & npm to newest version but i get information it is already installed.

brew unlink node && brew link node
Unlinking /usr/local/Cellar/node/17.4.0… 7 symlinks removed.
Linking /usr/local/Cellar/node/17.4.0… 7 symlinks created.

trying check version show wrong one

npm -v
6.14.15
node -v
v12.22.9

I tried everything, from uninstalling, brew cleanup, link, relink, overwrite – without success.

Solution, edit file (in homedirectory):

.zshrc

In content locate & remove line:

export PATH="/usr/local/opt/node@12/bin:$PATH"

After removing restart computer and confirm correct version of node

npm -v
8.3.1
node -v
v17.4.0

Mission successful

APT-GET An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://repo.mysql.com/apt/ubuntu focal InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29

An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://repo.mysql.com/apt/ubuntu focal InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29

Solution

sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys 467B942D3A79BD29

If “467B942D3A79BD29” is different – just change it for value from error message.

WordPress REST API – when calling return VALID JSON but it fail to decode in PHP (AKA UTF-8 BOM \ufeff)

Quite interesting story, we have website running WordPress with two noticed problems:

  • After making call to REST API it return valid JSON response (debugged in Postman) but when trying raw json_decode in PHP it fail.
  • In PHP, after echoing (readfile) random file into client (wget), SHA1 sum of file on server and downloaded does NOT match, but content of downloaded file is exactly the same (tested via FileMerge)
  • Opening downloaded file in PHPStorm does not reveal any special characters in downloaded or original file

Trying this malformed CURL command reveal hidden from naked eye problem.

curl -d "auth=something" -X POST https://somewebsite.com/index.php\?rest_route\=/plugin/route/test --trace-ascii --

CURL pass raw output to terminal, terminal report unknown command (code was only used to diagnose) it’s malformed and sould not be used since it can execute arbitrary code!!!!

In front of JSON data there is UTF-8 BOM code (\ufeff) (it’s being ignored by most of application but not all, it should never be present in JSON response since encoding is send in HTTP header – some code is ignoring it, some will fail on decode JSON and thread it as invalid syntax.

When we know what to look for, we need scan all PHP files on server and locate ( 0xEF, 0xBB, 0xBF ) string in root website directory using following command:

grep -rlI $’\xEF\xBB\xBF’ .

From result ignore anything that is not .PHP since those files can have BOM and not directly parsed via PHP interpreter.

Download those PHP file and examine with “HexEditor” reveal BOM before PHP code that is being send along ANY content served from PHP.

Cleaning file from “BOM” mark (on MAC):

 sed $’1s/\xef\xbb\xbf//’ < in8sync-customization.php > clean-in8sync-customization.php

Compare two files together to make sure only BOM is removed.

Upload cleaned file in original location and repeat process if there is more than one. Be happy fixing unusual issue!!

Code Master CWR-610E CW/RTTY decoder – ROM DUMP

Here is dump of ROM (in case You have broken unit, You can reprogram this ROM using generic IC)

Windows 98 USB Storage Driver (universal flash / pendrive )

Generic universal driver for all pendrives / flash storage devices.

Tested on Windows 98 SE


Warning: Undefined array key 0 in /www/wwwroot/electronicnoobblog.com/wp-content/plugins/wp-google-analytics-scripts/wp-google-analytics-scripts.php on line 602