Skip to main content
Completion requirements

Definitions and Descriptions.


Browse the glossary using this index

Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL

Page:  1  2  3  4  5  6  7  8  9  10  (Next)
  ALL

A

Anonymity

Anonymity is the state of being unknown or unrecognized, particularly in relation to one's identity or location. It is often associated with privacy and the protection of personal information.

There are various ways in which anonymity can be achieved, both online and offline. Some examples include:

  1. Using a pseudonym: A pseudonym is a name that is different from one's legal name. By using a pseudonym, individuals can protect their identity and keep their personal information private. For example, an author may use a pseudonym to publish their work without revealing their real name.

  2. Using a virtual private network (VPN): A VPN is a service that encrypts internet traffic and routes it through a remote server, allowing users to access the internet anonymously. This can be useful for individuals who want to protect their online activity from being monitored or tracked.

  3. Using the Tor network: The Tor network is a system designed to allow anonymous communication. It routes traffic through a series of randomly-selected servers, known as "relays", in order to obscure the identity and location of the user. This can be useful for individuals who want to access content or communicate anonymously.

  4. Wearing a mask or disguise: In some cases, anonymity may be achieved by physically concealing one's identity. For example, protestors may wear masks or disguises in order to protect themselves from retribution or identification.

Overall, anonymity is an important aspect of privacy and can be useful for individuals who wish to protect their personal information or exercise their right to free expression without fear of retribution. However, it is important to note that anonymity can also be used for illegal or malicious purposes, and should be used with caution.


Resource:

Course: CSI Linux Certified OSINT Analyst | CSI Linux Academy
Course: CSI Linux Certified Social Media Investigator | CSI Linux Academy
Course: CSI Linux Certified Dark Web Investigator | CSI Linux Academy
Course: CSI Linux Certified Covert Comms Specialist (CSIL-C3S) | CSI Linux Academy


APT

Advanced persistent threats (APTs) are a type of cyber attack featuring sophisticated malicious actors that target victims for a long period of time, compromising their system and confidential information. Such attackers usually initiate their attack with a phishing email, initial contact, or social engineering, and then use the access that they gain to continuously probe systems and networks for more access. Once a cybercriminal has access to a system, they may remain for months or even years, siphoning data and compromising other networks, applications, and accounts.

Examples of Advanced Persistent Threats:

  1. Stuxnet: Stuxnet is a computer worm that was initially used in 2010 to target Iran's nuclear weapons program. It gathered information, damaged centrifuges, and spread itself. It was thought to be an attack by a state actor against Iran.
  2. Duqu: Duqu is a computer virus developed by a nation state actor in 2011. It's similar to Stuxnet and it was used to surreptitiously gather information with the goal of infiltrating networks and sabotage their operations.
  3. DarkHotel: DarkHotel is a malware campaign that targeted hotel networks in Asia, Europe and North America in 2014. The attackers broke into hotel Wi-Fi networks and used the connections to infiltrate networks of their guests, who were high profile corporate executives. They stole confidential information from their victims and also installed malicious software on victims' computers.
  4. MiniDuke: MiniDuke is a malicious program from 2013 that is believed to have originated from a state-sponsored group. Its goal is to infiltrate into the target organizations and steal confidential information through a series of malicious tactics.
  5. APT28: APT28 is an advanced persistent threat group that is believed to be sponsored by a nation state. It uses tactics such as spear phishing, malicious website infiltration and password harvesting to target government and commercial organizations.
  6. OGNL: OGNL, or Operation GeNIus Network Leverage, is a malware-focused campaign believed to have been conducted by a nation state actor. It is used to break into networks and steal confidential information, such as credit card numbers, financial records, and social security numbers.

B

Black Market

One of the most well-known examples of illegal activity on the dark web is the existence of black markets. Black markets are online platforms where illegal goods and services can be bought and sold, often using cryptocurrency for anonymity.

One of the most famous black markets on the dark web was the Silk Road, which was launched in 2011 and shut down by the FBI in 2013. The Silk Road was a platform for the sale of illegal drugs, as well as other illicit items such as stolen credit card numbers and fake documents. The website was accessed through the Tor network and transactions were made using Bitcoin to maintain anonymity.

The Silk Road gained notoriety due to its size and the variety of illegal items available for purchase. It was estimated to have had over 100,000 users and millions of dollars in annual sales. The operator of the Silk Road, Ross Ulbricht, was eventually arrested and sentenced to life in prison for his role in the website.

While the Silk Road has been shut down, other black markets continue to operate on the dark web. These include the Evolution market, which was shut down in 2015, and the AlphaBay market, which was shut down in 2017. These markets offer a wide range of illegal goods and services, including drugs, weapons, and stolen personal information.

The existence of black markets on the dark web highlights the potential for illegal activity on this hidden part of the internet. While the dark web can be used for legitimate purposes, it is important for law enforcement agencies to monitor and shut down illegal operations such as black markets in order to maintain the rule of law.

Resource:

Course: CSI Linux Certified Dark Web Investigator | CSI Linux Academy


Blue Team

A blue team is a group of professionals responsible for network defense within an organization. They use various security measures to prevent, detect, and respond to intrusions, malicious activities, and other cyberthreats. The blue team monitors network traffic to detect threats, implements protective measures such as firewalls and intrusion prevention systems, and performs vulnerability scans to detect weaknesses. They also maintain a system of active logs and records that can be used for investigation and forensics when an attack is detected. The blue team also educates users on best security practices and trains staff on security processes and technologies. The goal of the blue team is to keep the network and IT infrastructure safe from attack and compromise, constantly monitor the system for threats, and respond quickly and appropriately if an attack is detected.


Booting Linux

The Linux boot process refers to the sequence of events that occur when a Linux system is started up. There are several steps involved in this process, including the loading of the bootloader, the kernel, and the initial ramdisk.

One common bootloader used in Linux systems is GRUB (GRand Unified Bootloader). GRUB is responsible for loading the Linux kernel and initial ramdisk, as well as providing a menu of boot options for the user to choose from.

When a Linux system is powered on, the BIOS (Basic Input/Output System) or UEFI (Unified Extensible Firmware Interface) system performs a series of checks and initializes the hardware. The BIOS or UEFI system then looks for a bootable device, such as a hard drive or USB drive, and transfers control to the bootloader on that device.

Once the bootloader is loaded, it displays a menu of boot options to the user. This menu can include options such as "normal boot,""recovery mode," or "safe mode." The user can select an option using their keyboard or the default option will be selected after a certain amount of time has passed.

Once the user has selected an option, the bootloader loads the Linux kernel and initial ramdisk into memory. The kernel is responsible for starting the operating system and initializing the hardware. The initial ramdisk is a small file system that contains necessary files and drivers needed to boot the system.

After the kernel and initial ramdisk are loaded, the boot process is handed over to the init system, which is responsible for starting other processes and services necessary for the system to function.

In summary, the Linux boot process involves the loading of the BIOS or UEFI system, the bootloader, the kernel, and the initial ramdisk, and the initialization of the init system. GRUB2 is a commonly used bootloader in Linux systems, and can provide a menu of boot options for the user to choose from.



Booting Mac

The Mac boot process is the sequence of events that occurs when a Mac computer is turned on or restarted. The process involves the loading and initialization of the operating system, as well as the loading of any necessary drivers and services.

The first step in the Mac boot process is the power-on self-test (POST). This is a diagnostic procedure that checks the basic functionality of the computer's hardware, such as the processor, memory, and disk drives. If any issues are detected during the POST, the computer may display an error message or be unable to boot.

Next, the Mac's firmware, which is the software that controls the hardware, begins to load. The firmware checks the bootable devices, such as the hard drive or USB drive, to determine which one to boot from. If the firmware cannot find a bootable device, it may display a "no bootable device" error message.

Once the bootable device is found, the firmware loads the bootloader, which is a small program that loads the operating system. On a Mac, the bootloader is called "boot.efi" and is located on the hard drive or USB drive.

The bootloader loads the operating system kernel, which is the central part of the operating system that controls the hardware and communicates with the rest of the operating system. The kernel then loads the rest of the operating system and any necessary drivers or services.

Once the operating system is fully loaded, the Mac is ready for use.

In addition to the normal boot process, Macs also have a feature called target mode, which allows the computer to be used as an external hard drive for another computer. To enter target mode, the user must restart the Mac and hold down the "T" key while the boot process is occurring. This will cause the Mac to boot into target mode, which allows the computer to be accessed as an external hard drive by another computer. Target mode is often used for transferring files between the two systems or for performing a clean install of the operating system.

Overall, the Mac boot process involves the loading and initialization of the operating system and necessary drivers and services, and may include the use of target mode to access the computer as an external hard drive.



Booting Windows

The Windows boot process is the series of steps that occur when a computer is powered on and begins to load the operating system. The boot process involves the interaction between hardware components, such as the motherboard and processor, and software components, such as the BIOS or UEFI and the operating system.

There are two main types of BIOS (Basic Input/Output System) that can be used in the Windows boot process: legacy BIOS and UEFI (Unified Extensible Firmware Interface). Legacy BIOS is the traditional BIOS system that has been used in computers for many years. UEFI is a newer system that replaces the legacy BIOS and provides additional features such as support for larger hard drives and faster boot times.

The Windows boot process with BIOS typically follows the following steps:

  1. Power on: When the computer is powered on, the BIOS begins to load.

  2. POST (Power On Self Test): The BIOS performs a series of checks to ensure that the hardware components are functioning properly.

  3. Boot sequence: The BIOS looks for bootable devices, such as a hard drive or USB drive, and selects the first one in the boot order.

  4. MBR (Master Boot Record): The BIOS loads the MBR, which is a small piece of code at the beginning of the bootable device. The MBR contains a bootloader, which is a program that loads the operating system.

  5. Operating system: The bootloader loads the operating system and hands control over to it.

The Windows boot process with UEFI follows a similar sequence, but with some additional steps. UEFI has a built-in boot manager that allows users to select the boot device and provides additional options, such as booting into the BIOS or booting from a USB drive. The UEFI boot process also includes a secure boot feature, which verifies that the operating system has not been tampered with before loading it.

Overall, the Windows boot process involves the interaction between hardware and software components in order to load the operating system and begin the boot process. The type of BIOS, either legacy BIOS or UEFI, can affect the specific steps in the boot process.



C

Chain of Custody

A chain of custody refers to the documentation and tracking of evidence in a criminal investigation or legal case. It is a record of the handling and movement of evidence from the time it is collected until it is presented in court.

The chain of custody is important because it helps to establish the authenticity and integrity of the evidence. It ensures that the evidence has not been tampered with or contaminated and that it can be accurately linked to the crime or legal matter in question.

Examples of evidence that may require a chain of custody include physical items like fingerprints, DNA samples, drugs, weapons, or documents. It is also necessary for digital evidence like emails, texts, or social media posts.

To maintain a chain of custody, the following steps must be followed:

    • Evidence is collected by a trained and authorized individual, such as a police officer or forensic investigator.
    • The evidence is properly packaged and labeled, including information about who collected it, where and when it was collected, and what it is.
    • The evidence is transferred to a secure location, such as a police station or laboratory, where it is stored in a controlled environment to prevent tampering or contamination.
    • The evidence is examined and analyzed by qualified professionals using established protocols and procedures.
    • The results of the examination are documented and reported in a detailed and accurate manner.
    • The evidence is securely transported to court when it is needed as part of a legal case.

Throughout the process, the chain of custody is carefully documented and tracked, including information about who handled the evidence, where it was stored, and when it was moved. This helps to ensure that the evidence is reliable and can be used in court to support a criminal conviction or legal ruling.

It is important to maintain a thorough and accurate chain of custody in order to establish the authenticity and reliability of the evidence. Any breaks in the chain of custody, such as evidence being left unsecured or handled by unauthorized personnel, can compromise the integrity of the evidence and potentially impact the outcome of a case.

A chain of custody is a document that outlines the handling and control of physical or digital evidence in a forensic investigation. It is used to maintain the integrity of the evidence and to ensure that it is admissible in court.

In the field of digital forensics and incident response (DFIR), a chain of custody is used to track the handling of digital evidence from the time it is collected until it is presented in court. The chain of custody should include information about who collected the evidence when it was collected, how it was collected, and where it has been stored.

For example, if a forensic analyst collects a suspect's computer as evidence, the chain of custody would include the following information:

    • The date and time the computer was collected
    • The name of the forensic analyst who collected the computer
    • The location where the computer was collected
    • A description of the computer and any identifying information, such as the serial number
    • The steps taken to secure and transport the computer, including any precautions taken to prevent contamination of the evidence
    • The name of the person who received the computer at the forensic laboratory

It is important to maintain a thorough and accurate chain of custody in order to ensure the integrity of the evidence and to establish that it has not been tampered with or altered in any way.

In addition to maintaining a chain of custody, forensic analysts should also follow standard operating procedures (SOPs) in order to ensure that the evidence is handled properly and that the results of the forensic analysis are reliable. SOPs outline the steps that should be taken to collect, preserve, and analyze digital evidence in a consistent and repeatable manner.

Overall, a chain of custody and adherence to SOPs are important for ensuring the integrity and admissibility of digital evidence in a forensic investigation.


Resource:

Preserving the Chain of Custody
Course: CSI Linux Certified OSINT Analyst | CSI Linux Academy
Course: CSI Linux Certified Computer Forensic Investigator | CSI Linux Academy


Competitive Intelligence

Competitive intelligence refers to the collection and analysis of information about competitors, markets, and industry trends in order to inform strategic decision-making and gain a competitive advantage. It can be used by businesses, organizations, and individuals to gather information about their competitors and make informed decisions about their own strategies and actions.

Here are some examples of competitive intelligence:

  1. Market research: This involves gathering and analyzing data about the market and industry, such as sales figures, customer demographics, and trends. This can help businesses understand their competition and identify opportunities for growth or expansion.

  2. Competitive analysis: This involves studying the strategies, products, and services of competitors in order to understand their strengths and weaknesses, and identify opportunities for differentiation or improvement.

  3. SWOT analysis: This is a tool used to assess the internal and external factors that can impact an organization, including its strengths, weaknesses, opportunities, and threats. This can help businesses identify their competitive advantage and identify areas for improvement.

  4. Benchmarking: This involves comparing the performance of a company or organization to that of its competitors, in order to identify areas of strength and weakness and identify areas for improvement.

Overall, competitive intelligence helps businesses and organizations gather and analyze data about their competitors in order to inform strategic decision-making and gain a competitive advantage



Covert Channel

A covert channel is a type of communication method which allows for the transfer of data by exploiting resources that are commonly available on a computer system. Covert channels are types of communication that are invisible to the eyes of the system administrators or other authorized users. Covert channels are within a computer or network system, but are not legitimate or sanctioned forms of communication. They may be used to transfer data in a clandestine fashion.

Examples of covert channels include:

    • Embedding data in the headers of packets - The covert data is embedded in the headers of normal packets and sent over a protocol related to the normal activities of the computer system in question.
    • Data piggybacked on applications - Malicious applications are piggybacked with legitimate applications used on the computer system, sending confidential data.
    • Time-based channel - The timing of certain actions or transmissions is used to encode data.
    • Covert storage channel - Data is stored within a computer system on disk or in memory and is hidden from the system's administrators.
    • Data diddling - This involves manipulating data to contain malicious code or messages.
    • Steganography - This is a process of hiding messages within other types of media such as images and audio files.

Covert channels are commonly used for malicious purposes, such as the transmission of sensitive data or the execution of malicious code on a computer system. They can also be used for legitimate purposes, however, such as creating an encrypted communication channel.

Resource:

Shadows and Signals: Unveiling the Hidden World of Covert Channels in Cybersecurity
Course: CSI Linux Certified Dark Web Investigator | CSI Linux Academy
Course: CSI Linux Certified Covert Comms Specialist (CSIL-C3S) | CSI Linux Academy



Page:  1  2  3  4  5  6  7  8  9  10  (Next)
  ALL


loader image