Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Heavily Needed Feature: Pipe mode / Own SQLI Parameter File Input #7

Open
N-N33 opened this issue Jun 19, 2024 · 5 comments
Open

Heavily Needed Feature: Pipe mode / Own SQLI Parameter File Input #7

N-N33 opened this issue Jun 19, 2024 · 5 comments
Labels
enhancement New feature or request

Comments

@N-N33
Copy link

N-N33 commented Jun 19, 2024

I think this tool would be really great if it had a pipe mode or allowed the user to use their own sqli parameter files. Like a -L function where the user can either input a list of domains or a list of potentially vulnerable parameters.

@malvads
Copy link
Owner

malvads commented Jun 20, 2024

i would take a look on it when i have some free time :)

@malvads malvads added the enhancement New feature or request label Jun 20, 2024
@tomaquet18
Copy link

I created this script to run the tool from a targets file.

# Creates outputs folder if not exists
if [ ! -d outputs ]; 
then
    mkdir "outputs"
fi

# Iterates over urls
for url in $(cat urls.txt)
do
    # Extracts domain from url
    domain=$(echo $url | sed -e 's|^[^/]*//||' -e 's|/.*$||')

    # Runs sqlmc
    sqlmc -u $url -d 1 -o outputs/$domain.txt;
done;

@malvads
Copy link
Owner

malvads commented Jun 20, 2024

Cool! But I think it's a better approach to do this in the program itself, like you said, for both params and URL. PRs are open; you can create a fork of the program and develop it yourself, or you can wait for me to fully integrate this :)

@tomaquet18
Copy link

Yeah, it's just a temporary fix until a version comes out with this feature, or maybe if I have a free moment I'll get into it :)

@malvads
Copy link
Owner

malvads commented Jun 20, 2024

kkk, it would be great 👍🏻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants