Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linux, Backtrack, Perl, Bluesniff

Tags:

perl

I am trying to run bluesniff on backtrack.I have the bluesniff.pl script and when i try to execute it by typing:

perl bluesniff.pl

An error message came out:

Can't locate Curses.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10 /usr/local/lib/site_perl .) at /usr/local/share/perl/5.10.1/Curses/Application.pm line 92. BEGIN failed--compilation aborted at /usr/local/share/perl/5.10.1/Curses/Application.pm line 92. Compilation failed in require at bluesniff.pl line 23. BEGIN failed--compilation aborted at bluesniff.pl line 23.

Please advise!

To all who commented, thanks! It worked.

like image 547
Gali Stinsonz Avatar asked Sep 02 '25 09:09

Gali Stinsonz


2 Answers

Run

cpan Curses

from the command line to install this module and all dependencies.

like image 173
Dr.Avalanche Avatar answered Sep 05 '25 00:09

Dr.Avalanche


You need to download the Curses Perl module.

like image 38
Oscerd Avatar answered Sep 05 '25 01:09

Oscerd