TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Where should amateur bughunters look for bugs?

1 pointsby csdranealmost 10 years ago
I'm your typical computer security hobbyist. I'm interested in searching for bugs I can call my own. But, I'm sure that some areas are more fruitful than others. I'm looking for advice from professionals on where a novice is likely to have the most success. Other, more general, tips on bughunting is appreciated as well.

2 comments

Nejohnson88almost 10 years ago
A good recourse for tools for everything from Security audits to analysis to fuzzing is : <a href="https:&#x2F;&#x2F;packetstormsecurity.com&#x2F;files&#x2F;tags&#x2F;tool&#x2F;page2&#x2F;" rel="nofollow">https:&#x2F;&#x2F;packetstormsecurity.com&#x2F;files&#x2F;tags&#x2F;tool&#x2F;page2&#x2F;</a><p>Other then that learning the proper lingo gives you the proper search terms when looking around. Looking the txt zines gives you some interesting search phrases aswell as sometimes bug hunting comes up. Also do some deepweb diving or darknet hunting (which ever term you like).
mc_hammeralmost 10 years ago
one idea is to use a static analysis tool and look for memory exploits. for practice you could take say an old version of any popular app (say bittorent v0.1 ) and run it through the tool. the older versions would have example bugs and memory exploits so you can get familiar with the tool. maybe that would also give you some ideas of places to look for bugs (since first versions tend to be more buggy).<p>the most fruitful has been for a long time sql injection (imo). while thats largely been fixed by parametized queries, theres probably a ton of software that was never upgraded.