TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Where should amateur bughunters look for bugs?

1 点作者 csdrane将近 10 年前
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 条评论

Nejohnson88将近 10 年前
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_hammer将近 10 年前
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.