1 2 3 4 5 6 7 |
# Descargar el sitio web al disco duro bash -c "wget --mirror --convert-links --html-extension --wait=2 -o log http://demo.owasp-juice.shop/#/search" # Recorrer los ficheros del sitio web y detectar la cadena "administration" ls * -Recurse -File | %{ (gc $_.FullName) -split "," | Select-String "administration" } |