- Hands-On Network Forensics
- Nipun Jaswal
- 207字
- 2021-06-24 16:04:22
Database logs
We just saw how we could process basic application server logs. Let's see how we can grab database logs and make the most of them in our forensic investigation. Database servers, such as MySQL and MS SQL, contain log files with information that helps a forensic investigator to understand the chain of events in a much better way. General query logs in MySQL present an investigator with all the queries that were executed during the time of the attack:

We can see that the general query log file allows us to view failed attempts by the attacker to log into the MySQL server. However, it also suggests that there are two successful attempts. Let's further investigate:

We can see that after the failed attempts, the attacker logged in and ran the preceding queries on the database. Query log files are convenient for pinpointing the actual intent of the attacker. In the upcoming chapters, we will look at numerous case study examples on various databases.
On XAMPP, general query logs can be enabled by running the following query:
SET global general_log = 1;
Here's a better way to log all queries in MySQL:
SET global general_log_file='/tmp/mysql.log'; SET global log_output = 'file'; SET global general_log = on;
- Android應(yīng)用安全實(shí)戰(zhàn):Frida協(xié)議分析
- 計(jì)算機(jī)網(wǎng)絡(luò)安全技術(shù)(第6版·慕課版)
- 黑客攻防技巧
- 計(jì)算機(jī)病毒分析與防范大全(第3版)
- .NET安全攻防指南(上冊(cè))
- Kali Linux Network Scanning Cookbook(Second Edition)
- 從0到1:CTFer成長(zhǎng)之路
- 隱私計(jì)算
- Kerberos域網(wǎng)絡(luò)安全從入門(mén)到精通
- 信息安全導(dǎo)論(第2版)
- 情報(bào)驅(qū)動(dòng)應(yīng)急響應(yīng)
- INSTANT Apple Configurator How-to
- Mastering Malware Analysis
- INSTANT Kali Linux
- 網(wǎng)絡(luò)空間安全法律問(wèn)題研究