mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-04-25 13:52:08 +00:00
Device clocks on MeshCore nodes are wildly inaccurate (off by hours or epoch-near values like 4). The channel messages endpoint was using sender_timestamp as part of the deduplication key, which could cause messages to fail deduplication or incorrectly collide. Changed dedupe key from sender:timestamp to sender:hash, which is the correct unique identifier for a transmission. Also added TIMESTAMP-AUDIT.md documenting all device timestamp usage.
64 lines
1.6 KiB
JSON
Executable File
64 lines
1.6 KiB
JSON
Executable File
{
|
|
"name": "meshcore-hashtag-cracker",
|
|
"version": "1.11.0",
|
|
"description": "MeshCore hashtag GroupText packet brute-forcer with WebGPU acceleration and dictionary attacks",
|
|
"author": "Jack Kingsman",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./wordlist": {
|
|
"import": "./dist/wordlist.js",
|
|
"types": "./dist/wordlist.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"browser",
|
|
"README.md",
|
|
"LICENSE.md"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jkingsman/meshcore-hashtag-cracker.git"
|
|
},
|
|
"homepage": "https://github.com/jkingsman/meshcore-hashtag-cracker#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/jkingsman/meshcore-hashtag-cracker/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:wordlist && tsc && npm run build:browser",
|
|
"build:wordlist": "node scripts/build-wordlist.js",
|
|
"build:browser": "node scripts/build-browser.js",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"prepublishOnly": "npm run build && npm test"
|
|
},
|
|
"dependencies": {
|
|
"@michaelhart/meshcore-decoder": "npm:meshcore-decoder-multibyte-patch@0.2.7",
|
|
"crypto-js": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/crypto-js": "^4.2.2",
|
|
"@webgpu/types": "^0.1.68",
|
|
"esbuild": "^0.27.2",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"keywords": [
|
|
"meshcore",
|
|
"cracker",
|
|
"brute-force",
|
|
"webgpu"
|
|
],
|
|
"directories": {
|
|
"test": "test"
|
|
}
|
|
}
|