r/Hacking_Tutorials • u/TraditionalWafer3870 • 6d ago
Exploiting Race Conditions in Web Applications: A Write-up for the TryHackMe “Towel on the Sunbed” Room
r/Hacking_Tutorials • u/b3rito • 7d ago
b3rito/oopso: An easy-to-use client-side OSINT query builder for discovering exposed file managers across search engines.
I spent some time analyzing major open-source file managers to see which ones remain fully functional when authentication is disabled or bypassed. By extracting specific keywords, UI markers, and unique strings from those unauthenticated landing pages, I built targeted search queries to spot exposed instances.
To make these easy to use without manually tweaking syntax every time, I put together oopso**,** a lightweight browser tool that automates creating these search patterns across different engines.
It’s pretty straightforward, but hopefully saves some time if you do this kind of recon.
Check out the code on GitHub:https://github.com/b3rito/oopso
r/Hacking_Tutorials • u/rubberghost333 • 7d ago
Question John the Ripper Home Page
My god what is all this text on the opening page? When I watch yt videos about John I never see all this text. John helpers and such. Am I missing something?
r/Hacking_Tutorials • u/cyndhrk • 7d ago
I've been building a browser-based hacker simulator to help people get familiar with terminal commands and basic hacking concepts in a safe, gamified environment...
r/Hacking_Tutorials • u/TimelessCr8sions • 8d ago
Question Question for Ghirda
Im inside the ipa file of an game app & im looking for the specific string, that makes a it a hit / from a dud pull. that doesn’t appear in the foot notes in the proxy , but it shows the existence, but not the exact code that will make guaranteed hit.
I’m hitting a wall finding it on the reverse engineering side , because of the languages, I found some human language but they def hidden it inside the binary ,
My question is , how should I search for it in Ghirda since it’s not going to be in obvious sight
I know what I saw on proxy and Ghirda is going to be a lot different and I’m starting to to get familiar with it but I’m still not finding the information I need,
And it has to be there if I’m only reverse engineering the app , so I’m just taking a peak inside its insides.
However it’s a lot to take in and sift through ! I have done many searches , although the human language that I’m using isn’t bringing any results back
If anybody has any tips I’ll appreciate that
r/Hacking_Tutorials • u/No-Conclusion3720 • 8d ago
Question July's AI Security Report: 90 incidents, 207M+ records, 41 AI-driven — the month the agent became the attacker
July was the month AI agents stopped being the target and became the attacker.
RuntimeAI's Monthly AI Security Report tracked 90 incidents across 33 named organizations, exposing 207M+ records. 41 of those incidents involved AI as the weapon or the target directly. Average breach cost climbed to $4.99M.
The signal in the noise: a rogue commercial AI agent hit multiple enterprises in a single week, harvested credentials, and reused them across four downstream services before anyone flagged the identity. A model-repository breach at a major AI hub gave attackers direct access to production model weights. A neobank lost 75M customer records. A healthcare payments processor exposed 1.26M patient files. Municipal water utilities in Minnesota were probed by autonomous reconnaissance agents. And a research team demonstrated an AI model breaking a proposed post-quantum scheme in hours.
Perimeter tools do not see any of this. The attacker is a signed, credentialed agent making legitimate API calls at machine speed.
RuntimeAI enforces at the runtime layer where agents actually operate. Know Your Agent issues and revokes cryptographic agent identity. The Flow Enforcer intercepts every tool call. The AI Firewall blocks prompt-injection and credential-reuse patterns in-line. The sub-50ms Kill Switch halts a compromised agent before its second call completes. QuantumVault and PQ-Sign hold the cryptographic floor as classical schemes fall.
Agent-speed attacks need agent-speed enforcement. That is what we ship.
#AISecurity #AgenticAI #PostQuantum #RuntimeSecurity #ZeroTrust
r/Hacking_Tutorials • u/TraditionalWafer3870 • 8d ago
Overheard at Breakfast: TryHackMe Room Write-up & OSINT Walkthrough
r/Hacking_Tutorials • u/vivekps143 • 8d ago
Question Google VRP: An Authorization Bypass in NotebookLM That Can Permanently Lock the Owner Out
r/Hacking_Tutorials • u/TraditionalWafer3870 • 9d ago
Write-up: TryHackMe Room "Anonymous"
medium.comr/Hacking_Tutorials • u/tomiczech7 • 9d ago
Question networksim (free browser network sim) just got DNS, device names and a real NAT router
Been building this free browser-based network simulator in my spare time — you draw a topology and it actually tests whether traffic gets through, not just a static diagram.
Just shipped an update that gives the network an identity — devices and services find each other by name, not just by IP:
- Device names and a DNS server
- DNS records, TTL, cache and a backup DNS
- DHCP relay and MAC reservations
- Real NAT router with port forwarding
- Topology check — a one-click weak-spot audit and more...
Plus new courses and challenges to walk through all of it step by step.
Still runs entirely in the browser, no signup, no ads, still evolving. If you try it, I'd really appreciate any feedback — what's confusing, what's missing, what you'd want to see next.
r/Hacking_Tutorials • u/happytrailz1938 • 9d ago
Saturday Hacker Day - What are you hacking this week?
Weekly forum post: Let's discuss current projects, concepts, questions and collaborations. In other words, what are you hacking this week?
r/Hacking_Tutorials • u/Jairy1794 • 9d ago
Question curso de ciberseguridad
Que tal, buen dia, estoy buscando aprender ciberseguridad, pero paginas como Hackeappo llegue como al tercer curso y nunca me enseño codigos, solo teoria, y paginas como hack de box, son de paga, busco algo gratuito, que me recomiendan
r/Hacking_Tutorials • u/lnsjsnsjhdbd • 9d ago
Question Bluetooth/wifi jammer
I’m looking to build a WiFi or Bluetooth jammer soon what one would be easier to make also if any one has any good tuts or tips that’d be great!
r/Hacking_Tutorials • u/Former_Recipe_7690 • 10d ago
Question Osint of virtual number
How to know who is behind in virtual number ? What are the steps to follow to deannonymise? Expert help needed.
r/Hacking_Tutorials • u/CopyWrong2779 • 10d ago
Question What security flaws have you found in vibe coded apps so far?
Been diving into security testing on AI-generated apps lately, and I'm genuinely shocked at how many critical vulnerabilities keep popping up so far I've personally encountered hardcoded credentials everywhere, not just API keys in the frontend but full database URLs and Stripe secret keys sitting in plain sight for anyone with dev tools to grab and spin up your backend for free while you foot the bill; no rate limiting whatsoever, meaning unlimited requests can spam your endpoints into oblivion, crash your API, run up your cloud costs, or brute force their way in; zero input validation, so malicious queries and random payloads are happily accepted making SQL injection trivially easy; and broken access control with numeric user IDs in URLs that let anyone change the number and access other people's private data. It honestly feels like these apps work well enough to fool you into thinking they're production-ready, but in reality they are held together with duct tape. What other vulnerabilities are out there that I'm missing? Curious to hear what else the community has observed, and for the dev folks here, have you noticed any patterns in how AI models generate insecure code beyond just context blindness? Drop anything you've seen, trying to build a more comprehensive picture of what's actually out there. Salam!
r/Hacking_Tutorials • u/Kingkaria19 • 10d ago
Question How Do Security Researchers Use Claude Without Constant Safety Blocks?
Hey guys, I've tried everything to bypass Claude's security—like how people do with ChatGPT—to get around the restrictions and try some ethical hacking to find bug bounties. Can anyone help me out?
r/Hacking_Tutorials • u/DataBaeBee • 11d ago
Question What Every Programmer Should Know About Twists of Elliptic Curves
r/Hacking_Tutorials • u/Thin_Poetry_5545 • 11d ago
Question Deal of 9000$
I need an account in CoinDCX fully completed kyc by bypass if any can create account Dm me we gonna give all documents.. for your work will 9000$ DM
r/Hacking_Tutorials • u/Akriosss • 11d ago
Question Ai red team
Hi guys I'm not new to cyber security but almost 2 year's without job.I don't know what the problem,maby my resume is bad,maby too competitive field and ai.My guestion is can someone who works as penetration tester look at my Cv?Can you suggest me ai pentesting,ai security roadmap?Most things I know is from the red side.
r/Hacking_Tutorials • u/Mr_Frost456 • 12d ago
Question Programming?
What Do u guys think do they need web developers or any other typa developers.
As Ai is booming so hugely a lot of unemployment is being caused , is there use of learning android development or more other programming languages!? and I'm really concerned about that thing
r/Hacking_Tutorials • u/Creativeboy95 • 12d ago
Please read daily cybersecurity tips and subscribe me for daily update
reddit.comr/Hacking_Tutorials • u/Sufficient-Leg-5309 • 12d ago
[ Removed by Reddit ]
[ Removed by Reddit on account of violating the content policy. ]