arachni-reactor 0.1.3.1 → 0.1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/arachni/reactor/connection/error.rb +8 -0
- data/lib/arachni/reactor/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0cfc973e123c07b625b3905feeb383626a4e24808844ea30aa3ecbf2dc44d5e
|
4
|
+
data.tar.gz: 47925771a19ffe849fb8fc8c0982db5ccc75dde6156c16441ab16ea8399f6759
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b960c5e0711aa617712c13ec9cae4dd8f5678df9957db8d198133aeed66f4e5be0791f3098b609c0492bb9728f477600c75a15f445e851b6b07adf1a9b8d3b4
|
7
|
+
data.tar.gz: a1410d7d143c52bae10978f83b10003c27b690e1b274de944173c4d8d78ace4a894fadb6026f7b099d42b4311d281a8717e2480051b132f71b763fe66918c924
|
data/CHANGELOG.md
CHANGED
@@ -39,6 +39,8 @@ class Error < Arachni::Reactor::Error
|
|
39
39
|
raise_with_proper_backtrace( e, Reset )
|
40
40
|
rescue Errno::EACCES => e
|
41
41
|
raise_with_proper_backtrace( e, Permission )
|
42
|
+
rescue Errno::EBADF => e
|
43
|
+
raise_with_proper_backtrace( e, BadSocket )
|
42
44
|
|
43
45
|
# Catch and forward these before handling OpenSSL::OpenSSLError because
|
44
46
|
# all SSL errors inherit from it, including OpenSSL::SSL::SSLErrorWaitReadable
|
@@ -102,6 +104,12 @@ class Error < Arachni::Reactor::Error
|
|
102
104
|
class Closed < Error
|
103
105
|
end
|
104
106
|
|
107
|
+
# Like a `Errno::EBADF` exception.
|
108
|
+
#
|
109
|
+
# @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
110
|
+
class BadSocket < Error
|
111
|
+
end
|
112
|
+
|
105
113
|
# Like a `OpenSSL::OpenSSLError` exception.
|
106
114
|
#
|
107
115
|
# @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arachni-reactor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.3.
|
4
|
+
version: 0.1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tasos Laskos
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Arachni::Reactor is a simple, lightweight, pure-Ruby implementation of the Reactor
|