我有一个黑盒程序“ secret.exe”,该程序接受数字作为参数。它只接受一个我不知道的号码。我想进行暴力攻击以获取该号码。
下面的C ++程序可以做到这一点,但是速度很慢(每秒13个数字)。该程序几乎不占用CPU和内存。
瓶颈是什么? popen功能会变慢吗?

#include <iostream>
#include <stdio.h>
using namespace std;
int main() {
       char psBuffer[128];
       FILE *chkdsk;
       bool nomatch = true;
       int i = 0;
       char cmd[100];
       while(nomatch){
           sprintf (cmd, "secret.exe %d", i++);
           if( (chkdsk = popen( cmd, "rt" )) == NULL )
              cout << "error";
           while( !feof( chkdsk ) ) {
              if( fgets( psBuffer, 128, chkdsk ) != NULL && strcmp(psBuffer, "wrong")){
                  cout << "password: " << --i << endl;
                  cout << "secret info : " << psBuffer << endl;
                  nomatch = false;
              }
           }
           pclose( chkdsk );
       }
      return 0;
}

最佳答案

您必须进行基准测试/配置文件才能找出答案,但是secret.exe完全有可能浪费时间。

09-07 04:07