Coder Social home page Coder Social logo

raise-isayan / yaguraextender Goto Github PK

View Code? Open in Web Editor NEW
21.0 2.0 3.0 121.81 MB

Burpsuite extension. Supports CJK (Chinese, Japanese, Korean) encoding.

License: MIT License

HTML 12.57% Java 87.43%
burpsuite-extender burp-extensions cjk-characters encoder-decoder

yaguraextender's Introduction

Burp suite Extension YaguraExtender

Language/日本語

This tool is an extension of Burp Suite, a product of PortSwigger.

Burp Suite has drawbacks when using Asian character encodings. This tool is an extension mainly targeting Japanese users. It also supports Chinese and Korean encodings, but may not be fully tested and may contain issues.

About the latest version

The main repository (master) may contain code under development. Please download the stable release version from the following.

Please use the following versions

  • Burp suite v2023.1.2 or less than

    • YagraExtender v2.2.14.0 or less than
  • Burp suite v2023.1.2 or above

    • YagraExtender v3.0.0 or above (beta version)
    • YagraExtension v2.2.14.0 or less (currently available)

help

Please refer to help.html in help directory for detailed help such as how to use.

If you are online, please refer to help.

build

gradlew release

Operating environment

Java

Burp suite

Development environment

Required library

Building requires a BurpExtensionCommons library.

  • BurpExtensionCommons v3.0.x

Use Library

Notes

This tool was developed by myself and has nothing to do with PortSwigger. Please do not contact PortSwigger for any problems caused by using this tool.

yaguraextender's People

Contributors

dependabot[bot] avatar raise-isayan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

yaguraextender's Issues

JTranscoderのOutputがWord境界の折り返しになる

どうもRSyntaxTextAreaのバグらしく以下のコードで再現する。

import java.awt.BorderLayout;
import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;
import org.fife.ui.rtextarea.RTextScrollPane;

import javax.swing.*;

public class WrapText {
    public static void main( String[] args ) throws Exception {
        SwingUtilities.invokeAndWait(()->{
            RSyntaxTextArea textArea = new RSyntaxTextArea("r-syntax with a long line that should wrap xxxxxxxxx yyyyyyyyy",3,10);
            textArea.setLineWrap(true);
            textArea.setWrapStyleWord(false);
            RTextScrollPane scroll = new  RTextScrollPane(textArea);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(scroll, BorderLayout.CENTER);
            JFrame frame = new JFrame("test line wrap");
            frame.setContentPane(panel);
            frame.pack();
            frame.setVisible(true);
        });
    }
}

以下のように折り返しがおかしい

WardWrap

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.