BusKill Tutorial: Self Destructing Laptop Storage
#buskill #encryption #crypto #storage #forensics #antiforensics #HDD #infosec #cybersecurity #datarecovery #luks #encrypted #harddrive #privacy #security #educational
Watch On #Peertube:
BusKill Tutorial: Self Destructing Laptop Storage
#buskill #encryption #crypto #storage #forensics #antiforensics #HDD #infosec #cybersecurity #datarecovery #luks #encrypted #harddrive #privacy #security #educational
Watch On #Peertube:
🔥🪄 Obliviate Shredder 💀 is a secure anti-forensics tool that obliterates files and folders beyond recovery. Inspired by the "Obliviate" spell from Harry Potter, this tool ensures that no digital trace remains after shredding.
Check it out: https://github.com/tsumarios/Obliviate-Shredder
#cybersecurity #privacy #antiforensics #shred #digitaltraces #python #script
LummaC2: Obfuscation Through Indirect Control Flow:
#reverseengineering #informationsecurity #cybersecurity #assembly #antiforensics #blueteam
LummaC2: Obfuscation Through Indirect Control Flow:
#reverseengineering #informationsecurity #cybersecurity #assembly #antiforensics #blueteam
Check out my latest blog post!
(Gen)AI4CySeC
#cybersecurity #security #infosec #DFIR #malwareanalysis #resource #research #antiforensics #AI #GenAI #LLM #ML #ChatGPT
听到有消息说,目前出现了更多的敏感人士的电子设备被警方没收的情况,看起来像是某种办案的新模式。
📌 提醒异议社区新成员寻求您身边最信任来源的安全协助,不论您现在是否已经被警方瞄准。因为很多安全措施都需要提前准备。
上述导图作为一些基本框架,是所有人都必需了解的。
如果您的安全技术爱好者,或者有志愿成为培训师,也许可以深入了解取证技术。
这里有一些曾经发布过的取证和反取证工具及资源:
1、https://t.me/iyouport/12796
2、https://t.me/iyouport/12797
3、https://t.me/iyouport/12798
4、https://t.me/iyouport/12799
5、https://t.me/iyouport/12800
6、https://t.me/iyouport/12801
我们为前线社区准备的安全培训教材正在制作中。
#AntiForensics #tools #tips #数字安全 #前线 #DigitalSecurity #Frontline
📌 取证和反取证工具及资源 —— 下面将总结一些反取证工具和知识资源。 "反取证" 意味着:首先让他们找不到你,即便他们找到了,他们也无法证明你是他们要找的人。 以下的内容汇总主要用于 PC 反取证,资源类条目中包含针对移动设备的工具和技术原理。 📌 如果您错过了: -《如果您的手机被盗或被警察抢走…》 https://iyouport.substack.com/p/a5e - 《如何通过一些设置预防iPhone被盗或被警方查抄所造成的损失?》 https://iyouport.substack.com/p/iphone-d80 - 《如何让您的 iPhone 能够防小偷》 https://iyouport.substack.com/p/-iphone--a57 -《如何保持 Android 设备免受警察的侵害》 https://iyouport.substack.com/p/-android- 以及: -《数字取证正在泛滥:政府可以从你的手机中提取哪些数据?》https://iyouport.substack.com/p/26c?s=w -《警察查手机的东西长什么样? - - 从技术角度看移动设备取证》https://iyouport.substack.com/p/--4f1?s=w -《让政府机构从您使用的应用程序中提取大量数据的秘密技术:云取证》 https://iyouport.substack.com/p/lr--155 -《警察有可能如何恢复您已删除的互联网浏览历史记录》https://iyouport.substack.com/p/694?s=w #AntiForensics #tools #tips
Небольшой сборник инструментов по анти-форензике
https://github.com/DrayNeur/f-forensic
https://github.com/franckferman/SATAN2_Cleaner
https://github.com/BusKill/awesome-buskill-triggers
https://github.com/gandalfb/openmediavault-full-disk-encryption
https://github.com/slowmist/Blockchain-dark-forest-selfguard-handbook
И наностатья
Use the following commands to perform the previously described actions.
⚙️Recovery of deleted files(--recover) from volume D(--drive d indicating the output path of saving the timestamped directory), --outfile path(if we want to save it there, then after the --outfile argument we don't need to write anything):
ANTfs.exe --drive d --recover --outfile X:\ZeroForensics
⚙️To erase the record from the system, use the following command (the --wipe argument to clear the record from the file):
ANTfs.exe --drive c --wipe file_to delete
Summing up, I would like to say that although the project is no longer supported, but it works quite well despite the use of the driver (in principle, not bad), for those who are really interested in using the project, I advise you to look at the generated artifacts in the process of work (not a big homework assignment).
It works clearly:
💾a volume descriptor is being created
💾next comes the reading from the MFT (https://learn.microsoft.com/en-us/windows/win32/medfound/basic-mft-processing-model)(examples of MFT parsers: MFTECmd (https://github.com/EricZimmerman/MFTECmd), MFT_Browser (https://github.com/kacos2000/MFT_Browser) and Analyze MFT (https://github.com/dkovar/analyzeMFT))
💾iterating over each file entry in the MFT(s), checking the allocation bit
💾If the record is not distributed, it is processed.
The user can restore data from the system, but in order to erase it, you will need the driver described earlier.
⚠️The contents of the basket are ignored!
To erase a record from the system, you first need to install the driver:
sc create antfs binPath= <path/to/driver>/antfs driver.sys type= kernel
sc start antfs