ring0lab / catphish

CATPHISH project - For phishing and corporate espionage. Perfect for RED TEAM.
600 stars 120 forks source link

Error on running the tool #1

Closed B4RD4k closed 7 years ago

B4RD4k commented 7 years ago

Hello, when i'm trying to run the tool i'm getting this error message can you please assist? 10x

/usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in require': cannot load such file -- simpleidn (LoadError) from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:inrequire' from catphish.rb:14:in `

'

alexpeleg commented 7 years ago

having the same issue.

Dviros commented 7 years ago

working for me did you run the following? gem install simpleidn whois whois-parser

B4RD4k commented 7 years ago

after installing, work :)

strazzere commented 7 years ago

Correct - you just need to make sure you do a gem install on all the imports for this project. What @Dviros mentioned should suffice or what I had to do;

gem install resolv simpleidn whois whois-parser

picatz commented 7 years ago

@ring0lab I think the best thing that could be done to solve the dependency issues for the tool would be to bundle it up as a ruby gem and have those dependencies managed when a user installs the tool through something like:

$ gem install catphish

I'm working a refactor of catphish right now which I could bundle up and maintain as a separate project if you don't want to do that. But, I think it would be worth looking into.

ring0lab commented 7 years ago

@picatz Thanks for your suggestion, this is a great idea. We will look into this and let you later.