lgandx
64cf4d9873
minor fix
2024-05-06 09:56:02 -03:00
lgandx
413bc8be31
Fixed issue with smb signing detection
2024-05-06 09:16:36 -03:00
lgandx
4ea3d7b765
removed debug
2023-12-07 09:43:10 -03:00
lgandx
31393c7072
fixed minor bug on py 3.10
2023-12-07 09:33:38 -03:00
Shutdown
aa8d81861b
Fixing collections import issue for /tools/MultiRelay/odict.py
2023-09-22 00:43:58 +02:00
Shutdown
2c4cadbf7d
Fixing import issue like in /tools/odict.py
2023-09-22 00:43:25 +02:00
Shutdown
3a23ccdef8
Upgrading collections import
2023-09-21 20:18:13 +02:00
nobbd
4ec2631ab0
Update Finger.py to fix bug with single byte comparisons in python3
2023-08-15 15:36:10 +02:00
nobbd
9713fe0e70
Update RunFinger.py to fix bug with single byte comparisons in python3
2023-08-15 15:34:08 +02:00
nobbd
63954a539c
Update RelayMultiCore.py to fix bug with single byte comparisons in python3
2023-08-15 15:18:55 +02:00
lgandx
f39079da77
Revert "run smbv1 scan in runfinger"
2022-11-08 09:22:41 -03:00
requin
cf0c4ee659
add flag (-s) to enable smbv1scan
2022-11-02 19:16:10 +01:00
requin
709df2c6e1
add hostname on smbv2 scan result
2022-10-31 17:31:16 +01:00
klemou
4321919c9f
run smbv1 scan in runfinger
2022-10-01 09:26:32 +02:00
Alexandre ZANNI
d1cb26bda7
keep compatibility with previous versions
2022-05-13 18:06:35 +02:00
Alexandre ZANNI
0ced7d52c0
odict: fix import issue
2022-05-08 20:54:23 +02:00
lgandx
568048710f
Added a check for MSSQL
2021-12-08 19:57:20 -03:00
lgandx
6e2c77168f
Small fix
2021-12-07 17:59:54 -03:00
lgandx
d425783be9
Removed old DHCP script since its now a Responder module.
2021-12-03 00:08:40 -03:00
lgandx
f90b76fed2
Added DB for RunFinger results & Report
2021-12-02 22:01:18 -03:00
lgandx
51411e6b20
few enhancements
2021-12-01 00:08:54 -03:00
lgandx
826b5af9e2
removed debug str
2021-11-30 23:50:00 -03:00
lgandx
a462d1df06
added timeout option for fine tuning
2021-11-30 23:42:04 -03:00
lgandx
02fb3f8978
Added support for single IP or range file.
2021-11-20 20:35:33 -03:00
lgandx
1b2a22facf
Fixed a bug and increased speed.
2021-11-20 20:11:58 -03:00
lgandx
350058c179
fixed minor isse
2021-04-20 13:09:00 -03:00
HexPandaa
7d96fa95c4
Compare strings with ==
instead of is
...
`==` should be used when comparing values, `is` should be used to compare identities.
Modern versions of Python throw a SyntaxWarning.
2021-04-02 17:13:05 +02:00
HexPandaa
51f176633e
Compare values with ==
instead of is
...
`==` should be used when comparing values, `is` should be used to compare identities.
Modern versions of Python throw a SyntaxWarning.
2021-04-02 17:10:17 +02:00
HexPandaa
3d9147f36c
Compare strings with ==
instead of is
...
`==` should be used when comparing values, `is` should be used to compare identities.
Modern versions of Python throw a SyntaxWarning.
2021-04-02 17:04:36 +02:00
HexPandaa
f4c11111a7
Compare strings with ==
instead of is
...
`==` should be used when comparing values, `is` should be used to compare identities.
Modern versions of Python throw a SyntaxWarning.
2021-04-02 17:03:56 +02:00
HexPandaa
c33da69a8b
Use ==
instead of is
...
`==` should be used when comparing values, `is` should be used to compare identities.
2021-04-02 17:00:35 +02:00
lgandx
6c51080109
removed FindSMB2UPTime.py since RunFinger already get this info
2021-03-26 01:43:03 -03:00
lgandx
3b3ee1314e
Ported DHCP.py to py3
2021-03-25 23:34:16 -03:00
lgandx
6658c2b98f
made compatible py2/py3
2021-03-25 23:06:48 -03:00
lgandx
5c56c6e0ca
Ported to py3
2021-03-25 21:55:56 -03:00
lgandx
35b12b4832
Removed MultiRelay binaries
2021-03-20 14:25:39 -03:00
lgandx
4bddf50b5c
Ported MultiRelay to python3 + enhancements.
2021-02-08 15:11:31 -03:00
lgandx
24e7b7c667
Added support for SMB2 signing
2020-12-31 09:39:15 -03:00
lgandx
a78dfdf3c7
minor bugfix
2020-12-31 08:52:18 -03:00
lgandx
e24792d774
Added SMB2 support for RunFinger and various other checks.
2020-12-31 01:27:43 -03:00
lgandx
fc4ac599d3
Merge branch 'master' of https://github.com/lgandx/Responder
2020-12-31 01:18:16 -03:00
lgandx
d2e5642d58
Added SMB2 support for RunFinger and various other checks.
2020-12-31 01:13:27 -03:00
Khiem Doan
fb10d20ea3
Fix wrong syntax
2020-11-26 14:19:06 +07:00
lgandx
691c44138c
Merge pull request #125 from nop5L3D/patch-1
...
Alter "is" to "==" for Python 3.8 compatibility
2020-08-17 14:58:18 -03:00
nop5L3D
052c1a8285
Alter "is" to "==" for Python 3.8 compatibility
...
Change the usage of "is" to "==" to comply with the new syntax warnings found in python >= 3.8
Observed warnings:
RunFinger.py:61: SyntaxWarning: "is" with a literal. Did you mean "=="?
if PY2OR3 is "PY2":
RunFinger.py:68: SyntaxWarning: "is" with a literal. Did you mean "=="?
if PY2OR3 is "PY2":
RunFinger.py:74: SyntaxWarning: "is" with a literal. Did you mean "=="?
if PY2OR3 is "PY2":
2020-06-15 14:29:05 -04:00
Sagar-Jangam
05617defef
Added DNSUpdate.py, a small script to add DNS record to DC for gatering from different VLANs
2020-04-08 07:23:35 -04:00
lgandx
b510b2bb25
Added py3 and py2 compatibility + many bugfix
2020-01-09 14:47:56 -03:00
Clément Notin
80aa964294
FindSMB2UPTime: properly deal with servers not disclosing their boot time
2019-02-04 11:46:08 +01:00
lgandx
7339411766
Enhanced flags2 to force SMB signature off
2019-01-15 16:18:47 -03:00
lgandx
38e721da98
fixed minor bugfix on recent merge
2018-11-28 21:07:39 -03:00