Yersinia : patch to compile under openSUSE (11.1)
Yet another post in the series of compilation failures due to unexpected libraries paths.
This time, it is about Yersinia and the ncurses library. I made the following yersinia-opensuse11.1 patch which should work for openSUSE 11.1 and maybe other versions or distros.
Related posts:
- Compile Hping on OpenSuse (and maybe others…)
- Compilation of PackETH on openSUSE
- openSUSE kernel sources : patching against sock_sendpage() NULL Pointer Dereference vulnerability
- No Nessus gui client and limited support of the server for openSUSE
- Microphone issue with openSUSE 11.1
JC :: Jun.14.2009 :: Hacking, Linux, Scripts, Programs, Security, openSUSE :: 3 Comments »








How to apply this patch, because I always get this
patch: **** Only garbage was found in the patch input.
error message when trying to apply it using command
patch -u -p0 > yersinia-opensuse11.1.patch
You have a typo (>), and you should not use “-u” for this patch format.
So, just :
patch -p0 < yersinia-opensuse11.1.patch
Thanks for the patch, i was getting crazy compiling yersinia.
Great work.