Discord-based C2

0001-01-01

Discord can be used for malware command and control.

Read More

discrete mathematics

0001-01-01

Read More

disk image

0001-01-01

A disk image is a snapshot of a storage device stored within one or more files.

https://en.wikipedia.org/wiki/Disk_image

Read More

distributed computing

0001-01-01

Distributed computing is a system in which several networked computers work together to solve a problem by combining resources.

Read More

distribution

0001-01-01

Read More

dlclose

0001-01-01

The dlclose() function closes handles opened by dlopen()

#include <dlfcn.h>

int dlclose(void *handle);
Read More

DLL injection

0001-01-01

DLL injection is a technique used to run code within the address space of another process by loading a dynamic link library.

DLL injection is often ...

Read More

DllMain

0001-01-01

DllMain is the main function name of a Windows DLL.

Read More

dlopen

0001-01-01

The dlopen() function loads a shared object file and returns a “handle” for the loaded object for use with other functions within the ...

Read More

dlsym

0001-01-01

The dlsym() function takes a handle of a shared object returned by dlopen() and a symbol name, and retuns the address of the symbol in memory. ...

Read More