mhaskar / XSSRadare

A Cross Site Scripting scanner using selenium webdriver
53 stars 21 forks source link

How to use more than one cookie #1

Open ASecurityPro opened 5 years ago

ASecurityPro commented 5 years ago

Thank you for the wonderfull script I am wondering if i can use more than one cookies like the following (PHPSESSID & security) : python XSSRadare.py --url "http://192.168.23.1/hacking/DVWA-master/vulnerabilities/xss_r/?name=1" --c "PHPSESSID:v19sdcnc461scvo9vjgugqvms3:/;security:low:/hacking/" --view off --stop

waiting for your response.

drtrmx commented 4 years ago

Hey! I made a fork solving this issue, if anyone is still interested. Also I took the liberty to change the cookie's input to the following format:

COOKIE_NAME_1=VALUE_1; COOKIE_NAME_2=VALUE_2;

It also needs to be noted: the cookie parser reads the cookie-path from the given URL using regular expressions.