Cambodia accuses Thailand of detaining 20 soldiers after a ceasefire was agreed between the two sides. Cambodian officials take foreign diplomats to a destroyed border checkpoint in Preah Vihear and deny Thai claims of ceasefire violations.
#Cambodia#Thailand#Ceasefire
Hackers 🔥
Stuck on a 403?
Here are some powerful tricks to try for bypassing 🚀
1⃣ X-Forwarded-For
2⃣ X-Original-URL
3⃣ Referer
4⃣ HTTP method manipulation
5⃣ Case sensitive (/admin or /aDmIn)
6⃣ Encoding
7⃣ Path normalization
Happy hunting! 🎯
⚠️CF-Hero is a reconnaissance tool that uses multiple data sources to discover the origin IP addresses of Cloudflare-protected web applications.
https://t.co/QnjFTFUBDL
✅ Join Telegram For More Content: https://t.co/IEEAE1bbag
----------------------------------------------------------------------------
📖 Your Ethical Hacking Journey Starts Here → https://t.co/xD71mp32c1
🎓 Ready to Skill Up? Enroll Now → https://t.co/6zSWj0mI4F
📢 Join the Community & Stay Updated:
📱 Discord: https://t.co/A2lB4DJSY9
💼 X (Twitter): https://t.co/8iSGOIqVsE
⭐ Found this helpful? Like, Share & Level Up Your Skills!
#CyberSecurity #BugBounty #EthicalHacking #Infosec #BrutSecurity
A great and useful tip that helped me find many bugs is just to play with the HTTP method 😋
Here I found broken access control (sent PUT instead of GET/POST) in the API of the target, that enabled me to discover XSS where the developers did not expect any user input 🔥
Bypass OTP in an unexpected way : replace the OTP value to "true" ( without quote )
Origin Request -
{
"OTP": "11111"
}
Modify To -
}
"OTP": true
}
https://t.co/wuAIVUBJdu
Credit: DEep
I just realized I have a large collection of notes taken during pentests, in-depth documentation on techniques and tradecraft, and a sizeable code repo. Considering sharing this in its written form. Probably time to use https://t.co/sJP47K8eCC. Lmk what you think
🍪 Introducing the “Cookie Sandwich” technique.
This vulnerability manipulates how servers parse cookies, potentially exposing sensitive user information like session IDs.
Read more: https://t.co/kykFin4mVC
Introducing InternetCTF! 🤯 Earn up to $10,000 for finding RCE vulnerabilities in open-source software AND creating Tsunami plugin patches. Make the internet safer and get rewarded! 🤑
For details on the program, see our latest blog post:
https://t.co/kKqWjJTBO3
javascript How to extract urls,srcs and hrefs from all HTML elements in any website? Open DevTools and run
urls = []
$$('*').forEach(element => {
urls.push(element.src)
urls.push(element.href)
urls.push(element.url)
}); console.log(...new Set(urls))
#infosec #cybersec #bugbounty
You can bypass path-based WAF restrictions by appending raw/unencoded non-printable and extended-ASCII characters like \x09 (Spring), \xA0 (Express), and \x1C-1F (Flask):