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
mzfr
35800dd0f2
Add option to repeat the command
2020-03-12 19:05:07 +05:30
Michael Skelton
29a6935129
Merge pull request #99 from amalmurali47/master
...
Improve documentation
2020-03-12 21:01:04 +10:00
Amal Murali
07a7b3e2cd
Improve documentation
2020-03-12 16:27:14 +05:30
Michael Skelton
5eaa58409c
Merge pull request #96 from joohoi/fix_95
...
Fix issue of breaking process when a child process of subprocess closes stdout pipe
2020-03-12 07:27:32 +10:00
Michael Skelton
b7bb169e4b
Merge pull request #97 from ualvesdias/patch-1
...
Update check_positive method to handle ValueError exception.
2020-03-12 07:24:56 +10:00
ualvesdias
0e70d37a42
Update check_positive method to handle ValueError exception.
...
I saw that, despite you're testing if the thread argument is positive, you're not testing if it's a number, so "ivalue = int(arg)" can cause an exception if I pass an argument like "--thread abc". I didn't have much time to chack if you test this somewhere else, but I think you don't. Thanks for the opportunity! I hope I can help.
2020-03-11 17:18:45 -03:00
Joona Hoikkala
d82b6ca750
Fix issue of breaking process when a child process of subprocess closes stdout pipe
2020-03-11 19:27:46 +02:00
Sajeeb Lohani
053336cffe
Merge pull request #94 from codingo/one-command-fix
...
One command fix
2020-02-12 21:04:28 +11:00
prodigysml
91d88d7fe5
Version increment
2020-02-12 21:03:27 +11:00
prodigysml
bc6d4a4fb7
Removed debug print
2020-02-12 21:03:01 +11:00
prodigysml
dcca00f15b
Fixed silly mistake with command creation
2020-02-12 21:02:48 +11:00
Sajeeb Lohani
c6630d056c
Merge pull request #92 from codingo/dup-clean-targets
...
Dup clean targets
2020-02-11 10:56:52 +11:00
prodigysml
3b5ecb1010
Version increment done, as fix was applied
2020-02-11 10:55:39 +11:00
prodigysml
7d85a13faf
Fixed issue with dup clean target command creation
2020-02-11 10:55:08 +11:00
Sajeeb Lohani
223bd4bd75
Merge pull request #90 from codingo/new-line-printing-patch
...
New line printing patch
2020-01-11 23:59:27 +11:00
Sajeeb Lohani
3279a454a4
Upgrade version
...
Should patch issue #89
2020-01-11 23:58:00 +11:00
Sajeeb Lohani
5db8ed18a3
Stops printing of empty lines
2020-01-11 23:56:56 +11:00
Sajeeb Lohani
caa5c62f4e
Merge pull request #85 from codingo/ip-address-detector-fix
...
Ip address detector fix
2019-11-03 20:12:57 +11:00
Sajeeb Lohani
5e97b9ffc8
Incremented version number
2019-11-03 20:12:33 +11:00
Sajeeb Lohani
64e7484ca2
Fix for IP address detection
2019-11-03 20:11:35 +11:00
Sajeeb Lohani
17230375c2
Merge pull request #82 from codingo/url_comma_fix
...
Url comma fix
2019-10-19 18:56:17 +11:00
prodigysml
54c90eba1f
Updated version of interlace
2019-10-19 18:55:53 +11:00