Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
har-to-json
Advanced tools
Extract response from .har file and create JSON mocks for mock server. With support of query param
Extract response from .har file and create JSON mocks for mock server.
npm install -g har-to-mocks
or by npx
npx har-to-mocks [path to .har] [path mock/api folder] --dry-run
File can contain hundreds of requests so it's important to be able filter data. For filtering you can use flags:
--url
) for filtering by match in the url. Search is case sensitive-m
, --method=GET
) for filter specific method. Default value is 'GET'-t
, --type=xhr
) for filtering request type. Default value is 'xhr'Video example: YouTube har-to-mocks@1.1.1.
example:
$ har-to-mocks ./file.har --url=api/service --method=GET
will display:
Filtered requests:
Name Method Path
─────────────────────── ────── ───────────────────────────
userRoles GET /api/service/userRoles
currentUserId GET /api/service/currentUserId
active GET /api/service/clients/active
If output folder is not specified mocks will not be written.
Export structure is prepared for connect-api-mocker. After successful filtering request just add second argument which will be path to connect-api-mocker
's folder for mock/api.
WARNING: When second argument is defined cli will write files. To avoid unwanted overwrite use --dry-run
flag to skip writing part of process.
example:
$ har-to-mocks ./file.har ./mocks --url=api/service --method=GET --dry-run
will display:
Filtered requests:
Name Method Path
─────────────────────── ────── ───────────────────────────
userRoles GET /api/service/userRoles
currentUserId GET /api/service/currentUserId
active GET /api/service/clients/active
Folder tree which will be applied:
└─ mocks
└─ api
└─ service
├─ userRoles
│ └─ GET.json
├─ currentUserId
│ └─ GET.json
└─ clients
└─ active
└─ GET.json
No files were written. If you want to write files remove the (--dry-run) flag.
FAQs
Extract response from .har file and create JSON mocks for mock server. With support of query param
The npm package har-to-json receives a total of 1 weekly downloads. As such, har-to-json popularity was classified as not popular.
We found that har-to-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.