当前位置:网站首页>View the library ldd that the executable depends on
View the library ldd that the executable depends on
2022-08-11 07:00:00 【Thousand volumes】
1. You can use ldd

ldd is a shell script file whose location can be viewed through the which command

Add parameter -v to ldd to see more detailed version information

2.ldd also fails when
See what this app file is

As can be seen from the above figure, this app is an arm architecture file
3. Another viewing method is to use the objdump command.
objdump -x app | grep NEEDED

The two commands are connected through a pipeline, and the information of the dynamic library is obtained after filtering.If you execute objdump -x app alone, there is still a lot of output information.
边栏推荐
- Lua loadstring 执行字符串中的代码
- lua-table引用传递和值传递
- Login error in mysql: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)ERROR
- Threatless Technology-TVD Daily Vulnerability Intelligence-2022-7-19
- ETCD容器化搭建集群
- MySQL中忘记用户密码怎么办?
- VMware workstation 16 安装与配置
- 中国移动通信集团有限公司:业务委托书
- 逐步揭示makop.mkp勒索病毒中毒防范恢复解密
- 实操指南:多个域名该买哪种SSL证书?
猜你喜欢
随机推荐
C# 基础之字典——Dictionary(二)
AUTOMATION DAY07( Ansible Vault 、 普通用户使用ansible)
软件使用代码签名证书的好处和必要性
lua-table引用传递和值传递
Unity C# 面试题、知识点总结
Redis学习笔记【一】
(三)软件测试理论(了解软件的缺陷知识)
ETCD集群故障应急恢复-从snapshot恢复
web网络安全笔记
vnc远程桌面安装(2021-10-20日亲测可用)
Lua 字符串
逐步揭示makop.mkp勒索病毒中毒防范恢复解密
程序集与反射技术(C#)
【转】Unity 内置渲染管线、SRP、URP、HDRP区别
消息中间件
Threatless Technology-TVD Daily Vulnerability Intelligence-2022-7-19
Vulnhub靶机--DC8
stegano
2022年全国职业技能大赛网络安全竞赛试题B模块自己解析思路(6)
无胁科技-TVD每日漏洞情报-2022-7-21
![[HTB]渗透Backdoor靶机](/img/fd/61fb3fe8498dec4462ee4156adb806.png)








