{"id":13841207,"url":"https://github.com/bit4woo/burp-api-common","last_synced_at":"2025-05-13T11:30:40.824Z","repository":{"id":47059357,"uuid":"198394382","full_name":"bit4woo/burp-api-common","owner":"bit4woo","description":"common methods that used by my burp extension projects","archived":false,"fork":false,"pushed_at":"2024-04-12T05:11:21.000Z","size":123,"stargazers_count":51,"open_issues_count":1,"forks_count":14,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-01T23:14:45.408Z","etag":null,"topics":["burp","burp-api","burp-extensions","burp-plugin","methods"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bit4woo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-23T09:08:56.000Z","updated_at":"2025-02-28T06:26:54.000Z","dependencies_parsed_at":"2023-01-24T08:00:13.949Z","dependency_job_id":"43335a86-349a-4e39-883e-d7b33fbe511f","html_url":"https://github.com/bit4woo/burp-api-common","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bit4woo%2Fburp-api-common","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bit4woo%2Fburp-api-common/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bit4woo%2Fburp-api-common/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bit4woo%2Fburp-api-common/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bit4woo","download_url":"https://codeload.github.com/bit4woo/burp-api-common/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253932745,"owners_count":21986444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["burp","burp-api","burp-extensions","burp-plugin","methods"],"created_at":"2024-08-04T17:01:04.453Z","updated_at":"2025-05-13T11:30:40.475Z","avatar_url":"https://github.com/bit4woo.png","language":"Java","readme":"# burp-api-common\ncommon methods used by myself. \n\n编写burp插件过程中积累的常用方法\n\n### 使用方法一(推荐)\n\n基于[JitPack](https://jitpack.io/#jitpack/burp-api-common)\n\n[![Release](https://jitpack.io/v/bit4woo/burp-api-common.svg)](https://jitpack.io/#bit4woo/burp-api-common)\n\nTo use it in your Maven build add:\n\n在pom.xml文件中添加如下配置，位置在`\u003cproject\u003e`的下级。\n\n```xml\n  \u003crepositories\u003e\n\t\u003crepository\u003e\n\t    \u003cid\u003ejitpack.io\u003c/id\u003e\n\t    \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n\t\u003c/repository\u003e\n  \u003c/repositories\u003e\n```\n\nand the dependency:\n\n然后再添加如下依赖配置，位置在 `\u003cdependencies\u003e`的下级。\n\n注意version字段，当使用“master-SNAPSHOT”作为版本时，会使用最新代码\n\n```\n\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.bit4woo\u003c/groupId\u003e\n    \u003cartifactId\u003eburp-api-common\u003c/artifactId\u003e\n    \u003cversion\u003emaster-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n如果要使用具体版本配置如下，**注意version的值包含一个“v”**。\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.bit4woo\u003c/groupId\u003e\n    \u003cartifactId\u003eburp-api-common\u003c/artifactId\u003e\n    \u003cversion\u003ev0.1.3\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\n\n\n\n### 使用方法二(备选)\n\n基于[Github packages](https://github.com/bit4woo/burp-api-common/packages)\n\n直接在pom.xml中添加如下依赖配置，位置在 `\u003cdependencies\u003e`的下级，version的值不包含“v”。\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.github.bit4woo\u003c/groupId\u003e\n  \u003cartifactId\u003eburp-api-common\u003c/artifactId\u003e\n  \u003cversion\u003e0.1.3\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n创建或修改/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)\n\n```xml\n\u003csettings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0\n                      http://maven.apache.org/xsd/settings-1.0.0.xsd\"\u003e\n\n  \u003cactiveProfiles\u003e\n    \u003cactiveProfile\u003egithub\u003c/activeProfile\u003e\n  \u003c/activeProfiles\u003e\n\n  \u003cprofiles\u003e\n    \u003cprofile\u003e\n      \u003cid\u003egithub\u003c/id\u003e\n      \u003crepositories\u003e\n        \u003crepository\u003e\n          \u003cid\u003ecentral\u003c/id\u003e\n          \u003curl\u003ehttps://repo1.maven.org/maven2\u003c/url\u003e\n        \u003c/repository\u003e\n        \u003crepository\u003e\n          \u003cid\u003egithub\u003c/id\u003e\n          \u003curl\u003ehttps://maven.pkg.github.com/bit4woo/*\u003c/url\u003e\n          \u003csnapshots\u003e\n            \u003cenabled\u003etrue\u003c/enabled\u003e\n          \u003c/snapshots\u003e\n        \u003c/repository\u003e\n      \u003c/repositories\u003e\n    \u003c/profile\u003e\n  \u003c/profiles\u003e\n\n  \u003cservers\u003e\n    \u003cserver\u003e\n      \u003cid\u003egithub\u003c/id\u003e\n      \u003cusername\u003ebit4woo\u003c/username\u003e\n      \u003cpassword\u003eYour-github-access-token\u003c/password\u003e\n    \u003c/server\u003e\n  \u003c/servers\u003e\n\n    \u003cproperties\u003e  \n        \u003cproject.build.sourceEncoding\u003eUTF-8\u003c/project.build.sourceEncoding\u003e  \n        \u003cmaven.compiler.encoding\u003eUTF-8\u003c/maven.compiler.encoding\u003e  \n    \u003c/properties\u003e \n\u003c/settings\u003e\n```\n\n","funding_links":[],"categories":["Java","Java (504)","burpsuite插件"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbit4woo%2Fburp-api-common","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbit4woo%2Fburp-api-common","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbit4woo%2Fburp-api-common/lists"}