AlexisAhmed / BugBountyToolkit

A multi-platform bug bounty toolkit that can be installed on Debian/Ubuntu or set up with Docker.
https://hub.docker.com/r/hackersploit/bugbountytoolkit
1.09k stars 276 forks source link

add XSRFProbe and Perl to Dockerfiles #30

Closed DasJennir closed 4 years ago

DasJennir commented 4 years ago

XSRFProbe is a really solid tool to perform xsrf exploits and perl is used by a few tools that I am know of !!!

#perl
RUN cd ${HOME}/ && \
    curl -O https://www.cpan.org/src/5.0/perl-5.32.0.tar.gz && \
    tar -xzf perl-5.32.0.tar.gz && \
    rm perl-5.32.0.tar.gz && \
    cd perl-5.32.0 && \
    ./Configure -de

# XSRFProbe
RUN cd ${HOME}/toolkit && \
    git clone https://github.com/0xInfection/XSRFProbe.git && \
    cd XSRFProbe && \
    python3 setup.py install 
AlexisAhmed commented 4 years ago

Thank you for the suggestions, we will work on adding the tool and testing for overall stability.