Advertisement
The_KGB

[Tut] Fixing Metasploit error on Backtrack 5 R2

Mar 28th, 2012
3,201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. [-]Intro
  2. So, you decided to install Backtrack 5 R2. Well, if you are me, then you had initial problems with Metasploit.
  3.  
  4. Whenever I would try to run msfupdate, I would receive an error.
  5. The error would state that "No version information available"
  6.  
  7. [-] The Problem
  8. The error:
  9. svn: /opt/metasploit/common/lib/libssl.so.0.9.8: no version information available (required by /opt/metasploit/common/lib/libserf-0.so.0)
  10. svn: /opt/metasploit/common/lib/libcrypto.so.0.9.8: no version information available (required by /opt/metasploit/common/lib/libserf-0.so.0)
  11. svn: /opt/metasploit/common/lib/libssl.so.0.9.8: no version information available (required by /opt/metasploit/common/lib/libserf-0.so.0)
  12. svn: /opt/metasploit/common/lib/libcrypto.so.0.9.8: no version information available (required by /opt/metasploit/common/lib/libserf-0.so.0)
  13.  
  14.  
  15. [-] The Fix
  16. Well, here is how to fix this rediculous error:
  17. (please be very careful)
  18. -Open terminal and enter these lines:
  19.  
  20. cd /opt/metasploit/common/lib
  21.  
  22. mv libcrypto.so.0.9.8 libcrypto.so.0.9.8-b
  23.  
  24. mv libssl.so.0.9.8 libssl.so.0.9.8-backup
  25.  
  26. ln -s /usr/lib/libcrypto.so.0.9.8
  27.  
  28. ln -s /usr/lib/libssl.so.0.9.8
  29.  
  30. [-]Conclusion
  31. I hope that this helps someone. Enjoy!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement