This is a Vulnhub inspired by the series Mr. Robot and it's considered to be a OSCP-like machine. Most of the steps for "pwning" this machine are realistic so it's a fun one to try. Give it a try yourself! Machine Link: https://www.vulnhub.com/entry/mr-robot-1,151/
Dynamically Import Functions
This concept is easy to understand and has its uses, such as, calling Windows Native functions, which are functions of Windows that aren't officially documented or to hide Windows API usage.
L3nSec Demo #1 – The first milestone!
Quick note: I have turned this project down because I was setting my goals too high for my knowledge of driver development and C#-C++ interoperability. I'm not planning in continuing or re-making this project. Hey there! This post is different from the 2 before since this is just a demo of an Antivirus I'm coding.… Continue reading L3nSec Demo #1 – The first milestone!
Getting Pointers by Reading the Assembly
Learn how to grab the offsets of multi-level pointers with a quicker and less tedious method. All you need is a debugger and perhaps a decompiler to ease the process a bit.
Calling C++ Functions from Java
Calling C/C++ code in Java is something that can make wonders in an application and it's especially used in Android apps. The truth is, it isn't really that hard to do so.