prodigysml
ae5b19a671
fixed python styling issues that made me go bonkers
2022-01-22 20:16:34 +11:00
prodigysml
fdc50fda96
Version increment
2022-01-22 20:14:04 +11:00
prodigysml
9fc8e90809
Added in suppression when --silent is used
2022-01-22 20:13:32 +11:00
Sajeeb Lohani (sml555 / prodigysml)
98a9183066
Merge pull request #150 from felipecaon/upgrade-tqm-4.62.3
...
Upgrade tqm dependency
2022-01-22 19:04:51 +11:00
Sajeeb Lohani (sml555 / prodigysml)
3529f4249b
Merge pull request #153 from 0xtavian/master
...
Removed some print statements
2022-01-22 19:03:54 +11:00
0xtavian
eee744658c
Update input.py
2022-01-14 02:54:58 +00:00
0xtavian
7226ef5573
Update interlace.py
2022-01-14 02:51:28 +00:00
Felipe Caon
e321500d6d
Upgrading tqm dep
2021-11-26 23:29:37 -03:00
Sajeeb Lohani (sml555 / prodigysml)
a524055ec7
Update __version__.py
2021-05-07 10:58:23 +10:00
Sajeeb Lohani (sml555 / prodigysml)
5080c6b3a4
Merge pull request #144 from alanEG/patch-2
...
Regarding an option "-c" use "/bin/sh" by default
2021-05-07 10:58:04 +10:00
Sajeeb Lohani (sml555 / prodigysml)
8eada87ad7
Update __version__.py
2021-05-07 10:56:32 +10:00
Sajeeb Lohani (sml555 / prodigysml)
fcc8984381
Merge pull request #145 from alanEG/master
...
Update input.py
2021-05-07 10:56:13 +10:00
abdallaEG
8419c86d74
Update threader.py
2021-05-06 07:45:25 +02:00
abdallaEG
d7d7c2acd7
Update input.py
2021-05-06 06:47:52 +02:00
abdallaEG
f62119b8f8
Update threader.py
2021-05-02 04:28:03 +02:00
Michael Skelton
068a991074
Merge pull request #137 from codingo/sober-fix
...
Sober fix
2021-02-23 17:24:36 +10:00
prodigysml
69a65a9fb4
Incremented version
2021-02-23 00:59:34 +11:00
prodigysml
b11e9db2a5
Changed to ensure Interlace waits for the thread to finish
2021-02-23 00:59:06 +11:00
Michael Skelton
aec744ffdf
Merge pull request #132 from codingo/fix-ip-issue
...
Fix ip issue
2021-02-03 22:38:18 +10:00
Sajeeb Lohani
d50462c06d
Merge pull request #133 from Max-Trouble/patch-1
...
Update README.md with cleantarget variable
2021-02-03 16:29:42 +11:00
Max
9afbd4857e
Update README.md
...
Added cleantarget in the Variable Replacements section
2021-02-02 23:10:30 +01:00
prodigysml
9d7e421a3a
Incrementing version number
2021-01-30 19:41:05 +11:00
prodigysml
6abc0642dd
Removed comments
2021-01-30 19:40:31 +11:00
prodigysml
67da487ed9
Removed unused code and fixed IP issue
2021-01-30 19:39:24 +11:00
Michael Skelton
f38bb59009
Merge pull request #127 from devec0/faster-cidr-mapping
...
Faster mapping of CIDRs to IPs
2021-01-05 16:30:21 +10:00
James Hebden
99cfed1214
Faster mapping of CIDRs to IPs
2020-11-27 09:28:43 +11:00
Sajeeb Lohani
7ccee77970
Merge pull request #125 from bolli95/master
...
encoding bug fixed at setup.py
2020-11-22 10:52:21 +11:00
Sajeeb Lohani
7d715f6dcb
Merge pull request #124 from whiteroses/fix-issue-123
...
Accept hostname targets that do not contain a period.
2020-10-26 20:07:24 +11:00
prodigysml
f2e0a2b39e
Incremented version
2020-10-26 20:06:16 +11:00
Max Boll
bfc6e6c282
encoding bug fixed at setup.py
2020-10-25 12:00:28 +01:00
Ira Lun
7034a09e09
Accept hostname targets that do not contain a period.
...
This fixes issue #123 , which was due to a misinterpretation of the
line
`if host.split(".")[0][0].isalpha() or host.split(".")[-1][-1].isalpha():`
(see commit 8d46d14731 , L156). Because of
how Python's str.split() works, a hostname that does not contain a
period when .split(".") results in a single-item list, so this
expression evaluates to True. However, this also means that the
.split()s had no effect: the line was equivalent to
`if host[0].isalpha() or host[-1].isalpha()`.
2020-10-12 04:56:54 +01:00
Sajeeb Lohani
9ba669da16
Merge pull request #121 from whiteroses/fix-out-of-memory-issue-119
...
Improve memory usage in the generation of tasks (to fix issue #119 )
2020-10-03 23:20:58 +10:00
prodigysml
c8c4ae83c5
Added version increment for the major update
2020-10-03 13:19:57 +00:00
Ira Lun
14066c608a
Fix the name of the exception when queue is empty.
2020-10-01 20:42:54 +01:00
Ira Lun
d1c90a49cd
Improve memory usage in the generation of tasks (to fix issue #119 ).
...
Switch to generating tasks using iterators, and make other changes such
as using netaddr's IPSet to store ranges of IP addresses, in order to
reduce the use of memory where possible.
2020-09-29 07:15:15 +01:00
Michael Skelton
8d46d14731
Merge pull request #116 from machinexa2/patch-2
...
The previous fix caused an error thats why new fix
2020-09-04 11:52:31 +10:00
Machinexa2
0c09ecb038
The previous fix caused an error thats why new fix
...
https://github.com/codingo/Interlace/issues/115 I didnt expect the target_file to come as io.TextIOWrapper but i thought it would come as filename. And this fixes it. Also, this time there's no error because i tested it locally on my pc.,
2020-08-30 18:59:01 +05:45
Michael Skelton
5a42a74de2
Merge pull request #113 from DaddyDell/master
...
Update requirements.txt
2020-08-30 14:56:39 +10:00
Michael Skelton
b7544b8e6d
Merge pull request #111 from machinexa2/patch-3
...
fix for https://github.com/codingo/Interlace/issues/109
2020-08-30 14:55:39 +10:00
Michael Skelton
503a53e51a
Merge pull request #110 from machinexa2/patch-2
...
small fixes
2020-08-30 14:55:07 +10:00
DaddyDell
1b5393bfa7
Update requirements.txt
2020-08-10 16:21:03 -07:00
Machinexa2
ed7006c690
fix for https://github.com/codingo/Interlace/issues/109
...
fix for https://github.com/codingo/Interlace/issues/109
2020-08-10 15:25:38 +05:45
Machinexa2
c6c7b73cc3
small fixes
...
small fixes
2020-08-10 15:22:38 +05:45
Michael Skelton
79853cfcf9
Merge pull request #108 from codingo/dot-breaks-target-fix
...
Dot breaks target fix
2020-07-29 16:08:27 +10:00
prodigysml
8d32a1ffc8
Incremented version
2020-07-29 02:53:54 +00:00
prodigysml
8bec88b819
Edited to fix the dot problem
2020-07-29 02:52:29 +00:00
Michael Skelton
139f5ced81
Merge pull request #106 from codingo/port-replace-fix
...
Fixed #102 bug and incremented the version
2020-07-29 12:44:41 +10:00
prodigysml
932aec9483
Fixed #102 bug and incremented the version
2020-07-27 07:09:07 +00:00
Michael Skelton
7c8a77c30a
Update __version__.py
2020-04-09 18:54:40 +10:00
Michael Skelton
2aab88d3c7
Merge pull request #100 from mzfr/repeat
...
Add option to repeat the command
2020-04-09 01:53:58 -07:00