首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >尝试使用OpenSSL 1.0.1f使用AFL-FUZZ重新创建热出血

尝试使用OpenSSL 1.0.1f使用AFL-FUZZ重新创建热出血
EN

Stack Overflow用户
提问于 2018-12-21 13:57:14
回答 1查看 342关注 0票数 0

我在这里尝试在1.0.1g之前的openssl版本上重现Heartbleed bug,所以我选择了openssl 1.0.1f。我安装了AFL-FUZZ,然后安装了openssl。在thisthis链接的帮助下,我想我已经安装了openssl,但最后它给了我一个奇怪的错误

代码语言:javascript
复制
../libcrypto.a(x86_64cpuid.o): In function `OPENSSL_cleanse':
(.text+0x1a0): multiple definition of `OPENSSL_cleanse'
../libcrypto.a(mem_clr.o):mem_clr.c:(.text+0x0): first defined here
../libcrypto.a(cmll-x86_64.o): In function `Camellia_cbc_encrypt':
(.text+0x1f00): multiple definition of `Camellia_cbc_encrypt'
../libcrypto.a(cmll_cbc.o):cmll_cbc.c:(.text+0x0): first defined here
../libcrypto.a(aes-x86_64.o): In function `AES_encrypt':
(.text+0x460): multiple definition of `AES_encrypt'
../libcrypto.a(aes_core.o):aes_core.c:(.text+0x62e): first defined here
../libcrypto.a(aes-x86_64.o): In function `AES_decrypt':
(.text+0x9f0): multiple definition of `AES_decrypt'
../libcrypto.a(aes_core.o):aes_core.c:(.text+0xad1): first defined here
../libcrypto.a(aes-x86_64.o): In function `private_AES_set_encrypt_key':
(.text+0xab0): multiple definition of `private_AES_set_encrypt_key'
../libcrypto.a(aes_core.o):aes_core.c:(.text+0x0): first defined here
../libcrypto.a(aes-x86_64.o): In function `private_AES_set_decrypt_key':
(.text+0xd80): multiple definition of `private_AES_set_decrypt_key'
../libcrypto.a(aes_core.o):aes_core.c:(.text+0x403): first defined here
../libcrypto.a(aes-x86_64.o): In function `AES_cbc_encrypt':
(.text+0xfa0): multiple definition of `AES_cbc_encrypt'
../libcrypto.a(aes_cbc.o):aes_cbc.c:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
make[2]: *** [link_app.] Error 1

我运行了openssl version命令,它成功地运行并给出了输出OpenSSL 1.0.1f 6 Jan 2014,所以我认为它已经正确安装了(不确定如何处理错误)。

现在,下一步是简单地找到一个使用openssl的代码,我找到了here handshake.c文件。但是,它没有成功编译。afl-gcc handshake.c libssl.a libcrypto.a -o handshake -I ssl/include -ldl,则错误为

代码语言:javascript
复制
afl-cc 2.52b by <lcamtuf@google.com>
afl-as 2.52b by <lcamtuf@google.com>
[+] Instrumented 15 locations (64-bit, non-hardened mode, ratio 100%).
libcrypto.a(x86_64cpuid.o): In function `OPENSSL_cleanse':
(.text+0x1a0): multiple definition of `OPENSSL_cleanse'
libcrypto.a(mem_clr.o):mem_clr.c:(.text+0x0): first defined here
/tmp/ccJeYtnW.o: In function `Init':
path/openssl-1.0.1/handshake.c:22: undefined reference to `SSL_CTX_set_security_level'
libcrypto.a(c_zlib.o): In function `zlib_stateful_expand_block':
c_zlib.c:(.text+0x59): undefined reference to `inflate'
libcrypto.a(c_zlib.o): In function `zlib_stateful_compress_block':
c_zlib.c:(.text+0xea): undefined reference to `deflate'
libcrypto.a(c_zlib.o): In function `bio_zlib_free':
c_zlib.c:(.text+0x13d): undefined reference to `inflateEnd'
c_zlib.c:(.text+0x15b): undefined reference to `deflateEnd'
libcrypto.a(c_zlib.o): In function `zlib_stateful_finish':
c_zlib.c:(.text+0x1d0): undefined reference to `inflateEnd'
c_zlib.c:(.text+0x1d9): undefined reference to `deflateEnd'
libcrypto.a(c_zlib.o): In function `zlib_stateful_init':
c_zlib.c:(.text+0x268): undefined reference to `inflateInit_'
c_zlib.c:(.text+0x2d9): undefined reference to `deflateInit_'
libcrypto.a(c_zlib.o): In function `bio_zlib_ctrl':
c_zlib.c:(.text+0x54c): undefined reference to `deflate'
c_zlib.c:(.text+0x5f0): undefined reference to `zError'
libcrypto.a(c_zlib.o): In function `bio_zlib_write':
c_zlib.c:(.text+0x809): undefined reference to `deflate'
c_zlib.c:(.text+0x89a): undefined reference to `zError'
c_zlib.c:(.text+0x933): undefined reference to `deflateInit_'
libcrypto.a(c_zlib.o): In function `bio_zlib_read':
c_zlib.c:(.text+0xa13): undefined reference to `inflate'
c_zlib.c:(.text+0xa8d): undefined reference to `zError'
c_zlib.c:(.text+0xafc): undefined reference to `inflateInit_'
collect2: error: ld returned 1 exit status

请建议如何修复这些错误。

提前谢谢。

编辑:

因此,到目前为止,我所做的是使用root权限安装openssl。我工作,但给我太多的错误,手动安装,即大多数错误看起来像item= expecting something other than a integer。我手动将这些行更改为字符,=item 1 -> =item '1'。在更改了应用程序和根目录下的ssl文件夹后,我终于让它工作了。在make和make install之后,最后的安装看起来像是

代码语言:javascript
复制
installing openssl
installing CA.sh
installing CA.pl
installing tsget
make[1]: Leaving directory `/openssl-1.0.1f/apps'
making install in test...
make[1]: Entering directory `/openssl-1.0.1f/test'
make[1]: Nothing to be done for `install'.
make[1]: Leaving directory `/openssl-1.0.1f/test'
making install in tools...
make[1]: Entering directory `/openssl-1.0.1f/tools'
make[1]: Leaving directory `/openssl-1.0.1f/tools'
installing libcrypto.a
installing libssl.a
cp libcrypto.pc /usr/local/ssl/lib/pkgconfig
chmod 644 /usr/local/ssl/lib/pkgconfig/libcrypto.pc
cp libssl.pc /usr/local/ssl/lib/pkgconfig
chmod 644 /usr/local/ssl/lib/pkgconfig/libssl.pc
cp openssl.pc /usr/local/ssl/lib/pkgconfig
chmod 644 /usr/local/ssl/lib/pkgconfig/openssl.pc
root@ubuntu:/openssl-1.0.1f# openssl
The program 'openssl' is currently not installed. You can install it by   typing:
apt-get install openssl

现在我认为安装没有错误,但是我仍然没有安装openssl,因为它说还没有安装这样的包。

请帮帮忙。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-12-26 14:58:13

正如我在编辑的帖子中添加的那样,当我以根用户身份运行安装时,openssl安装中的错误就消失了。我使用了以下命令序列;

代码语言:javascript
复制
make clean
./config no-shared no-idea no-mdc2 no-rc5 zlib enable-tlsext
make depend
make && make install

正如上面在编辑版本的问题中所讨论的,它给了我.pod文件中的错误,我一个接一个地解决了(我想知道是否有人有更聪明的方法)。

编译后,现在错误仍然是编辑的部分,在添加openssl安装路径到$PATH环境变量后立即解决。我在.basrc和.profile文件中添加了下面这行代码。

代码语言:javascript
复制
export PATH="$PATH:/usr/local/ssl/bin" 

现在,openssl运行得很好。

但是,使用openssl编译handshake.c时会使用此命令

代码语言:javascript
复制
AFL_USE_ASAN=1 afl-gcc handshake.c -lcrypto -lz libssl.a  -o handshake -ldl

最后

代码语言:javascript
复制
afl-fuzz -i testcases -o findings -m none -- ./handshake

希望这能对未来的谷歌人有所帮助。

谢谢。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/53879861

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档