Brut Security
14.6K subscribers
907 photos
73 videos
287 files
962 links
βœ…Queries: @wtf_brut
πŸ›ƒWhatsApp: wa.link/brutsecurity
🈴Training: brutsec.com
πŸ“¨E-mail: [email protected]
Download Telegram
If you liked the posts, tap the heart. That tiny click means a lot. ❀️
Please open Telegram to view this post
VIEW IN TELEGRAM
❀30
Forwarded from Brut Security
Common Security Issues in FinanciallyOriented Web Applications
πŸ”₯6❀3
Brut Security pinned Deleted message
⚑Bug Bounty Tip πŸš€

βœ…Level up your recon with GitHub's new regex search on cs.github.com! Hunt for hardcoded credentials like SSH & FTP connection strings.

🚨Example Dorks:
/ssh:\/\/.*:.*@.*target\.com/
/ftp:\/\/.*:.*@.*target\.com/
❀21πŸ‘1
If you liked the posts, tap the heart. That tiny click means a lot. ❀️
Please open Telegram to view this post
VIEW IN TELEGRAM
❀15
CVE-2025-42944, -42937, -42910, and other: Multiple vulnerabilities in SAP NetWeaver, 5.3 - 10.0 πŸ”₯πŸ”₯πŸ”₯

In its October bulletin, SAP published a list of 13 new vulnerabilities affecting NetWeaver, NetWeaver AS Java, and other products. These vulnerabilities include Insecure Deserialization, Information Disclosure, etc.

Search at Netlas.io:
πŸ‘‰ Link: https://nt.ls/aBHGg
πŸ‘‰ Dork: http.headers.server:"NetWeaver"

Vendor's advisory: https://support.sap.com/en/my-support/knowledge-base/security-notes-news/october-2025.html
❀8πŸ‘2
🚨 Critical zero-day tagged as CVE-2025-61882 (CVSS 9.8) affecting Oracle E-Business Suite

πŸ₯³Nuclei Vulnerability Detection Script:
https://github.com/rxerium/CVE-2025-61882

🟒This vulnerability is remotely exploitable without authentication.
Please open Telegram to view this post
VIEW IN TELEGRAM
❀13πŸ”₯3
πŸ₯³Oracle just disclosed a new vulnerability tagged CVE-2025-61884 - remotely exploitable vuln without requiring authentication

πŸ‘‰Nuclei detection for CVE-2025-61884 -https://gist.github.com/rxerium/6c70bc6b72fc0d1365c85937d35d9550
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯10❀3
😘dON'T fORGET tO gIVE rEACTIONS🫑
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯12
🟒Awesome MLSecOps - A curated list of MLSecOps tools, articles and other resources on security applied to Machine Learning and MLOps systems.

🚨https://github.com/RiccardoBiosas/awesome-MLSecOps
Please open Telegram to view this post
VIEW IN TELEGRAM
❀9πŸ”₯4
Media is too big
VIEW IN TELEGRAM
Backdoor vs WAF 🀣
As like the same think happens when WAF try to detect backdoor and the backdoor hide there self using encoding etc.πŸ˜‚
😁13❀2πŸ‘2🀨2
This media is not supported in your browser
VIEW IN TELEGRAM
🚨CVE-2025-24071 // CVE-2025-24054: PoC for NTLM Hash Leak via RAR/ZIP Extraction and .library-ms File

🟒POC: https://github.com/0x6rss/CVE-2025-24071_PoC
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯14πŸ‘2❀1
Hey Hunter’s
DarkShadow here back again!

bugbounty tip:
[easy to find critical bugs, follow this method]

1. find a api sensitive endpoint (must be leak sensitive info)

2. look headers "Cache-Control, CF-Cache-Status, Via, X-Cache, ETag, Age" confirm they store cache or not. (if stored try web cache deception)

3. change the HTTP request method (like: GET to POST, GET to HEAD, POST to PUT etc.)

4. if you find endpoints like: /api/users/123 use array based iDOR vulnerability (like: /api/users/123,122)

Don’t forget to show your love guys.

#bugbountytip #authbypass
❀32πŸ”₯5πŸ‘3πŸ‘2πŸ‘¨β€πŸ’»1
πŸ₯³βž‘️Find hidden params in JavaScript files
assetfinder *.com | gau | egrep -v '(.css|.svg)' | while read -r url; do js=$(curl -s --fail "$url") || continue; vars=$(printf "%s" "$js" | grep -Po 'var\s+\K[A-Za-z0-9_]+' | sed 's/$/=xss/' | sort -u); [ -n "$vars" ] && printf '\e[1;33m%s\n\e[1;32m%s\n' "$url" "$vars"; done


πŸ‘‰Why this is useful:

1. assetfinder + gau gathers reachable assets.
2. The loop pulls each URL, extracts var names from JS, and appends =xss so you get quick candidate parameters to fuzz.
3. You can feed those param names into quick fuzzers, Burp intruder, or manual probes to check for reflection, improper CSP, or unsafe eval usage.

πŸ‘‰Quick checklist after running:

1. Look for parameter-ish names (token, apiKey, path, callback, next, etc.).
2. Check if any appear in query strings or DOM sinks.
3. Verify whether values are reflected without encoding or used in eval()/innerHTML.
Please open Telegram to view this post
VIEW IN TELEGRAM
❀20
If you ever get a chance to comment or rate Brut Security, how much would you rate it? πŸ˜„
Anonymous Poll
47%
100%
37%
80%
11%
50%
11%
20%
πŸ”₯7❀5
Forwarded from Brut Security
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ”–Find hidden Endpoints:

javascript:(async function(){let scanningDiv=document.createElement("div");scanningDiv.style.position="fixed",scanningDiv.style.bottom="0",scanningDiv.style.left="0",scanningDiv.style.width="100%",scanningDiv.style.maxHeight="50%",scanningDiv.style.overflowY="scroll",scanningDiv.style.backgroundColor="white",scanningDiv.style.color="black",scanningDiv.style.padding="10px",scanningDiv.style.zIndex="9999",scanningDiv.style.borderTop="2px solid black",scanningDiv.innerHTML="<h4>Scanning...</h4>",document.body.appendChild(scanningDiv);let e=[],t=new Set;async function n(e){try{const t=await fetch(e);return t.ok?await t.text():(console.error(`Failed to fetch ${e}: ${t.status}`),null)}catch(t){return console.error(`Error fetching ${e}:`,t),null}}function o(e){return(e.startsWith("/")||e.startsWith("./")||e.startsWith("../"))&&!e.includes(" ")&&!/[^\x20-\x7E]/.test(e)&&e.length>1&&e.length<200}function s(e){return[...e.matchAll(/['"]((?:\/|\.\.\/|\.\/)[^'"]+)['"]/g)].map(e=>e[1]).filter(o)}async function c(o){if(t.has(o))return;t.add(o),console.log(`Fetching and processing: ${o}`);const c=await n(o);if(c){const t=s(c);e.push(...t)}}const l=performance.getEntriesByType("resource").map(e=>e.name);console.log("Resources found:",l);for(const e of l)await c(e);const i=[...new Set(e)];console.log("Final list of unique paths:",i),console.log("All scanned resources:",Array.from(t)),scanningDiv.innerHTML=`<h4>Unique Paths Found:</h4><ul>${i.map(e=>`<li>${e}</li>`).join("")}</ul>`})();
Please open Telegram to view this post
VIEW IN TELEGRAM
❀26πŸ‘1πŸ”₯1πŸ‘¨β€πŸ’»1
403 Bypass Payloads βš™οΈ
#infosec #cybersec #bugbountytips
❀25πŸ‘2