InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

Member-only story

AUTOMATED SCRIPT FOR FINDING XSS

Canonminibeast
InfoSec Write-ups
Published in
2 min readOct 25, 2023

--

An example of a web security vulnerability is cross-site scripting (XSS), which enables attackers to insert malicious executable scripts into the code of a website or application that is trusted. An XSS attack is frequently started by an attacker tempting a user to click on a malicious link that they deliver to them. Through cross-site scripting (XSS) assaults, attackers can get around access restrictions like the same-origin policy, which separates websites from one another.Zero When the victim accesses the website or application that runs the malicious code, the attack really takes place.1. Malicious scripts are injected into websites that are otherwise trustworthy and benign in an exploit known as cross-site scripting (XSS).

HERE IS THE SCRIPT THAT AUTOMATES XSS DETECTION

caturls.txt|egrep -iv “.(jpg|jpeg|js|cs|gif|tiff|png|woff|woff2|ico|pdf|svg|txt)” |qsreplace ‘ “><()’|tee combinedfuzz.json && cat combinedfuzz.json|while read host do; do curl — silent — path-as-is — insecure “$host” |grep -qs “\”><()” && echo -e “$host \033[91m Vulnerable \e[0m \n” || echo -e “$host \033[92m Not Vulnerable \e[0m \n”; done |tee saveitas.txt

STEP 1

type nano xxsautomation.txt and copy paste the above script in it and save it

this is for future reference ,its your wish to save it like this

STEP 2

the screenshot is little different so don’t be confuse yourself use the above syntax

STEP 3

create a nano urls.txt and store the links you wanna check ,like mentioned below

STEP 4

finally run this on terminal

Originally published at https://readitgainit.blogspot.com on October 25, 2023.

--

--

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

No responses yet

Write a response