sqlmap carica la richiesta https utilizzando "-r REQUESTFILE Carica richiesta HTTP da un file"

2

Sto testando un sito che reindirizza automaticamente la richiesta http a https. Quando utilizzo Burp, imposto l'obiettivo di utilizzare https e la richiesta viene eseguita senza problemi. Tuttavia quando uso la stessa richiesta in sqlmap ottengo un reindirizzamento successivo. Come posso impostare il file di richiesta per utilizzare https?

Comando:

C:\Users\Oscar\Desktop\sqlmap-master>python sqlmap.py -r testsite.txt --level=5 risk=3 -p id

Host:

GET /user?id=1 HTTP/1.1
Host: www.testsite.com
    
posta Ogglas 06.02.2017 - 10:38
fonte

1 risposta

3

Trovate due possibili soluzioni dal link .

--force-ssl :

C:\Users\Oscar\Desktop\sqlmap-master>python sqlmap.py -r testsite.txt --level=5 risk=3 --force-ssl -p id

Host:

GET /user?id=1 HTTP/1.1
Host: www.testsite.com:443
    
risposta data 06.02.2017 - 10:40
fonte

Leggi altre domande sui tag