The best hackers I know aren't smarter than me.
They've just read more than me. Somewhere in their memory is the one obscure writeup that turns a dead end into a finding. Preview is that memory, on tap. For you, and for your agent.
-> https://t.co/JQKjIQGWFA
Discover subdomains and assets across global IPv4 with our advanced search capabilities. As an alternative to #Shodan, our tool offers comprehensive asset discovery features.
Sign up now at https://t.co/090Bf8xhFc and get 2 months of the Starter Plan for free!
I've just developed my first @Burp_Suite Bambdas specifically to identify OWASP Top-25 Parameters potentially vulnerable to XSS, SSRF, RCE, SQLi, LFI, and Open Redirect. For easy code access, visit GitHub:
https://t.co/fCScaTPJ1I
#Bambdas#Java
Successfully bypassed a SSRF WAF by using a combination of IPV6 + Unicode. Payload for Metadata instances:
http://[::ⓕⓕⓕⓕ:①⑥⑨。②⑤④。⑯⑨。②⑤④]:80
Check images for response difference between 169.254.169.254 and the above payload I shared 🔥
#bugbounty#infosec#waf
I have developed a small @Burp_Suite extension that allows you to copy HTTP requests without including cookies or tokens. I hope it will help you.
Enjoy! 🧡
https://t.co/STawYMxbNZ
Breaking into bug bounty?💻 Skip the cash chase!
Focus on skills, rep, and non-paying programs first. Unpopular advice (we know), but crucial if you want to smash bugs in those bigger programs. 💡 Don't miss @TechAlissa's sly tips in @SearchSecurity: https://t.co/lUWxepGKXS
Find Origin IP.
1. subdomain enumeration.
2. Save All A records in IPs.txt.
3. Remove CDN IP.
4. Fuzz Host Header on IPs.txt with list of all subdomains.
for ip in $(cat ip.txt);do echo $ip && ffuf -w ./subdomains.txt -u http://$ip -H "Host: FUZZ" -s -mc 200; done