-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCHANGELOG
2643 lines (1799 loc) · 73.5 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 abb49caa8f8b0a8d0c30976e50611b268a9a1fd1
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:50:12 2016 +0000
Re-arranged stickers in readme
commit 8e0438f3b141a4a085780720f6162157e38f9063
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:14:53 2016 +0000
Fix for link; part deux
commit ffc6b0907f2ccc1a024381efc7b62d506a81c36d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:09:55 2016 +0000
Fix for link in readme for vulnabilities
commit 909c80de865ae93c11d01498a5958a226996f5db
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:07:57 2016 +0000
Version bump; v0.3.6
commit d6781e2fb2a0cae8cb19368fca2b3c13c69a6ab0
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:06:37 2016 +0000
Minor fix regarding build status & vulnability status on readme
commit b3b90810068d2118761b8d4a81088fce2e47b80c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 20 21:05:45 2016 +0000
Minor fix regarding build status & vulnability status on readme
commit 6bbe44dfe2f5107f905135450f7cec03c44b062b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Nov 19 18:06:41 2016 +0000
Update to changelog
commit ea88aa1bfc23130ae6e1429daebab328dd5fa7d1
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Nov 19 18:06:03 2016 +0000
Version bump; v0.3.5
commit f29b8bec85874d954d5cb3a52d0cfa641dd12025
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Nov 19 18:05:18 2016 +0000
Error handling return to address issue #41
commit 50b32cae8bae9a36ca1009e12c9ab29224a0a5e6
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Nov 16 23:49:35 2016 +0000
node.js versioning fix for travis-ci builds
commit 9183c9657dee3dc1afc480c564ba8227e00ac734
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Nov 16 23:40:50 2016 +0000
Version bump; v0.3.4
commit 68cc98d085523ada055347d3609825e4e94a1692
Author: Jas- <jason.gerfen@gmail.com>
Date: Wed Nov 16 23:40:05 2016 +0000
Version bump; fix for travis-ci versioning for OSX & Linux
commit 8722599293a1abaf71376cd35a0478d13335c751
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:54:57 2016 +0000
Version bump v0.3.3
commit 1682ebb108985fddadd8cc2c27aa0e314fc45960
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:53:42 2016 +0000
OSX fix part duex
commit f3c3a58a360bd1d5dbd91f5b22fc88f7865154f6
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:47:27 2016 +0000
Fix for build versions:
commit 8227806d81e867375e0dc1fe483ec1b92b02e462
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:44:29 2016 +0000
Version bump; v0.3.2. Fixes for Travis-CI OSX env
commit e88dd4aac73aa3a74a96194c54da5a6ccbfa01bf
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:32:54 2016 +0000
Version bump to v0.3.1
commit 489fa2805deb2cc511dfbf6e9b79a7f99c3812e3
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Nov 15 00:31:48 2016 +0000
Travis-CI node.js versions fix
commit 0240516e15b4825292d6ff743c6db855865be055
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 13 16:40:46 2016 +0000
Updated changelog
commit 1cb877b9679d01f8bac0cc0e2504bf4ad975e6ff
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 13 16:40:24 2016 +0000
Merged branch (v0.3.0)
commit ce8baa55d364f29239528d2e5037b93b8ecfeb7d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 13 16:38:52 2016 +0000
Removed mocha from dependencies hive
commit 9634dd43f400f9a9e3f27003dfe7e2f3e8c9bf37
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 13 16:22:04 2016 +0000
Updated outdated package (deepmerge)
commit 8d8a026eb4b6ab715214dd1370fcc6067220ea7f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Nov 13 16:19:09 2016 +0000
Updated discover.js test case to accommodate for newer node versions (> 4.x)
commit 4bb1cd0d46389d6f0ffc512c4054c611e302411b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Sep 10 13:24:34 2016 +0000
Migration to es6
commit cd4b61f18be78f2fef38ed5665e5e88480e5413c
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jul 10 13:26:25 2016 +0000
Version bump for package.json
commit 7b9368c769f3649963ccd1090cd276472425a9fd
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jul 10 13:24:25 2016 +0000
Added some nifty banners
commit d86a107dc7ff74739ac5a0aefd72343eb8b10749
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue Jun 7 19:36:38 2016 +0000
Version bump; v0.2.33
commit c2dda42070deab5603a37a15965cbf9f4580828c
Merge: bd96a36 2c67dae
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Jun 6 12:18:36 2016 +0000
Version bump; v0.2.32. Bug fix for issue #38
commit 2c67dae18e47add9f3179f89d9f8574997b475ff
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Jun 6 12:17:23 2016 +0000
Updated README to reflect travis-ci tests
commit 8f264141da659fda97a4d553c45ca87c301c4ef6
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon Jun 6 12:11:20 2016 +0000
Fix for issue #38
commit fbd59a7e58636dec702233abf619eb4f355c6051
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jun 4 12:19:08 2016 +0000
Version bump; v0.2.32; removed @scope comments & eliminated duplicates calls to ip-address dep
commit bd96a3677cd52e3d2970b0b725f15f1d6e946a70
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Jun 3 23:43:47 2016 +0000
Merged v0.2.31 branch & updated travis-ci badge
commit 48f6e97b5635fb95d027a4606e64c5e0d4e1171c
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Jun 3 23:41:00 2016 +0000
CHANGELOG updated
commit 7f643a16472897fd00299d206b313f4d377a57ca
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Jun 3 23:39:56 2016 +0000
Fixes for ip-address API changes & dependency changes
commit d2cd25be2aad3a97ac41813180c21f0b74224c47
Author: Jas- <jason.gerfen@gmail.com>
Date: Tue May 31 23:34:48 2016 +0000
Version bump; v0.2.31
commit 702281617040c7c633cb6085ba1f3c62be5def03
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon May 30 15:37:22 2016 +0000
Version update & keywords
commit d7e17f26d56cfc1571452ac26f7cf2a9d1e44aa2
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon May 30 14:24:52 2016 +0000
Version update & keywords
commit 1785073dbed93e3e47ccf1e99e5f6ef9d3a80da4
Author: Jas- <jason.gerfen@gmail.com>
Date: Mon May 30 14:22:43 2016 +0000
Version bump; v0.2.30 & dependency update
commit 5849b861a18b3ccbddfa95ff9912abf070fba9aa
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Apr 14 10:24:20 2016 +0000
Update to CHANGELOG
commit 3b2083753365949bc326ec0a5ace35a1edd8835f
Merge: 824aeab baa2939
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Apr 14 10:23:22 2016 +0000
Merge branch 'master' into v0.2.29
commit baa2939d721ae6aa969b7d33f989558255af870f
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Apr 14 10:23:09 2016 +0000
Version bump v0.2.29
commit 824aeab60eb344a504a46c2ca4b471c01ae0876c
Author: Christian Kiely <ckiely91@gmail.com>
Date: Mon Mar 28 12:45:32 2016 +1100
Stop -oX - flag being added if it already exists
commit ac5485892e88fe91a8ef3cc54fbf6d0e2f390fbb
Merge: ee8f15a e07d1f4
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Mar 26 15:48:33 2016 +0000
Version bump to v0.2.28
commit e07d1f45d9ac3d45e3524b995520b10d950c7089
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Mar 26 15:47:03 2016 +0000
Update to .travis-ci to work with osx builds
commit d2a5307b0bbb800e67347b4315d1f1acaea6df38
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Mar 26 15:38:11 2016 +0000
Version bump for travis-ci
commit b65cb278db1a1095061b227fd0af0268e697268f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Mar 26 15:10:53 2016 +0000
v0.2.28: Version bump to address issue #33
commit ee8f15a5cded769997ab98e4ebf2cfd68d71a74d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:50:19 2016 +0000
Version bump to v0.2.27 & disabled osx tests for travis-ci
commit 934a370df60fa531bf0dd975ab653a46c88cb798
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:47:47 2016 +0000
Removed linux conditional from before_install
commit 78f935596ff51255af328bed0cd1e1ae38e7f50b
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:43:00 2016 +0000
Another possible fix #2
commit ef125ec58935468764e51ae01eaa67756527435a
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:31:26 2016 +0000
Another possible fix
commit e5dc2895ffaa8fcc1620f2774a612fb0eead416f
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:29:47 2016 +0000
Commented out default build line
commit 17c4c32726597ac0e1460fb6985e7d5d90abf585
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:28:20 2016 +0000
Another possible fix for nvm on osx test builds
commit 8c39421a6055737a1b58172cb20d5d4387a35190
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:22:02 2016 +0000
Build status reflects version bump (v0.2.27)
commit f857a40b83c2c77ba435a59b9b73487842c12a22
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:21:14 2016 +0000
Version bump
commit 66eb608f1607450d23641befc95760586de80cb0
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 17:20:24 2016 +0000
Possible fix for osx nvm issue
commit 638e9957b9d07257fd818c26c01e145ded4b5558
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 16:40:22 2016 +0000
Fix for travis-ci branch in readme
commit fa0dd22f2eafe785c0305874cff2044319ab0199
Merge: aebae0f 6569b3e
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 16:39:14 2016 +0000
v0.2.26 merge
commit 6569b3eeb663bd8fc738b24f03df26bc2604cf39
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 16:24:11 2016 +0000
Added fix for brew installation of nmap & nvm from wget
commit c1ea750ba66e55b9b4968daa82347ec0803d50a2
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 16:19:24 2016 +0000
Added installation of nvm for osx
commit 2a9233b99108ab3ec95b9d3660c2b945102c4dae
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 16:16:59 2016 +0000
Added apt-get installation to before_install to ensure nmap installed
commit 42e39adb42d4717fe6fa4f2fdbd325597f821125
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:33:10 2016 +0000
Updated travis-ci version info for build status
commit de5bd2d1b9ad0cdb6205e27d8e96a8025cc84fb6
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:28:27 2016 +0000
Migrating to newer .travis.yml format including multiple OS testing envs
commit c38149a18f12541e3e6697053c35ca2f510a8db9
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:24:42 2016 +0000
Version bump to v0.2.26
commit 6a19797e1b02740bdb107920aeecb3d2442c253d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:19:36 2016 +0000
Fix for .travis.yml for package repo
commit aebae0fc6ac3c0026536c1ce56057dd909b2bf44
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:12:52 2016 +0000
Fix for .travis.yml for package repo
commit 0e201de0b4d5197f8df8e15f26d72d0ca9489984
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Feb 6 15:04:29 2016 +0000
Version bump to v0.2.25
commit 3e4560483c2ee1f5915ebb1580bb5f3679113db7
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Feb 4 11:32:50 2016 +0000
Removed unnecessary apt-get update from travis.yml
commit 94eb23196b1d3f5f4c4886098e5846082d5fa93f
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Feb 4 11:26:40 2016 +0000
Applied fix for IPv6 & IPv4 discover mode by enabling ARP ping for IPv4 & Neighbor Discovery (RFC 4861) for IPv6
commit aff030e615f6b9f5f19ad92039b46c902b5729c6
Author: Jas- <jason.gerfen@gmail.com>
Date: Thu Feb 4 11:03:25 2016 +0000
Updated readme to reflect appropriate branch for travis-ci
commit edade8e78e732fd1a36b79a4a01c895938f89458
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:59:52 2016 +0000
IPv6 adapters() fix for variable names
commit a66c69d162e253ccbd6358729c9d917eebdca077
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:55:49 2016 +0000
adapters() fix
commit c0e58f4c7f844cc9d32fed34093de6f1e3cc00d5
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:12:58 2016 +0000
IPv6: Object fix; validation (early morning in a rush, wtf)
commit 60f1d5c9121a753653858d072d58e34d0b348a41
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:10:08 2016 +0000
IPv6: Object fix; validation.IPv6 vs. validation.test.IPv6
commit edb2e13db270fbc7a312f5fd93b5340146a31ab7
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:06:37 2016 +0000
IPv6: Typo for validation.test.IPv6 vs. validation.test.ipv6
commit ef0f43da2342b3923e289950c871159e21fb1eb1
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 12:05:27 2016 +0000
IPv6: Another fix regarding library init for ip-address
commit e07a0564d78d8df410e786f77916cb318e4e686d
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 10 11:58:53 2016 +0000
IPv6: Fix for issue #29
- Conditional to handle IPv6 netmask test & convert using ip-address to CIDR notation
commit 1ea19778a221a6415b20c3641e201176114be84a
Author: Jas- <jason.gerfen@gmail.com>
Date: Fri Jan 8 12:01:06 2016 +0000
Version bump to v0.2.24
commit da14e7e1ee5b7ce1144b0a93fcdffdefba3ad148
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 3 15:38:33 2016 +0000
Version bump to v0.2.23
commit ad094132976bf330eb1c5f5aecf223da4af0f9c7
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 3 15:37:26 2016 +0000
CHANGELOG updated to reflect v0.2.23
commit 165454cdd61955311ee1030617fa412494b26eff
Author: Jas- <jason.gerfen@gmail.com>
Date: Sun Jan 3 15:33:18 2016 +0000
Tests: scan.js; fix for localhost in ipv6 notation
commit fe77cfa7015ba3605e1bce192d2dd0d4aaab64df
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 21:29:56 2016 +0000
Test: scan.js range formatting for readability
commit cf3253f3fe3d7ac4ec3efcd2be6f3b0e78545610
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 17:10:29 2016 +0000
Tests: Added IPv6 address to scan.js example
commit b4a7f43ba3cb8d0c4a296efeee97ff3cc01e3ac9
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 17:09:23 2016 +0000
Examples: Added ipv6 example
commit 65cb64253441b88dde811bb69d3befa674f199f2
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 16:28:08 2016 +0000
Version bump & copywrite years updated
commit 5ad85da73dd6042bef21c5109b7d68a32b60a350
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 16:21:01 2016 +0000
Version bump & travis-ci versioning for node.js
commit 8dfb58a3ecf6c468e3ab8c5765a28e11e0bc3721
Author: Jas- <jason.gerfen@gmail.com>
Date: Sat Jan 2 16:17:56 2016 +0000
Changelog update for v0.2.22
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