Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@turingsecure/burp.js

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@turingsecure/burp.js

Client side parser for Burp Suite XML output files.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

burp.js by turingsecure.

Version License: MIT

burp.js is a client side parser for Burp XML output files.

Installation

Install the @turingsecure/burp.js package:

# use yarn or npm
yarn add @turingsecure/burp.js

Import the library to use it in your code:

import { BurpParser } from "@turingsecure/burp.js";

Usage

To parse an XML file, you just have to execute the imported function.

const xml = "burpscan xml";
const parsed = BurpParser(xml);

Note: If the requests and responses are base64 encoded, they will be automatically decoded

API

The BurpParser function returns an array of issues.

If you do not want decoded requests and responses, you can pass a flag:

const xml = "burpscan xml";
const parsed = BurpParser(xml, false);

An issue object has the following properties:

PropertyType
serialNumberstring
typestring
hoststring
pathstring
locationstring
severitystring
confidencestring
issueBackgroundstring
remediationBackgroundstring
vulnerabilityClassificationsstring
issueDetailstring
referencesstring
requestresponseRequestResponse[ ]

requestresponse is an array of RequestResponse objects with the following properties:

PropertyType
requeststring
responsestring
responseRedirectedstring

Contributing

Contributions, issues and feature requests are welcome. Feel free to check out the issues page if you want to contribute.

License

Copyright © 2021 turingsecure. This project is MIT licensed.

Keywords

FAQs

Package last updated on 09 Mar 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc