Add initial repo structure

This commit is contained in:
Manuel Vergara 2024-02-04 12:50:44 +01:00
parent 268cea6d66
commit 77b7afb787
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1 @@
# Curso de Introducción al hacking - hack4u

View File

@ -0,0 +1,16 @@
-- HEAD --
description = [[
Script de ejemplo que enumera y reporta puertos abiertos por TCP.
]]
-- RULE --
portrule = function(host, port)
return port.protocol == "tcp" and port.state == "open"
end
-- ACTION --
action = function(host, port)
return ("Puerto %d abierto"):format(port.number)
end

View File

@ -1,3 +1,7 @@
# infosec
Aquí añado los apuntes de los cursos de seguridad informática.
Aquí añado los apuntes de los cursos de seguridad informática.
- [Curso de "Introducción al hacking" de hack4u](./Introduccion-hacking-hack4u/README.md)