Hacking Tools

Adding A Hardware Profile : A Step-by-Step Tutorial For System Configuration

If you need to add new hardware you have to follow the following process:

  1. Create a hardware profile {name}.yaml file and name it as you wish. For example, default.yaml which should be stored in the hardware directory
  2. Then add variables to the profile description using YAML. Each variable has its role during processing. They are described in “Hardware parameters documentation”
name: "default"
description: "Default Linux/ubuntu profile"
setup_verification: ""
needs_setup_verification: false
working_directory: null
bt_version_min: 1.0
bt_version_max: 5.3
  1. Only If your hardware profile needs setup verification and you set needs_setup_verification: true, then you need to add code that would verify the hardware setup.
    1. As the toolkit is written in Python 3 it should be Python 3 code, but if have already a code snippet that verifies your hardware, then you could use it and just add code that would call your verification tool from the toolkit and then distinguish between “available” and “not available” hardware.
    2. The only file that should be modified is setupverification/setupverfication.py
    3. First you need to add a static method that would return a boolean value to the SetupVerifier class, change {YOURHARDWARENAME} to your hardware profile name, and add your code to {YOUR CODE}
@staticmethod
def check_setup_{YOURHARDWARENAME}() -> bool:
 try:
  {YOUR CODE}
  return True
 except Exception as e:
  logging.info("SetupVerfier -> Error during checking setup")
 return False
  1. Then you need to add your newly created static method to the hardware_verifier dictionary variable, as in the example below.
    • You need to change {YOURHARDWARENAME} to the name of the hardware profile you used. Also don’t forget to add a comma where needed.
hardware_verfier = {
"esp32": SetupVerifier.check_setup_esp32,
"nexus5": SetupVerifier.check_setup_nexus5,
"{YOURHARDWARENAME}": SetupVerfiier.check_setup_{YOURHARDWARENAME}
}
Varshini

Tamil has a great interest in the fields of Cyber Security, OSINT, and CTF projects. Currently, he is deeply involved in researching and publishing various security tools with Kali Linux Tutorials, which is quite fascinating.

Recent Posts

Kali Linux 2024.4 Released, What’s New?

Kali Linux 2024.4, the final release of 2024, brings a wide range of updates and…

23 hours ago

Lifetime-Amsi-EtwPatch : Disabling PowerShell’s AMSI And ETW Protections

This Go program applies a lifetime patch to PowerShell to disable ETW (Event Tracing for…

24 hours ago

GPOHunter – Active Directory Group Policy Security Analyzer

GPOHunter is a comprehensive tool designed to analyze and identify security misconfigurations in Active Directory…

3 days ago

2024 MITRE ATT&CK Evaluation Results – Cynet Became a Leader With 100% Detection & Protection

Across small-to-medium enterprises (SMEs) and managed service providers (MSPs), the top priority for cybersecurity leaders…

5 days ago

SecHub : Streamlining Security Across Software Development Lifecycles

The free and open-source security platform SecHub, provides a central API to test software with…

1 week ago

Hawker : The Comprehensive OSINT Toolkit For Cybersecurity Professionals

Don't worry if there are any bugs in the tool, we will try to fix…

1 week ago