GithubHelp home page GithubHelp logo

Comments (3)

d3vilbug avatar d3vilbug commented on August 22, 2024

This is what causing issues to you ...... as Burp doesn't provide any interface for JSON parameter update like normal POST/GET parameter update so have written a manual parser that is parsing JSON as highlight below

image

where I am getting indexes on the basis of "
like

body = {"data":"abc", "key":"123"}

and the above code is parsing like below

int _fi = messageBody.indexOf(_params[i]);
if(_fi < 0) { continue; }

_fi = _fi + _params[i].length() + 3;
int _si = messageBody.indexOf("\"", _fi);
 

int _fi = body.indexof("data");
_fi = _fi + _fi.length + 3 // which is the index of data variable's value abc

and after this getting the closure of the data variable's value by checking the next occurrence of " in the string

So when you will change ' to " it will only parse till the first occurrence of " (DQ) and hence no solution as you have to customize it according to this special case.

from aes-killer.

d3vilbug avatar d3vilbug commented on August 22, 2024

a quick solution for this

parse it by searching the next occurrence of ", instead of " so in this way you can work with double quote too

But it might disturb your flow ... where your parameter is at the end / last and the code will not be able to find the next ", so need to add both cases here for such cases

from aes-killer.

d3vilbug avatar d3vilbug commented on August 22, 2024

@arthusu

replace the highlighted line with this snippet and compile again .....

 int _si = messageBody.indexOf("]\",", _fi);
if(_si < 0){
     _si = messageBody.indexOf("\"", _fi);
}

from aes-killer.

Related Issues (14)

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.