Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit c12fd97

Browse files
committed
Upgrade require_all to ~>2.0
1 parent d163739 commit c12fd97

10 files changed

+61
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ sftp-config.json
9191

9292
# Atom Plugins
9393
deployment-config.json
94-
Gemfile.lock
9594

9695
# NPM
9796
node_modules/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source 'https://rubygems.org'
44
gem 'colorize', '>=0.8.1'
55
gem 'mime-types', '>=3.1'
66
gem 'nokogiri', '~>1.8.1'
7-
gem 'require_all', '~>1.4'
7+
gem 'require_all', '~>2.0'
88
gem 'rubyzip', '~>1.2.1'
99
gem 'slop', '~>4.6.0'
1010
gem 'typhoeus', '~>1.3.0'

Gemfile.lock

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
colorize (0.8.1)
5+
diff-lcs (1.3)
6+
ethon (0.11.0)
7+
ffi (>= 1.3.0)
8+
ffi (1.9.18)
9+
mime-types (3.1)
10+
mime-types-data (~> 3.2015)
11+
mime-types-data (3.2016.0521)
12+
mini_portile2 (2.3.0)
13+
nokogiri (1.8.1)
14+
mini_portile2 (~> 2.3.0)
15+
require_all (2.0.0)
16+
rspec (3.7.0)
17+
rspec-core (~> 3.7.0)
18+
rspec-expectations (~> 3.7.0)
19+
rspec-mocks (~> 3.7.0)
20+
rspec-core (3.7.0)
21+
rspec-support (~> 3.7.0)
22+
rspec-expectations (3.7.0)
23+
diff-lcs (>= 1.2.0, < 2.0)
24+
rspec-support (~> 3.7.0)
25+
rspec-mocks (3.7.0)
26+
diff-lcs (>= 1.2.0, < 2.0)
27+
rspec-support (~> 3.7.0)
28+
rspec-support (3.7.0)
29+
rubyzip (1.2.1)
30+
slop (4.6.0)
31+
typhoeus (1.3.0)
32+
ethon (>= 0.9.0)
33+
34+
PLATFORMS
35+
ruby
36+
37+
DEPENDENCIES
38+
colorize (>= 0.8.1)
39+
mime-types (>= 3.1)
40+
nokogiri (~> 1.8.1)
41+
require_all (~> 2.0)
42+
rspec (~> 3.7)
43+
rubyzip (~> 1.2.1)
44+
slop (~> 4.6.0)
45+
typhoeus (~> 1.3.0)
46+
47+
BUNDLED WITH
48+
1.16.1

modules/exploits/adsense_plugin_reflected_xss_shell_upload.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
require_rel './bws_panel_reflected_xss_shell_upload'
4+
35
class Wpxf::Exploit::AdsensePluginReflectedXssShellUpload < Wpxf::Exploit::BwsPanelReflectedXssShellUpload
46
def initialize
57
super

modules/exploits/aries_revslider_shell_upload.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
require_rel './revslider_shell_upload'
4+
35
class Wpxf::Exploit::AriesRevsliderShellUpload < Wpxf::Exploit::RevsliderShellUpload
46
def initialize
57
super

modules/exploits/charity_theme_shell_upload.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
22

33
require 'socket'
4+
require_rel './simplecart_shell_upload'
45

56
class Wpxf::Exploit::CharityThemeShellUpload < Wpxf::Exploit::SimplecartShellUpload
67
include Wpxf

modules/exploits/mobile_app_builder_shell_upload.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
require_rel './mobile_app_native_v3_shell_upload'
4+
35
class Wpxf::Exploit::MobileAppBuilderShellUpload < Wpxf::Exploit::MobileAppNativeV3ShellUpload
46
def initialize
57
super

modules/exploits/premium_seo_pack_shell_upload.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
require_rel './woocommerce_amazon_affiliates_v8_shell_upload'
4+
35
class Wpxf::Exploit::PremiumSeoPackShellUpload < Wpxf::Exploit::WoocommerceAmazonAffiliatesV8ShellUpload
46
def initialize
57
super

payloads/bind_php.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
22

33
require 'socket'
4+
require_rel './socket_helper'
45

56
module Wpxf::Payloads
67
# A PHP shell bound to an IPv4 address.

payloads/reverse_tcp.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
require_rel './socket_helper'
4+
35
module Wpxf::Payloads
46
# A basic reverse TCP shell written in PHP.
57
class ReverseTcp < Wpxf::Payload

0 commit comments

Comments
 (0)