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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
|
<chapter id="nse"><title>Nmap Scripting Engine</title>
<indexterm class="startofrange" id="nse-indexterm"><primary>Nmap Scripting Engine (NSE)</primary></indexterm>
<indexterm><primary>scripting</primary><see>Nmap Scripting Engine</see></indexterm>
<indexterm><primary>NSE</primary><see>Nmap Scripting Engine</see></indexterm>
<sect1 id="nse-intro">
<title>Introduction</title>
<para>The Nmap Scripting Engine (NSE) is one of Nmap's most
powerful and flexible features. It allows users to write (and
share) simple scripts to automate a wide variety of networking
tasks. Those scripts are then executed in parallel with the speed
and efficiency you expect from Nmap. Users can rely on the
growing and diverse set of scripts distributed with Nmap, or write
their own to meet custom needs.</para>
<para>We designed NSE to be versatile, with the following tasks in mind:</para>
<variablelist>
<varlistentry>
<term>Network discovery</term>
<listitem>
<para>This is Nmap's bread and butter. Examples include
looking up whois data based on the target domain,
querying ARIN, RIPE, or APNIC for the target IP to determine ownership,
performing identd lookups on open ports, SNMP queries, and
listing available NFS/SMB/RPC shares and services.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary>version detection</primary><secondary>using NSE</secondary></indexterm>
More sophisticated version detection</term>
<listitem>
<para>The Nmap version detection system (<xref linkend="vscan"/>)
is able to recognize thousands of different services through
its probe and regular expression signature based matching system, but it
cannot recognize everything. For example, identifying the Skype v2 service requires two
independent probes, which version detection isn't flexible enough to handle. Nmap could also recognize more SNMP services
if it tried a few hundred different community names by brute
force. Neither of these tasks are well suited to traditional
Nmap version detection, but both are easily accomplished with
NSE. For these reasons, version detection now calls NSE by
default to handle some tricky services. This is described in
<xref linkend="nse-vscan"/>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary>vulnerability detection</primary></indexterm>
Vulnerability detection</term>
<listitem>
<para>When a new vulnerability is discovered, you often want
to scan your networks quickly to identify vulnerable systems
before the bad guys do. While Nmap isn't a
comprehensive <ulink role="hidepdf" url="https://sectools.org/vuln-scanners.html">vulnerability scanner</ulink>,
NSE is powerful enough to handle even demanding vulnerability
checks. When the Heartbleed bug affected hundreds of thousands of
systems worldwide, Nmap's developers responded with the
<literal>ssl-heartbleed</literal> detection script within 2 days.
Many vulnerability detection scripts are already available and we plan to distribute more as they are written.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Backdoor detection</term>
<listitem>
<para>
Many attackers and some automated worms leave backdoors to
enable later reentry. Some of these can be detected by
Nmap's regular expression based version detection, but more complex worms
and backdoors require NSE's advanced capabilities to reliably detect.
NSE has been used to detect the Double Pulsar NSA backdoor in SMB and
backdoored versions of UnrealIRCd, vsftpd, and ProFTPd.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Vulnerability exploitation</term>
<listitem>
<para>
As a general scripting language, NSE can even
be used to exploit vulnerabilities rather than just find them.
The capability to add custom exploit scripts may be valuable
for some people (particularly
penetration testers),<indexterm><primary>penetration testing</primary></indexterm>
though we aren't
planning to turn Nmap into an exploitation framework such as
<ulink url="http://www.metasploit.com">Metasploit</ulink>.<indexterm><primary><application>Metasploit</application></primary></indexterm>
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
These listed items were our initial goals, and we expect Nmap
users to come up with even more inventive uses for NSE.
</para>
<para>
Scripts are written in the
embedded
<ulink url="https://lua.org/">Lua programming language</ulink>, version 5.4.<indexterm><primary>Lua programming language</primary><seealso>Nmap Scripting Engine</seealso></indexterm>
The language itself is well documented in the books
<web>
<citetitle><ulink url="http://www.amazon.com/dp/8590379868?tag=secbks-20">Programming
in Lua, Fourth Edition</ulink></citetitle> and
<citetitle><ulink url="http://www.amazon.com/dp/9888381229?tag=secbks-20">Lua
5.2 Reference Manual</ulink></citetitle>.
</web>
<print>
<citetitle>Programming in Lua, Fourth Edition</citetitle> and
<citetitle>Lua 5.2 Reference Manual</citetitle>.
</print>
The reference manual, updated for Lua 5.4, is also
<ulink url="https://lua.org/manual/5.4/">freely available
online</ulink>, as is the
<ulink url="https://lua.org/pil/">first edition of <citetitle>Programming in
Lua</citetitle></ulink>. Given the availability of these excellent general
Lua programming references, this document only covers aspects and
extensions specific to Nmap's scripting engine.
</para>
<para>
NSE is activated with the <option>-sC</option> option (or
<option>--script</option> if you wish to specify a custom set of
scripts) and results are integrated into Nmap
normal<indexterm><primary>normal output</primary></indexterm>
and XML output.<indexterm><primary>XML output</primary></indexterm>
</para>
<para>
A typical script scan is shown in the
<xref linkend="nse-ex1" xrefstyle="select: label nopage"/>.
Service scripts producing output in this example are
<literal>ssh-hostkey</literal>, which provides the system's RSA and DSA SSH keys, and <literal>rpcinfo</literal>, which queries
portmapper to enumerate available services. The only host
script producing output in this example
is <literal>smb-os-discovery</literal>, which collects a variety of
information from SMB servers.<indexterm><primary>script names, examples
of</primary></indexterm> Nmap discovered all of this information in a third of a second.</para>
<example id="nse-ex1"><title>Typical NSE output</title><indexterm><primary><option>-sC</option></primary><secondary>example of</secondary></indexterm>
<screen>
# <userinput>nmap -sC -p22,111,139 -T4 localhost</userinput>
Starting Nmap ( https://nmap.org )
Nmap scan report for flog (127.0.0.1)
PORT STATE SERVICE
22/tcp open ssh
| ssh-hostkey: 1024 b1:36:0d:3f:50:dc:13:96:b2:6e:34:39:0d:9b:1a:38 (DSA)
|_2048 77:d0:20:1c:44:1f:87:a0:30:aa:85:cf:e8:ca:4c:11 (RSA)
111/tcp open rpcbind
| rpcinfo:
| 100000 2,3,4 111/udp rpcbind
| 100024 1 56454/udp status
|_100000 2,3,4 111/tcp rpcbind
139/tcp open netbios-ssn
Host script results:
| smb-os-discovery: Unix
| LAN Manager: Samba 3.0.31-0.fc8
|_Name: WORKGROUP
Nmap done: 1 IP address (1 host up) scanned in 0.33 seconds
</screen>
</example>
<para>A 38-minute video introduction to NSE is available at
<ulink url="https://nmap.org/presentations/BHDC10/"/>. This
presentation was given by Fyodor and David Fifield at Defcon and the
Black Hat Briefings in 2010.</para>
</sect1>
<sect1 id="nse-usage">
<title>Usage and Examples</title>
<para>
While NSE has a complex implementation for efficiency, it is
strikingly easy to use. Simply specify
<option>-sC</option><indexterm><primary><option>-sC</option></primary></indexterm>
to enable the most common scripts. Or specify the
<option>--script</option><indexterm><primary><option>--script</option></primary></indexterm>
option to choose your own scripts to
execute by providing categories, script file names, or the name of
directories full of scripts you wish to execute. You can customize
some scripts by providing arguments to them via the
<option>--script-args</option><indexterm><primary><option>--script-args</option></primary></indexterm> and <option>--script-args-file</option><indexterm><primary><option>--script-args-file</option></primary></indexterm>
options.
The <option>--script-help</option><indexterm><primary><option>--script-help</option></primary></indexterm>
shows a description of what each selected script does.
The two remaining options,
<option>--script-trace</option><indexterm><primary><option>--script-trace</option></primary></indexterm>
and <option>--script-updatedb</option>,<indexterm><primary><option>--script-updatedb</option></primary></indexterm>
are generally only used for script debugging and development. Script scanning is also included as part of the <option>-A</option> (aggressive scan) option.
</para>
<para>
Script scanning is normally done in combination with a port scan,
because scripts may be run or not run depending on the port states
found by the scan. With the <option>-sn</option> option it is
possible to run a script scan without a port scan, only host
discovery. In this case only host scripts will be eligible to run.
To run a script scan with neither a host discovery nor a port scan,
use the <option>-Pn -sn</option> options together with
<option>-sC</option> or <option>--script</option>. Every host will
be assumed up and still only host scripts will be run. This
technique is useful for scripts like
<filename>whois-ip</filename><indexterm><primary><filename>whois-ip</filename> script</primary></indexterm>
that only use the remote system's address and don't require it to be
up.
</para>
<para>
Scripts are not run in a sandbox and thus could accidentally or
maliciously damage your system or invade your privacy. Never run
scripts from third parties unless you trust the authors or have
carefully audited the scripts yourself.
</para>
<sect2 id="nse-categories"><title>Script Categories</title>
<indexterm><primary>script categories</primary></indexterm>
<para>NSE scripts define a list of categories they belong to.
Currently defined categories are
<literal>auth</literal>,
<literal>broadcast</literal>,
<literal>brute</literal>,
<literal>default</literal>.
<literal>discovery</literal>,
<literal>dos</literal>,
<literal>exploit</literal>,
<literal>external</literal>,
<literal>fuzzer</literal>,
<literal>intrusive</literal>,
<literal>malware</literal>,
<literal>safe</literal>,
<literal>version</literal>, and
<literal>vuln</literal>.
Category names are not case sensitive. The following list describes each category.</para>
<variablelist>
<varlistentry>
<term id="nse-category-auth">
<indexterm><primary sortas="auth script category">“<literal>auth</literal>” script category</primary></indexterm>
<option>auth</option>
</term>
<listitem>
<para>These scripts deal with authentication credentials (or bypassing them) on the target system. Examples include <literal>x11-access</literal>, <literal>ftp-anon</literal>, and <literal>oracle-enum-users</literal>. Scripts which use brute force attacks to determine credentials are placed in the <literal>brute</literal> category instead.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-broadcast">
<indexterm><primary sortas="broadcast script category">“<literal>broadcast</literal>” script category</primary></indexterm>
<option>broadcast</option>
</term>
<listitem>
<para>Scripts in this category typically do discovery of hosts
not listed on the command line by broadcasting on the local network.
Use the
<varname>newtargets</varname><indexterm><primary><varname>newtargets</varname> script argument</primary></indexterm>
script argument to allow these scripts to automatically add the
hosts they discover to the Nmap scanning queue.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-brute">
<indexterm><primary sortas="brute script category">“<literal>brute</literal>” script category</primary></indexterm>
<option>brute</option>
</term>
<listitem>
<para>These scripts use brute force attacks to guess authentication credentials of a remote server. Nmap contains scripts for brute forcing dozens of protocols, including <literal>http-brute</literal>, <literal>oracle-brute</literal>, <literal>snmp-brute</literal>, etc.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-default">
<indexterm><primary sortas="default script category">“<literal>default</literal>” script category</primary></indexterm>
<option>default</option>
</term>
<listitem>
<para>These scripts are the default set and are run when
using the <option>-sC</option> or <option>-A</option>
options rather than listing scripts
with <option>--script</option>. This category can also be
specified explicitly like any other
using <option>--script=default</option>. Many factors are
considered in deciding whether a script should be run by
default:</para>
<variablelist>
<varlistentry>
<term>Speed</term>
<listitem><para>A default scan must finish quickly, which excludes brute force authentication crackers, web spiders, and any other scripts which can take minutes or hours to scan a single service.</para></listitem>
</varlistentry>
<varlistentry>
<term>Usefulness</term>
<listitem><para>Default scans need to produce valuable and
actionable information. If even the script author has trouble
explaining why an average networking or security professional
would find the output valuable, the script should not run by
default.</para></listitem>
</varlistentry>
<varlistentry>
<term>Verbosity</term>
<listitem><para>Nmap output is used for a wide variety of
purposes and needs to be readable and concise. A script which
frequently produces pages full of output should not be added
to the <literal>default</literal> category. When there is no
important information to report, NSE scripts (particularly
default ones) should return nothing. Checking for an obscure
vulnerability may be OK by default as long as it only produces output
when that vulnerability is discovered.</para></listitem>
</varlistentry>
<varlistentry>
<term>Reliability</term>
<listitem><para>Many scripts use heuristics and fuzzy signature matching to reach conclusions about the target host or service. Examples include <literal>sniffer-detect</literal> and <literal>sql-injection</literal>. If the script is often wrong, it doesn't belong in the <literal>default</literal> category where it may confuse or mislead casual users. Users who specify a script or category directly are generally more advanced and likely know how the script works or at least where to find its documentation.</para></listitem>
</varlistentry>
<varlistentry>
<term>Intrusiveness</term>
<listitem><para>Some scripts are very intrusive because they use significant resources on the remote system, are likely to crash the system or service, or are likely to be perceived as an attack by the remote administrators. The more intrusive a script is, the less suitable it is for the <literal>default</literal> category. Default scripts are almost always in the <literal>safe</literal> category too, though we occasionally allow <literal>intrusive</literal> scripts by default when they are only mildly intrusive and score well in the other factors.</para></listitem>
</varlistentry>
<varlistentry>
<term>Privacy</term>
<listitem><para>Some scripts, particularly those in the <literal>external</literal> category described later, divulge information to third parties by their very nature. For example, the <literal>whois</literal> script must divulge the target IP address to regional whois registries. We have also considered (and decided against) adding scripts which check target SSH and SSL key fingerprints against Internet weak key databases. The more privacy-invasive a script is, the less suitable it is for <literal>default</literal> category inclusion.</para></listitem>
</varlistentry>
</variablelist>
<para>We don't have exact thresholds for each of these criteria,
and many of them are subjective. All of these factors are
considered together when making a decision whether to promote a
script into the <literal>default</literal> category. A few default scripts are <literal>identd-owners</literal> (determines the username running remote services using identd), <literal>http-auth</literal> (obtains authentication scheme and realm of web sites requiring authentication), and <literal>ftp-anon</literal> (tests whether an FTP server allows anonymous access).</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-discovery">
<indexterm><primary sortas="discovery script category">“<literal>discovery</literal>” script category</primary></indexterm>
<option>discovery</option>
</term>
<listitem>
<para>These scripts try to actively discover more about the
network by querying public registries, SNMP-enabled
devices, directory services, and the like. Examples include <literal>html-title</literal> (obtains the title of the root path of web sites), <literal>smb-enum-shares</literal> (enumerates Windows shares), and <literal>snmp-sysdescr</literal> (extracts system details via SNMP).</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-dos">
<indexterm><primary sortas="dos script category">“<literal>dos</literal>” script category</primary></indexterm>
<option>dos</option>
</term>
<listitem>
<para>Scripts in this category may cause a denial of
service. Sometimes this is done to test vulnerability to
a denial of service method, but more commonly it is
an undesired by necessary side effect of testing for
a traditional vulnerability. These tests sometimes crash
vulnerable services.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-exploit">
<indexterm><primary sortas="exploit script category">“<literal>exploit</literal>” script category</primary></indexterm>
<option>exploit</option>
</term>
<listitem>
<para>These scripts aim to actively exploit some vulnerability. Examples include <literal>jdwp-exec</literal> and <literal>http-shellshock</literal>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-external">
<indexterm><primary sortas="external script category">“<literal>external</literal>” script category</primary></indexterm>
<option>external</option>
</term>
<listitem>
<para>Scripts in this category may send data to a
third-party database or other network resource. An example
of this is <literal>whois-ip</literal>, which makes a
connection to
whois<indexterm><primary>whois</primary></indexterm> servers
to learn about the address of the target. There is always
the possibility that operators of the third-party
database will record anything you send to them, which in
many cases will include your IP address and the address of
the target. Most scripts involve traffic strictly between
the scanning computer and the client; any that do not are
placed in this category.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-fuzzer">
<indexterm><primary sortas="fuzzer script category">“<literal>fuzzer</literal>” script category</primary></indexterm>
<option>fuzzer</option>
</term>
<listitem>
<para>This category contains scripts which are designed to send server software unexpected or randomized fields in each packet. While this technique can useful for finding undiscovered bugs and vulnerabilities in software, it is both a slow process and bandwidth intensive.
An example of a script in this category is <literal>dns-fuzz</literal>, which bombards a DNS server with slightly flawed domain requests until either the server crashes or a user specified time limit elapses.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-intrusive">
<indexterm><primary sortas="intrusive script category">“<literal>intrusive</literal>” script category</primary></indexterm>
<option>intrusive</option>
</term>
<listitem>
<para>These are scripts that cannot be classified in the
<literal>safe</literal> category because the risks are too
high that they will crash the target system, use up
significant resources on the target host (such as
bandwidth or CPU time), or otherwise be perceived as
malicious by the target's system administrators. Examples
are <literal>http-open-proxy</literal> (which attempts to
use the target server as an HTTP proxy)
and <literal>snmp-brute</literal> (which tries to guess a
device's SNMP community string by sending common values
such
as <literal>public</literal>, <literal>private</literal>,
and <literal>cisco</literal>). Unless a script is in the special <literal>version</literal> category, it should be categorized as either <literal>safe</literal> or <literal>intrusive</literal>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-malware">
<indexterm><primary sortas="malware script category">“<literal>malware</literal>” script category</primary></indexterm>
<option>malware</option>
</term>
<listitem>
<para>These scripts test whether the target platform is
infected by malware or backdoors. Examples include <literal>smtp-strangeport</literal>, which watches for SMTP servers running on unusual port numbers, and <literal>auth-spoof</literal>, which detects identd spoofing daemons which provide a fake answer before even receiving a query. Both of these behaviors are commonly associated with malware infections.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-safe">
<indexterm><primary sortas="safe script category">“<literal>safe</literal>” script category</primary></indexterm>
<option>safe</option>
</term>
<listitem>
<para>Scripts
which weren't designed to crash services, use large
amounts of network bandwidth or other resources, or
exploit security holes are categorized as <literal>safe</literal>. These are less likely to offend
remote administrators, though (as with all other Nmap
features) we cannot guarantee that they won't ever cause
adverse reactions. Most of these perform general
network discovery. Examples are
<literal>ssh-hostkey</literal> (retrieves an SSH host key) and
<literal>html-title</literal> (grabs the title from a
web page). Scripts in the <literal>version</literal> category are not categorized by safety, but any other scripts which aren't in <literal>safe</literal> should be placed in <literal>intrusive</literal>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-version">
<indexterm><primary sortas="version script category">“<literal>version</literal>” script category</primary></indexterm>
<indexterm><primary>version detection</primary><seealso>“<literal>version</literal>” script category</seealso></indexterm>
<option>version</option>
</term>
<listitem>
<para>The scripts in this special category are an
extension to the version detection feature and cannot be
selected explicitly. They are selected to run only if
version detection (<option>-sV</option>) was requested.
Their output cannot be distinguished from version
detection output and they do not produce service or host
script results. Examples
are <literal>skypev2-version</literal>, <literal>pptp-version</literal>,
and <literal>iax2-version</literal>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term id="nse-category-vuln">
<indexterm><primary sortas="vuln script category">“<literal>vuln</literal>” script category</primary></indexterm>
<option>vuln</option>
</term>
<listitem>
<para>These scripts check for specific known vulnerabilities and
generally only report results if they are found. Examples include <literal>realvnc-auth-bypass</literal> and <literal>afp-path-vuln</literal>.</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="nse-script-types">
<title>Script Types and Phases</title>
<para>
NSE supports four types of scripts, which are distinguished by the kind of targets they take and the scanning phase in which they are run. Individual scripts may support multiple types of operation.
</para>
<variablelist>
<varlistentry>
<term>Prerule scripts</term>
<listitem>
<para>These scripts run before any of Nmap's scan phases, so
Nmap has not collected any information about its targets
yet. They can be useful for tasks which don't depend on
specific scan targets, such as performing network broadcast
requests to query DHCP and DNS SD servers. Some of these
scripts can generate new targets for Nmap to scan (only if
you specify
the <ulink url="https://nmap.org/nsedoc/lib/target.html">newtargets</ulink>
NSE argument). For example, <ulink role="hidepdf"
url="https://nmap.org/nsedoc/scripts/dns-zone-transfer.html">dns-zone-transfer</ulink>
can obtain a list of IPs in a domain using a zone transfer
request and then automatically add them to Nmap's scan
target list. Prerule scripts can be identified by containing a <literal>prerule</literal> function (see <xref linkend="nse-format-rules"/>).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Host scripts</term>
<listitem>
<para>Scripts in this phase run during Nmap's normal
scanning process after Nmap has performed host discovery,
port scanning, version detection, and OS detection against
the target host. This type of script is invoked once
against each target host which matches
its <literal>hostrule</literal> function. Examples
are <ulink role="hidepdf"
url="https://nmap.org/nsedoc/scripts/whois-ip.html">whois-ip</ulink>,
which looks up ownership information for a target IP,
and <ulink role="hidepdf"
url="https://nmap.org/nsedoc/scripts/path-mtu.html">path-mtu</ulink>
which tries to determine the maximum IP packet size which
can reach the target without requiring fragmentation.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Service scripts</term>
<listitem>
<para>These scripts run against specific services listening
on a target host. For example, Nmap includes more than 15
http service scripts to run against web servers. If a host
has web servers running on multiple ports, those scripts may
run multiple times (one for each port). These are the most
commong Nmap script type, and they are distinguished by
containing a <literal>portrule</literal> function for
deciding which detected services a script should run
against.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Postrule scripts</term>
<listitem>
<para>These scripts run after Nmap has scanned all of its
targets. They can be useful for formatting and presenting
Nmap output. For example, <ulink role="hidepdf"
url="https://nmap.org/nsedoc/scripts/ssh-hostkey.html">ssh-hostkey</ulink>
is best known for its service (portrule) script which
connects to SSH servers, discovers their public keys, and
prints them. But it also includes a postrule which checks
for duplicate keys amongst all of the hosts scanned, then
prints any that are found. Another potential use for a
postrule script is printing a reverse-index of the Nmap
output—showing which hosts run a particular service
rather than just listing the services on each host.
Postrule scripts are identified by containing a
<literal>postrule</literal> function.
</para>
<para>Many scripts could potentially run as either a prerule
or postrule script. In those cases, we recommend using a
prerule for consistency.</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="nse-cmd-line-args">
<title>Command-line Arguments</title>
<para>
These are the five command-line arguments specific to script scanning:
</para>
<variablelist>
<varlistentry>
<term>
<indexterm><primary><option>-sC</option></primary></indexterm>
<option>-sC</option>
</term>
<listitem>
<para>Performs a script scan using the default set of scripts. It is
equivalent to <option>--script=default</option>. Some of the
scripts in this <literal>default</literal> category are considered intrusive and should
not be run against a target network without permission. </para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script</option></primary></indexterm>
<option>--script <replaceable>filename</replaceable>|<replaceable>category</replaceable>|<replaceable>directory</replaceable>/|<replaceable>expression</replaceable><optional>,...</optional></option></term>
<listitem>
<para>
Runs a script scan using the comma-separated list of filenames, script
categories, and directories. Each element in the list may also be a
Boolean expression describing a more complex set of scripts. Each
element is interpreted first as an expression, then as a category, and
finally as a file or directory name. The special argument
<literal>all</literal> makes every script in Nmap's script database
eligible to run. The <literal>all</literal> argument should be used with caution as NSE may contain dangerous scripts including exploits, brute force authentication crackers, and denial of service attacks.
</para>
<para>
Each element in the script expression list may be prefixed with a
<literal>+</literal> character to force the given script(s) to run
regardless of the conditions in their <literal>portrule</literal> or
<literal>hostrule</literal> functions. This is generally only done by
advanced users in special cases. For example, you might want to do a
configuration review on a bunch of MS SQL servers, some of which are
running on nonstandard ports. Rather than slow the Nmap scan by
running extensive version detection (<option>-sV
--version-all</option>) so that Nmap will recognize the <literal>ms-sql</literal>
service, you can force the <literal>ms-sql-config</literal> script to run against all the
targeted hosts and ports by specifying <option>--script
+ms-sql-config</option>.</para>
<para>
File and directory names may be relative or absolute. Absolute names are
used directly. Relative paths are searched for in the
<filename>scripts</filename> subdirectory of each of the following places until
found:
<indexterm><primary>data files</primary><secondary>directory search order</secondary></indexterm><indexterm><primary>scripts, location of</primary></indexterm>
<simplelist>
<member><option>--datadir</option></member>
<member><envar>$NMAPDIR</envar><indexterm><primary><envar>NMAPDIR</envar> environment variable</primary></indexterm></member>
<member><filename>~/.nmap</filename> (not searched on Windows)<indexterm><primary sortas="nmap directory"><filename>.nmap</filename> directory</primary></indexterm></member>
<member><filename><replaceable>APPDATA</replaceable>\nmap</filename> (only on Windows)<indexterm><primary sortas="nmap directory"><filename>.nmap</filename> directory</primary></indexterm></member>
<member>the directory containing the <filename>nmap</filename>
executable</member>
<member>the directory containing the <filename>nmap</filename>
executable, followed by <filename>../share/nmap</filename> (not searched on Windows)</member>
<member><varname>NMAPDATADIR</varname><indexterm><primary><varname>NMAPDATADIR</varname></primary></indexterm> (not searched on Windows)</member>
<member>the current directory.</member>
</simplelist>
</para>
<para>
When a directory name ending in <literal>/</literal> is given, Nmap loads every file in the directory
whose name ends with <filename>.nse</filename>. All other files are
ignored and directories are not searched recursively. When a filename is
given, it does not have to have the <filename>.nse</filename> extension;
it will be added automatically if necessary.
</para>
<para>
See <xref linkend="nse-script-selection"/> for examples and a full
explanation of the <option>--script</option> option.
</para>
<indexterm><primary>script database</primary><see><filename>script.db</filename></see></indexterm>
<para>Nmap scripts are stored in a <filename>scripts</filename>
subdirectory of the Nmap data directory by default (see
<xref linkend="data-files"/>). For efficiency, scripts are indexed in
a database stored
in <filename>scripts/script.db</filename>,<indexterm><primary><filename>script.db</filename></primary></indexterm>
which lists the category or categories in which each script belongs.
The argument <literal>all</literal> will execute all scripts in the
Nmap script database, but should be used cautiously since Nmap may contain exploits, denial of service attacks, and other dangerous scripts.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-args</option></primary></indexterm>
<option>--script-args <replaceable>args</replaceable></option>
</term>
<listitem>
<para>Provides arguments to the scripts. See
<xref linkend="nse-args"/> for a detailed explanation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-args-file</option></primary></indexterm>
<option>--script-args-file <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>This option is the same as
<option>--script-args</option> except that you pass the
arguments in a file rather than on the command-line. See
<xref linkend="nse-args"/> for a detailed
explanation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-help</option></primary></indexterm>
<option>--script-help <replaceable>filename</replaceable>|<replaceable>category</replaceable>|<replaceable>directory</replaceable>|<replaceable>expression</replaceable>|all<optional>,...</optional></option>
</term>
<listitem>
<para>
Shows help about scripts. For each script matching the given
specification, Nmap prints the script name, its categories, and its
description. The specifications are the same as those accepted by
<option>--script</option>; so for example if you want help about
the <literal>ssl-enum-ciphers</literal> script, you would run
<command>nmap --script-help ssl-enum-ciphers</command>. A sample of script
help is shown in <xref linkend="nse-script-help"/>.
</para>
<example id="nse-script-help">
<indexterm><primary><option>--script-help</option></primary><secondary>example of</secondary></indexterm>
<title>Script help</title>
<screen>
$ nmap --script-help "afp-* and discovery"
Starting Nmap 7.40 ( https://nmap.org ) at 2017-04-21 14:15 UTC
afp-ls
Categories: discovery safe
https://nmap.org/nsedoc/scripts/afp-ls.html
Attempts to get useful information about files from AFP volumes.
The output is intended to resemble the output of <code>ls</code>.
afp-serverinfo
Categories: default discovery safe
https://nmap.org/nsedoc/scripts/afp-serverinfo.html
Shows AFP server information. This information includes the server's
hostname, IPv4 and IPv6 addresses, and hardware type (for example
<code>Macmini</code> or <code>MacBookPro</code>).
afp-showmount
Categories: discovery safe
https://nmap.org/nsedoc/scripts/afp-showmount.html
Shows AFP shares and ACLs.
</screen>
</example>
<para>
If the
<option>-oX</option><indexterm><primary><option>-oX</option></primary></indexterm>
option is used, an XML representation of the script help will be
written to the given file.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-trace</option></primary></indexterm>
<option>--script-trace</option>
</term>
<listitem>
<para>
This option is similar to
<option>--packet-trace</option>, but works at the
application level rather than packet by packet. If this
option is specified, all incoming and outgoing
communication performed by scripts is printed. The
displayed information includes the communication
protocol, source and target addresses, and the
transmitted data. If more than 5% of transmitted data is
unprintable, hex dumps are given instead.
Specifying <option>--packet-trace</option> enables script
tracing too.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-updatedb</option></primary></indexterm>
<option>--script-updatedb</option>
</term>
<listitem>
<para>This option updates the script database found
in <filename>scripts/script.db</filename> which is used by
Nmap to determine the available default scripts and
categories. It is only necessary to update the database if
you have added or removed NSE scripts from the
default <filename>scripts</filename> directory or if you
have changed the categories of any script. This option is
used by
itself without arguments: <command>nmap --script-updatedb</command>.</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Some other Nmap options have effects on script scans. The most
prominent of these is
<option>-sV</option>.<indexterm><primary><option>-sV</option></primary></indexterm>
A version scan automatically executes
the scripts in the
<literal>version</literal> category.<indexterm><primary sortas="version script category">“<literal>version</literal>” script category</primary></indexterm>
The scripts
in this category are slightly different from other scripts because their
output blends in with the version scan results and they do not produce any
script scan output to the screen. If the
<option>-oX</option><indexterm><primary><option>-oX</option></primary></indexterm>
option is used, typical script output will still be available in the
XML output file.
</para>
<para>
Another option which affects the scripting engine is
<option>-A</option>.<indexterm><primary><option>-A</option></primary><secondary>features enabled by</secondary></indexterm>
The aggressive Nmap mode implies
the <option>-sC</option> option.
</para>
<para>
</para>
</sect2>
<sect2 id="nse-script-selection">
<title>Script Selection</title>
<indexterm><primary><option>--script</option></primary></indexterm>
<indexterm><primary>script selection</primary></indexterm>
<para>
The <option>--script</option> option takes a comma-separated list
of categories, filenames, and directory names. Some simple
examples of its use:
</para>
<variablelist>
<varlistentry>
<term><command>nmap --script default,safe</command></term>
<listitem>
<para>Loads all scripts in the <literal>default</literal> and
<literal>safe</literal> categories.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script smb-os-discovery</command></term>
<listitem>
<para>Loads only the <filename>smb-os-discovery</filename>
script. Note that the <filename>.nse</filename> extension is
optional.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script default,banner,/home/user/customscripts</command></term>
<listitem>
<para>Loads the script in the <literal>default</literal>
category, the <filename>banner</filename> script, and all
<filename>.nse</filename> files in the directory
<filename>/home/user/customscripts</filename>.</para>
</listitem>
</varlistentry>
</variablelist>
<indexterm><primary>wildcards</primary><secondary>in script selection</secondary></indexterm>
<para>
When referring to scripts from <filename>script.db</filename> by
name, you can use a shell-style ‘<literal>*</literal>’
wildcard.
</para>
<variablelist>
<varlistentry>
<term><command>nmap --script "http-*"</command></term>
<listitem>
<para>Loads all scripts whose name starts with
<filename>http-</filename>, such as
<filename>http-auth</filename> and
<filename>http-open-proxy</filename>. The argument to
<option>--script</option> had to be in quotes to protect the
wildcard from the shell.</para>
</listitem>
</varlistentry>
</variablelist>
<indexterm><primary>Boolean expressions in script selection</primary></indexterm>
<para>
More complicated script selection can be done using the
<literal>and</literal>, <literal>or</literal>, and
<literal>not</literal> operators to build Boolean expressions. The
operators have the same
<ulink role="hidepdf" url="https://lua.org/manual/5.4/manual.html#3.4.8">precedence</ulink>
as in Lua: <literal>not</literal> is the highest, followed by
<literal>and</literal> and then <literal>or</literal>. You can
alter precedence by using parentheses. Because expressions contain
space characters it is necessary to quote
them.
</para>
<variablelist>
<varlistentry>
<term><command>nmap --script "not intrusive"</command></term>
<listitem>
<para>Loads every script except for those in the
<literal>intrusive</literal> category.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script "default or safe"</command></term>
<listitem>
<para>This is functionally equivalent to
<command>nmap --script "default,safe"</command>. It loads all
scripts that are in the <literal>default</literal> category or
the <literal>safe</literal> category or both.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script "default and safe"</command></term>
<listitem>
<para>Loads those scripts that are in
<emphasis>both</emphasis> the <literal>default</literal> and
<literal>safe</literal> categories.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script "(default or safe or intrusive) and not http-*"</command></term>
<listitem>
<para>Loads scripts in the <literal>default</literal>,
<literal>safe</literal>, or <literal>intrusive</literal>
categories, except for those whose names start with
<filename>http-</filename>.</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Names in a Boolean expression may be a category, a filename from
<filename>script.db</filename>, or <literal>all</literal>. A name
is any sequence of characters not containing
‘<literal> </literal>’,
‘<literal>,</literal>’,
‘<literal>(</literal>’,
‘<literal>)</literal>’, or
‘<literal>;</literal>’, except for the sequences
<literal>and</literal>, <literal>or</literal>, and
<literal>not</literal>, which are operators.
</para>
</sect2>
<sect2 id="nse-args">
<title>Arguments to Scripts</title>
<indexterm><primary>script arguments</primary></indexterm>
<para>
Arguments may be passed to NSE scripts using the
<option>--script-args</option> option. The arguments describe a table of
key-value pairs and possibly array values. The arguments are provided to
scripts as a table in the registry called
<varname>nmap.registry.args</varname>, though they are normally accessed through the <literal>stdnse.get_script_args</literal> function.
</para>
<para>
The syntax for script arguments is similar to Lua's table constructor
syntax. Arguments are a comma-separated list of
<literal>name=value</literal> pairs. Names and values may be strings not
containing whitespace or the characters
‘<literal>{</literal>’,
‘<literal>}</literal>’,
‘<literal>=</literal>’, or
‘<literal>,</literal>’.
To include one of these characters in a string, enclose the string in
single or double quotes. Within a quoted string,
‘<literal>\</literal>’ escapes a quote. A backslash is only
used to escape quotation marks in this special case; in all other cases a
backslash is interpreted literally.
</para>
<para>
Values may also be tables enclosed in <literal>{}</literal>, just as in
Lua. A table may contain simple string values, for example a list of proxy
hosts; or more name-value pairs, including nested tables.
</para>
<para>Script arguments are often qualified with the relevant
script name so that a user doesn't unintentionally affect multiple
scripts with a single generic name. For example, you can set
the timeout for responses to the
<literal>broadcast-ping</literal> script (and only that script)
by setting <literal>broadcast-ping.timeout</literal> to the
amount of time you're willing to wait. Sometimes,
however, you want a script argument applied more widely. If you
remove the qualification and specify just
<literal>timeout=250ms</literal>, you will be setting the value
for more than a dozen scripts in addition to
<literal>broadcast-ping</literal>. You can even combine
qualified and unqualified arguments, and the most specific match
takes precedence. For example, you could specify
<literal>rlogin-brute.timeout=20s,timeout=250ms</literal>. In
that case, the timeout will be 20 seconds for the
<literal>rlogin-brute</literal> script, and 250 milliseconds for all other
scripts which support this variable
(<literal>broadcast-ping</literal>,
<literal>lltd-discovery</literal>, etc.)</para>
<para>Rather than pass the arguments on the command line with
<option>--script-args</option>, you may store them in a file
(separated by commas or newlines) and specify just the file name
with <option>--script-args-file</option>. Options specified
with <option>--script-args</option> on the command-line take
precedence over those given in a file. The filename may be
given as an absolute path or relative to Nmap's usual
search path (NMAPDIR, etc.)
</para>
<para>Here is a typical Nmap invocation with script arguments:
<informalexample>
<indexterm><primary><option>--script-args</option></primary><secondary>example of</secondary></indexterm>
<literallayout>
<command>nmap -sC --script-args 'user=foo,pass=",{}=bar",paths={/admin,/cgi-bin},xmpp-info.server_name=localhost'</command>
</literallayout>
</informalexample>
Notice that the script arguments are surrounded in single quotes. For the
Bash shell, this prevents the shell from interpreting the double quotes
and doing automatic string concatenation. Naturally, different shells may
require you to escape quotes or to use different quotes. See your
relevant manual. The command results in this Lua table:
<programlisting>
nmap.registry.args = {
user = "foo",
pass = ",{}=bar",
paths = {
"/admin",
"/cgi-bin"
},
xmpp-info.server_name="localhost"
}
</programlisting>
While you could access the values directly from <literal>nmap.registry.args</literal>, it is normally better to use the <literal>stdnse.get_script_args</literal> function like this:
<programlisting>
local server_name = stdnse.get_script_args("xmpp-info.server_name")
</programlisting>
</para>
<para>
All script arguments share a global namespace, the
<literal>nmap.registry.args</literal> table. For this reason, short or
ambiguous names like <literal>user</literal> are not recommended. Some
scripts prefix their arguments with their script name, like
<literal>smtp-open-relay.domain</literal>.
Arguments used by libraries, which can
affect many scripts, usually have names beginning with the name of the
library, like <literal>smbuser</literal> and
<literal>creds.snmp</literal>.
</para>
<para>
The online NSE Documentation Portal at <ulink
url="https://nmap.org/nsedoc/"/> lists the arguments that each script
accepts, including any library arguments that may influence the script.
</para>
</sect2>
<sect2 id="nse-usage-examples">
<title>Complete Examples</title>
<variablelist>
<varlistentry>
<term><command>nmap -sC example.com</command></term>
<listitem>
<para>A simple script scan using the default set of
scripts.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap -sn -sC example.com</command></term>
<listitem>
<para>A script scan without a port scan; only host scripts are
eligible to run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap -Pn -sn -sC example.com</command></term>
<listitem>
<para>A script scan without host discovery or a port scan. All
hosts are assumed up and only host scripts are eligible to
run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-trace</option></primary><secondary>example of</secondary></indexterm>
<command>nmap --script smb-os-discovery --script-trace example.com</command></term>
<listitem>
<para>Execute a specific script with script tracing.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<indexterm><primary><option>--script-args</option></primary><secondary>example of</secondary></indexterm>
<command>nmap --script snmp-sysdescr --script-args creds.snmp=admin example.com</command></term>
<listitem>
<para>Run an individual script that takes a script
argument.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><command>nmap --script mycustomscripts,safe example.com</command></term>
<listitem>
<para>Execute all scripts in the
<filename>mycustomscripts</filename> directory as well as all
scripts in the <literal>safe</literal> category.</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id="nse-script-format">
<title>Script Format</title>
<para>NSE scripts consist of a handful of descriptive fields, a rule defining when the script should be executed, and an <literal>action</literal> function containing the actual script instructions. Values can be assigned to the descriptive fields just as you would assign any other Lua variables. Their names must be lowercase as shown in this section.</para>
<sect2 id="nse-format-description">
<title><literal>description</literal> Field</title>
<indexterm><primary sortas="description script variable">“<varname>description</varname>” script variable</primary></indexterm>
<para>The <literal>description</literal> field describes what a script is testing
for and any important notes the user should be aware of. Depending on script complexity, descriptions may vary in length from a few sentences to a few paragraphs. The first paragraph should be a brief synopsis of the script function suitable for stand-alone presentation to the user. Further paragraphs may provide much more script detail.
</para>
</sect2>
<sect2 id="nse-format-categories">
<title><literal>categories</literal> Field</title>
<indexterm><primary sortas="categories script variable">“<varname>categories</varname>” script variable</primary></indexterm>
<para>The <literal>categories</literal> field defines one or
more categories to which a script belongs (see
<xref linkend="nse-categories"/>). The categories are case-insensitive and may be specified in any order. They are listed in an array-style Lua table as in this example:</para>
<programlisting>
categories = {"default", "discovery", "safe"}
</programlisting>
</sect2>
<sect2 id="nse-format-author">
<title><literal>author</literal> Field </title>
<indexterm><primary sortas="author script variable">“<varname>author</varname>” script variable</primary></indexterm>
<para>
The <literal>author</literal> field contains the script authors' names and can also contain contact information (such as home page URLs). We no longer recommend including email addresses because spammers might scrape them from the NSEDoc web site. This optional field is not used by NSE, but gives script authors their due credit or blame.
</para>
</sect2>
<sect2 id="nse-format-license">
<title><literal>license</literal> Field </title>
<indexterm><primary sortas="license script variable">“<varname>license</varname>” script variable</primary></indexterm>
<indexterm><primary>copyright</primary><secondary>of scripts</secondary></indexterm>
<para>Nmap is a community project and we welcome all sorts of
code contributions, including NSE scripts. So if you write a
valuable script, don't keep it to yourself!
The optional <literal>license</literal> field helps ensure that we have
legal permission to distribute all the scripts which come with Nmap. All of those scripts
currently use the standard Nmap license
(described in <xref linkend="nmap-copyright"/>). They include
the following line:</para>
<programlisting>
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
</programlisting>
<para>The Nmap license is similar to the GNU GPL. Script authors may
use a BSD-style license (no advertising clause) instead if they prefer
that. For a BSD-style license, please include this line:
<programlisting>
license = "Simplified (2-clause) BSD license--See https://nmap.org/svn/docs/licenses/BSD-simplified"
</programlisting>
</para>
</sect2>
<sect2 id="nse-format-dependencies">
<title><literal>dependencies</literal> Field</title>
<indexterm><primary sortas="dependencies script variable">“<varname>dependencies</varname>” script variable</primary></indexterm>
<indexterm><primary>script dependencies</primary></indexterm>
<para>
The <literal>dependencies</literal> field is an array containing the
names of scripts that should run before this script, if they are also selected. This is used when
one script can make use of the results of another. For example, most of
the <filename>smb-*</filename> scripts depend on
<filename>smb-brute</filename>,<indexterm><primary><filename>smb-brute</filename> script</primary></indexterm>
because the accounts found by <filename>smb-brute</filename> may allow
the other scripts to get more information. Listing a script in
<literal>dependencies</literal> doesn't cause that script to be run; it
still has to be selected through the <option>--script</option> option
or otherwise. <literal>dependencies</literal> merely forces an ordering
among the scripts that <emphasis>are</emphasis> selected. This is an
example of a <literal>dependencies</literal> table, from
<filename>smb-os-discovery</filename>:<indexterm><primary><filename>smb-os-discovery</filename> script</primary></indexterm>
<programlisting>
dependencies = {"smb-brute"}
</programlisting>
The dependencies table is optional. NSE will assume
the script has no dependencies if the field is omitted.
</para>
<para>
Dependencies establish an internal ordering of scripts, assigning each
one a number called a <quote>runlevel</quote><footnote><para>Up through
Nmap version 5.10BETA2, dependencies didn't exist and script authors
had to set a <varname>runlevel</varname> field manually.</para></footnote>.<indexterm><primary>runlevel</primary></indexterm>
When
running your scripts you will see the runlevel (along with the total number of
runlevels) of each grouping of scripts run in NSE's output:
<screen>
NSE: Script scanning 127.0.0.1.
NSE: Starting runlevel 1 (of 3) scan.
Initiating NSE at 17:38
Completed NSE at 17:38, 0.00s elapsed
NSE: Starting runlevel 2 (of 3) scan.
Initiating NSE at 17:38
Completed NSE at 17:38, 0.00s elapsed
NSE: Starting runlevel 3 (of 3) scan.
Initiating NSE at 17:38
Completed NSE at 17:38, 0.00s elapsed
NSE: Script Scanning completed.
</screen>
</para>
</sect2>
<sect2 id="nse-format-rules">
<title>Rules</title>
<indexterm><primary sortas="prerule script variable">“<varname>prerule</varname>” script variable</primary></indexterm>
<indexterm><primary sortas="portrule script variable">“<varname>portrule</varname>” script variable</primary></indexterm>
<indexterm><primary sortas="hostrule script variable">“<varname>hostrule</varname>” script variable</primary></indexterm>
<indexterm><primary sortas="postrule script variable">“<varname>postrule</varname>” script variable</primary></indexterm>
<indexterm><primary>rules in NSE</primary><see>“<varname>prerule</varname>”, “<varname>portrule</varname>”, “<varname>hostrule</varname>” and “<varname>postrule</varname>”</see></indexterm>
<para>
Nmap uses the script rules to determine whether a script should be
run against a target. A rule is a Lua function that returns either
<literal>true</literal> or <literal>false</literal>. The script
<literal>action</literal> function is only performed if the rule
evaluates to <literal>true</literal>.
</para>
<para>
A script must contain one or more of the following functions that
determine when the script will be run:
<simplelist>
<member><literal>prerule()</literal></member>
<member><literal>hostrule(host)</literal></member>
<member><literal>portrule(host, port)</literal></member>
<member><literal>postrule()</literal></member>
</simplelist>
<literal>prerule</literal> scripts run once, before any hosts are
scanned, during the script pre-scanning
phase.<indexterm><primary>script
pre-scanning</primary></indexterm> <literal>hostrule</literal> and
<literal>portrule</literal> scripts run after each batch of hosts
is scanned. <literal>postrule</literal> scripts run once after all
hosts have been scanned, in the script post-scanning
phase.<indexterm><primary>script post-scanning
phase</primary></indexterm> A script may run in more than one
phase if it has several rules.
</para>
<para>
<literal>prerule</literal> and <literal>postrule</literal> do not
accept arguments. <literal>hostrule</literal> accepts a host table
and may test, for example, the IP address or hostname of the
target. <literal>portrule</literal> accepts both a host table and
a port table for any port in the
<literal>open</literal><indexterm><primary><literal>open</literal> port state</primary></indexterm>,
<literal>open|filtered</literal><indexterm><primary><literal>open|filtered</literal> port state</primary></indexterm>,
or <literal>unfiltered</literal><indexterm><primary><literal>unfiltered</literal> port state</primary></indexterm>
port states. Port rules generally test factors such as the port
number, port state, or listening service name in deciding whether
to run against a port. Example rules are shown in <xref
linkend="nse-tutorial-rule"/>.
</para>
<para>Advanced users may force a script to run regardless of the
results of these rule functions by prefixing the script name (or
category or other expression) with a <literal>+</literal> in the
<option>--script</option> argument.</para>
<para>
The current standard to choose between a
<literal>prerule</literal> or a <literal>postrule</literal> is
this: if the script is doing host discovery or any other network
operation then the <literal>prerule</literal> should be used.
<literal>postrule</literal> is reserved for reporting of data and
statistics that were gathered during the scan.
</para>
</sect2>
<sect2 id="nse-format-action"><title>Action</title>
<indexterm><primary sortas="action script variable">“<varname>action</varname>” script variable</primary></indexterm>
<para>
The action is the heart of an NSE script. It contains all of the
instructions to be executed when the script's prerule, portrule, hostrule or postrule
triggers. It is a Lua function which accepts the same arguments as the
rule. The return value of the action value may be a table of
name–value pairs, a string, or <code>nil</code>. For an example of
an NSE action refer to <xref linkend="nse-tutorial-action"/>.
</para>
<para>
If the output of the action is a table, it is automatically formatted in
a structured fashion for inclusion in the normal (<option>-oN</option>)
and XML (<option>-oX</option>) output formats. If a string, the text is
displayed directly in normal output, and written as an XML attribute in
XML output, No output is produced if the script returns
<literal>nil</literal>. See <xref linkend="nse-structured-output"/> for
details of how different return values are handled.
</para>
</sect2>
<sect2 id="nse-format-environment"><title>Environment Variables</title>
<indexterm><primary sortas="environment script variable">“<varname>environment</varname>” script variable</primary></indexterm>
<para>Each script has its own set of environment variables:</para>
<variablelist>
<varlistentry>
<term><literal>SCRIPT_PATH</literal></term>
<listitem>
<para>
The script path.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SCRIPT_NAME</literal></term>
<listitem>
<para>
The script name. This variable can be used in debug output.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SCRIPT_TYPE</literal></term>
<listitem>
<para>
Since a script can have multiple rule functions, this
environment variable will show which rule has activated
the script, this would be useful if the script wants to
share some code between different Script Scan phases.
It will take one of these four string values:
<literal>"prerule"</literal>, <literal>"hostrule"</literal>,
<literal>"portrule"</literal> or
<literal>"postrule"</literal>.
This variable is only available during and after the evaluation
of the rule functions.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
This is an example of a debug code that uses the previous
environment variables, followed by the output message, from dns-zone-transfer:
<programlisting>
stdnse.print_debug(3, "Skipping '%s' %s, 'dnszonetransfer.server' argument is missing.", SCRIPT_NAME, SCRIPT_TYPE)
</programlisting>
<screen>
Initiating NSE at 15:31
NSE: Skipping 'dns-zone-transfer' prerule, 'dnszonetransfer.server' argument is missing.
</screen>
</para>
</sect2>
</sect1>
<sect1 id="nse-language">
<title>Script Language</title>
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>parts of</secondary></indexterm>
<para>
The core of the Nmap Scripting Engine is an embeddable Lua
interpreter. Lua is a lightweight language designed for
extensibility. It offers a powerful and well-documented API for
interfacing with other software such as Nmap.
</para>
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>library</secondary></indexterm>
<para>
The second part of the Nmap Scripting Engine is the NSE Library, which
connects Lua and Nmap. This layer
handles issues such as initialization of the Lua interpreter,
scheduling of parallel script execution, script retrieval and
more. It is also the heart of the NSE network I/O framework and the
exception handling mechanism. It also includes utility libraries to make scripts more powerful and convenient. The utility library modules and extensions are described in <xref linkend="nse-library"/>.</para>
<sect2 id="nse-lua">
<title>Lua Base Language</title>
<indexterm><primary>Lua programming language</primary></indexterm>
<para>
The Nmap scripting language is an embedded <ulink
url="https://lua.org/">Lua</ulink> interpreter which is
extended with libraries for interfacing with Nmap. The Nmap
API is in the Lua namespace <literal>nmap</literal>. This
means that all calls to resources provided by Nmap have an
<literal>nmap</literal> prefix.<indexterm><primary><varname>nmap</varname> NSE library</primary></indexterm>
<literal>nmap.new_socket()</literal>, for example, returns a
new socket wrapper object. The Nmap library layer also takes
care of initializing the Lua context, scheduling parallel
scripts and collecting the output produced by completed
scripts.
</para>
<para>
During the planning stages, we considered several programming
languages as the base for Nmap scripting. Another option was to
implement a completely new programming language. Our criteria
were strict: NSE had to be easy to
use, small in size, compatible with the Nmap license,
scalable, fast and parallelizable. Several
previous efforts (by other projects) to design their own security auditing language from scratch
resulted in awkward solutions, so we decided early not to follow that
route. First the Guile Scheme interpreter was considered,
but the preference drifted towards the Elk interpreter due to its more
favorable license. But parallelizing Elk scripts would have been
difficult. In addition, we expect that most Nmap users prefer procedural programming over functional languages such as Scheme. Larger interpreters such as Perl, Python, and
Ruby are well-known and loved, but are difficult to embed
efficiently. In the end, Lua excelled in all of our criteria.
It is small, distributed under the liberal MIT open source license, has
coroutines for efficient parallel script
execution, was designed with embeddability in mind, has
excellent documentation, and is actively developed by a large
and committed community.
Lua is now even embedded in other popular open source security tools including
the <application>Wireshark</application> sniffer and <application>Snort</application> IDS.
</para>
</sect2>
</sect1>
<sect1 id="nse-scripts">
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>list of scripts</secondary></indexterm>
<title>NSE Scripts</title>
<print>
<para>This section lists (alphabetically) all NSE scripts packaged
with Nmap at the time of this writing. It comes straight from the
script source code thanks to the NSEDoc documentation system
described in <xref linkend="nsedoc"/>. Because of space limitations,
only script names, categories, and brief summaries of operation are
shown. Of course no paper documentation can stay current with
software developed as actively as NSE is. For complete and
up-to-date documentation, including script arguments and output
samples, see the online NSE Documentation Portal at
<ulink url="https://nmap.org/nsedoc/"/>.
</para>
&nse-scripts;
</print>
<web>
<para>This section (a long list of NSE scripts with brief
summaries) is only provided in the printed edition of this book
because we already provide a better online interface to the
information at the <ulink url="https://nmap.org/nsedoc/">NSE
Documentation Portal</ulink>.</para>
</web>
</sect1>
<sect1 id="nse-library">
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>list of modules</secondary></indexterm>
<title>NSE Libraries</title>
<para>In addition to the significant built-in capabilities of
Lua, we have written or integrated many extension libraries which make
script writing more powerful and convenient. These libraries (sometimes called modules) are compiled if necessary and installed along with
Nmap. They have their own directory, <filename>nselib</filename>, which
is installed in the configured Nmap data directory. Scripts need only
<ulink url="https://lua.org/manual/5.4/manual.html#pdf-require"><literal>require</literal></ulink> the default libraries in order to use them.
</para>
<sect2 id="nse-library-list">
<title>List of All Libraries</title>
<para>
This list is just an overview to give an idea of what libraries
are available. Developers will want to consult the complete
documentation at <ulink url="https://nmap.org/nsedoc/"/>.
</para>
&nse-modules;
</sect2>
<sect2 id="hacking-nse-libraries">
<title>Hacking NSE Libraries</title>
<para>
A common mistake when editing libraries is to accidentally use a
global variable instead of a local one. Different libraries using the
same global variable can be the cause of mysterious bugs. Lua's scope
assignment is global by default, so this mistake is easy to make.
</para>
<para>
To help correct this problem, NSE uses a library adapted from
the standard Lua distribution called
<filename>strict.lua</filename>.<indexterm><primary><filename>strict</filename> NSE library</primary></indexterm>
The library will
raise a runtime error on any access or modification of a global
variable which was undeclared in the file scope. A global variable is
considered declared if the library makes an assignment to the global
name (even <literal>nil</literal>) in the file scope.
</para>
</sect2>
<sect2 id="nse-library-c-modules">
<title>Adding C Modules to Nselib</title>
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>C modules</secondary></indexterm>
<para>
A few of the modules included in nselib are written in C or C++
rather than Lua. Two examples are <literal>bit</literal>
and <literal>pcre</literal>. We recommend that modules
be written in Lua if possible, but C and C++ may be more
appropriate if performance is critical or (as with
the <literal>pcre</literal> and <literal>openssl</literal>
modules) you are linking to an existing C library. This section
describes how to write your own compiled extensions to nselib.
</para>
<para>
The Lua C API is described at length in
<web><ulink url="http://www.amazon.com/dp/8590379825?tag=secbks-20"><citetitle>Programming in Lua, Second Edition</citetitle></ulink>,</web>
<print><citetitle>Programming in Lua, Second Edition</citetitle>,</print>
so this is a short summary. C modules consist of functions that
follow the protocol of the
<ulink url="https://lua.org/manual/5.4/manual.html#lua_CFunction"><type>lua_CFunction</type></ulink>
type. The functions are registered with Lua and assembled into a
library by calling the
<function>luaL_newlib</function><indexterm><primary><function>luaL_newlib</function></primary></indexterm>
function. A special initialization function provides the interface
between the module and the rest of the NSE code. By convention the
initialization function is named in the form
<function>luaopen_<replaceable>module</replaceable></function>.
</para>
<para>
The most straightforward compiled module that comes with NSE is
<literal>openssl</literal>.<indexterm><primary><varname>openssl</varname> NSE library</primary></indexterm>
This module serves as a good example for a beginning module
writer. The
source code for
<literal>openssl</literal> source is in <filename>nse_openssl.cc</filename> and
<filename>nse_openssl.h</filename>. Most of the other compiled modules
follow this <literal>nse_<replaceable>module name</replaceable>.cc</literal> naming convention.
</para>
<para>
Reviewing the <literal>openssl</literal> module shows that one of the
functions in <filename>nse_openssl.cc</filename> is
<function>l_md5</function>, which calculates an MD5 digest. Its
function prototype is:</para>
<programlisting>
static int l_md5(lua_State *L);
</programlisting>
<para>The prototype shows that <function>l_md5</function> matches the
<type>lua_CFunction</type> type. The function is static because it
does not have to be visible to other compiled code. Only an address is required
to register it with Lua. Later in the file,
<function>l_md5</function> is entered into an array of type
<type>luaL_Reg</type> and associated with the name
<function>md5</function>:</para>
<programlisting>
static const struct luaL_Reg openssllib[] = {
{ "md5", l_md5 },
{ NULL, NULL }
};
</programlisting>
<para>This function will now be known as <function>md5</function> to NSE. Next the library is registered with a call to
<function>luaL_newlib</function> inside the initialization
function <function>luaopen_openssl</function>, as shown
next. Some lines relating to the registration of
OpenSSL <type>BIGNUM</type> types have been omitted:</para>
<programlisting>
LUALIB_API int luaopen_openssl(lua_State *L) {
luaL_newlib(L, openssllib);
return 1;
}
</programlisting>
<para>The function <function>luaopen_openssl</function>
is the only function in the file that is exposed in
<filename>nse_openssl.h</filename>. <varname>OPENSSLLIBNAME</varname> is simply the string
<literal>"openssl"</literal>.
</para>
<para>
After a compiled module is written, it must be added to NSE by including
it in the list of standard libraries in
<filename>nse_main.cc</filename>. Then the module's
source file names must be added to
<filename>Makefile.in</filename> in the appropriate places. For both these tasks you can
simply follow the example of the other C modules. For the
Windows build, the new source files must be added to the
<filename>mswin32/nmap.vcproj</filename> project file using MS Visual Studio (see <xref linkend="inst-win-source"/>).
</para>
</sect2>
</sect1>
<sect1 id="nse-api">
<title>Nmap API</title>
<indexterm class="startofrange" id="nse-nmap-indexterm"><primary><varname>nmap</varname> NSE library</primary></indexterm>
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>API</secondary></indexterm>
<para>
NSE scripts have access to several Nmap facilities for writing
flexible and elegant scripts. The API provides target host
details such as port states and version detection results. It
also offers an interface to the Nsock<indexterm><primary>Nsock</primary><secondary>in NSE</secondary></indexterm>
library
for efficient network I/O.
</para>
<sect2 id="nse-api-arguments">
<title>Information Passed to a Script</title>
<para>
An effective Nmap scripting engine requires more than just a
Lua interpreter. Users need easy access to the information
Nmap has learned about the target hosts. This data is passed
as arguments to the NSE script's
<literal>action</literal> method.<indexterm><primary sortas="action script variable">“<varname>action</varname>” script variable</primary></indexterm>
The arguments, <literal>host</literal> and
<literal>port</literal>, are Lua tables which contain
information on the target against which the script is
executed. If a script matched a hostrule, it gets only the
<literal>host</literal> table, and if it matched a portrule it
gets both <literal>host</literal> and <literal>port</literal>.
The following list describes each variable in these two tables.
</para>
<para>
<variablelist>
<varlistentry>
<term><option>host</option>
</term>
<listitem>
<para>
This table is passed as a parameter to the rule and action
functions. It contains information on the operating system run by
the host (if the <option>-O</option> switch was supplied), the
IP address and the host name of the scanned target.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.os</option>
</term>
<listitem>
<para>
An array of OS match tables. An OS match consists of a
human-readable name and an array of OS classes. Each OS
class consists of a vendor, OS family, OS generation,
device type, and an array of
CPE<indexterm><primary>CPE</primary></indexterm> entries
for the class. (See <xref linkend="osdetect-ref-format"/>
for a description of OS match fields.) Fields may be
<varname>nil</varname> if they are not defined. The
<varname>host.os</varname> table has this overall
structure:
</para>
<programlisting>
host.os = {
{
name = <replaceable>string</replaceable>,
classes = {
{
vendor = <replaceable>string</replaceable>,
osfamily = <replaceable>string</replaceable>,
osgen = <replaceable>string</replaceable>,
type = <replaceable>string</replaceable>,
cpe = {
"cpe:/<replaceable>...</replaceable>",
<optional>More CPE</optional>
}
},
<optional>More classes</optional>
},
},
<optional>More OS matches</optional>
}
</programlisting>
<para>
For example, an OS match on this
<filename>nmap-os-db</filename><indexterm><primary><filename>nmap-os-db</filename></primary></indexterm>
entry:
</para>
<programlisting>
Fingerprint Linux 2.6.32 - 3.2
Class Linux | Linux | 2.6.X | general purpose
CPE cpe:/o:linux:linux_kernel:2.6
Class Linux | Linux | 3.X | general purpose
CPE cpe:/o:linux:linux_kernel:3
</programlisting>
<para>
will result in this <varname>host.os</varname> table:
</para>
<programlisting>
host.os = {
{
name = "Linux 2.6.32 - 3.2",
classes = {
{
vendor = "Linux",
osfamily = "Linux",
osgen = "2.6.X",
type = "general purpose",
cpe = { "cpe:/o:linux:linux_kernel:2.6" }
},
{
vendor = "Linux",
osfamily = "Linux",
osgen = "3.X",
type = "general purpose",
cpe = { "cpe:/o:linux:linux_kernel:3" }
}
},
}
}
</programlisting>
<para>
Only entries corresponding to perfect OS matches are put
in the <varname>host.os</varname> table. If Nmap was run
without the <option>-O</option> option, then
<literal>host.os</literal> is <literal>nil</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.ip</option>
</term>
<listitem>
<para>Contains a string representation of the IP address of the
target host. If the scan was run against a host name and its
DNS lookup returned more than one IP addresses, then the
same IP address is used as the one chosen for the scan.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.name</option>
</term>
<listitem>
<para>Contains the reverse DNS entry of the scanned target host
represented as a string. If the host has no reverse DNS entry,
the value of the field is an empty string.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.targetname</option>
</term>
<listitem>
<para>Contains the name of the host as specified on the command line.
If the target given on the command line contains a netmask or is an IP
address the value of the field is <literal>nil</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.reason</option>
</term>
<listitem>
<para>
Contains a string representation of the reason why the target host is in
its current state. The reason is given by the type of the packet that
determined the state. For example, an <literal>echo-reply</literal> from
an alive host.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.reason_ttl</option>
</term>
<listitem>
<para>
Contains the TTL value of the response packet, that was used to determine
the status of the target host, when it arrived. This response packet is the
packet that is also used to set <literal>host.reason</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.directly_connected</option>
</term>
<listitem>
<para> A Boolean value indicating whether or not the target host is
directly connected to (i.e. on the same network segment as) the host running Nmap.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.mac_addr</option>
</term>
<listitem>
<para>MAC address<indexterm><primary>MAC address</primary></indexterm>
of the destination host (six-byte-long binary
string) if available, otherwise <literal>nil</literal>. The MAC address is generally only available for hosts directly connected on a LAN and only if Nmap is doing a raw packet scan such as SYN scan.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.mac_addr_next_hop</option>
</term>
<listitem>
<para>MAC address
of the first hop in the route to the host, or
<literal>nil</literal> if not available.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.mac_addr_src</option>
</term>
<listitem>
<para>Our own MAC address, which was used to connect to the
host (either our network card's, or (with
<option>--spoof-mac</option>)<indexterm><primary><option>--spoof-mac</option></primary></indexterm>
the spoofed address).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.interface</option>
</term>
<listitem>
<para>A string containing the interface name
(dnet-style)<indexterm><primary>libdnet</primary></indexterm>
through
which packets to the host are sent.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.interface_mtu</option>
</term>
<listitem>
<para>The MTU (maximum transmission unit) for <literal>host.interface</literal>,
or 0 if not known.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.bin_ip</option>
</term>
<listitem>
<para>The target host's IP address as a 4-byte (IPv4) or 16-byte (IPv6) string.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.bin_ip_src</option>
</term>
<listitem>
<para>Our host's (running Nmap) source IP address as a 4-byte (IPv4) or 16-byte (IPv6) string.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.times</option>
</term>
<listitem>
<para>This table contains Nmap's timing data for the host (see
<xref linkend="scan-methods-rtt"/>). Its keys are <literal>srtt</literal> (smoothed
round trip time), <literal>rttvar</literal> (round trip time variance), and <literal>timeout</literal>
(the probe timeout), all given in floating-point seconds.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.traceroute</option>
</term>
<listitem>
<para>
This is an array of traceroute hops, present when the
<option>--traceroute</option> option was used. Each entry is a
host table with fields <literal>name</literal>,
<literal>ip</literal> and <literal>srtt</literal> (round
trip time). The TTL for an entry is implicit given its position
in the table. An empty table represents a timed-out hop.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>host.os_fp</option>
</term>
<listitem>
<para>If OS detection was performed, this is a string containing the OS
fingerprint for the host. The format is described in
<xref linkend="osdetect-fingerprint-format"/>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port</option>
</term>
<listitem>
<para>
The port table is passed to an NSE service script (i.e. only those with a portrule rather than a hostrule) in the same
fashion as the host table. It contains information about the port
against which the script is running. While this table is not passed to host scripts, port states on the target can still be requested from Nmap
using the <literal>nmap.get_port_state()</literal> and <literal>nmap.get_ports()</literal> calls.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.number</option>
</term>
<listitem>
<para>
Contains the port number of the target port.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.protocol</option>
</term>
<listitem>
<para>
Defines the protocol of the target port. Valid values are
<literal>"tcp"</literal> and <literal>"udp"</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.service</option>
</term>
<listitem>
<para>
Contains a string representation of the service running on
<literal>port.number</literal> as detected by the Nmap service
detection. If the <literal>port.version.service_dtype</literal> field is
<literal>"table"</literal>, Nmap has guessed the service based
on the port number. Otherwise version detection was able to determine the listening service and this field is equal to
<literal>port.version.name</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.reason</option>
</term>
<listitem>
<para>
Contains a string representation of the reason why the target port is in
its current state (given by <literal>port.state</literal>). The reason is
given by the type of the packet that determined the state. For example, a
<literal>RST</literal> packet from a closed port or
<literal>SYN-ACK</literal> from an open port.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.reason_ttl</option>
</term>
<listitem>
<para>
Contains the TTL value of the response packet, that was used to determine
the status of the target port, when it arrived. This response packet is the
packet that is also used to set <literal>port.reason</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.version</option>
</term>
<listitem>
<para>
This entry is a table which contains information
retrieved by the Nmap version scanning engine. Some
of the values (such as service name, service type
confidence, and the RPC-related values) may be retrieved by
Nmap even if a version scan was not performed. Values
which were not determined default to
<literal>nil</literal>. The meaning of each value is given in the following table:</para>
<table id="scripting-tbl-port-version-values">
<title><literal>port.version</literal> values</title>
<tgroup cols="2">
<colspec colwidth="2*" />
<colspec colwidth="5*" />
<thead><row>
<entry>Name</entry>
<entry>Description</entry>
</row></thead>
<tbody>
<row>
<entry align="left"><literal>name</literal></entry>
<entry>Contains the service name Nmap decided on for the port.</entry>
</row>
<row>
<entry align="left"><literal>name_confidence</literal></entry>
<entry>Evaluates how confident Nmap is about the accuracy of
<literal>name</literal>, from 1 (least confident) to 10. If
<literal>port.version.service_dtype</literal> is
<literal>"table"</literal>, this is 3.</entry>
</row>
<row>
<entry align="left"><literal>product</literal>, <literal>version</literal>, <literal>extrainfo</literal>, <literal>hostname</literal>, <literal>ostype</literal>, <literal>devicetype</literal></entry>
<entry>These five variables are the same as those described under <replaceable>versioninfo</replaceable> in <xref linkend="vscan-db-match"/>.
</entry>
</row>
<row>
<entry align="left"><literal>service_tunnel</literal></entry>
<entry>Contains the string <literal>"none"</literal> or <literal>"ssl"</literal> based on whether or not Nmap used SSL tunneling to detect the service.</entry>
</row>
<row>
<entry align="left"><literal>service_fp</literal></entry>
<entry>The service fingerprint, if any, is provided in this value. This is described in
<xref linkend="vscan-community"/>.
</entry>
</row>
<row>
<entry align="left"><literal>service_dtype</literal></entry>
<entry>Contains the string <literal>"table"</literal> or
<literal>"probed"</literal> based on whether or not Nmap deduced
<literal>port.version.name</literal> from the
<filename>nmap-services</filename> file or from a service probe match.
</entry>
</row>
<row>
<entry align="left"><literal>cpe</literal></entry>
<entry>List of CPE codes for the detected service. As described in the
<ulink url="http://cpe.mitre.org">official CPE specification</ulink> these strings
all start with the <literal>cpe:/</literal> prefix.</entry>
</row>
</tbody></tgroup></table>
</listitem>
</varlistentry>
<varlistentry>
<term><option>port.state</option>
</term>
<listitem>
<para>
Contains information on the state of the port.
Service scripts are only run against ports in the
<literal>open</literal> or
<literal>open|filtered</literal> states, so
<literal>port.state</literal> generally contains one
of those values. Other values might appear if the port
table is a result of the
<literal>get_port_state</literal> or <literal>get_ports</literal>
functions. You can adjust the port state using the
<literal>nmap.set_port_state()</literal> call. This is
normally done when an <literal>open|filtered</literal>
port is determined to be <literal>open</literal>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</sect2>
<sect2 id="nse-api-networkio">
<title>Network I/O API</title>
<para>
To allow for efficient and parallelizable network I/O, NSE
provides an interface to Nsock, the Nmap socket library. The
smart callback mechanism Nsock uses is fully transparent to
NSE scripts. The main benefit of NSE's sockets is that they
never block on I/O operations, allowing many scripts to be run in parallel.
The I/O parallelism is fully transparent to authors of NSE scripts.
In NSE you can either program as if you were using a single
non-blocking socket or you can program as if your connection is
blocking. Even blocking I/O calls return once a
specified timeout has been exceeded. Two flavors of Network I/O are
supported: connect-style and raw packet.
</para>
<sect3 id="nse-api-networkio-connect">
<title>Connect-style network I/O</title>
<indexterm><primary>sockets in NSE</primary></indexterm>
<para>This part of the network API should be suitable for most
classical network uses: Users create a socket, connect it to a
remote address, send and receive data and finally close the socket.
Everything up to the Transport layer (which is either TCP, UDP or
SSL) is handled by the library.
</para>
<para>
An NSE socket is created by calling
<function>nmap.new_socket</function>, which returns a socket object.
The socket object supports the usual <function>connect</function>,
<function>send</function>, <function>receive</function>, and
<function>close</function> methods. Additionally the functions
<function>receive_bytes</function>,
<function>receive_lines</function>, and
<function>receive_buf</function> allow greater control
over data reception.
<xref linkend="nse-api-networkio-connect-example" xrefstyle="select: label nopage"/>
shows the use of connect-style network operations. The
<function>try</function> function is used for error handling, as described in
<xref linkend="nse-exceptions"/>.
</para>
<example id="nse-api-networkio-connect-example">
<title>Connect-style I/O</title>
<programlisting>
require("nmap")
local socket = nmap.new_socket()
socket:set_timeout(1000)
try = nmap.new_try(function() socket:close() end)
try(socket:connect(host.ip, port.number))
try(socket:send("login"))
response = try(socket:receive())
socket:close()
</programlisting>
</example>
</sect3>
<sect3 id="nse-api-networkio-raw">
<title>Raw packet network I/O</title>
<indexterm><primary>raw packets</primary><secondary>in NSE</secondary></indexterm>
<para>For those cases where the connection-oriented approach is too high-level,
NSE provides script developers with the
option of raw packet network I/O.</para>
<para>Raw packet reception is handled through a
Libpcap<indexterm><primary>libpcap</primary></indexterm>
wrapper inside the Nsock
library.<indexterm><primary>Nsock</primary></indexterm>
The steps are to open a capture device, register listeners
with the device, and then process packets as they are
received.</para>
<para>The <function>pcap_open</function> method creates a handle for raw socket reads from an
ordinary socket object. This method takes a
callback function, which computes a packet hash from
a packet (including its headers). This hash can return any
binary string, which is later compared to the strings
registered with the <function>pcap_register</function>
function. The packet hash callback will normally extract some
portion of the packet, such as its source address.</para>
<para>The pcap reader is instructed to listen for certain
packets using the <function>pcap_register</function> function.
The function takes a binary string which is compared against
the hash value of every packet received. Those packets whose
hashes match any registered strings will be returned by the
<function>pcap_receive</function> method. Register the empty
string to receive all packets.</para>
<para>A script receives all packets for which a listener has
been registered by calling the
<function>pcap_receive</function> method. The method blocks
until a packet is received or a timeout occurs.</para>
<para>The more general the packet hash computing function is
kept, the more scripts may receive the packet and proceed with
their execution. To handle packet capture inside your
script you first have to create a socket with
<function>nmap.new_socket</function> and later close the socket
with <function>socket_object:close</function>—just like
with the connection-based network I/O.</para>
<para>While receiving packets is important, sending them is certainly
a key feature as well. To accomplish this, NSE provides access to
sending at the IP and Ethernet layers. Raw packet writes do not use
the same socket object as raw packet reads, so the <function>nmap.new_dnet</function>
function is called to create the required object for sending. After
this, a raw socket or Ethernet interface handle can be opened for use.</para>
<para>Once the dnet object is created, the function <function>ip_open</function>
can be called to initialize the object for IP sending. <function>ip_send</function>
sends the actual raw packet, which must start with the IP header.
The dnet object places no restrictions on which IP hosts may be sent
to, so the same object may be used to send to many different hosts
while it is open. To close the raw socket, call <function>ip_close</function>.</para>
<para>For sending at a lower level than IP, NSE provides functions for
writing Ethernet frames. <function>ethernet_open</function> initializes
the dnet object for sending by opening an Ethernet interface. The raw
frame is sent with <function>ethernet_send</function>. To close the
handle, call <function>ethernet_close</function>.</para>
<para>Sometimes the easiest ways to understand complex APIs is by
example. The
<filename>ipidseq</filename><indexterm><primary><filename>ipidseq</filename> script</primary></indexterm>
script included with
Nmap uses raw IP packets to test hosts for suitability for Nmap's
Idle Scan (<option>-sI</option>). The
<filename>sniffer-detect</filename><indexterm><primary><filename>sniffer-detect</filename> script</primary></indexterm>
script also included with Nmap uses raw Ethernet frames in an attempt
to detect promiscuous-mode machines on the network (those running
sniffers).</para>
</sect3>
</sect2>
<sect2 id="nse-structured-output">
<title>Structured and Unstructured Output</title>
<indexterm>structured script output</indexterm>
<para>
NSE scripts should usually return a table representing their
output, one that is nicely organized and has thoughtfully chosen
keys. Such a table will be automatically formatted for screen
output and will be stored as nested elements in XML output.
Having XML output broken down logically into keys and values
makes it easier for other tools to make use of script output.
It is possible for a script to return only a string, but doing
so is deprecated. In the past, scripts could only return a
string, and their output was simply copied to the XML as a blob
of text–this is now known as <quote>unstructured
output</quote>.
</para>
<para>
Suppose a script called <filename>user-list</filename> returns a
table as shown in this code sample. The following paragraphs
show how it appears in normal and XML output.
</para>
<programlisting>
local output = stdnse.output_table()
output.hostname = "slimer"
output.users = {}
output.users[#output.users + 1] = "root"
output.users[#output.users + 1] = "foo"
output.users[#output.users + 1] = "bar"
return output
</programlisting>
<para>
A Lua table is converted to a string for normal output. The way
this works is: each nested table gets a new level of
indentation. Table entries with string keys are preceded by the
key and a colon; entries with integer keys simply appear in
order.
Unlike normal Lua tables, which are unordered, a table that
comes from <code>stdnse.output_table</code> will keep its keys in
the order they were inserted.
<xref linkend="nse-normal-structured-output"/> shows how the
example table appears in normal output.
</para>
<example id="nse-normal-structured-output">
<title>Automatic formatting of NSE structured output</title>
<screen>
PORT STATE SERVICE
1123/tcp open unknown
| user-list:
| hostname: slimer
| users:
| root
| foo
|_ bar
</screen>
</example>
<para>
The XML representation of a Lua table is constructed as follows.
Nested table become <code>table</code> elements. Entries of
tables that are not themselves tables become <code>elem</code>
elements. Entries (whether <code>table</code> or
<code>elem</code>) with string keys get a <code>key</code>
attribute (e.g.
<code><elem key="username">foo</elem></code>);
entries with integer keys have no <code>key</code> element and
their key is implicit in the order in which they appear.
</para>
<para>
In addition to the above, whatever normal output the script
produces (even if automatically generated) is copied to the
<code>output</code> attribute of the <code>script</code>
element. Newlines and other special characters will be encoded
as XML character entities, for example <code>&#xa;</code>.
<xref linkend="nse-xml-structured-output"/> shows how the example
table appears in XML.
</para>
<example id="nse-xml-structured-output">
<title>NSE structured output in XML</title>
<screen><![CDATA[<script id="t" output="
hostname: slimer
users: 
 root
 foo
 bar">
<elem key="hostname">slimer</elem>
<table key="users">
<elem>root</elem>
<elem>foo</elem>
<elem>bar</elem>
</table>
</script>
]]></screen>
</example>
<para>
Some scripts need more control their normal output. This is the
case, for example, with scripts that need to display complex
tables. For complete control over the output, these scripts may
do either of these things:
<simplelist>
<member>return a string as second return value, or</member>
<member>set the <code>__tostring</code> metamethod on the
returned table.</member>
</simplelist>
The resulting string will be used in normal output, and the
table will be used in XML as usual. The formatted string may
contain newline characters to appear as multiple lines.
</para>
<para>
If the above code example were modified in this way to return a
formatted string,
<programlisting>
local output = stdnse.output_table()
output.hostname = "slimer"
output.users = {}
output.users[#output.users + 1] = "root"
output.users[#output.users + 1] = "foo"
output.users[#output.users + 1] = "bar"
local output_str = string.format("hostname: %s\n", output.hostname)
output_str = output_str .. "\n" .. stringaux.strjoin(", ", output.users)
return output, output_str
</programlisting>
then the normal output would appear as follows:
<screen>
PORT STATE SERVICE
1123/tcp open unknown
| user-list:
| hostname: slimer
|_ users: root, foo, bar
</screen>
</para>
<sect3 id="nse-structured-output-conventions">
<para>
There are conventions regarding the formatting of certain kinds
of data in structured output. Users of NSE output benefit by
being able to assume that some kinds of data, for instance dates
and times, are formatted the same way, even in different
scripts.
</para>
<para>
Network addresses, for example IPv4, IPv6, and MAC, are
represented as strings.
</para>
<para>
Long hexadecimal strings such as public key fingerprints should
be written using lower-case alphabetical characters and without
separators such as colons.
</para>
<para>
Dates and times are formatted according to
<ulink role="hidepdf" url="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC
3339</ulink><indexterm><primary>RFC 3339</primary></indexterm>.
If the time zone offset is known, they should appear like these
examples:
<screen>
2012-09-07T23:37:42+00:00
2012-09-07T23:37:42+02:00
</screen>
If the time zone offset is not known (representing some
unspecified local time), leave off the offset part:
<screen>
2012-09-07T23:37:42
</screen>
The library function
<code>datetime.format_timestamp</code> code exists to format times
for structured output. It takes an optional time zone offset in
seconds and automatically shifts the date to be correct within
that offset.
<screen>
datetime.format_timestamp(os.time(), 0) --> "2012-09-07T23:37:42+00:00"
</screen>
</para>
</sect3>
</sect2>
<sect2 id="nse-exceptions">
<title>Exception Handling</title>
<indexterm><primary>exceptions in NSE</primary></indexterm>
<para>
NSE provides an exception handling mechanism which is not present in
the base Lua language. It is tailored
specifically for network I/O operations, and
follows a functional programming paradigm rather than an
object-oriented one. The <function>nmap.new_try</function> API method is used to
create an exception handler. This method returns a function which takes a variable
number of arguments that are assumed to be the return values of
another function. If an exception is detected in the return
values (the first return value is false),
then the script execution is aborted and no
output is produced. Optionally, you can pass a function to
<function>new_try</function> which will be called
if an exception is caught. The function would generally perform any required cleanup operations.
</para>
<para>
<xref linkend="nse-exception-handling" xrefstyle="select: label nopage"/> shows cleanup
exception handling at work. A new function named
<function>catch</function> is defined to simply close the
newly created socket in case of an error. It is then used
to protect connection and communication attempts on that
socket. If no catch function is specified, execution of the
script aborts without further ado—open sockets will
remain open until the next run of Lua's garbage
collector. If the verbosity level is at least one or if the
scan is performed in debugging mode, a description of the
uncaught error condition is printed on standard output.
Note that it is currently not easily possible to group
several statements in one try block.
</para>
<example id="nse-exception-handling">
<title>Exception handling example</title>
<programlisting>
local result, socket, try, catch
result = ""
socket = nmap.new_socket()
catch = function()
socket:close()
end
try = nmap.new_try(catch)
try(socket:connect(host.ip, port.number))
result = try(socket:receive_lines(1))
try(socket:send(result))
</programlisting>
</example>
<para>
Writing a function which is treated properly by the
try/catch mechanism is straightforward. The function should
return multiple values. The first value should be a Boolean
which is <literal>true</literal> upon successful completion of the function and
<literal>false</literal> (or <literal>nil</literal>) otherwise. If the function completed successfully, the try
construct consumes the indicator value and returns the
remaining values. If the function failed then the second
returned value must be a string describing the error
condition. Note that if the value is not
<literal>nil</literal> or <literal>false</literal> it is
treated as <literal>true</literal> so you can return your
value in the normal case and return <literal>nil, <replaceable>error description</replaceable></literal>
if an error occurs.
</para>
</sect2>
<sect2 id="nse-api-registry">
<title>The Registry</title>
<indexterm><primary>registry (NSE)</primary></indexterm>
<para>Scripts can share information by storing values in a
<firstterm>register</firstterm>, which is a special table that can be
accessed by all scripts. There is a global registry with the name
<varname>nmap.registry</varname>, shared by all scripts. Each host
additionally has its own registry called
<varname>host.registry</varname>, where <varname>host</varname> is the
<link linkend="nse-api-arguments">host table</link> passed to a script.
Information in the registries is not stored between Nmap
executions.</para>
<para>The global registry persists throughout an entire scan session.
Scripts can use it, for example, to store values that will later be
displayed by a postrule script. The per-host registries, on the other
hand, only exist while a host is being scanned. They can be used to send
information from one script to another one that runs against the same
host. When possible, use the per-host registry; this not only saves you
from having to make key names unique across hosts, but also allows the
memory used by the registry to be reclaimed when it is no longer
needed.</para>
<para>
Here are examples of using both registries:
<simplelist>
<member>The portrule of the <filename>ssh-hostkey</filename> script collects SSH key fingerprints
and stores them in the global <varname>nmap.registry</varname> so they
can be printed later by the postrule.</member>
<member>The <filename>ssl-cert</filename> script collects SSL certificates and
stores them in the per-host registry so that the
<filename>ssl-google-cert-catalog</filename> script can use them without
having to make another connection to the server.</member>
</simplelist>
</para>
<para>Because every script can write to the global registry table, it is
important to make the keys you use unique, to avoid overwriting the keys
of other scripts (or the same script running in parallel).</para>
<para>Scripts that use the results of another script must declare it using
the <literal>dependencies</literal> variable to make sure that the earlier
script runs first.</para>
</sect2>
<indexterm class="endofrange" startref="nse-nmap-indexterm"/>
</sect1>
<sect1 id="nse-tutorial">
<title>Script Writing Tutorial</title>
<indexterm class="startofrange" id="nse-tutorial-indexterm"><primary>Nmap Scripting Engine (NSE)</primary><secondary>tutorial</secondary></indexterm>
<para>
Suppose that you are convinced of the power of NSE. How do you
go about writing your own script? Let's say
that you want to extract information from an identification
server<indexterm><primary>auth service</primary></indexterm> to determine the owner of the process listening on a TCP port.
This is not really the purpose of identd (it is meant for querying the owner of outgoing connections, not listening daemons), but many identd servers allow it anyway. Nmap used to have this functionality (called ident scan), but it was removed
while transitioning to a new scan engine architecture. The protocol identd uses is pretty simple, but still too
complicated to handle with Nmap's version detection
language. First, you connect to the identification server and
send a query of the form <literal><replaceable>port-on-server</replaceable>,
<replaceable>port-on-client</replaceable></literal> and
terminated with a newline character. The server should then
respond with a string containing the server port, client port,
response type, and address information. The address information
is omitted if there is an error. More details are available
in <ulink role="hidepdf"
url="http://www.rfc-editor.org/rfc/rfc1413.txt">RFC
1413</ulink>, but this description is sufficient for our
purposes. The protocol cannot be modeled in Nmap's version
detection language for two reasons. The first is that you need
to know both the local and the remote port of a
connection. Version detection does not provide this data. The
second, more severe obstacle, is that you need two open
connections to the target—one to the identification server
and one to the listening port you wish to query. Both obstacles
are easily overcome with NSE.</para>
<para>
The anatomy of a script is described in <xref linkend="nse-script-format"/>.
In this section we will show how the described structure is utilized.
</para>
<sect2 id="nse-tutorial-head">
<title>The Head</title>
<para>
The head of the script is essentially its meta information. This
includes the
fields: <literal>description</literal>, <literal>categories</literal>, <literal>dependencies</literal>, <literal>author</literal>, and <literal>license</literal> as well as
initial NSEDoc information such as usage, args, and output
tags (see <xref linkend="nsedoc"/>).
</para>
<para>
The description field should contain a paragraph or more describing what the script does. If anything about the script results might confuse or mislead users, and you can't eliminate the issue by improving the script or results text, it should be documented in the <literal>description</literal>. If there are multiple paragraphs, the first is used as a short summary where necessary. Make sure that first paragraph can serve as a stand alone abstract. This description is short because it is such a simple script:
</para>
<para>
<indexterm><primary><literal>auth-owners</literal> script</primary></indexterm>
<indexterm><primary sortas="description script variable">“<varname>description</varname>” script variable</primary></indexterm>
<programlisting>
description = [[
Attempts to find the owner of an open TCP port by querying an auth
(identd - port 113) daemon which must also be open on the target system.
]]
</programlisting>
</para>
<para>Next comes NSEDoc information. This script is missing the
common <literal>@usage</literal> and <literal>@args</literal> tags
since it is so simple, but it does have an
NSEDoc <literal>@output</literal> tag:</para>
<programlisting>
---
--@output
-- 21/tcp open ftp ProFTPD 1.3.1
-- |_ auth-owners: nobody
-- 22/tcp open ssh OpenSSH 4.3p2 Debian 9etch2 (protocol 2.0)
-- |_ auth-owners: root
-- 25/tcp open smtp Postfix smtpd
-- |_ auth-owners: postfix
-- 80/tcp open http Apache httpd 2.0.61 ((Unix) PHP/4.4.7 ...)
-- |_ auth-owners: dhapache
-- 113/tcp open auth?
-- |_ auth-owners: nobody
-- 587/tcp open submission Postfix smtpd
-- |_ auth-owners: postfix
-- 5666/tcp open unknown
-- |_ auth-owners: root
</programlisting>
<para>
Next come the <literal>author</literal>, <literal>license</literal>, and <literal>categories</literal> tags.
This script belongs to the
<literal>safe</literal><indexterm><primary><literal>safe</literal>
script category</primary></indexterm> because we are not using
the service for anything it was not intended for. Because this
script is one that should run by default it is also in the
<literal>default</literal><indexterm><primary><literal>default</literal>
script category</primary></indexterm>
category. Here are the variables in context:</para>
<indexterm><primary sortas="categories script variable">“<varname>categories</varname>” script variable</primary></indexterm>
<programlisting>
author = "Diman Todorov"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = {"default", "safe"}
</programlisting>
</sect2>
<sect2 id="nse-tutorial-rule">
<title>The Rule</title>
<para>
The rule section is a Lua method which decides whether to skip
or execute the script's action. This decision is usually based on
the type of the rule and the host and port information passed to
it. A <literal>prerule</literal> or a
<literal>postrule</literal> will always evaluate to true. In the
case of the identification script, it is slightly more complicated
than that. To decide whether to run the identification script
against a given port we need to know if there is an auth
server running on the target machine. In other words, the
script should be run only if the currently scanned TCP port is open and
TCP port 113 is also open. For now we will rely on the fact that
identification servers listen on TCP port 113. Unfortunately NSE
only gives us information about the currently scanned port.</para>
<para>To find out if port 113 is open, we use the
<function>nmap.get_port_state</function> function. If the auth
port was not scanned, the <literal>get_port_state</literal>
function returns <literal>nil</literal>. So we check that
the table is not <literal>nil</literal>. We also
check that both ports are in the <literal>open</literal> state.
If this is the case, the action is executed, otherwise we skip
the action.
</para>
<para>
<indexterm><primary sortas="portrule script variable">“<varname>portrule</varname>” script variable</primary></indexterm>
<programlisting>
portrule = function(host, port)
local auth_port = { number=113, protocol="tcp" }
local identd = nmap.get_port_state(host, auth_port)
return identd ~= nil
and identd.state == "open"
and port.protocol == "tcp"
and port.state == "open"
end
</programlisting>
</para>
</sect2>
<sect2 id="nse-tutorial-action">
<title>The Action</title>
<para>
At last we implement the actual functionality! The script
first connects to the port on which we expect to find the
identification server, then it will connect to the port we
want information about. Doing so involves first creating two socket options by calling <function>nmap.new_socket</function>. Next we define an error-handling <function>catch</function> function which closes those sockets if failure is detected. At this point we can safely use object methods such as <function>open</function>,
<function>close</function>,
<function>send</function> and
<function>receive</function> to operate on the network socket. In this case we call <function>connect</function> to make the connections. NSE's exception handling mechanism<indexterm><primary>exceptions in NSE</primary></indexterm>
is used to avoid excessive error-handling code. We simply wrap the networking calls in a <function>try</function> call which will in turn call our <function>catch</function> function if anything goes wrong.</para>
<para>If the two connections succeed, we construct a query string
and parse the response. If we received a satisfactory
response, we return the retrieved information.
</para>
<para>
<indexterm><primary sortas="action script variable">“<varname>action</varname>” script variable</primary></indexterm>
<programlisting>
action = function(host, port)
local owner = ""
local client_ident = nmap.new_socket()
local client_service = nmap.new_socket()
local catch = function()
client_ident:close()
client_service:close()
end
local try = nmap.new_try(catch)
try(client_ident:connect(host.ip, 113))
try(client_service:connect(host.ip, port.number))
local localip, localport, remoteip, remoteport =
try(client_service:get_info())
local request = port.number .. ", " .. localport .. "\r\n"
try(client_ident:send(request))
owner = try(client_ident:receive_lines(1))
if string.match(owner, "ERROR") then
owner = nil
else
owner = string.match(owner,
"%d+%s*,%s*%d+%s*:%s*USERID%s*:%s*.+%s*:%s*(.+)\r?\n")
end
try(client_ident:close())
try(client_service:close())
return owner
end
</programlisting>
</para>
<para>Note that because we know that the remote port is stored
in <literal>port.number</literal>, we could have ignored the last two
return values of <literal>client_service:get_info()</literal> like
this:</para>
<programlisting>
local localip, localport = try(client_service:get_info())
</programlisting>
<para>In this example we exit quietly if the service responds with an error. This is done by assigning <literal>nil</literal> to the <varname>owner</varname> variable which will be returned. NSE scripts generally only return messages when they succeed, so they don't flood the user with pointless alerts.</para>
</sect2>
<indexterm class="endofrange" startref="nse-tutorial-indexterm"/>
</sect1>
<sect1 id="nsedoc">
<title>Writing Script Documentation (NSEDoc)</title>
<indexterm class="startofrange" id="nsedoc-indexterm"><primary>Nmap Scripting Engine (NSE)</primary><secondary>documentation in</secondary></indexterm>
<indexterm class="startofrange" id="nse-nsedoc-indexterm"><primary>NSEDoc</primary></indexterm>
<para>
Scripts are used by more than just their authors, so they require good
documentation. NSE modules need documentation so developers can
use them in their scripts. NSE's documentation system, described in
this section, aims to meet both these needs. While reading this
section, you may want to browse NSE's online documentation, which is
generated using this system. It is at
<ulink url="https://nmap.org/nsedoc/"/>.
</para>
<para>
NSE uses a customized version of the
<ulink url="http://luadoc.luaforge.net/">LuaDoc</ulink><indexterm><primary>LuaDoc</primary></indexterm>
documentation system called NSEDoc.
The documentation for scripts
and modules is contained in their source code, as
comments with a special form.
<xref linkend="nsedoc-comment" xrefstyle="select: label nopage"/>
is an NSEDoc comment taken from the
<function>stdnse.print_debug()</function> function.
</para>
<!-- From stdnse.lua. -->
<!-- Be careful to change <code> to <code> when you copy code.
<code> is a DocBook tag so it will disappear within a programlisting! -->
<example id="nsedoc-comment">
<title>An NSEDoc comment for a function</title>
<programlisting>
---
-- Prints a formatted debug message if the current verbosity level is greater
-- than or equal to a given level.
--
-- This is a convenience wrapper around
-- <code>nmap.log_write</code>. The first optional numeric
-- argument, <code>level</code>, is used as the debugging level necessary
-- to print the message (it defaults to 1 if omitted). All remaining arguments
-- are processed with Lua's <code>string.format</code> function.
-- @param level Optional debugging level.
-- @param fmt Format string.
-- @param ... Arguments to format.
</programlisting>
</example>
<para>
Documentation comments start with three dashes:
<literal>---</literal>. The body of the comment is the description
of the following code. The first paragraph of the description should
be a brief summary, with the following paragraphs providing more
detail. Special tags starting with <literal>@</literal> mark off
other parts of the documentation. In the above example you see
<literal>@param</literal>, which is used to describe each parameter
of a function. A complete list of the documentation tags is found
in <xref linkend="nsedoc-tags"/>.
</para>
<para>
Text enclosed in the HTML-like <literal><code></literal> and
<literal></code></literal> tags will be rendered in a
monospace font. This should be used for variable and function names,
as well as multi-line code examples. When a sequence of lines start
with the characters <quote><literal>* </literal></quote>, they will
be rendered as a bulleted list. Each list item must be entirely on
one physical line.
</para>
<para>
It is good practice to document every public function and table in a
script or module. Additionally every script and module should have
its own file-level documentation. A documentation comment at the
beginning of a file (one that is not followed by a function or table
definition) applies to the entire file. File-level documentation can
and should be several paragraphs long, with all the high-level
information useful to a developer using a module or a user running a
script.
<xref linkend="nsedoc-module" xrefstyle="select: label nopage"/>
shows documentation for the <literal>comm</literal> module (with a
few paragraphs removed to save space).
</para>
<example id="nsedoc-module">
<title>An NSEDoc comment for a module</title>
<programlisting>
---
-- Common communication functions for network discovery tasks like
-- banner grabbing and data exchange.
--
-- These functions may be passed a table of options, but it's not required. The
-- keys for the options table are <code>"bytes"</code>, <code>"lines"</code>,
-- <code>"proto"</code>, and <code>"timeout"</code>. <code>"bytes"</code> sets
-- a minimum number of bytes to read. <code>"lines"</code> does the same for
-- lines. <code>"proto"</code> sets the protocol to communicate with,
-- defaulting to <code>"tcp"</code> if not provided. <code>"timeout"</code>
-- sets the socket timeout (see the socket function <code>set_timeout</code>
-- for details).
--
-- @author Kris Katterjohn 04/2008
-- @copyright Same as Nmap--See https://nmap.org/book/man-legal.html
</programlisting>
</example>
<para>
There are some special considerations for documenting scripts rather than
functions and modules. In particular, scripts have special variables for some information which
would otherwise belongs in @-tag comments (script variables are described in
<xref linkend="nse-script-format"/>). In particular, a script's
description belongs in the <varname>description</varname> variable
rather than in a documentation comment, and the information that
would go in <literal>@author</literal> and
<literal>@copyright</literal> belong in the variables
<varname>author</varname> and <varname>license</varname> instead.
NSEDoc knows about these variables and will use them in preference
to fields in the comments. Scripts should also have
<varname>@output</varname> and <varname>@xmloutput</varname> tags showing sample output, as well as <varname>@args</varname> and <varname>@usage</varname> where appropriate.
<xref linkend="nsedoc-script" xrefstyle="select: label nopage"/>
shows proper form for script-level documentation, using a
combination of documentation comments and NSE variables.
</para>
<!-- From asn-query.nse. -->
<example id="nsedoc-script">
<title>An NSEDoc comment for a script</title>
<programlisting>
description = [[
Maps IP addresses to autonomous system (AS) numbers.
The script works by sending DNS TXT queries to a DNS server which in
turn queries a third-party service provided by Team Cymru
(team-cymru.org) using an in-addr.arpa style zone set up especially for
use by Nmap. The responses to these queries contain both Origin and Peer
ASNs and their descriptions, displayed along with the BGP Prefix and
Country Code. The script caches results to reduce the number of queries
and should perform a single query for all scanned targets in a BGP
Prefix present in Team Cymru's database.
Be aware that any targets against which this script is run will be sent
to and potentially recorded by one or more DNS servers and Team Cymru.
In addition your IP address will be sent along with the ASN to a DNS
server (your default DNS server, or whichever one you specified with the
<code>dns</code> script argument).
]]
---
-- @usage
-- nmap --script asn-query [--script-args dns=<DNS server>] <target>
-- @args dns The address of a recursive nameserver to use (optional).
-- @output
-- Host script results:
-- | asn-query:
-- | BGP: 64.13.128.0/21 | Country: US
-- | Origin AS: 10565 SVCOLO-AS - Silicon Valley Colocation, Inc.
-- | Peer AS: 3561 6461
-- | BGP: 64.13.128.0/18 | Country: US
-- | Origin AS: 10565 SVCOLO-AS - Silicon Valley Colocation, Inc.
-- |_ Peer AS: 174 2914 6461
author = "jah, Michael"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = {"discovery", "external", "safe"}
</programlisting>
</example>
<indexterm><primary>NSEDoc</primary><secondary>for C modules</secondary></indexterm>
<para>
Compiled NSE modules are also documented with NSEDoc, even though
they have no Lua source code. Each compiled module has a file
<filename><replaceable>modulename</replaceable>.luadoc</filename><indexterm><primary sortas="luadoc filename extension"><filename>.luadoc</filename> filename extension</primary></indexterm>
that is kept in the <filename>nselib</filename> directory alongside
the Lua modules. This file lists and documents the functions and
tables in the compiled module as though they were written in Lua.
Only the name of each function is required, not its definition (not
even <literal>end</literal>). You must use the
<literal>@name</literal> and <literal>@class</literal> tags when
documenting a table to assist the documentation parser in
identifying it. There are several examples of this method of
documentation in the Nmap source distribution (including <literal>nmap.luadoc</literal>, <literal>lfs.luadoc</literal>, and <literal>pcre.luadoc</literal>).
</para>
<sect2 id="nsedoc-tags">
<title>NSE Documentation Tags</title>
<para>
The following tags are understood by NSEDoc:
</para>
<variablelist>
<varlistentry>
<term><option>@param</option></term>
<listitem>
<para>
Describes a function parameter. The first word following
<literal>@param</literal> is the name of the parameter
being described. The tag should appear once for each
parameter of a function.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@see</option></term>
<listitem>
<para>
Adds a cross-reference to another function or table.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@return</option></term>
<listitem>
<para>
Describes a return value of a function.
<literal>@return</literal> may be used multiple times for
multiple return values.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@usage</option></term>
<listitem>
<para>
Provides a usage example of a function, script, or module. In
the case of a function, the example is Lua code; for a
script it is an Nmap command line; and for a module it is usually
a code sample.
<literal>@usage</literal> may be given more than once. If it is
omitted in a script, NSEDoc generates a default standardized
usage example.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@name</option></term>
<listitem>
<para>
Defines a name for the function or table being documented.
This tag is normally not necessary because NSEDoc infers
names through code analysis.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@class</option></term>
<listitem>
<para>
Defines the <quote>class</quote> of the object being
documented: <literal>function</literal>,
<literal>table</literal>, or <literal>module</literal>.
Like <literal>@name</literal>, this is normally inferred
automatically.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@field</option></term>
<listitem>
<para>
In the documentation of a table, <varname>@field</varname> describes the value of a
named field.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@args</option></term>
<listitem>
<para>
Describes a script argument, as used with the
<option>--script-args</option> option (see
<xref linkend="nse-args"/>). The first word after
<literal>@args</literal> is the name of the argument, and
everything following that is the description. This tag is
special to script-level comments.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@output</option></term>
<listitem>
<para>
This tag, which is exclusive to
script-level comments, shows sample output from a script.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@xmloutput</option></term>
<listitem>
<para>
Shows what the script's
<xref linkend="nse-structured-output">structured output</xref>
looks like when written to XML. The XML sample should not include
the enclosing <literal><script></literal> and
<literal></script></literal> tags and should be indented to
show hierarchy.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@author</option></term>
<listitem>
<para>
This tag, which may be given multiple times, lists the authors of an NSE module. For scripts, use the
<varname>author</varname> variable instead.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>@copyright</option></term>
<listitem>
<para>
This tag describes the copyright status of a module. For scripts,
use the <varname>license</varname>
variable instead.
</para>
</listitem>
</varlistentry>
</variablelist>
<!-- These tags are undocumented here: @description, @summary, and
@release. @documentation and @summary are automatically extracted
from the contents of a comment. @release has not been used with
NSEDoc. -->
</sect2>
<indexterm class="endofrange" startref="nsedoc-indexterm"/>
<indexterm class="endofrange" startref="nse-nsedoc-indexterm"/>
</sect1>
<sect1 id="nse-parallelism">
<title>Script Parallelism in NSE</title>
<para>
In <xref linkend="nse-api-networkio"/>, it was mentioned that NSE
automatically parallelizes network operations. Usually this process is
transparent to a script author, but there are some advanced techniques
that require knowledge of how it works. The techniques covered in this
section are controlling how multiple scripts interact in a library, using
multiple threads in parallel, and disabling parallelism for special
cases.
</para>
<para>
The standard mechanism for parallel execution is a thread. A thread
encapsulates the execution flow and data of a script.
Lua thread may be yielded at arbitrary locations to continue
work on another script. Typically, these yield locations are blocking
socket operations in the
<literal>nmap</literal><indexterm><primary><literal>nmap</literal> NSE library</primary></indexterm>
library. The yield back to the script is also transparent, a side effect
of the socket operation.
</para>
<para>
Let's go over some common terminology. A <emphasis>script</emphasis> is
analogous to a binary executable; it holds the information necessary to
execute a script. A <emphasis>thread</emphasis> (a Lua coroutine) is
analogous to a process; it runs a script against a host and possibly
port. Sometimes we abuse terminology and refer to a running thread
as a running <quote>script</quote>, but what this really means is an
instantiation of a script, in the same way that a process is the
instantiation of an executable.
</para>
<para>
NSE provides the bare-bone essentials needed to expand parallelism
basic model of one thread per script: new independent threads,
mutexes, and condition variables.
</para>
<sect2 id="nse-parallelism-threads">
<title>Worker Threads</title>
<para>
There are several instances where a script needs finer control with
respect to parallel execution beyond what is offered by default with a
generic script. A common need is to read from multiple sockets
concurrently. For example, an HTTP
spidering script may want to have multiple Lua threads querying web
server resources in parallel. To answer this need, NSE offers the
function <literal>stdnse.new_thread</literal> to create worker threads.
These worker threads have all the power of independent scripts with the
only restriction that they may not report script output.
</para>
<para>
Each worker thread launched by a script is given a main function and
a variable number of arguments to be passed to the main function by
NSE:
</para>
<para>
<literal>worker_thread, status_function = stdnse.new_thread(main, ...)</literal>
</para>
<para>
<literal>stdnse.new_thread</literal> returns two values: the Lua thread
(coroutine) that uniquely identifies your worker thread, and a status
query function that queries the status of your new worker.
The status query function returns two values:
</para>
<para>
<literal>status, error_object = status_function()</literal>
</para>
<para>
The first return value is simply the return
value of <literal>coroutine.status</literal> run on the worker thread
coroutine. (More precisely, the <literal>base</literal> coroutine. Read
more about <literal>base</literal> coroutine in <xref
linkend="nse-parallelism-base"/>.) The second return value contains
an error object that caused the termination of the worker thread, or
<literal>nil</literal> if no error was thrown. This object is typically
a string, like most Lua errors. However, any Lua type can
be an error object, even <literal>nil</literal>. Therefore
inspect the error object, the second return value, only if the status
of the worker is <literal>"dead"</literal>.
</para>
<para>
NSE discards all return values from the main function when the worker
thread finishes execution. You should communicate with your worker
through the use of <literal>main</literal> function parameters,
upvalues, or function environments. See
<xref linkend="nse-worker-example" xrefstyle="select: label nopage"/>
for an example.
</para>
<para>
Finally, when using worker threads you should always use condition
variables or mutexes to coordinate them. Nmap is single-threaded so
there are no memory synchronization issues to worry about; but there
<emphasis>is</emphasis> contention for resources.
These resources include usually network bandwidth and sockets.
Condition variables are also useful if the work for any
single thread is dynamic. For example, a web server spider script with
a pool of workers will initially have a single root HTML document.
Following the retrieval of the root document, the set of resources to
be retrieved (the worker's work) may become very large as each new
document adds new URLs to fetch.
</para>
<example id="nse-worker-example">
<title>Worker threads</title>
<programlisting>
local requests = {"/", "/index.html", --[[ long list of objects ]]}
function thread_main (host, port, responses, ...)
local condvar = nmap.condvar(responses);
local what = {n = select("#", ...), ...};
local allReqs = nil;
for i = 1, what.n do
allReqs = http.pGet(host, port, what[i], nil, nil, allReqs);
end
local p = assert(http.pipeline(host, port, allReqs));
for i, response in ipairs(p) do responses[#responses+1] = response end
condvar "signal";
end
function many_requests (host, port)
local threads = {};
local responses = {};
local condvar = nmap.condvar(responses);
local i = 1;
repeat
local j = math.min(i+10, #requests);
local co = stdnse.new_thread(thread_main, host, port, responses,
unpack(requests, i, j));
threads[co] = true;
i = j+1;
until i > #requests;
repeat
for thread in pairs(threads) do
if coroutine.status(thread) == "dead" then threads[thread] = nil end
end
if ( next(threads) ) then
condvar "wait"
end
until next(threads) == nil;
return responses;
end
</programlisting>
</example>
<para>
For brevity, this example omits typical behavior of a traditional web
spider. The requests table is assumed to contain enough objects
to warrant the use of worker threads. The code in this example
dispatches a new thread with as many as 11 relative URLs.
Worker threads are cheap, so don't be afraid to create a lot of them.
After dispatching all these threads, the code waits on a
condition variable until every thread
has finished, then finally return the responses table.
</para>
<para>
You may have noticed that we did not use the status function returned
by <literal>stdnse.new_thread</literal>. You will typically use this
for debugging or if your program must stop based on the error thrown by
one of your worker threads. Our simple example did not require this but
a more fault-tolerant library may.
</para>
</sect2>
<sect2 id="nse-parallelism-mutex">
<title>Mutexes</title>
<indexterm><primary>threads in NSE</primary></indexterm>
<indexterm><primary>mutexes in NSE</primary></indexterm>
<para>
Recall from the beginning of this section that each script execution
thread (e.g. <literal>ftp-anon</literal> running against an FTP server
on a target host) yields to other scripts whenever it makes a call
on network objects (sending or receiving data). Some scripts require
finer concurrency control over thread execution. An example is the
<literal>whois</literal><indexterm><literal>whois</literal> script</indexterm>
script which queries
whois<indexterm><primary>whois</primary></indexterm> servers for each
target IP address. Because many concurrent queries can get your
IP banned for abuse, and because a single query may
return the same information another instance of the script is about to
request, it is useful to have other threads pause while one thread
performs a query.
</para>
<para>
To solve this problem, NSE includes a <literal>mutex</literal> function
which provides a <ulink
url="http://en.wikipedia.org/wiki/Mutual_exclusion">mutex</ulink>
(mutual exclusion object) usable by scripts. The mutex allows for only
one thread to be working on an object at a time. Competing threads
waiting to
work on this object are put in the waiting queue until they can get a
<quote>lock</quote> on the mutex. A solution for the <literal>whois</literal>
problem above is to have each thread block on a mutex using a common
string, ensuring that only one thread at a time is querying a server.
When finished querying the remote servers, the thread can store
results in the NSE registry and unlock the mutex. Other scripts waiting
to query the remote server can then obtain a lock, check for the cache
for a usable result from a previous query, make their own queries, and
unlock the mutex. This is a good example of serializing access to a
remote resource.
</para>
<para>
The first step in using a mutex is to create one with a call to
<literal>nmap.mutex</literal>.
</para>
<programlisting>
mutexfn = nmap.mutex(object)
</programlisting>
<para>
The <literal>mutexfn</literal> returned is a function which works as a
mutex for the <literal>object</literal> passed in. This object can be
any <ulink role="hidepdf"
url="https://lua.org/manual/5.4/manual.html#2.1">Lua data
type</ulink> except <literal>nil</literal>,
Boolean, and number. The
returned function allows you to lock, try to lock, and release the
mutex. Its sole argument must be one of the
following:
</para>
<variablelist>
<varlistentry>
<term><literal>"lock"</literal></term>
<listitem>
<para>
Makes a blocking lock on the mutex. If the mutex is busy (another
thread has a lock on it), then the thread will yield and
wait. The function returns with the mutex locked.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>"trylock"</literal></term>
<listitem>
<para>
Makes a non-blocking lock on the mutex. If the mutex is busy then
it immediately returns with a return value of
<literal>false</literal>. Otherwise, locks the mutex and
returns <literal>true</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>"done"</literal></term>
<listitem>
<para>
Releases the mutex and allows another thread to lock it. If the
thread does not have a lock on the mutex, an error will be
raised.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>"running"</literal></term>
<listitem>
<para>
Returns the thread locked on the mutex or <literal>nil</literal>
if the mutex is not locked. This should only be used for
debugging as it interferes with garbage collection of finished
threads.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
NSE maintains a weak reference to the mutex so other calls to
<literal>nmap.mutex</literal> with the same object will return the same
mutex function. However, if you discard your reference to the mutex
then it may be collected and subsequent calls to
<literal>nmap.mutex</literal> with the object will return a different
function. Therefore save your mutex to a (local) variable
that persists as long as you need it.
</para>
<para>
A simple example of using the API is provided in <xref
linkend="nse-mutex-handling" xrefstyle="select: label nopage"/>. For
real-life examples, read the
<filename>asn-query</filename><indexterm><primary><filename>asn-query</filename> script</primary></indexterm>
and
<filename>whois</filename><indexterm><primary><filename>whois</filename> script</primary></indexterm>
scripts in the Nmap
distribution.
</para>
<example id="nse-mutex-handling">
<title>Mutex manipulation</title>
<programlisting>
local mutex = nmap.mutex("My Script's Unique ID");
function action(host, port)
mutex "lock";
-- Do critical section work - only one thread at a time executes this.
mutex "done";
return script_output;
end
</programlisting>
</example>
</sect2>
<sect2 id="nse-parallelism-condvar">
<title>Condition Variables</title>
<para>
Condition variables arose out of a need to coordinate with worker
threads created by the <literal>stdnse.new_thread</literal>
function. A condition variable allows many threads to wait on
one object, and one or all of them to be awakened when some condition
is met. Said differently, multiple threads may unconditionally
<literal>block</literal> on the condition variable by
<emphasis>waiting</emphasis>. Other threads may use the condition
variable to wake up the waiting threads.
</para>
<para>
For example, consider the earlier <xref
linkend="nse-worker-example"/>. Until all
the workers finish, the controller thread must sleep. Note that we cannot
<literal>poll</literal> for results like in a traditional operating
system thread because NSE does not preempt Lua threads. Instead,
we use a condition variable that the controller thread
<emphasis>waits</emphasis> on until awakened by a worker. The controller
will continually wait until all workers have terminated.
</para>
<para>
The first step in using a condition variable is to create one
with a call to <literal>nmap.condvar</literal>.
</para>
<para><literal>condvarfn = nmap.condvar(object)</literal></para>
<para>
The semantics for condition variables are similar to those of mutexes. The
<literal>condvarfn</literal> returned is a function which works as a
condition variable for the <literal>object</literal> passed in. This
object can be any <ulink role="hidepdf"
url="https://lua.org/manual/5.4/manual.html#2.1">Lua data
type</ulink> except <literal>nil</literal>,
Boolean, and number. The
returned function allows you to wait, signal, and broadcast on the
condition variable. Its sole argument must be one of the
following:
</para>
<variablelist>
<varlistentry>
<term><literal>"wait"</literal></term>
<listitem>
<para>
Wait on the condition variable. This adds the current thread to the
waiting queue for the condition variable. It will resume
execution when another thread signals or broadcasts on the
condition variable.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>"signal"</literal></term>
<listitem>
<para>
Signal the condition variable. One of the threads in the condition
variable's waiting queue will be resumed.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>"broadcast"</literal></term>
<listitem>
<para>
Resume all the threads in the condition variable's waiting queue.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Like with mutexes, NSE maintains a weak reference to the condition
variable so other calls to <literal>nmap.condvar</literal> with the
same object will return the same function. However, if you discard your reference to the condition variable then
it may be collected and subsequent calls to
<literal>nmap.condvar</literal> with the object will return a different
function. Therefore save your condition
variable to a (local) variable that persists as long as you need it.
</para>
<para>
When using condition variables, it is important to check the predicate
before and after waiting. A predicate is a test on whether to continue
doing work within a worker or controller thread. For worker
threads, this will at the very least include a test to see if the
controller is still alive. You do not want to continue doing work
when there's no thread to use your results. A typical test before waiting
may be: Check whether the controller is still running; if not, then quit.
Check if is work to be done; if not, then wait.
</para>
<para>
A thread waiting on a condition variable may be resumed without any
other thread having called <literal>"signal"</literal> or
<literal>"broadcast"</literal> on the condition variable (a spurious
wakeup).
The usual, but not only, reason that this may happen
is the termination of one of the threads using the condition variable. This
is an important guarantee NSE makes that allows you to avoid deadlock
where a worker or controller waits for a thread to wake them up that ended
without signaling the condition variable.
</para>
</sect2>
<sect2 id="nse-parallelism-cm">
<title>Collaborative Multithreading</title>
<para>
One of Lua's least-known features is collaborative multithreading
through <emphasis>coroutines</emphasis>. A coroutine provides an
independent execution stack that can be yielded and resumed.
The standard <literal>coroutine</literal> table provides access to the
creation and manipulation of coroutines. Lua's online first
edition of <ulink url="https://lua.org/pil/"><citetitle>Programming in
Lua</citetitle></ulink> contains an excellent introduction to
coroutines. What follows is an overview of the
use of coroutines here for completeness, but this is no replacement for
the definitive reference.
</para>
<para>
We have mentioned coroutines throughout this section as
<emphasis>threads</emphasis>. This is the <emphasis>type</emphasis>
(<literal>"thread"</literal>) of a coroutine in Lua. They are not the
preemptive threads that programmers may be expecting. Lua threads
provide the basis for parallel scripting but only one thread is ever
running at a time.
</para>
<para>
A Lua function executes on top of a Lua
thread. The thread maintains a stack of active
functions, local variables, and the current instruction pointer. We can switch
between coroutines by explicitly yielding the
running thread. The coroutine which resumed the
yielded thread resumes operation.
<xref linkend="nse-cm-coroutines" xrefstyle="select: label nopage"/>
shows a brief use of coroutines to print numbers.
</para>
<example id="nse-cm-coroutines">
<title>Basic Coroutine Use</title>
<programlisting>
local function main ()
coroutine.yield(1)
coroutine.yield(2)
coroutine.yield(3)
end
local co = coroutine.create(main)
for i = 1, 3 do
print(coroutine.resume(co))
end
--> true 1
--> true 2
--> true 3
</programlisting>
</example>
<para>
Coroutines are the facility
that enables NSE to run scripts in parallel. All scripts are
run as coroutines that yield whenever they make a blocking socket
function call. This enables NSE to run other scripts and later resume
the blocked script when its I/O operation has completed.
</para>
<para>
Sometimes coroutines are the best
tool for a job within a single script. One common use in socket programming is filtering
data. You may write a function that generates all the links from an
HTML document. An iterator using <literal>string.gmatch</literal>
can catches only a single pattern. Because some complex matches may take
many different Lua patterns, it is more appropriate to use a
coroutine.
<xref linkend="nse-cm-links" xrefstyle="select: label nopage"/>
shows how to do this.
</para>
<example id="nse-cm-links">
<title>Link Generator</title>
<programlisting>
function links (html_document)
local function generate ()
for m in string.gmatch(html_document, "url%((.-)%)") do
coroutine.yield(m) -- css url
end
for m in string.gmatch(html_document, "href%s*=%s*\"(.-)\"") do
coroutine.yield(m) -- anchor link
end
for m in string.gmatch(html_document, "src%s*=%s*\"(.-)\"") do
coroutine.yield(m) -- img source
end
end
return coroutine.wrap(generate)
end
function action (host, port)
-- ... get HTML document and store in html_document local
for link in links(html_document) do
links[#links+1] = link; -- store it
end
-- ...
end
</programlisting>
</example>
<sect3 id="nse-parallelism-base">
<title>The base thread</title>
<para>
Because scripts may use coroutines for their own multithreading,
it is important to be able to identify the <emphasis>owner</emphasis>
of a resource or to establish whether the script is still alive.
NSE provides the function <literal>stdnse.base</literal> for this
purpose.
</para>
<para>
Particularly when writing a library that attributes
ownership of a cache or socket to a script, you can use the
base thread to establish whether the script is still running.
<literal>coroutine.status</literal> on the base thread will give
the current state of the script. In cases where the script is
<literal>"dead"</literal>, you will want to release the resource.
Be careful with keeping references to these threads; NSE may
discard a script even though it has not finished executing. The
thread will still report a status of <literal>"suspended"</literal>.
You should keep a weak reference to the thread in these cases
so that it may be collected.
</para>
</sect3>
</sect2>
</sect1>
<sect1 id="nse-vscan">
<title>Version Detection Using NSE</title>
<indexterm class="startofrange" id="nse-sample-indexterm"><primary>Nmap Scripting Engine (NSE)</primary><secondary>sample scripts</secondary></indexterm>
<indexterm><primary>version detection</primary><secondary>using NSE</secondary></indexterm>
<para>
The version detection system built into Nmap was designed to
efficiently recognize the vast majority of protocols with a simple
probe and pattern matching syntax. Some protocols require more
complex communication than version detection can handle. A
generalized scripting language as provided by NSE is perfect for
these tough cases.
</para>
<para>
NSE's <literal>version</literal><indexterm><primary><varname>version</varname> script category</primary></indexterm>
category contains scripts that enhance standard version
detection. Scripts in this category are run whenever you request
version detection with <option>-sV</option>; you don't need to use
<option>-sC</option> to run these. This cuts
the other way too: if you use <option>-sC</option>, you won't get
<literal>version</literal> scripts unless you also use
<option>-sV</option>.
</para>
<para>
One protocol which we were unable to detect with normal version
detection is Skype<indexterm><primary>Skype</primary></indexterm>
version 2. The protocol was likely designed to
frustrate detection out of a fear that telecom-affiliated Internet
service providers might consider Skype competition and interfere
with the traffic. Yet we did find one way to detect it. If Skype
receives an HTTP GET request, it pretends to be a web server and
returns a 404 error. But for other requests, it sends back
a chunk of random-looking data. Proper identification requires
sending two probes and comparing the two responses—an ideal
task for NSE. The simple NSE script which accomplishes this is
shown in
<xref linkend="nse-skypev2-script" xrefstyle="select: label nopage"/>.
</para>
<example id="nse-skypev2-script">
<title>A typical version detection script (Skype version 2 detection)</title>
<indexterm><primary><filename>skypev2-version</filename> script</primary></indexterm>
<programlisting>
description = [[
Detects the Skype version 2 service.
]]<indexterm><primary sortas="description script variable">“<varname>description</varname>” script variable</primary></indexterm>
---
-- @output
-- PORT STATE SERVICE VERSION
-- 80/tcp open skype2 Skype
author = "Brandon Enright"<indexterm><primary>Enright, Brandon</primary></indexterm><indexterm><primary sortas="author script variable">“<varname>author</varname>” script variable</primary></indexterm>
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"<indexterm><primary sortas="license script variable">“<varname>license</varname>” script variable</primary></indexterm>
categories = {"version"}
require "comm"
require "shortport"
portrule = function(host, port)
return (port.number == 80 or port.number == 443 or
port.service == nil or port.service == "" or
port.service == "unknown")
and port.protocol == "tcp" and port.state == "open"
and port.service ~= "http" and port.service ~= "ssl/http"
and not(shortport.port_is_excluded(port.number,port.protocol))
end
action = function(host, port)
local status, result = comm.exchange(host, port,
"GET / HTTP/1.0\r\n\r\n", {bytes=26, proto=port.protocol})
if (not status) then
return
end
if (result ~= "HTTP/1.0 404 Not Found\r\n\r\n") then
return
end
-- So far so good, now see if we get random data for another request
status, result = comm.exchange(host, port,
"random data\r\n\r\n", {bytes=15, proto=port.protocol})
if (not status) then
return
end
if string.match(result, "[^%s!-~].*[^%s!-~].*[^%s!-~]") then
-- Detected
port.version.name = "skype2"
port.version.product = "Skype"
nmap.set_port_version(host, port)
return
end
return
end
</programlisting>
</example>
<para>
If the script detects Skype, it augments its <varname>port</varname>
table with now-known <varname>name</varname> and
<varname>product</varname> fields. It then sends this new
information to Nmap by calling
<function>nmap.set_port_version</function>. Several other version
fields are available to be set if they are known, but in this case
we only have the name and product. For the full list of version
fields, refer to the <ulink role="hidepdf" url="https://nmap.org/nsedoc/modules/nmap.html"><function>nmap.set_port_version</function> documentation</ulink>.
</para>
<para>
Notice that this script does nothing unless it detects the protocol.
A script shouldn't
produce output (other than debug output) just to say it didn't learn
anything.
</para>
</sect1>
<sect1 id="nse-example-scripts">
<title>Example Script: <filename>finger</filename></title>
<indexterm><primary><literal>finger</literal> script</primary></indexterm>
<para>The <filename>finger</filename> script is a perfect
example of a short and simple NSE script.
</para>
<para>First the information fields are assigned.
A detailed description of what the script
actually does goes in the <literal>description</literal> field.</para>
<programlisting>
description = [[
Attempts to get a list of usernames via the finger service.
]]<indexterm><primary sortas="description script variable">“<varname>description</varname>” script variable</primary></indexterm>
author = "Eddie Bell"<indexterm><primary>Bell, Eddie</primary></indexterm><indexterm><primary sortas="author script variable">“<varname>author</varname>” script variable</primary></indexterm>
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"<indexterm><primary sortas="license script variable">“<varname>license</varname>” script variable</primary></indexterm>
</programlisting>
<para>The <literal>categories</literal> field is a table
containing all the categories the script belongs to. These are used for
script selection with the <option>--script</option> option:</para>
<programlisting>
categories = {"default", "discovery", "safe"}<indexterm><primary sortas="categories script variable">“<varname>categories</varname>” script variable</primary></indexterm>
</programlisting>
<para>
Every good script comes with a sample of its output in an NSEDoc comment.
</para>
<programlisting>
---
-- @output
-- PORT STATE SERVICE
-- 79/tcp open finger
-- | finger:
-- | Welcome to Linux version 2.6.31.12-0.2-default at linux-pb94.site !
-- | 01:14am up 18:54, 4 users, load average: 0.14, 0.08, 0.01
-- |
-- | Login Name Tty Idle Login Time Where
-- | Gutek Ange Gutek *:0 - Wed 06:19 console
-- | Gutek Ange Gutek pts/1 18:54 Wed 06:20
-- | Gutek Ange Gutek *pts/0 - Thu 00:41
-- |_Gutek Ange Gutek *pts/4 3 Thu 01:06
</programlisting>
<para>You can use the facilities provided by the nselib (<xref
linkend="nse-library"/>) with <literal>require</literal>. Here
we want to use common communication functions and shorter port rules:</para>
<programlisting>
require "comm"
require "shortport"
</programlisting>
<para>We want to run the script against the finger service. So we
test whether it is using the well-known finger port (<literal>79/tcp</literal>), or
whether the service is named <quote>finger</quote> based on version
detection results or in the port number's listing
in <filename>nmap-services</filename>:</para>
<programlisting>
portrule = shortport.port_or_service(79, "finger")<indexterm><primary sortas="portrule script variable">“<varname>portrule</varname>” script variable</primary></indexterm>
</programlisting>
<para>First, the script uses <function>nmap.new_try</function> to
create an exception handler that will quit the script in case of an
error. Next, it passes control to <function>comm.exchange</function>,
which handles the network transaction. Here we have asked to wait in the communication exchange until we receive at least 100 lines, wait at least 5 seconds, or until the remote side closes the connection. Any errors are handled by the
<function>try</function> exception handler. The script returns a string
if the call to <literal>comm.exchange()</literal> was successful.</para>
<programlisting>
action = function(host, port)
local try = nmap.new_try()
return try(comm.exchange(host, port, "\r\n",
{lines=100, proto=port.protocol, timeout=5000}))
end
</programlisting>
<indexterm class="endofrange" startref="nse-sample-indexterm"/>
</sect1>
<sect1 id="nse-implementation">
<title>Implementation Details</title>
<indexterm><primary>Nmap Scripting Engine (NSE)</primary><secondary>implementation</secondary></indexterm>
<para>
Now it is time to explore the NSE implementation details in
depth. Understanding how NSE works is useful for designing
efficient scripts and libraries. The canonical reference to
the NSE implementation is the source code, but this section
provides an overview of key details. It should be valuable to
folks trying to understand and extend the NSE source code, as
well as to script authors who want to better understand how
their scripts are executed.
</para>
<sect2 id="nse-implementation-init">
<title>Initialization Phase</title>
<para>
NSE is initialized before any scanning when Nmap first starts, by the
<literal>open_nse</literal> function. <literal>open_nse</literal>
creates a fresh Lua state that will persist across
host groups,<indexterm><primary>host groups</primary><secondary>persistence of NSE through</secondary></indexterm>
until the program exits.
It then loads the standard Lua libraries and compiled NSE libraries.
The standard Lua libraries are
documented in the <ulink
url="https://lua.org/manual/5.4/manual.html">Lua Reference
Manual</ulink>. The standard Lua libraries available to NSE are
<literal>debug</literal>,
<literal>io</literal>,
<literal>math</literal>,
<literal>os</literal>,
<literal>package</literal>,
<literal>string</literal>, and
<literal>table</literal>.
Compiled NSE libraries are those that are defined in a C++ file instead
of a Lua file. They include
<literal>nmap</literal>,
<literal>pcre</literal>,
<literal>db</literal>,
<literal>lpeg</literal>,
<literal>debug</literal>,
<literal>zlib</literal>,
<literal>libssh2</literal>, and
<literal>openssl</literal> (if available).
</para>
<para>
After loading the basic libraries, <literal>open_nse</literal> loads
the file
<literal>nse_main.lua</literal>. The NSE core is in this
file—Lua code manages scripts and sets up the appropriate
environment. In this situation Lua really shines as a glue language.
C++ is used to provide the network framework and low-level libraries.
Lua is used to structure data, determine which scripts to load,
and schedule and execute scripts.
</para>
<para>
<literal>nse_main.lua</literal> sets up the Lua
environment to be ready for script scanning later on. It
loads all the scripts the user has chosen and returns a function
that does the actual script scanning to
<literal>open_nse</literal>.
</para>
<para>
The <literal>nselib</literal> directory is added to the Lua path to
give scripts access to the standard NSE library. NSE loads replacements
for the standard coroutine functions so that yields initiated by NSE are
caught and propagated back to the NSE scheduler.
</para>
<para>
<literal>nse_main.lua</literal> next defines classes and functions
to be used during setup. The script arguments
(<literal>--script-args</literal>) are loaded into
<literal>nmap.registry.args</literal>.
A script database is created if one doesn't already exist or if this
was requested with <option>--script-updatedb</option>.
</para>
<para>
Finally, the scripts listed on the command line are loaded.
The <literal>get_chosen_scripts</literal> function works to find
chosen scripts by comparing categories, filenames, and directory names.
The scripts are loaded into memory for later use.
<literal>get_chosen_scripts</literal> works by transforming the
argument to <literal>--script</literal> into a block of Lua code and
then executing it. (This is how the <literal>and</literal>,
<literal>or</literal>, and <literal>not</literal> operators are
supported.) Any specifications that don't directly match a category or
a filename from
<filename>script.db</filename><indexterm><primary><filename>script.db</filename></primary></indexterm>
are checked against file and directory names. If the specification is a
regular file, it's loaded. If a directory, all the
<literal>*.nse</literal> files within it are loaded. Otherwise, the
engine raises an error.
</para>
<para>
<literal>get_chosen_scripts</literal> finishes by arranging the
selected scripts according to their dependencies (see
<xref linkend="nse-format-dependencies"/>).
Scripts that have no dependencies are in runlevel 1. Scripts that
directly depend on these are in runlevel 2, and so on.
When a script scan is run, each runlevel is run separately and in
order.
</para>
<para>
<literal>nse_main.lua</literal> defines two classes:
<literal>Script</literal> and <literal>Thread</literal>. These classes
are the objects that represent NSE scripts and their script threads.
When a script is loaded, <literal>Script.new</literal>
creates a new Script object. The script file is loaded into Lua
and saved for later use. These classes and their methods are intended
to encapsulate the data needed for each script and its threads.
<literal>Script.new</literal> also contains sanity checks to ensure that the
script has required fields such as the <literal>action</literal>
function.
</para>
</sect2>
<sect2 id="nse-implementation-scan">
<title>Script Scanning</title>
<para>
When NSE runs a script scan, <literal>script_scan</literal> is called
in <literal>nse_main.cc</literal>. Since there are three script scan
phases, <literal>script_scan</literal> accepts two arguments, a
script scan type which can be one of these values:
<literal>SCRIPT_PRE_SCAN</literal> (Script Pre-scanning phase) or
<literal>SCRIPT_SCAN</literal> (Script scanning phase) or
<literal>SCRIPT_POST_SCAN</literal> (Script Post-scanning phase),
and a second argument which is a list of targets to scan if
the script scan phase is <literal>SCRIPT_SCAN</literal>.
These targets will be passed to the <literal>nse_main.lua</literal>
main function for scanning.
</para>
<para>
The main function for a script scan generates a number of script
threads based on whether the <literal>rule</literal> function
returns true. The generated threads are stored in a list of runlevel
lists. Each runlevel list of threads is passed separately to the
<literal>run</literal> function. The <literal>run</literal> function
is the main worker function for NSE where all the magic happens.
</para>
<para>
The <literal>run</literal> function's purpose is run all the threads
in a runlevel until they all finish. Before doing this however,
<literal>run</literal> redefines some Lua registry values that
help C code function. One such function,
<literal>_R[WAITING_TO_RUNNING]</literal>, allows the network library
binding written in C to move a thread from the waiting queue to the
running queue. Scripts are run until the
running and waiting queues are both empty. Threads that yield are
moved to the waiting queue; threads that are ready to continue
are moved back to the running queue. The cycle continues until
the thread quits or ends in error. Along with the waiting and running
queues, there is a pending queue. It serves as a temporary location
for threads moving from the waiting queue to the running queue before
a new iteration of the running queue begins.
</para>
</sect2>
</sect1>
<indexterm class="endofrange" startref="nse-indexterm"/>
</chapter>
|