-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCHANGELOG
2121 lines (1450 loc) · 59.1 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 3642b8caaf081d46681b61586bf463665dbef6a0
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 16:17:16 2016 +0000
Issue #29 fix; discover() method validation
commit 2b178478337079048b3d75c972a6f738d684f291
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 1 15:02:51 2015 +0000
Applied pr #27 - XML keys
commit 579976c2b3234b0be43946995266e0aa307e5ffa
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 1 15:01:10 2015 +0000
v0.2.21 version bump
commit 5a9c5ad6efb06a66906d4adee16b948d55b53ee8
Merge: ba4b100 088d5ca
Author: Jason Gerfen <jason.gerfen@gmail.com>
Date: Mon Oct 26 06:47:25 2015 -0600
Merge pull request #27 from regulatre/master
Specified object key names for attributes/char to overide $ and _
commit 088d5ca0be04b3402f1bf87b944470c1de684659
Author: Brad Hein <linuxbrad@gmail.com>
Date: Thu Oct 22 16:15:00 2015 -0400
Override default $ object key name
The xml2js parser is used to convert nmap results output into objects
used by node-libnmap. The parser by default uses $ for object key
names as it parses the rather complex XML object returned by nmap
As it turns out, Mongo (and probably other dbs) don't like key names
that use special characters, for security reasons among others.
So I order to promote easy storage of the nmap scan result object I
have adjusted these default key names such that they confirm to simple
naming standards and no longer consist of special characters.
After this commit it is possible to dump an entire scan result object
right into Mongo if that is your desire.
commit ba4b100e7aa02ff4c19a2ffcb28f8fc809dc489d
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 03:58:33 2015 +0000
Version bump for npm release
commit 07f5433906235389c440bb0fe6c8d6bb2c4e88df
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 03:56:43 2015 +0000
Set all dependencies to a version lock
commit ab018f6737edd13ff375e2dac740004f969cbebb
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 03:52:56 2015 +0000
Version bump; v0.2.19
commit b90ae1961d1398f76ad3a5abf90185d70bf5685a
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 03:51:51 2015 +0000
Removed npm shrinkwrap
commit b4bf3ef8ed093a8eba5d45d20a0cd31f56f14f7e
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 02:58:02 2015 +0000
Version bump & fix for missing hosts
commit cc6c79eb0624119f6fa69cbb370de5a32d1dfd44
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Oct 26 02:48:50 2015 +0000
Updated to package.json
commit f9080020055ea544ad809ab6896c8e2c07606e32
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 16:06:11 2015 +0000
Version bump
commit 7756e6fe1d7cfccb49ca27eaf19872531b6d5fa4
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 16:05:03 2015 +0000
Fix for discover example & version bump to v0.2.17
commit 78c894510bd67fabeacfc52c8736e12bd1d45b51
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 16:00:24 2015 +0000
Added examples/accuracy.js
commit 1cef1198970f69d9f3927fb967ef07dfc691ef30
Merge: 4017a01 6faa636
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 15:59:11 2015 +0000
Merge branch 'v0.2.16'
commit 6faa6368234c990b069f3e01c5df8838b39668f2
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 15:54:52 2015 +0000
Options fixes & readme output exmaple
commit 4daa4c021743f79f9adce610b38c26fdd7fa28da
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 15:03:34 2015 +0000
Fixes for flags, example output & accuracy
commit 7156c5d74f303ef7f119f8d31b0a11a895992b04
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 13:45:47 2015 +0000
Fix for optional 'opts' arg in discover example
commit 3c94e957e6d140e58e0c476135554f83a713178c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 25 13:44:19 2015 +0000
Version bump; v0.2.16
Examples:
Relative path for module fix
Tests:
Added comment for discover regarding missing object key
Fix for invalid flags scan; requires a range specification
commit 4017a010a1f96e57cbbd0b3dd13cab80121d853a
Merge: 0c46c5c 19ebe6a
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 18:02:33 2015 +0000
Merge branch 'v0.2.15'
commit 19ebe6ad8b50ba48573a461d94dc83f2289a6b32
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 18:02:14 2015 +0000
Version bump
commit 0c46c5c185a9a8701a00e144686acba4376d0dfd
Merge: 28d3575 63d1b95
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:59:51 2015 +0000
Readme
commit 63d1b95d59fad1530694f7b3f42972fcc365f303
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:54:19 2015 +0000
Fix in package.json
commit b4401a401834e2309705835d20359857c42e3c32
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:47:35 2015 +0000
Added lib/ & examples/default2io.js example
commit c0de7d6d9cb313f439237fe765f592cf7209fc5e
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:41:15 2015 +0000
Version bump to v0.2.12 & name change
commit 90abce9b715c29624abec07566b5f5cd48956b57
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:33:29 2015 +0000
Removed global module support & updated keywords
commit aedd881787cd1abd20e0cf5375be5f6fe88e0bfb
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 16:02:56 2015 +0000
Added global instlal shebang line & updates to examples reflecting change
commit cb97b8d94773c9953a4b5b86af56076cb08109aa
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 15:50:20 2015 +0000
Removed debugging output for travis-ci service
commit 27990b08437a62db0711dc83f6e04907b621f2b9
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 15:48:18 2015 +0000
Debugging output for travis-ci service
commit 451c3da047814cc2cf78fc663091d005b9046a46
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Oct 18 15:41:20 2015 +0000
Updated README; contributing & license sections
commit 28d35758edefa427e75136fdff54e5e13c9abe37
Merge: 0b418fc c36b1ec
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:36:26 2015 +0000
Merge branch 'master' of github.com:jas-/node-libnmap
commit 0b418fcfe16703a757bd0c5d7ffb5ab7b7b64ba9
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:33:59 2015 +0000
Updated changelog
commit 80cb81e52c7f57da490f3e276099a93c3056ad37
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:33:49 2015 +0000
Fix for discover method test case
commit 2ffed2ff7bea59d18bb74627a9c8840740404ccc
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:28:37 2015 +0000
Updated changelog
commit 7556c0c0e82e4c6c211938469c847d0068766af5
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:27:34 2015 +0000
Added fix for travis-ci stalls
commit 0d4da762ef9b38ae23bbe33f618463274cd866ce
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:24:54 2015 +0000
Added new CONTRIBUTING document
commit c42c54019dd1b2e7bfa673e0c53a015ea9bbbb4b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:09:10 2015 +0000
Updated CHANGELOG
commit 93aac4c510c764b8fd93b75d81a6b9c82d502617
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 17:07:50 2015 +0000
Error handling & test cases;
Add better error handling for recieved data from nmap proc as well as test cases
commit b131ac713725dd007c1d52e3c9b601db4970f4db
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Oct 17 16:42:23 2015 +0000
Error handling, refactoring for better handling
commit c36b1ecc6d46b283e0f918a923697df0e6acecab
Author: Jason Gerfen <jason.gerfen@gmail.com>
Date: Fri Oct 2 06:57:11 2015 -0600
Removed Travis-CI status badge
Just to test the traffic coming in I removed the Travis-CI badge
commit 2ac96915aa0086874c72bc9181a4a5d2c3dd4b9f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 27 18:14:26 2015 +0000
Readme updated
commit 9581ad0d97ef5a09ff33027308b52047c8ee8ef6
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 27 18:12:46 2015 +0000
v0.2.11 bump
commit a8f0257628fe748ac04e76ddb3f8ccdd2003d45b
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 22 02:06:25 2015 +0000
Second attempt at fix for issue #22 - async.done() called twice
commit eb64d546f9812d6253e523d2f04ef61562c8c3a0
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 22 02:03:58 2015 +0000
Second attempt at fix for issue #22 - async.done() called twice
commit 79fd31d2fe6f3250eed2dbfaf78da9aba456018f
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 22 01:00:57 2015 +0000
Fix for issue #22; async.done() multiple times
commit 20a7bc67907c6f3dec128a2c3628b96558ee4463
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 22 00:47:46 2015 +0000
Version bump to v0.2.10
commit 3996b85b81ae5b37845b0675ccfd2aa555197f58
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 19 23:10:07 2015 +0000
v0.2.9 release:
Cleaned up reporting iterator
Version bump
Examples were changed to reflect ranges more accurately
Fix for ranges / blocksize * cpu count and single IP's
commit 288580eef3338d34800e9dd7e7730224ce990945
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 12 16:31:17 2015 +0000
Test header case modifications
commit 49af0f46fbd70462fc9902b7648820821168a50f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 12 16:28:27 2015 +0000
tools.settings() provides interfaces for network calculations or throws error regarding upgrading node
commit 8c0033474087210e1afef61586ca3c552ec16a62
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 12 15:49:08 2015 +0000
New example for handling discovery method
commit 880c4abf60668be2732ba0155024b4e741496933
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 12 15:48:43 2015 +0000
New branch for discover() method
commit 6ebc850eff1e01bd64915b6b734ba4bb857a794a
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Sep 10 02:53:32 2015 +0000
Updated examples to use relative path
commit 7482770370c56e927ba181399631f0bb1583fcbe
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 9 03:30:25 2015 +0000
Concatinated before_script for travis-ci service
commit 67c3a5534ff09f72da8f81abf5b203f929a80f9f
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 9 02:09:37 2015 +0000
Added timeout example
commit 635b1bfb7ab2e98403dadbb309a9befb11c716bd
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 9 01:57:36 2015 +0000
Update .travis.yml to reflect apt-get
commit fbc84450d21100871f6d31e113cf36a3d4a39f75
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 9 01:46:57 2015 +0000
renamed callback
commit 9f7c7a7d9b11d8ec6760d96eb41769f5d9756ed0
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 9 01:29:42 2015 +0000
Version bump, removed UDP example from test case & updated package.json to use latest available dependencies
commit e1d7831ca3b4d595e49fec043f7702b8f3bdd44a
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 8 01:34:43 2015 +0000
Version bump, examples & readme
commit 40bdea107aec6043390ed581e5aac40f75d1fe02
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 8 01:17:05 2015 +0000
Version bump v0.2.6
commit 4ff8e88e8f6b462f28c85acc52e53a094cca8f89
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 8 00:58:31 2015 +0000
Update to CHANGELOG
commit 89c091fd3541a4b1f9f5840cf3af4872e2078ac7
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 8 00:57:00 2015 +0000
Small changes
commit e4fbbf8b0dbf9cf7b85c675bc79bd9b87be8973e
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Sep 7 15:03:06 2015 +0000
Added a gist link for more examples
commit 6332267f1cb9a8dd9598bd21caa62d7d4f83da5a
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 18:43:09 2015 +0000
Updated test case for unimplented discover method
commit 7c2abbccdeccd9b87e7a05b254e0f231bdc2fff5
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 18:39:26 2015 +0000
Implemented return error for unimplemented discover method
commit 9dad6fde0bb044479bf6571a9014a4e4f529055c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 18:33:43 2015 +0000
Update to test case
commit e08cd4473c6aaa633e2f898b87f86dacc3776041
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 15:44:24 2015 +0000
v0.2.4 - Support for UDP scans
commit 36998e991e924ef2413f72cc1ffb98f0f51be113
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 14:58:45 2015 +0000
Version bump to v0.2.3:
Updated default host timeout var to 120 seconds
Updated examples/scan.js to create folder to prevent errors
commit a30e902e0e291063316bf5eea1fe66e3cfc88ef2
Merge: bcb587c b57e8bc
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 14:04:54 2015 +0000
Synced w/ v0.2.2
commit bcb587c2d36d35df7f17c7d46498fda15605bdbe
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 14:01:55 2015 +0000
Updated CHANGELOG to reflect recent commits
commit 02120092fbd83ed2aa28e677544d7264e44097b6
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 14:00:29 2015 +0000
Updated example to handly typical cidr range & how to handle reports
commit 1ebb1cdc4634ecf656203a2bf8f0dc899a0363e8
Merge: 74286fa 1049265
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 13:53:12 2015 +0000
Master merge w/ v0.2.2
commit 1049265672a2b6ecabbd637196aa940818a4070b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 02:45:34 2015 +0000
Updated README, CHANGELOG & version minor bump
commit 7a4f54ad372081cc7de68d82ba9bf9aadc601120
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 02:03:07 2015 +0000
defaults.blocksize default value:
Lowered the default option of defaults.blocksize to 16 to create larger ranges when scanning large network blocks
commit 41e538fbbfd1434011a388c9455d2a12ed44f311
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Sep 6 01:15:45 2015 +0000
Updated the scan example, and other minor changes
commit fe9b9644650fcd8308e95aa7e34562c5638a0c6e
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:44:24 2015 -0600
Error handling for empty reporting
commit 2805c9c403e545ab9d3b5a457debd8ee5f8f3a60
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:38:04 2015 -0600
Removed iojs version specific & added debugging for travis-ci tests
commit 46b9f8a26b39d6dca9c70224b514651d009c0362
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:35:58 2015 -0600
Removed iojs version specific & added debugging for travis-ci tests
commit 71fe92bd56d8a079600a41703e3b7d6045a79cd2
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:30:09 2015 -0600
Updated .travis.yml to install nmap
commit 1849b46093371da5406a3ace5ef205d9f635f5fc
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:26:41 2015 -0600
Updated .travis.yml to install nmap
commit 92cad8f6d34fdc6d7cf0e8af4f26e128a39900d1
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 08:23:50 2015 -0600
Validation object:
init(): Resolved async issues regarding returning errors
tests: Worked through failing test cases for v0.2.1
commit b56e54fc25cfe4328f7f6b82a233ccb666bd7f5a
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 5 13:35:13 2015 +0000
Remove debugging on command
commit 32a0739da162a0334b07de448f6301f75ed25191
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Sep 4 02:16:13 2015 +0000
Added version increment (minor), also fix for ipv6 scans & large blocksize coupled with large cidr ranges
commit a8fc4b1e84244bab86614f3af501559f10b755e5
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Sep 4 02:14:41 2015 +0000
Added/modified:
Added return of XML report type
Added timeout to optimize speed of scans regarding wait times of responses
Set blocksize option to a default of 64 hosts per scan block (this may be reduced)
Added -T4 option to scan flags
commit 8b1a4a86e9e8edb4d7af8084eb0fcc8ed1f0982c
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Sep 3 01:20:07 2015 +0000
Removed undefined fn()
commit 01613744dba96e65e32bd67a7dde69594b571a33
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 2 03:08:45 2015 +0000
v0.2.1 minor patch to address sync to async by providing report per network block completion vs. buffering all hosts
commit d362875bb2e4196191130becfcab3d0e547dcc8b
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Sep 2 02:51:29 2015 +0000
Minor updates
commit c1fa6f3c38de8d45548dd594fbb38948125d4757
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Sep 1 02:13:06 2015 +0000
Update scan example to accomodate complex use case
commit 0684d291b178839c5a73d2a7560676199f99d5ed
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Aug 31 00:52:40 2015 +0000
Removed duplicate reports from being generated per host
commit 27a93ce44e9e5f7fb3bd05ed81dfdd3623750c56
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 16:04:45 2015 +0000
Disabled ipv6 support temporarily during command creation
commit 63c36641d767f6dcd01d78cbbf118d63aab26cd8
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 15:59:43 2015 +0000
Updates to package.json reflecting package use
commit c2e15c85ee87b626e4279d8a0d5400e3433e9a7b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 15:51:00 2015 +0000
Migration to travis-ci new infrastructure
commit 5dacaf9502fa3bc27af41f04270df96c543346f8
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 15:49:30 2015 +0000
Modification to auto-test builds
commit da8a2401487aba289c44406c25ca09c23fa5d888
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 14:57:48 2015 +0000
async.parallel() now working and generating xml->json reports
commit 45e764a27ec2d7fe8ffe123eebf9a988765a5e25
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 13:42:31 2015 +0000
Reorganization of objects & members
commit b57e8bc80c82f347b108f67a2f486cf1f5d2c4a1
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 00:12:08 2015 +0000
Version patch update
commit ffc604b822e931eb06269ce05dbc1d9e1e261a3e
Merge: 74286fa 8ea27fc
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 00:11:42 2015 +0000
Fix
commit 8ea27fc5c5609e8ba42bd873f8987e0e93046603
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 00:09:43 2015 +0000
New branch
commit 1a4af48f21a87955687480cd109c33f55da1fc3c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Aug 30 00:03:47 2015 +0000
Renamed a var & cleaned up some comments
commit c0daa207fc76a2231ead84d1098131f6e12e68a3
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 23:56:31 2015 +0000
Working on function creation for async.parallel()
commit 522b695fb5601eb534d09b76aa9a3b0d535d97ac
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 23:52:20 2015 +0000
Work on array of functions for async.parallelLimit()
commit 2278c7ce3f37300d8859d9531021be9df278bb37
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 21:13:47 2015 +0000
Work on array of functions for async.parallelLimit()
commit 74286fa499ea518356424d5959cae1d7245b3485
Merge: bcc55ea 36a98b0
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 20:27:57 2015 +0000
Merge branch 'v0.1.14'
commit bcc55ea531080e3c1a474ed038bf96c9a1e3752a
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 20:27:35 2015 +0000
Version (patch) update
commit 11648186753cdc1a73376d7b59849ac112dec623
Merge: 5149004 ca91cae
Author: Jason Gerfen <jason.gerfen@gmail.com>
Date: Sat Aug 29 14:24:18 2015 -0600
Merge pull request #17 from mrzmyr/feature/replace-cli-parser-with-xml-parser
Replace CLI Parser with XML Parser
commit 4e1272f41dd4639c4dbbb5cc5c598f683333ed27
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 16:08:44 2015 +0000
Some house cleaning regarding args
commit 11a982544320e20ddffc37891a28ec1659cd758f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 15:41:15 2015 +0000
README doc updated (not complete)
commit d6f0ed04038047eead90b1af4bd6162b6a0a384d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 15:34:49 2015 +0000
Host/Range/CIDR validation & block calculations
commit 9227b6d4c9014fdcdca7d71e6bacaa643e54bd43
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Aug 29 14:42:06 2015 +0000
Migrated to hasbin for nmap path & updated dependancies
commit ca91cae26bfbfc08ee2e076ce75478f8cbb5336b
Author: mrzmyr <m0ritz.m3yer@gmail.com>
Date: Sat Aug 29 15:23:31 2015 +0200
remove xml meta data from json output
commit 36a98b01732f8c11f0dd494f65e96cde19aba9df
Merge: 5149004 51e3847
Author: Jason Gerfen <jason.gerfen@gmail.com>
Date: Sat Aug 29 05:48:32 2015 -0600
Merge pull request #20 from mrzmyr/feature/replace-cli-parser-with-xml-parser
Replace cli parser with xml parser
commit 51e38479d0be9acf3dad7be0794c5cfe930f2abe
Author: mrzmyr <m0ritz.m3yer@gmail.com>
Date: Thu Jul 30 19:29:38 2015 +0200
Replace cli parser with xml parser
Squash commits
Remove makefile dependency
add brackets
moved functions to tools and removed unnecessary ones
make flags work for discover and scan independently
prevent flattening of host array
fix scan test and reduce the licence to the LICENCE file
add mocks for testing
separate mocks
replace getMyOwnIp with node modules "ip"
update readme output
add examples
prevent flattening of 'ports' array
update range in readme example
Remove linking in category title
commit 5149004773a6dd19414faac565a8d81add1c76ac
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jul 19 14:52:23 2015 +0000
version change
commit 612336ea0c32119435762640e8be68c41f941340
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jul 19 13:26:40 2015 +0000
Docs regarding threshold
commit 091d5510a8f1b6d5cab5db49436c71965db26557
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jul 18 15:10:31 2015 +0000
More indentation fixes
commit b8d518e99c766e43f9a11641e9532fe0584ed449
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jul 18 15:06:08 2015 +0000
Indentation fixes
commit 30db683c10c964db997fbd7f3bf9019634511f6c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jul 18 15:00:21 2015 +0000
Removed debugging & commented code segments
commit 5ff40393ff9a43e543544cb34ffcda939ad993b2
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jul 18 14:41:36 2015 +0000
Fix for large blocks and ulimit
commit 87a231f977bb03f8be6e5bbb8bd1eaf950d601b5
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jul 18 14:35:34 2015 +0000
v0.2.0 - progress
commit 9a5f1389dbba13ed4eb86117910f21ff813fb16c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun May 31 13:57:02 2015 +0000
Nit for port range test
commit 4a7c78b18d2fb729ef4653e88059d131a163b61f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun May 31 13:45:15 2015 +0000
Error handling test harness in place
commit 72f078debc985e73ecfbdb7bfb95dd86ab57917f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun May 31 01:17:55 2015 +0000
Added error handling for nmap binary
commit 5d9b6d90b9d4d8430da0718fd33f0b06730cde59
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 15:33:53 2015 +0000
Updated threshold documentation
commit 8a269916b55eff0e8056380392190d1f122811c0
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 15:30:25 2015 +0000
Removed changelog
commit 607adbceddd7c275ddff1bfb3b61f804bc62b3f3
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 14:13:55 2015 +0000
Small changes to README
commit 17b24f22d0d72c0d67e473f78aa8b91404c274ba
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 14:12:15 2015 +0000
Error handling test case
commit cd66d5a2dd0eaf9116f0b4eb6753c0d0f07772b6
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 04:04:20 2015 +0000
Updated package dependencies
commit dcf859bc6bba5c8a4fd66099f1113daa911c7e4c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 03:56:35 2015 +0000
Updated test cases to reflect new API
commit 356f28bc1b8739f8e37561a40252853afd0ef412
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 03:47:13 2015 +0000
Removed old test case
commit 065cdc8d0dfd596820ac0089c8b0df185424b429
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat May 30 03:29:00 2015 +0000
Breaking change branch
commit 105c65c84963e8d6384a00cbd783aeee21de6c68
Author: Jason Gerfen <jason.gerfen@gmail.com>
Date: Fri May 8 11:15:47 2015 -0600
Update README.md
Fixed the contributing section of readme
commit f85357b55c3dd121ed92bd0ed79d307f4d2a8706
Author: jas- <jason.gerfen@gmail.com>
Date: Sat Oct 11 08:14:01 2014 -0600
Discover returns hostname vs. IPv4 if present in results, incremental version
commit 7d19d66aea7ef2fe62536acad17624ac0d40be23
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Oct 8 13:16:24 2014 -0600
Issue #1: Regex fix for IP ranges
commit cd245b13c1f37169663a527af3fe6fb8e05edb6a
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 13 09:37:47 2014 -0600
v0.1.10: Updated package.json
commit 3f5f0ad81c8eb46147a4f4433e741f3efeea3f8e
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 13 09:35:40 2014 -0600
v0.1.10: Addresses fix for invalid range > 255
commit d3a48b532c621c99cb0341050fe68c0473d8999e
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Aug 12 10:02:49 2014 -0600
v0.1.9 ready
commit 9f7215d1618428254dd96914ebfbe27d0d7a8a11
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 19:37:58 2014 -0600
Work on IPv6 CIDR notation & IPv4 range notation (i.e. xxx.xxx.xxx.xxx-xxx)
commit 1b8d5d142b3ac926187a2bdc44caa695e0ac2bcb
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 18:20:56 2014 -0600
Test case updated to reflect version
commit 16d8d201c519c3d97396638d412def7642ceaea7
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 18:16:01 2014 -0600
Fix for IPv6 address scanning by adding the -6 option
commit 1dc8483a640fdfb9bbdbf130cee2eaa051dfb62a
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:25:31 2014 -0600
Version increment for package dependency fix
commit 7a7c8949678118fa44befafe686c0d7fb013e0f6
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:24:09 2014 -0600
Fix for dependency list in package.json
commit 59fbd1113a964b46a2638b1ea00362414a8b9be1
Merge: 9269aec 1b4d41b
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:16:44 2014 -0600
Merge branch 'v0.1.7'
commit 1b4d41b06f60b238dcdf86270b6bd864ab866500
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:16:24 2014 -0600
updated package.json
commit 9269aec316fa4f5350e9fd629fa3a0626efca16d
Merge: 5814703 30dfee7
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:12:16 2014 -0600
Merge branch 'v0.1.7'
commit 30dfee787cd6d661d774e3ed89e5b61db2c9b785
Author: jas- <jason.gerfen@gmail.com>
Date: Mon Aug 11 11:10:27 2014 -0600
v0.1.7 fix for cidr ranges
commit 5814703544140218d639f5449ccb415c9769648e
Merge: 605262f 5e46f3f
Author: jas- <jason.gerfen@gmail.com>
Date: Thu Aug 7 10:31:38 2014 -0600
Merge branch 'master' of github.com:jas-/node-libnmap
commit 5e46f3f11102038f1c360c3bc58e711e7954a666
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:52:54 2014 -0600
Removed minified version
commit 51f92a705c901b96e57a9cc1b8cc3dd492e1f3ef
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:51:42 2014 -0600
Removed minified version
commit 18360037a1c905b527e7143af898a4cee21cf0ca
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:21:45 2014 -0600
Updated package.json file
commit b7928302b852cb6ecdd72b7443bd04eb5b963f09
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:21:13 2014 -0600
Updated package.json file
commit 959deb99dafe57e60740e2098bd6817d7f4e69fe
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:20:46 2014 -0600
Updated package.json file
commit 09878ab0ee57e0e12eab5b75a81e1d3dec366157
Merge: d1f3bd5 8f0069d
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:18:31 2014 -0600
Merge branch 'v0.1.6'
commit 8f0069d686ac325551602ad8380ce3f5dcb6d519
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:18:08 2014 -0600
Updated readme to reflect contributing branch
commit d1f3bd550ec7aa17f9330a3028d73a0d9afa9ede
Author: jas- <jason.gerfen@gmail.com>