snackhack2 0.6.3 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53282826a6f249348a56f21a2aeca1ce6b7d94e10d942f7745590f5a7fc1a610
4
- data.tar.gz: e061957e93c5b097e3a76f8a41823c09b89fdd0ce78f0176091fdccaf6a4d98a
3
+ metadata.gz: b44fea8c993ba9a8b7e92843709b1eb1a59580cf5dcc20096ad94b4c41adbda4
4
+ data.tar.gz: 775b9eb6964f2b830b9e01ce1e0cd3c37349c16a4a1569e803f4b24252972315
5
5
  SHA512:
6
- metadata.gz: 5b8c9a6fcea6b5a329bd7ee09b2296ef059635d10040bd4bf3aa599e2b7d365276b1c8cbb9cb2e2d76abeef8982dff1149eb7b51acf283341259c3fa64ebadb2
7
- data.tar.gz: 888e8310dc7aa1b08355e9924b78a69943ce2e4d8fc9fadf31aa7bc28fef4dbc97e07f688693ccf0aa783356ed8c43cac2021670ce45aecf94d7a5a09b706a96
6
+ metadata.gz: f7c39179c33fb0f81e330c76283d78af4b6717d8f4cd3d8f66d1884fedaa79f7860638e5a7cfdb968447ba1649d4a61d3dc20266fd9036609882596e69a1cb9b
7
+ data.tar.gz: f5cd16fcd0e0d29db2f3ca8f9dba20474112c216a4433379e103193f72469ecdca10f0cfd78d9b7db5eeb760701d399935702aaec6728356f7f1373a2525f7af
@@ -15,6 +15,8 @@ module Snackhack2
15
15
  line = l.strip
16
16
  if line.start_with?("<!--")
17
17
  puts body[i].next
18
+ elsif line.include?("<!")
19
+ puts body[i].next
18
20
  end
19
21
  end
20
22
  else
@@ -19,5 +19,13 @@ module Snackhack2
19
19
  def windows_search_user
20
20
  puts `net user #{@user}`
21
21
  end
22
+ def auto
23
+ os = RUBY_PLATFORM
24
+ if os.match?("linux")
25
+ linux
26
+ elsif os.match?("mingw") or os.match?(/mswin|msys|mingw|cygwin|bccwin|wince|emc/)
27
+ windows
28
+ end
29
+ end
22
30
  end
23
31
  end
@@ -64,7 +64,7 @@ module Snackhack2
64
64
 
65
65
  if @display
66
66
  open_ports.each do |port|
67
- puts "#{port} is open"
67
+ puts "#{ip} - #{port} is open\n"
68
68
  end
69
69
  end
70
70
  File.open("#{ip}_port_scan.txt", 'a') { |file| file.write(open_ports.shift.to_s + "\n") }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Snackhack2
4
- VERSION = '0.6.3'
4
+ VERSION = '0.6.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snackhack2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mike
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-07 00:00:00.000000000 Z
11
+ date: 2024-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty