IDA Pro > IDA Pro教程 > 技术问题 > IDA Pro3.1.2.安装(3.1.2.Installation)

IDA Pro3.1.2.安装(3.1.2.Installation)

发布时间:2022-10-15 15: 44: 36

Because the Lumina server delegates user management to the Hex-Rays Vault server, please make sure the Hex-Rays
Vault server is properly installed.


The Lumina server installer will require the host & port of the Hex-Rays Vault server in order to create the lumina.conf file
that will be used by server.


The Lumina server can be installed on Linux servers. We have tested it on Debian and Ubuntu, but other major flavors of
Linux should be fine too.


To install the server, run the Lumina installer as root and follow the instructions (the server will not require root
permissions; only the installer does.)


TIP 

If your Linux system is based on systemd (e.g., Debian/Ubuntu, Red-Hat, CentOS, ...), it is recommended to
let the installer create systemd units so that the server will start automatically at the next reboot.


Activating the server license
NOTE 

If you already requested Lumina server activation with Hex-Rays Vault server, you can skip this part.
In order for the Lumina server license to be activated, it must be bound to a Host ID (an Ethernet MAC address.)


From a command prompt, run /sbin/ifconfig, and lookup the "ether" address for the network interface through which
the server will be accessible.

 

>/sbin/ifconfig
enp4s0: flags=4163 mtu 1500
[...snipped...]
ether bf:e2:91:10:58:d2 txqueuelen 1000 (Ethernet)
[...snipped...]


In this case, our mac address is: bf:e2:91:10:58:d2


Go to https://hex-rays.com/activate , and submit both the ida.key file and your MAC address. You will then receive
another e-mail with instructions to download the following files:
• lumina.crt
• lumina.key
• lumina.lic


Installing the server license
Those need to be copied in the Lumina installation directory. As root:
>cd /opt/lumina
>cp .../path/to/lumina.crt .
>cp .../path/to/lumina.key .
>cp .../path/to/lumina.lic .
>chown lumina:lumina lumina.crt lumina.key lumina.lic
>chmod 640 lumina.crt lumina.key lumina.lic


Creating the initial database schema
At this point, the server should be ready to run.


CAUTION 

If your system is already in production and hosts files, skip this section. Using the --recreate
-schema option as in the example below, will re-create an empty database and lose all data.
For the Lumina server to work, it needs to have a proper database schema to work with (at this point, the MySQL
database (i.e., "lumina_db") must already exist but is still empty.)


That is why, on the first install, you will need to initialize the database the server will use:
>sudo -u lumina ./lumina_server_teams --config-file lumina.conf --recreate-schema
Hex-Rays Lumina Server Teams v8.0 Hex-Rays (c) 2022
2022-09-02 10:28:30 Database has been initialized; exiting.
If you see "Error: Cannot connect to lumina db" please refer to troubleshooting section.


Testing the server
Now that the server is installed and has a database to work with, we can test that it works:
>sudo -u lumina ./lumina_server_teams --config-file lumina.conf \
--certchain-file lumina.crt \
--privkey-file lumina.key
Hex-Rays Lumina Server Teams v8.0 Hex-Rays (c) 2022
2022-09-22 12:14:37 Listening on 0.0.0.0:65432...
Good, the server appears to run! (If you are observing more worrying messages than this one, please refer to the
troubleshooting section.)


At this point, you may want to either let the server run, or stop it (Ctrl+C will do) and restart it using systemd:

>systemctl restart lumina.service


...and make sure it runs:
>ps aux | grep lumina_server_teams
lumina 78812 0.0 0.0 ...


If you don’t see a running lumina_server_teams process, please refer to the systemd diagnostic tools (e.g., journalctl)
for more info.

中文翻译:

由于Lumina服务器将用户管理委托给Hex-Rays Vault服务器,请确保正确安装了Hex-Rays Vault服务器。

安装Lumina服务器需要提供Hex-Rays Vault服务器的主机和端口信息,以创建将被服务器使用的lumina.conf文件。

Lumina服务器可以安装在Linux服务器上。我们已经在Debian和Ubuntu上进行了测试,但其他主要的Linux发行版也应该可以。

要安装服务器,请以root身份运行Lumina安装程序并按照说明进行操作(服务器不需要root权限,只有安装程序需要)。

提示

如果您的Linux系统基于systemd(例如,Debian/Ubuntu,Red-Hat,CentOS等),建议让安装程序创建systemd单元,以便服务器在下次重新启动时自动启动。

激活服务器许可证

注意:如果您已经使用Hex-Rays Vault服务器请求了Lumina服务器激活,则可以跳过此部分。

为了激活Lumina服务器许可证,必须将其绑定到主机ID(以太网MAC地址)。

从命令提示符运行/sbin/ifconfig,并查找通过该接口可访问服务器的网络接口的“ether”地址。

/sbin/ifconfig

enp4s0:flags=4163 mtu 1500

[...snipped...]

ether bf:e2:91:10:58:d2 txqueuelen 1000(Ethernet)

[...snipped...]

在这种情况下,我们的MAC地址为:bf:e2:91:10:58:d2

前往https://hex-rays.com/activate,并提交ida.key文件和您的MAC地址。然后,您将收到一封电子邮件,其中包含下载以下文件的说明:

•lumina.crt

•lumina.key

•lumina.lic

安装服务器许可证

需要将这些文件复制到Lumina安装目录中。作为root:

cd/opt/lumina

cp.../path/to/lumina.crt.

cp.../path/to/lumina.key.

cp.../path/to/lumina.lic.

chown lumina:lumina lumina.crt lumina.key lumina.lic

chmod 640 lumina.crt lumina.key lumina.lic

创建初始数据库模式

此时,服务器应该已准备就绪。

警告:

如果您的系统已经在生产环境中托管文件,请跳过本节。如下所示,使用--recreate-schema选项将重新创建一个空数据库并且会丢失所有数据。

为了使Lumina服务器正常工作,它需要有一个适当的数据库架构(此时,MySQL数据库即“lumina_db”必须已经存在,但仍然是空的)。

因此,在第一次安装时,您需要初始化服务器将要使用的数据库:

sudo-u lumina./lumina_server_teams--config-file lumina.conf--recreate-schema

Hex-Rays Lumina Server Teams v8.0 Hex-Rays(c)2022

2022-09-02 10:28:30数据库已初始化;退出。

如果看到“Error:Cannot connect to lumina db”,请参考故障排除部分。

测试服务器

现在,服务器已安装并具有要使用的数据库,我们可以测试其是否正常工作:

sudo-u lumina./lumina_server_teams--config-file lumina.conf--certchain-file lumina.crt--privkey-file lumina.key Hex-Rays Lumina Server Teams v8.0 Hex-Rays(c)2022 2022-09-22 12:14:37正在监听0.0.0.0:65432...

很好,服务器似乎可以运行!(如果您观察到比这更令人担忧的消息,请参阅故障排除部分。)此时,您可能希望让服务器运行,或者停止它(Ctrl+C),然后使用systemd重新启动:

systemctl restart lumina.service

...并确保它在运行:

ps aux|grep lumina_server_teams lumina 78812 0.0 0.0...

如果您没有看到正在运行的lumina_server_teams进程,请参考systemd诊断工具(例如journalctl)以获取更多信息。

展开阅读全文

标签:

读者也访问过这里:
邀请您进入交流群 点击扫码
400-8765-888 kefu@makeding.com

专业销售为您服务

欢迎添加好友,了解更多IDA优惠信息,领逆向工程学习资料礼包1份!
热门文章
exe反编译工具哪个好?反编译能力强的工具盘点
随着软件技术的发展,exe(可执行文件)已经成为了电脑、手机等多个平台上的主要软件运行格式,而对于exe文件的反编译也成为了逆向工程中不可缺少的一个步骤。本文将介绍一些常用的exe反编译工具,并评价其优缺点,帮助读者选择合适的工具。
2023-04-12
idapro怎么改为中文
IDA Pro是一款功能强大的反汇编和反编译工具,广泛应用于逆向工程和软件开发领域。在使用IDA Pro时,如果我们不习惯英文界面,可以将其改为中文界面。本文将介绍IDA Pro怎么改为中文界面。IDA Pro界面改成中文主要有两种方法,下面是详细介绍。
2023-04-19
c++反编译工具有哪些
反编译C++代码的工具一般是针对可执行文件和库文件的反汇编和逆向分析工具。本文将给大家介绍c++反编译工具有哪些的内容。市面说的c++反编译工具有很多,下面介绍几款使用认识较多的软件。
2023-04-23
ida怎么查找字符串 ida字符串窗口快捷键
在数字化时代,逆向工程作为解密软件和分析程序的关键技术,正日益受到广泛关注。在逆向分析的过程中,IDA(Interactive DisAssembler)是一款备受推崇的工具,它为逆向工程师们提供了强大的功能和灵活的操作。本文将带您深入探讨如何在IDA中查找字符串,优化字符串窗口的使用,并探讨IDA如何将变量转换成字符串,帮助您更加熟练地驾驭这一工具,为逆向分析的世界增添一抹精彩。
2023-09-27
ida如何转伪代码 ida伪代码怎么看
IDA Pro是一款常用的反汇编和反编译工具,可以帮助我们分析二进制文件的实现细节和执行过程,以便更好地理解程序的执行过程和逻辑。在进行逆向工程的过程中,我们经常需要将反汇编结果转换为伪代码,以便更好地进行分析和修改。本文将介绍如何使用IDA Pro转换为伪代码,并简单讲解ida伪代码怎么看。
2023-04-14
最新文章
IDA逆向QT控件的获取方法 IDA逆向编译boot.img
在逆向工程的实际操作中,面对QT界面程序和Android系统中的boot.img文件,分析手段与工具的专业化程度决定了解析效率。IDA Pro作为行业常用的反汇编平台,能通过静态和动态手段快速捕捉程序结构,定位控件创建逻辑或内核加载过程。本篇文章将围绕“IDA逆向QT控件的获取方法,IDA逆向编译boot.img”为核心展开细节讲解,从QT界面逻辑提取、boot.img反汇编流程到扩展技巧,以便真正解决使用IDA Pro进行高效逆向的实际问题。
2025-07-28
IDA怎么变成伪代码 IDA伪代码插件怎么用
在逆向分析过程中,阅读原始汇编指令对大多数分析人员而言既耗时又容易出错。为了更直观理解程序逻辑,IDA Pro提供了将二进制代码转换为伪C代码的功能,辅以伪代码插件的使用,可以极大提升阅读效率和逻辑理解能力。围绕“IDA怎么变成伪代码,IDA伪代码插件怎么用”,本文将详细介绍IDA Pro伪代码生成的步骤、插件配置方法实用技巧,帮助用户从基本功能到高级使用实现高效逆向分析。
2025-07-28
IDA动态调试的使用方法 IDA动态调试后自动更新变量名
在分析复杂程序时,仅靠静态反汇编往往无法看到完整的运行逻辑,尤其是加壳、动态调用、异或加密等场景。此时,借助IDA Pro的动态调试功能,可以实时捕捉程序执行流程,监控变量值和调用栈变化,大大提高分析准确性。更进一步,IDA Pro还支持调试过程中自动更新变量名和函数名,提高代码可读性。本文围绕“IDA动态调试的使用方法IDA动态调试后自动更新变量名”进行详解,帮助你从基础操作入手,深入掌握IDA的高级用法。
2025-07-28
IDA怎么修改汇编指令 IDA修改汇编代码快捷键
在使用IDA Pro进行二进制逆向分析时,经常需要对反汇编得到的代码进行调整和编辑,例如修正误识别的指令、插入特定的跳转逻辑、或清除垃圾代码结构。由于IDA Pro本身具有强大的交互式反汇编能力,因此“IDA怎么修改汇编指令,IDA修改汇编代码快捷键”成为用户搜索频率较高的实操问题。本文将围绕这个话题,从修改步骤到操作技巧全面展开,帮助用户高效掌控IDA Pro的编辑能力。
2025-07-28
IDA Pro反汇编出现一大堆函数如何优化 IDA Pro的反汇编性能
在使用IDA Pro对可执行文件进行静态分析时,经常会遇到“函数爆炸”——IDA Pro自动识别出大量函数,而其中很多其实并不是真正的代码入口。这些伪函数不仅影响阅读效率,还严重拖慢IDA Pro的分析性能。要搞清楚“IDA Pro反汇编出现一大堆函数如何优化IDA Pro的反汇编性能”,就必须深入理解IDA的工作机制,并对常见问题有针对性地进行处理。
2025-07-28
IDA Pro调试过程中查看基址 IDA Pro调试多线程的解决方法
在逆向分析和漏洞挖掘的过程中,IDA Pro作为业界广泛使用的静态与动态分析工具,承担着极为关键的角色。尤其在调试环境中,程序基址的准确获取与线程调度的合理处理,将直接影响整个分析流程的准确性与效率。对于初中级用户而言,“IDA Pro调试过程中查看基址”与“IDA Pro调试多线程的解决方法”常常是易出错、高频卡顿的问题节点。本文将围绕这两个核心环节,进行实操级别的详细解析,并进一步延伸说明IDA Pro如何借助Trace功能还原函数调用路径,以帮助使用者构建完整调试体系,提升静动态结合分析的深度和广度。
2025-07-28

通过微信咨询我们

欢迎添加好友,了解更多IDA优惠信息,领取逆向工程学习资料礼包1份!