CreateProcess

0001-01-01

CreateProcess is a WinAPI function that creates a new process.

STARTUPINFO si = {0};
PROCESS_INFORMATION pi = {0};
si.cb = sizeof(si);

// Create a ...
Read More

CreateProcessA

0001-01-01

CreateProcessA is a WinAPI function that creates a new process.

CreateProcessA is the ASCII version of CreateProcess.

BOOL CreateProcessA(
  LPCSTR ...
Read More

credential leak

0001-01-01

A credential leak is the unauthorized exposure of login information such as usernames, passwords, or keys. Credential leaks are often due to breaches, ...

Read More

credential stuffing

0001-01-01

credential stuffing is a cyberattack where the attackers take stolen credentials from one source, and try them across a wide variety of systems.

For ...

Read More

credit card

0001-01-01

A credit card is a physical card that allows its owner to borrow money from a financial instution to buy things instead of using cash, debit cards, or ...

Read More

Criminology

0001-01-01

Criminology is the scientific study of crime, criminal behavior, and the criminal justice system.

Read More

cron job

0001-01-01

a cron job is a task that is configured to be ran by cron.

Read More

crond

0001-01-01

crond is the daemon process for cron.

Read More

cronie

0001-01-01

cronie is a cron implementation.

https://github.com/cronie-crond/cronie

Read More

crontab

0001-01-01

Read More