GithubHelp home page GithubHelp logo

ppscan's People

Contributors

msrkp avatar nikitastupin avatar nytr0gen avatar po6ix avatar terjanq avatar zethash avatar

Stargazers

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

Watchers

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

ppscan's Issues

Not able to see effected parameters

Hi -

This may be "user error" but I am not able to see which parameters are vulnerable within the extension box like in the example you provided in the README.md. I can find the effected parameters if I go back through the burp history, but it would be easier to see in the extension output box. Again, it could be something on my end - I am using the version of Chrome that comes with Burp Suite Pro (90.0.4430.93). I have attached a screenshot of what I mean, what you see in the screenshot is the only data available to me, I am not able to expand on any of the categories.

aa

The extension attempts to load page from parked domain p6.is

Hi,

as title. It's possible there is no real security risk behind it, especially when the target is not vulnerable to prototype pollution. However I think it would still be best practice to not reference as part of the extension a parked domain that in the future could be hijacked.

Example:

https://example.com/#__proto__[attrs][src]=1&__proto__[src]=//p6.is/ppscan.php
https://example.com/#__proto__[BOOMR]=1&__proto__[url]=//p6.is/ppscan.php

Brute parameters failed to show in logger

revise the code at scripts/popup.js:88

function listFound(found) {
    // foundList.innerHTML = '';
    foundLabel.style.display = foundList.style.display = found.length > 0 ? 'block' : 'none';
    found.forEach((str) => {
        try {
            const line = JSON.parse(str);
            const tr = document.createElement("tr");
            if (line['domain'] == 'null') 
                hostname = line['domain'];
            else
                hostname = new URL(line['domain']).hostname;
            tr.innerHTML = `<td><a target="_blank" href="${line['domain']}">${hostname}</a></td><td>${line['type']}</td><td><a target="_blank" href="${line['file']}">${line['file']}:${line['lineCol']}</a></td>`;
            foundList.appendChild(tr);
        } catch (e) {
            const tr = document.createElement("tr");
            tr.innerHTML = `<td><a target="_blank" href="${str}">${new URL(str).hostname}</a></td><td>brute</td><td><a target="_blank" href="${str}">${str}</a></td>`;
            foundList.appendChild(tr);
        }
    });
}

Unknown Lib [7]

I got following message in type column

What it means ?

Type

| Unknown Lib [7] |

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.