PinnedIslem BOUZENIA·Jun 29, 2024RepairAgent: Pioneering Autonomous Program Debugging & Repair with AI [Part 1]In the ever-evolving landscape of software development, one of the most time-consuming and complex tasks is bug fixing. Enter RepairAgent…
PinnedInAnalytics VidhyabyIslem BOUZENIA·Oct 22, 2020Malware detection with deep learning — state of the art —Today, Deep Learning is used in the majority of artificial intelligence applications. Malware detection, being one of those applications…A response icon3A response icon3
PinnedInAnalytics VidhyabyIslem BOUZENIA·Feb 15, 2021CNN based malware detection (python and TensorFlow)A convolutional neural network (CNN) specializes in processing multidimensional data such as images. CNN models are often used for…
PinnedIslem BOUZENIA·Oct 22, 2020Detect malware packers and cryptors with python (yara & pefile)Packed or compressed executable files have a different structure from other exe files. In general, packers add a new header to the…
Islem BOUZENIA·Apr 23, 2022Train Python Code Embedding with FastTextEmbedding models are widely used in deep learning applications as it is necessary to convert data from the raw form into a numerical form…
Islem BOUZENIA·Apr 9, 2021Text summarization with machine and deep learning in pythonMedium is a great website where you can find tons of posts and articles but if you are like me, you probably don’t have time to read all…
Islem BOUZENIA·Apr 9, 2021LSTM based malware detection (Python & Tensorflow)In one of our previous posts, we showed how to create a malware detector using convolution neural networks by transforming an executable…A response icon1A response icon1
InAnalytics VidhyabyIslem BOUZENIA·Apr 2, 2021Deep Learning Based Malware Detection DemoLong time ago, I published some posts about creating a deep learning based malware detector. I gave some examples about features…
Islem BOUZENIA·Oct 24, 2020Crack those CAPTCHAs with opencv and pythonHave you ever felt like a bot after failing a captcha? Because I have!A response icon4A response icon4
Islem BOUZENIA·Oct 23, 2020Create your own disassembler in python (pefile & capstone)Without any introductions, if you want to disassemble an exe file using python, you will need two libraries: pefile and capstone.