-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCHANGELOG
1866 lines (1276 loc) · 51.9 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 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 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>
Date: Wed Aug 6 11:17:16 2014 -0600
Updated readme to reflect contributing branch
commit 1dc28bee7ccb102e31de8103ebaa8023ab17ba8f
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:14:49 2014 -0600
Removed minified version
commit ef4cf7bc439010467373145c2737aac7ba8e6749
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Aug 6 11:14:26 2014 -0600
v0.1.6 fixes & optimizations
Incremented version to v0.1.6
Removed -n flag for hostname resolution of DNS A records
Added semi-colons
Migrated version check into its own function and removed os check
and is now relying on availablity of os.adapters[n].netmask property
Removed < v0.11 dependancy for standard scanning, only discovery mode
relies on netmask property per adapter
commit 605262f4e61a5fd79931e39e6810923e69c5252e
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:49:58 2014 -0600
Removed file
commit 6dde1d178284e0aab7771de1ee0eff22b6942890
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:44:02 2014 -0600
Version: Package info update
commit 047c8c8b4f65fbc66e35900d1f23dabdc1521457
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:42:36 2014 -0600
v0.1.5: Fixes
commit 83be02015b68589eb752648ed8e67a53e03540cf
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:39:25 2014 -0600
Minified: Updated to reflect changes
commit af4ae9594328a1ba4e83a7f68a4ff87565d03026
Merge: 5cec3c9 d751383
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:35:35 2014 -0600
Branch: Merging v0.1.4 with master
commit d7513832675f7624f1077b833fbd86045a9de0b6
Author: jas- <jason.gerfen@gmail.com>
Date: Fri May 23 19:34:20 2014 -0600
v0.1.4: Added callback to argument list to eliminate the callback option
commit a61534f44d3576dd453a80b648413fbc2bfa9eeb
Author: jas- <jason.gerfen@gmail.com>
Date: Thu May 22 13:39:39 2014 -0600
v0.1.2: New branch to address callback functionality
commit 5cec3c9e9fb8fd5395c7d8184e65f3040c182c48
Merge: 5fde70e bcbc156
Author: jas- <jason.gerfen@gmail.com>
Date: Sun Mar 9 19:46:15 2014 -0600
Merge branch 'v0.1.3'
commit bcbc1565007eb3dab878fff9988638211fcb9d68
Author: jas- <jason.gerfen@gmail.com>
Date: Sun Mar 9 19:41:15 2014 -0600
Package updates
commit ae0980cfde2f903a061dd8185ac4a4c9e3b2244c
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Feb 19 11:00:33 2014 -0700
Version update
commit b3cb090328da2a084ed35e6d950ac45cb925464e
Merge: cd93b96 f26ee88
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Feb 19 10:59:21 2014 -0700
Merge branch 'v0.1.1' into v0.1.2
commit 5fde70e03b505558d56b44a2b71efb9bf52c65d6
Merge: c81a875 f26ee88
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Feb 19 10:56:03 2014 -0700
Merge branch 'contribute'
commit f26ee88faf8728677d615daa09a7c5954689df56
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Feb 19 10:55:12 2014 -0700
Fix for ignored file for npm install
commit cd93b960d1db6433afb68b4d5d892a12a40c8c22
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Feb 19 06:39:02 2014 -0700
Removed ignore for index.js
commit c81a875be60807afde30a995506790dec3326df9
Merge: 8fdf4cf a28de98
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 09:39:33 2014 -0700
Merge branch 'contribute'
commit a28de98f8b7ceaa5dabbd602bd533837c6ede382
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 09:38:31 2014 -0700
README: Updated information regarding ulimit
commit ac2d800bde177ff317a0c671a26ea8177250ce49
Merge: 7039a70 e782e02
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 07:39:25 2014 -0700
Merge branch 'v0.1.1' into contribute
commit 8fdf4cfcf78c0112f36238c9f62c4499e787b9ea
Merge: 60d2e54 e782e02
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 07:39:04 2014 -0700
Merge branch 'v0.1.1'
commit e782e027464a959660d7c0a572a0efa8281f6f19
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 07:36:56 2014 -0700
v0.1.1: Fixes for CIDR calculations
README: Updated version information, and added test case performance
regarding large network block port scans.
package.json: Updated version information for module.
test:
init.js: Updated version information.
lib:
node-libnmap.js: Fix applied for scan method when calculating large
class a, b or c network blocks.
node-libnmap.min.js: Updated to reflect latest fix.
commit 60d2e544eccc8b0847960817a5de05170ea87ac6
Merge: 55a92c9 678356a
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 03:43:30 2014 -0700
Merge branch 'master' of github.com:jas-/node-libnmap
commit 7039a70fa000672d52687e841b730ecb38ef2293
Merge: 028ac45 a15c9e0
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 03:42:44 2014 -0700
Merge branch 'contribute' of github.com:jas-/node-libnmap into contribute
commit 028ac45aa3afe012b1803ac5ed6655c8a820fed1
Merge: 55a92c9 678356a
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 03:40:47 2014 -0700
Merge branch 'contribute', remote branch 'origin' into contribute
commit 55a92c9a48938c878935f127f5d825b5431b23a9
Author: jas- <jason.gerfen@gmail.com>
Date: Wed Jan 29 03:37:53 2014 -0700
README: Updated options, version etc
commit a15c9e07e68a60abafd9b1ef2ef470c514f837bd
Merge: e30cb51 4ef76a6
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:31:03 2014 -0700
Merge branch 'v0.1.0' into contribute
commit 678356af7e771bdaa2ab19aae1c052ab68e531b4
Merge: a79a7d0 4ef76a6
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:30:42 2014 -0700
Merge branch 'v0.1.0'
commit 4ef76a6bb624af62883a2283d6d79ed36523bb53
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:30:19 2014 -0700
README: Updated docs to reflect flag changes
commit e30cb51c83072a3a7c667be7a9b9a4d2c5bbf5a3
Merge: 5f32d4a 2d5bf56
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:23:48 2014 -0700
Merge branch 'v0.1.0' into contribute
commit a79a7d0fb264c55b9a98e1a011b2ac4e0da882b4
Merge: b0901b7 2d5bf56
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:23:25 2014 -0700
Merge branch 'v0.1.0'
commit 2d5bf5647c2326b95a2ad6686fe35f105decae8a
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:23:06 2014 -0700
package.json: Bug with chai version fix
commit b0901b7de1f92a8631eb94b40aa483ab58be9b98
Merge: 8a5946b f6b52b0
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:20:34 2014 -0700
Merge branch 'v0.1.0'
commit 5f32d4a0140cfafb2c736ac03612a6c9ea76ec7b
Merge: 16db3bd f6b52b0
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:20:11 2014 -0700
Merge branch 'v0.1.0' into contribute
commit f6b52b0059993157c071e141de88ac605c0cdcc8
Author: jas- <jason.gerfen@gmail.com>
Date: Tue Jan 28 08:19:39 2014 -0700
Flags: Update to default flags.
package.json: Updated modules & version information.
tests:
scan.js: Updated scan report test case.
init.js: Updated to reflect changes in version
lib:
node-libnmap.js: Updated flags for both scan() & discover()
methods ensuring that when a port range is
used during the scan() method.