gpt4 book ai didi

java - 定时攻击C——由java改造而成

转载 作者:行者123 更新时间:2023-11-30 21:11:50 29 4
gpt4 key购买 nike

我的第一篇文章。 :)

在过去的几周里,我用 java 编写了该方法的定时攻击实现:

static char[] a = new char[] { 's', 'e', 'c', 'r', 'e', 't', '1' };

static boolean passwordCompare(char[] a, char[] b){
int i;
if (a.length != b.length)
return false;
for (i = 0; i < a.length && a[i] == b[i]; i++);
return i == a.length;}

一切都按预期进行。但后来我想用 C 语言编写相同的攻击,因为这是我目前正在尝试学习的编程语言,但一切都不顺利。

我会很感激每一个小小的帮助。 :)

password_compare.o是lib,其中方法password_compare(const char *password) secret 密码是谎言。

干杯!

#include <stdio.h>
#include <time.h>
#include <stdbool.h>
#include <stdlib.h>
#include <math.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include "password_compare.o"

/* foreach macro for using a string as a collection of char */
#define foreach( ptrvar, strvar ) char* ptrvar; for( ptrvar=strvar ;
(*ptrvar) != '\0' ; *ptrvar++)


int main(void)
{
// variables
int counter;
char[] test;
long begin, end, begin2, end2;
long duration;
long duration2;
long store = 0;
char [] storechar;
char[] tester;
char [] storechar2;

// Try to find out the length from the password.
// Longest time = password.length.
for(int i=0; i<=10; ++i)
{
test = new char[i];
for(int j=0; j<i; ++j)
{
test[j]=a;
}

const char [] fixtest = test;
time_t start = time(0);
for (int k=0; k<1000000000;k++)
{

password_compare(fixtest);
}

time_t end = time(0);
duration = end-start;
if(duration > store)
{
store = duration;
storechar = test;
counter = i;
}


printf("Duration (" + i + ") = " + duration);
}

printf("The right length is :" + storechar.length);

int len=sizeof(storechar)/sizeof(int);
storechar2 = new char[len];
tester = new char[counter];

// Iterate through each position from the password array.
for (int h=0; h<len; h++)
{
long store2 = 0;

// Generate an char[] as String
// with all possible characters.
char* s1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabc
defghijklmnopqrstuvwxyz1234567890";

// Check for each character from s1 ...

foreach(p1, s1)
{
tester[h] = *p1;
const char [] fixtester = tester;

// Check for each p1 in s1 at Position h the time.
//The largest value will be saved at Pos h.

if (h < (len-1))
{

time_t start2 = time();
for ( int k = 0; k<1000000000;k++)
{
password_compare(fixtester);
}
for ( int p = 0; p<1000000000;p++)
{
password_compare(fixtester);
}

time_t end2 = time();
duration2 = end2-begin2;
if ( duration2 > store2)
{
store2 = duration2;
storechar2[h] = *p1;
}
printf("Duration (" + *p1 + ") = " + duration2);
}

// else if h == password.length, then try
// every character at the last position.

else if (password_compare(fixtester) == true)
{
storechar2[h] = *p1;
printf("Character at Pos " + (h + 1) + ": ")
printf("storechar2[%d]: %d\n",h,storechar2[h]);
printf("The Password is: ");

for(int b = 0; i < my_array.length; i++)
{printf("%d ",storechar2[b]);}


exit(0);

}
}

printf("Character at Pos " + (h + 1) + ": ");
printf("storechar2[%d]: %d\n",h,storechar2[h]);
tester[h] = storechar2[h];
}

// The Password was guessed wrong!
printf("Failed");
exit(0);
return(0);

}

最佳答案

存在多个语法错误,例如:

#define foreach( ptrvar, strvar ) char* ptrvar; for( ptrvar=strvar ; 
(*ptrvar) != '\0' ; *ptrvar++)

只有第一行是宏的一部分。要使用多行,请在末尾添加反斜杠。

char [] storechar;
storechar2 = new char[len];

此数组语法来自 Java。检查如何在 C 中定义数组。

#include "password_compare.o"

这会用垃圾填充文件。您想要包含头文件,而不是目标文件。

如果您无法解决问题,请从一个新文件开始,一次添加一项内容。在添加其他内容之前检查它是否已编译。如果出现错误,请记下确切的消息以及导致错误的行。

关于java - 定时攻击C——由java改造而成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17438408/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com