You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Zouhair AMAZZAL 82e7bb75d5 CON-3132 docs(image-inspector) improve audit and subject 4 weeks ago
..
README.md CON-3132 docs(image-inspector) improve audit and subject 4 weeks ago

README.md

General

Check the Repo Content

Files that must be inside the repository:

  • Detailed documentation in the README.md file.
  • Source code for the Image Inspector tool.
  • Any required configuration files and scripts for running the tool.
Are all the required files present?
Play the Role of a Stakeholder

Organize a simulated scenario where the student takes on the role of a Digital Forensics Expert and explains their solution and knowledge to a team or stakeholder. Evaluate their grasp of the concepts and technologies used in the project, their communication efficacy, and their critical thinking about their solution and the knowledge behind this project.

Suggested role play questions include:

  • What is metadata in the context of digital images, and why is it important?
  • How does steganography work, and what are its potential uses and risks?
  • What challenges did you face while developing the Image Inspector tool, and how did you address them?
  • How can this tool be used in real-life digital forensics or cybersecurity scenarios?
  • What ethical considerations should be taken into account when analyzing images for hidden data?
Did the students demonstrate a thorough understanding of the concepts and technologies used in the project?
Were the students able to communicate effectively and justify their decisions and explain the knowledge behind this project?
Were the students able to evaluate the value of this project in real-life scenarios?
Check the Student Documentation in the README.md File
Does the README.md file contain all the necessary information about the tool (prerequisites, setup, configuration, usage, ...)?
Review the Tool's Design and Implementation
  1. Help Command:
$> image-inspector --help
Does the output include an explanation of how to use the tool, with all options clearly described?
  1. Metadata Extraction Option:
$> image-inspector -m -o metadata.txt image-example1.jpeg
Does the output correctly extract and display metadata such as geolocation, device information, and date/time?
Is the output stored in the file specified in the output parameter?
  1. Steganography Detection Option:
$> image-inspector -s -o hidden_data.txt image-example1.jpeg
Does the output correctly detect and extract any hidden PGP keys within the image?
Is the output stored in the file specified in the output parameter?
Testing with Images

You will be provided with an example image to test the students tool. Feel free to test with other images. The example image attached: image-example1.jpeg image-example2.jpeg image-example3.jpeg image-example4.jpeg

Test the tool with the provided example image and at least one other image to ensure the tool's robustness.
$> image-inspector -s -o hidden_data1.txt image-example1.jpeg
Enter   -----BEGIN PGP PUBLIC KEY BLOCK-----
Version: 01

mQENBGIwpy4BC<...>
=N8hc
-----END PGP PUBLIC KEY BLOCK-----
$>
$> image-inspector -s -o hidden_data2.txt image-example2.jpeg
-----BEGIN PGP PUBLIC KEY BLOCK-----
xo0EZuV9/AEEANRklh3<...>
=BhsK
-----END PGP PUBLIC KEY BLOCK-----
$>
$> image-inspector -s -o hidden_data3.txt image-example3.jpeg
-----BEGIN PGP PUBLIC KEY BLOCK-----
xo0EZuWBWQEEALrj<...>
=SXXm
-----END PGP PUBLIC KEY BLOCK-----
$>
$> image-inspector -s -o hidden_data4.txt image-example4.jpeg
-----BEGIN PGP PUBLIC KEY BLOCK-----
xo0EZuWA9AE<...>
=/1dE
-----END PGP PUBLIC KEY BLOCK-----
$>

The results are cut. you can compare the beginning and the end of the results!

Does the tool produce accurate and expected results for different images?

Bonus

+ Did the student implement additional valuable features (e.g., additional steganography methods, GUI, facial recognition)?
+ Is this project an outstanding project that exceeds the basic requirements?