rfc-st / humble

A humble, and 𝗳𝗮𝘀𝘁, security-oriented HTTP headers analyzer.
https://github.com/rfc-st/humble
MIT License
261 stars 18 forks source link

Debian/ParrotOS .deb package for Humble #20

Open danterolle opened 2 months ago

danterolle commented 2 months ago

Description

I added a configuration to create a .deb package that is easily deployable on Debian-based distributions (e.g., ParrotOS). Once the user is interested in installing Humble, and the package is uploaded to the repositories of the desired distribution, simply type sudo apt install humble (or similar).

I had to modify Humble's source code slightly, due to a path problem, as previously relative paths were used for templates and static files, and after the package build, since these files are placed in /usr/share/humble, they were not found, and this was clearly an error that prevented the program from running.

However, I solved it by adding a few lines of code to find and read the absolute path of these files, and in this way the program works as before, only now it does not show any errors when installed via apt package manager.

Screenshot 2024-08-26 alle 12 39 36

If this PR is accepted, I will request on behalf of the ParrotOS team to upload the package to our repositories. Also, Humble works on ARM platforms.

Type of change

Please delete options that are not relevant.

How Has This Been Tested?

Download this repository, install in your Debian distribution the essential tools to build a Debian package (build-essential, devscripts, etc...). It is important to consider the project's python dependencies (and possibly install them, see the debian/control file).

Then, create an .orig.tar.xz file using the appropriate tar command (with czf switches) from the Humble folder: tar czf humble_0.1.orig.tar.gz humble/

After that, to start the build, just type in a terminal window debuild -us -uc and a new .deb file will be created in a few seconds.

Checklist:

rfc-st commented 2 months ago

Hello,

Thank you for your PR and your time.

As we have spoken privately, I leave this PR on hold: I have to calmly review its content and possible impact on other distributions.

We will keep in touch!.

Best regards.

rfc-st commented 1 month ago

Hello @danterolle,

I haven't forgotten about this :)!. Please check the commit https://github.com/rfc-st/humble/commit/88a4e5e930083801b0ea2f4ab5f51730f72c9ebf ... I have mentioned you in https://github.com/rfc-st/humble/?tab=readme-ov-file#acknowledgements.

I hope that with this change I cover your suggestion about absolute paths; about the rest of the changes you propose, I am still reviewing them.

Thank you!.

Best regards.

danterolle commented 1 month ago

Hello @rfc-st!

Thanks a lot, if you think there are more changes needed (especially in the debian folder), let me know. I'll be happy to contribute!