This will contain the entire course of Sector 7 Malware Development Essentials
PE is the way to organize executables to help the OS loaders read the executable from disk and load the executable in process memory


PE contains Data and Meta Data

PE Format

Now let’s write a simple code
#include <iostream>
using namespace std;
int main()
{
printf("Hello World!");
return EXIT_SUCCESS;
}
Now let’s load it with PE Beer

Now let’s see the Sections
