It looks like you're new here. If you want to get involved, click one of these buttons!
Lol why don't you look through sources yourself? I was looking through XCHAT source(http://xchat.svn.sourceforge.net/viewvc/xchat/)
And by looking at just some of the codes, some may be exploitable. For example:
strcpy (prefs.nick1, username);
Line 691 of http://xchat.svn.sourceforge.net/viewvc ... iew=markup
Of course that doesn't mean its exploitable. strcpy doesn't preform bounds checking though, so its not as safe as strncpy. Just look through source and see if you can exploit anything.
It also depends on your knowledge .. I believe in starting to pawn small applications at first understanding the concepts and working with the exploit building process teaches you a lot more than any tutorial can and then more your way up as good applications are protected with SEH(pawnable i know ) , SAFESEH , ASLR , stack cookies etc .. we hae to build our way up .. i am going through SEH nowadays :) Once i am finished i will write a whitepaper on it
And don't just focus on BoF's. Theres format string overflows, off by ones etc. I'll be writing a somewhat simple guide to format strings in a bit.