memorio 4.6.4 → 4.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COPYRIGHT.md +6 -0
- package/LICENSE.md +21 -0
- package/SECURITY.md +48 -0
- package/index.cjs +269 -236
- package/index.js +314 -283
- package/llms.txt +405 -0
- package/package.json +1 -1
package/COPYRIGHT.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Copyright
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Dario Passariello. All rights reserved.
|
|
4
|
+
<https://dario.passariello.ca>
|
|
5
|
+
|
|
6
|
+
This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Dario Passariello
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Security
|
|
2
|
+
|
|
3
|
+
Memorio follows NIST and NSA security standards at the enterprise level.
|
|
4
|
+
|
|
5
|
+
## Security Standards
|
|
6
|
+
|
|
7
|
+
- **NIST Guidelines**: Follows NIST SP 800-53 security controls and NIST Cybersecurity Framework
|
|
8
|
+
- **NSA Standards**: Defense-grade security practices; considers nation-state level threats in risk assessment
|
|
9
|
+
|
|
10
|
+
## Supply Chain Security
|
|
11
|
+
|
|
12
|
+
- **Socket.dev**: Minimum target score 90%; all alarms must be resolved before release
|
|
13
|
+
- **Dependency Management**: Zero production dependencies (fully dependency-free); dev dependencies audited regularly
|
|
14
|
+
- **Prohibited**: No `eval()` usage, no encrypted/obfuscated code in builds, no hardcoded secrets
|
|
15
|
+
|
|
16
|
+
## Code Security
|
|
17
|
+
|
|
18
|
+
- No hardcoded credentials or API keys
|
|
19
|
+
- Secure random session ID generation (`crypto.randomUUID` → `crypto.getRandomValues` → fallback)
|
|
20
|
+
- Input validation on all public APIs
|
|
21
|
+
- XSS prevention on DevTools data export
|
|
22
|
+
- Property-based access control on global objects (`Object.defineProperty` with `enumerable: false`)
|
|
23
|
+
|
|
24
|
+
## OWASP Compliance
|
|
25
|
+
|
|
26
|
+
Addresses OWASP Top 10 (2021):
|
|
27
|
+
- A01:2021 — Broken Access Control (global object protection, property locks)
|
|
28
|
+
- A02:2021 — Cryptographic Failures (crypto.randomUUID for session IDs)
|
|
29
|
+
- A03:2021 — Injection (CSS sanitization in devtools)
|
|
30
|
+
- A05:2021 — Security Misconfiguration (minimal surface area, no bundled secrets)
|
|
31
|
+
- A06:2021 — Vulnerable and Outdated Components (regular npm audit, Socket.dev)
|
|
32
|
+
- A07:2021 — Identification and Authentication Failures (N/A — library, no auth)
|
|
33
|
+
- A08:2021 — Software and Data Integrity Failures (strict tsconfig, lock files)
|
|
34
|
+
- A09:2021 — Security Logging and Monitoring Failures (DevTools inspect, Logger module)
|
|
35
|
+
- A10:2021 — Server-Side Request Forgery (N/A — no network requests)
|
|
36
|
+
|
|
37
|
+
## Reporting Security Issues
|
|
38
|
+
|
|
39
|
+
If you find a security vulnerability:
|
|
40
|
+
|
|
41
|
+
1. Email [Dario Passariello](mailto:dariopassarielloa@gmail.com)
|
|
42
|
+
2. Or visit https://dario.passariello.ca/contact/
|
|
43
|
+
|
|
44
|
+
Do not open public issues for security vulnerabilities.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
*Document version: 2.0 — Last updated: 2026-05-19*
|
|
48
|
+
*Owner: BigLogic Security Team*
|