Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bit4woo/burp-api-common

common methods that used by my burp extension projects
https://github.com/bit4woo/burp-api-common

burp burp-api burp-extensions burp-plugin methods

Last synced: 3 months ago
JSON representation

common methods that used by my burp extension projects

Awesome Lists containing this project

README

        

# burp-api-common
common methods used by myself.

编写burp插件过程中积累的常用方法

### 使用方法一(推荐)

基于[JitPack](https://jitpack.io/#jitpack/burp-api-common)

[![Release](https://jitpack.io/v/bit4woo/burp-api-common.svg)](https://jitpack.io/#bit4woo/burp-api-common)

To use it in your Maven build add:

在pom.xml文件中添加如下配置,位置在``的下级。

```xml


jitpack.io
https://jitpack.io


```

and the dependency:

然后再添加如下依赖配置,位置在 ``的下级。

注意version字段,当使用“master-SNAPSHOT”作为版本时,会使用最新代码

```

com.github.bit4woo
burp-api-common
master-SNAPSHOT

```

如果要使用具体版本配置如下,**注意version的值包含一个“v”**。

```xml

com.github.bit4woo
burp-api-common
v0.1.3

```

### 使用方法二(备选)

基于[Github packages](https://github.com/bit4woo/burp-api-common/packages)

直接在pom.xml中添加如下依赖配置,位置在 ``的下级,version的值不包含“v”。

```xml

com.github.bit4woo
burp-api-common
0.1.3

```

创建或修改/Users/user/.m2/setttings.xml 文件,如果使用过GitHub Packages,就无需再修改了。更多详情参考[这里](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry)

```xml


github



github


central
https://repo1.maven.org/maven2


github
https://maven.pkg.github.com/bit4woo/*

true






github
bit4woo
Your-github-access-token


UTF-8
UTF-8

```