-
-
Notifications
You must be signed in to change notification settings - Fork 573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ruby tools build fails due to bundler upstream issue #3519
Comments
This comment was marked as spam.
This comment was marked as spam.
also dradis-ce |
This comment was marked as resolved.
This comment was marked as resolved.
wordpress-exploit-framework
Environment
Bundler Build Metadata
Bundler settings
GemfileGemfile# frozen_string_literal: true
source 'https://rubygems.org'
gemspec Gemfile.lock
Gemspecswpxf.gemspec# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'wpxf'
s.version = '2.0.1'
s.date = '2018-10-06'
s.summary = 'WordPress Exploit Framework'
s.description = 'A Ruby framework designed to aid in the penetration testing of WordPress systems'
s.authors = ['rastating']
s.email = '[email protected]'
s.files = %w[lib db data bin].map { |d| Dir["#{d}/**/*"] }.flatten + ['wpxf.gemspec']
s.homepage = 'https://github.com/rastating/wordpress-exploit-framework'
s.license = 'GPL-3.0'
s.executables << 'wpxf'
s.required_ruby_version = '>= 2.4.4'
s.add_dependency 'colorize', '~> 0.8'
s.add_dependency 'mime-types', '~> 3.2'
s.add_dependency 'nokogiri', '~> 1.8'
s.add_dependency 'require_all', '~> 2.0'
s.add_dependency 'rubyzip', '~> 1.2'
s.add_dependency 'sequel', '~> 5.13'
s.add_dependency 'slop', '~> 4.6'
s.add_dependency 'sqlite3', '~> 1.3'
s.add_dependency 'typhoeus', '~> 1.3'
s.add_development_dependency 'coveralls', '~> 0.8'
s.add_development_dependency 'database_cleaner', '~> 1.7'
s.add_development_dependency 'rspec', '~> 3.8'
s.add_development_dependency 'rspec_sequel_matchers', '~> 0.5'
s.add_development_dependency 'yard', '~> 0.9'
end |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
hoper
Environment
Bundler Build Metadata
Bundler settings
GemfileGemfilesource 'https://rubygems.org'
# Specify your gem's dependencies in hoper.gemspec
gemspec Gemfile.lock
Gemspecshoper.gemspec# coding: utf-8
require_relative 'lib/hoper/version'
Gem::Specification.new do |spec|
spec.name = "hoper"
spec.version = Hoper::VERSION
spec.authors = ["Gabriel Aramburu"]
spec.email = ["[email protected]"]
spec.summary = %q{Trace the URL's of a link.}
spec.description = %q{Trace URL's jumps across the rel links to obtain the last URL}
spec.homepage = "http://garamburu.com"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = ["hoper"]
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "curb"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 10.0"
end |
@noptrix It seems all those tools build and install correctly outside of |
The mentioned PR at the beginning has been merged... @noraj a simple question for you.. If I want to test now them by
Should I manually download vcsmap package from mirror repo and place it somewhere and rerun the command? |
@D3vil0p3r try thos steps https://gist.github.com/noraj/5045be32490f1161161e16fc5820066c#testing. PS: now that AL has moved from 3.0 to 3.2, maybe it fixes the issue. |
Here the results by vcsmap - OK
wordpress-exploit-framework - KO (btw project archived)
dawnscanner - OK
evil-winrm - OK
hoper - Install OK but hops seem to not be shown correctly
xspear - KO
cmsscanner - KO
|
cmsscanner fails to build with the following issue rubygems/rubygems#5941
same issue with:
The text was updated successfully, but these errors were encountered: