You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/payloads/adapters/cmd/unix/php.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ def initialize(info = {})
23
23
end
24
24
25
25
defcompatible?(mod)
26
-
ifmod.type == Msf::MODULE_PAYLOAD && (mod.class.const_defined?(:CachedSize) && mod.class::CachedSize != :dynamic) && (mod.class::CachedSize >= 120_000)# echo does not have an unlimited amount of space
26
+
ifmod.type == Msf::MODULE_PAYLOAD && mod.class.const_defined?(:CachedSize) && mod.class::CachedSize != :dynamic && (mod.class::CachedSize >= 120_000)# echo does not have an unlimited amount of space
Copy file name to clipboardExpand all lines: modules/payloads/adapters/cmd/unix/python.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ def initialize(info = {})
23
23
end
24
24
25
25
defcompatible?(mod)
26
-
ifmod.type == Msf::MODULE_PAYLOAD && (mod.class.const_defined?(:CachedSize) && mod.class::CachedSize != :dynamic) && (mod.class::CachedSize >= 120_000)# echo does not have an unlimited amount of space
26
+
ifmod.type == Msf::MODULE_PAYLOAD && mod.class.const_defined?(:CachedSize) && mod.class::CachedSize != :dynamic && (mod.class::CachedSize >= 120_000)# echo does not have an unlimited amount of space
0 commit comments