Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/turkogluc/xssgo
xssGo - Automated Xss Scanner
"xssGo" is designed to automate scanning cross site scripting vulnerabilities.
Most important functionality of the program is that because of testing with a
real browser, not producing wrong results, aka false positives.
It is possible to scan with or without authentication. Authentication can be
supplied via login credentials or cookies.
Phases of program:
1) Scanning
xssGo scans the webpage and creates kind of site-map. Scanning phase is
consist of parsing the html page, excluding all links refers to same host.
Scanning is done as Breadt-First-Search (BFS) algorithm. Leves is determined
by user. Output of the phase is a list consist of target URLs.
2) Testing Query Parameters.
All target URLs are examined and tested if there is paramater that can be
tested. All parameters like /page.php?name=user&date=10#last are replaced
with XSS Payloads and new link sent to real browser to be tested.
Real Browser runs the URL and examines the response.If there is alert
URL is included to vulnerable url list.
3) Testing Form Inputs.
All target URLs are examined and the forms in page are scanned.All input
tags in every form is filled with XSS payload and sent. Result is
observed by real browser.
Usage : ./xssGo [options[=value]]
Options:
--Help
Display this page
--BlackList
Forbid some links to be visited via giving comma seperated list
--CookieFile
Authenticate via cookies. Give path of cookie file as json
--Headless
Browser can to run as headless
--Level int
Scan Depth Level (default 3)
--LoginPage string
Authenticate via login page. (default "http://localhost/dvwa/login.php")
--PayloadFile string
Set Payloads from file (default "payload.txt")
--URL string
Target Url to be scanned (default "http://localhost/dvwa/")`
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.