Skip to content

Commit

Permalink
Feature: AI approval!.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc-st committed Nov 16, 2023
1 parent 6362ce6 commit 3698b8f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ HTTP Headers Analyzer<br />
:heavy_check_mark: Technical resource in OWASP <a href="https://owasp.org/www-project-secure-headers/#div-technical" target="_blank">Secure Headers</a> Project and <a href="https://www.kali.org/tools/humble/" target="_blank">Kali Linux</a> (<a href="https://pkg.kali.org/pkg/humble" target="_blank">this</a> should be the latest Release).<br />
:heavy_check_mark: Developed entirely in my spare time, no strings attached: feel <b>free</b> to try it out and integrate it into your projects!.<br />
<br />
:heavy_check_mark: And with the <a href="https://github.com/rfc-st/humble/blob/master/screenshots/humble_IA.PNG">approval</a> of an AI :)!.
<br />

## Screenshots

Expand Down
18 changes: 6 additions & 12 deletions humble.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
# really interests you, learn, research and become a Security Analyst!.

# GREETINGS:
# Aleix, Ana, Alejandro, Alejandro (x2), Alba, Álvaro, Carlos, Carlos (x2),
# David, David (x2), Eduardo, Eloy, Fernando, Gabriel, Íñigo, Joanna,
# Juan Carlos, Juán, Julián, Iván, Lourdes, Luis Joaquín, María Antonia, Marta,
# Miguel, Miguel Angel, Montse, Naiara, Pablo, Sergio, Ricardo & Rubén!.
# Alba, Aleix, Alejandro (x3), Álvaro, Ana, Carlos (x3), David (x3), Eduardo,
# Eloy, Fernando, Gabriel, Íñigo, Joanna, Juan Carlos, Juán, Julián, Iván,
# Lourdes, Luis Joaquín, María Antonia, Marta, Miguel, Miguel Angel, Montse,
# Naiara, Pablo, Sergio, Ricardo & Rubén!.

from fpdf import FPDF
from time import time
Expand Down Expand Up @@ -656,10 +656,7 @@ def clean_output_r():


def print_path(filename, reliable):
if reliable:
clean_output_r()
else:
clean_output()
clean_output_r() if reliable else clean_output()
print("")
print_detail_l('[report]')
print(path.abspath(filename))
Expand Down Expand Up @@ -688,10 +685,7 @@ def print_header_fng(header):

def print_summary(reliable):
if not args.output:
if reliable:
clean_output_r()
else:
clean_output()
clean_output_r() if reliable else clean_output()
print("")
banner = ''' _ _ _
| |__ _ _ _ __ ___ | |__ | | ___
Expand Down
Binary file added screenshots/humble_IA.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3698b8f

Please sign in to comment.