Skip to content

Commit 1463691

Browse files
committed
Merge branch 'master' of https://github.com/eagle00789/PythonMiniProbe into eagle00789-master
Conflicts: README.md VERSION.txt miniprobe.py
2 parents 0da38bd + 5c7b5ad commit 1463691

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+15120
-836
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.pyc
22
*.log
3+
*.gz
34
*.conf
5+
sensors/__init__.py

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ Python 2.7+
1111
Needed modules are delivered with the probe package:
1212
- pyasn1 (https://pypi.python.org/pypi/pyasn1/0.1.7)
1313
- pysnmp (https://pypi.python.org/pypi/pysnmp/4.2.5)
14-
- requests (https://pypi.python.org/pypi/requests/2.5.1)
14+
- requests (https://pypi.python.org/pypi/requests/2.5.3)
15+
- dnspython (https://pypi.python.org/pypi/dnspython/1.12.0)
1516

1617
Installation
1718
------------
@@ -53,6 +54,19 @@ This will enable detailed logging to folder "logs" which is as sub folder of the
5354

5455
Changelog
5556
=========
57+
58+
=======
59+
07-05-2015
60+
----------
61+
- Finished the DNS Sensor for all dns types currently available in a Windows Probe
62+
- Added an APT sensor to check for available updates on the system
63+
64+
04-05-2015
65+
----------
66+
- Added dns sensor with support for A MX and SOA Records
67+
- Set the log message "Running Sensor: ..." to a debug message
68+
- Added the dnspython module for the dns sensor
69+
5670
10-03-2015
5771
----------
5872
- Added support for internal QA

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.1.5
1+
15.2.2

dns/__init__.py

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Copyright (C) 2003-2007, 2009, 2011 Nominum, Inc.
2+
#
3+
# Permission to use, copy, modify, and distribute this software and its
4+
# documentation for any purpose with or without fee is hereby granted,
5+
# provided that the above copyright notice and this permission notice
6+
# appear in all copies.
7+
#
8+
# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
9+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
11+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
14+
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15+
16+
"""dnspython DNS toolkit"""
17+
18+
__all__ = [
19+
'dnssec',
20+
'e164',
21+
'edns',
22+
'entropy',
23+
'exception',
24+
'flags',
25+
'hash',
26+
'inet',
27+
'ipv4',
28+
'ipv6',
29+
'message',
30+
'name',
31+
'namedict',
32+
'node',
33+
'opcode',
34+
'query',
35+
'rcode',
36+
'rdata',
37+
'rdataclass',
38+
'rdataset',
39+
'rdatatype',
40+
'renderer',
41+
'resolver',
42+
'reversename',
43+
'rrset',
44+
'set',
45+
'tokenizer',
46+
'tsig',
47+
'tsigkeyring',
48+
'ttl',
49+
'rdtypes',
50+
'update',
51+
'version',
52+
'wiredata',
53+
'zone',
54+
]

0 commit comments

Comments
 (0)