All Projects → bit4woo → burp-api-common

bit4woo / burp-api-common

Licence: other
common methods that used by my burp extension projects

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to burp-api-common

burp-suite-utils
Utilities for creating Burp Suite Extensions.
Stars: ✭ 19 (-34.48%)
Mutual labels:  burp, burp-plugin, burp-extensions, burp-api
TurboDataMiner
The objective of this Burp Suite extension is the flexible and dynamic extraction, correlation, and structured presentation of information from the Burp Suite project as well as the flexible and dynamic on-the-fly modification of outgoing or incoming HTTP requests using Python scripts. Thus, Turbo Data Miner shall aid in gaining a better and fas…
Stars: ✭ 46 (+58.62%)
Mutual labels:  burp, burp-plugin, burp-extensions, burp-api
burp-token-rewrite
Burp extension for automated handling of CSRF tokens
Stars: ✭ 15 (-48.28%)
Mutual labels:  burp, burp-plugin, burp-extensions
burp-wildcard
Burp extension intended to compact Burp extension tabs by hijacking them to own tab.
Stars: ✭ 119 (+310.34%)
Mutual labels:  burp, burp-plugin, burp-extensions
burp-flow
Extension providing view with filtering capabilities for both complete and incomplete requests from all burp tools.
Stars: ✭ 45 (+55.17%)
Mutual labels:  burp, burp-plugin, burp-extensions
burp-aem-scanner
Burp Scanner extension to fingerprint and actively scan instances of the Adobe Experience Manager CMS. It checks the website for common misconfigurations and security holes.
Stars: ✭ 60 (+106.9%)
Mutual labels:  burp, burp-plugin, burp-extensions
HopLa
HopLa Burp Suite Extender plugin - Adds autocompletion support and useful payloads in Burp Suite
Stars: ✭ 446 (+1437.93%)
Mutual labels:  burp, burp-plugin, burp-extensions
U2c
Unicode To Chinese -- U2C : A burpsuite Extender That Convert Unicode To Chinese 【Unicode编码转中文的burp插件】
Stars: ✭ 83 (+186.21%)
Mutual labels:  burp-plugin, burp-extensions
Cstc
CSTC is a Burp Suite extension that allows request/response modification using a GUI analogous to CyberChef
Stars: ✭ 91 (+213.79%)
Mutual labels:  burp-plugin, burp-extensions
SQLi-Query-Tampering
SQLi Query Tampering extends and adds custom Payload Generator/Processor in Burp Suite's Intruder. This extension gives you the flexibility of manual testing with many powerful evasion techniques.
Stars: ✭ 123 (+324.14%)
Mutual labels:  burp-plugin, burp-extensions
Burp Molly Pack
Security checks pack for Burp Suite
Stars: ✭ 123 (+324.14%)
Mutual labels:  burp-plugin, burp-extensions
Burpsuite Collections
BurpSuite收集:包括不限于 Burp 文章、破解版、插件(非BApp Store)、汉化等相关教程,欢迎添砖加瓦---burpsuite-pro burpsuite-extender burpsuite cracked-version hackbar hacktools fuzzing fuzz-testing burp-plugin burp-extensions bapp-store brute-force-attacks brute-force-passwords waf sqlmap jar
Stars: ✭ 1,081 (+3627.59%)
Mutual labels:  burp-plugin, burp-extensions
Swurg
Parse OpenAPI documents into Burp Suite for automating OpenAPI-based APIs security assessments (approved by PortSwigger for inclusion in their official BApp Store).
Stars: ✭ 94 (+224.14%)
Mutual labels:  burp-plugin, burp-extensions
burp-copy-as-ffuf
Burp Extension that copies a request and builds a FFUF skeleton
Stars: ✭ 77 (+165.52%)
Mutual labels:  burp, burp-extensions
Headless Burp
Automate security tests using Burp Suite.
Stars: ✭ 192 (+562.07%)
Mutual labels:  burp-plugin, burp-extensions
Mssqli Duet
SQL injection script for MSSQL that extracts domain users from an Active Directory environment based on RID bruteforcing
Stars: ✭ 82 (+182.76%)
Mutual labels:  burp-plugin, burp-extensions
Burp Suite Software Version Checks
Burp extension to passively scan for applications revealing software version numbers
Stars: ✭ 29 (+0%)
Mutual labels:  burp-plugin, burp-extensions
Burp Suite Error Message Checks
Burp Suite extension to passively scan for applications revealing server error messages
Stars: ✭ 45 (+55.17%)
Mutual labels:  burp-plugin, burp-extensions
Minesweeper
A Burpsuite plugin (BApp) to aid in the detection of scripts being loaded from over 23000 malicious cryptocurrency mining domains (cryptojacking).
Stars: ✭ 162 (+458.62%)
Mutual labels:  burp-plugin, burp-extensions
CTFHelper
A simple Burp extension for scanning stuffs in CTF
Stars: ✭ 29 (+0%)
Mutual labels:  burp, burp-extensions

burp-api-common

common methods used by myself.

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

使用方法一(推荐)

方法一基于Github packages

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

<dependency>
  <groupId>com.github.bit4woo</groupId>
  <artifactId>burp-api-common</artifactId>
  <version>0.1.3</version>
</dependency>

创建或修改/Users/user/.m2/setttings.xml 文件,如果使用过GitHub Packages,就无需再修改了。更多详情参考这里

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <activeProfiles>
    <activeProfile>github</activeProfile>
  </activeProfiles>

  <profiles>
    <profile>
      <id>github</id>
      <repositories>
        <repository>
          <id>central</id>
          <url>https://repo1.maven.org/maven2</url>
        </repository>
        <repository>
          <id>github</id>
          <url>https://maven.pkg.github.com/bit4woo/*</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
      </repositories>
    </profile>
  </profiles>

  <servers>
    <server>
      <id>github</id>
      <username>bit4woo</username>
      <password>Your-github-access-token</password>
    </server>
  </servers>

    <properties>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
        <maven.compiler.encoding>UTF-8</maven.compiler.encoding>  
    </properties> 
</settings>

使用方法二(备选)

方法二基于JitPack

Release

To use it in your Maven build add:

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

  <repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
  </repositories>

and the dependency:

然后再添加如下依赖配置,位置在 <dependencies>的下级。注意version的值包含一个“v”

<dependency>
    <groupId>com.github.bit4woo</groupId>
    <artifactId>burp-api-common</artifactId>
    <version>v0.1.3</version>
</dependency>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].