
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@sbimochan/har-to-mocks
Advanced tools
Extract response from .har file and create JSON mocks for mock server.
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 --method=POST
) for filter specific method. Supported: 'GET', 'POST', 'PUT', 'DELETE' and 'PATCH' methods. 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.
The second argument should be path to mock
's folder. Export structure is prepared for mocks-to-msw which helps with integration with MSW (Mock Service Worker) and connect-api-mocker.
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.
We found that @sbimochan/har-to-mocks demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.