Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
- Lab Module 0 : Integrate ShellGPT in Parrot Security Machine
- Lab Module 02: Footprinting and Reconnaissance
- Lab Modulo 03
- Lab Modulo 04
- Lab Modulo 05
- Lab Module 06: Sytem hacking
- Lab Module 07
- Lab Module 08: Perform Active Sniffing
- Lab Module 09: Social Engineering
- Lab Module 10
- Lab Modulo 11 - Session Hijacking
- Lab Module 12: Perform Intrusion Detection using Various Tools
- Lab Module 13
- Lab Module 18 IoT and OT Hacking
- Lab Module 19 Cloud Computing
- Lab Module 20 Cryptography
Resultats de text complet:
- 5.1 Metaprogramming @info:cursos:pue:python-pcpp1:m1
- = 5.1 Metaprogramming == Introduction to metaclasses Metaprogramming is a programming technique in whi... Another example of metaprogramming is the **metaclass** concept, which is one of the most advanced co... en of Python**, expressed his feelings about metaclasses in the **comp.lang.python** newsgroup on 12/22/2002: //[metaclasses] are deeper magic than 99% o
- Apuntes SinCara Extras systemd @info:cursos:pue:ethical-hacker:extras
- de inicio y administración de servicios. * Reemplaza los sistemas de inicio tradicionales como SysV ... Upstart (de Canonical / Ubuntu) * Se enfoca en la eficiencia, la rapidez y la robustez. * Es ampliamente usado en la comunidad de Linux, aunque ha generado bastante
- Apuntes SinCara sesión 1 @info:cursos:pue:ethical-hacker:sesion1
- gerente de sistemas o director de tecnologías de la información (responsable de TI). Reporta directamente al CEO, y se encarga directamente de las estrategias de la organización que están alineadas con la tecnología de la información para lograr los objetivos planif
- 2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP @info:cursos:pue:python-pcpp1:m1
- nheritance and polymorphism — Inheritance as a pillar of OOP Inheritance is one of the fundamental con... nted programming, and expresses the fundamental relationships between classes: superclasses (parents) and their subclasses (descendants). Inheritance creates a class hierarchy
- Apuntes SinCara Extras @info:cursos:pue:ethical-hacker:extras
- = Apuntes SinCara Extras == Titulares/Resumen del curso * Logística del curso * Este curso trata de tener una visión 360º de la ciberseguridad. Si quereis profundizar en algún tema, lo leeis con más calma, una vez sacada la certificación * Una vez terminado el curso: t... Eso os permite ver vuestras deficiencias, estudiarlas, y presentaros al examen lo antes posible. Según
- Apuntes SinCara Extras Privacidad @info:cursos:pue:ethical-hacker:extras
- as Privacidad == Inicio * https://www.eff.org - La Electronic Frontier Foundation * https://ssd.ef... rramientas y procedimientos de autodefensa de vigilancia para comunicaciones en línea más seguras. *... rramientas de privacidad * https://victorhck.gitlab.io/privacytools-es/ - Traducción al español de la página anterior al completo * https://privacygui
- 1.2 Working with class and instance data – instance variables @info:cursos:pue:python-pcpp1:m1
- = 1.2 Working with class and instance data – instance variables == Instance variables This kind of var... tialization, performed by the __init__ method, or later at any moment of the object's life. Furthermor... are closely connected to the objects (which are class instances), not to the classes themselves. To get access to the instance variable, you should addre
- 2.6 Abstract classes @info:cursos:pue:python-pcpp1:m1
- = 2.6 Abstract classes Python is considered to be a very flexible programming language, but that doesn’t mean that there are no co... impose a set of functionalities or an order in a class hierarchy. When you develop a system in a group... have some means of establishing requirements for classes in matters of interfaces (methods) exposed by
- Apuntes SinCara sesion 3 @info:cursos:pue:ethical-hacker:sesion3
- a sesion 3 == Modulo 09 * El ser humano es el eslabón más débil de la cadena de la ciberseguridad * https://www.xataka.com/robotica-e-ia/ai-pin-ha-llegado-a-sus-primeros-usuarios-conclusiones-horripilantes - AI Pin * https://www.incibe.es/protege-
- Ethical Hacker : sesión 4 @info:cursos:pue:ethical-hacker
- * [[info:cursos:pue:ethical-hacker:sesion4]] == clase * Modulo 14 * Modulo 15 * Modulo 16 * M... * asociación sin ánimo de lucro * proyectos relacionados con seguridad * Coraza - ModSecurity - set reglas programables * web security testint guide ... * ejemplos de vulnerabildiades * manipulación campos ocultos (via POST/GET) * amazon:
- 2.4 Decorators @info:cursos:pue:python-pcpp1:m1
- design patterns that describes the structure of related objects. Python is able to decorate functions, methods, and classes. The decorator's operation is based on wrapp... al function with a new "decorating" function (or class), hence the name "decoration". This is done by ... ng function returns a function that can be called later. Of course, the **decorating** function does
- Apuntes SinCara sesión 4 @info:cursos:pue:ethical-hacker:sesion4
- ckmarx, pero previamente, en 2023 se habían ido a la Fundación Linux * Análisis de seguridad de apli... a-seguridad-tu-web-y-protege-tu-empresa - Analiza la seguridad de tu web y protege tu empresa. Interesante artículo del INCIBE con enlaces a muchas herramientas. * https://portswigg... 0-web-hacking-techniques - Varios artículos recopilando las técnicas de hacking de Webs más usadas a l
- 1.1 Classes, Instances, Attributes, Methods — introduction @info:cursos:pue:python-pcpp1:m1
- = 1.1 Classes, Instances, Attributes, Methods — introduction == Introduction to Object-Oriented Progra... with OOP, and even the mouse cursor image is displayed using an application created with OOP. The sam... should agree on the following definitions: * class — an idea, blueprint, or recipe for an instance; * instance — an instantiation of the class; very often used interchangeably with the term
- 2.5 Different faces of Python methods @info:cursos:pue:python-pcpp1:m1
- rations on the instances (objects), and in particular the attributes of the instance, so we’ve called ... strates the idea presented above. <code python> class Example: def __init__(self, value): ... le2.get_internal()) </code> Each of the Example class objects has its own copy of the instance variab... <code ; output> 10 99 </code> == The static and class methods Two other types of method can also be u
- 2.8 Composition vs Inheritance - two ways to the same destination @info:cursos:pue:python-pcpp1:m1
- lowing the inheritance concept when modeling our classes to represent real-life issues. Inheritance is... object-oriented programming that models a tight relation between two classes: the base class and the derived class, called a subclass. The result of this relation is a subcl
- LPIC2 2021 Sesión 3 (2021-02-09) - procesos, kernel, systemd/systemv, modulos @info:cursos:pue:lpic2-2021
- Lab Module 0 : Integrate ShellGPT in Parrot Security Machine @info:cursos:pue:ethical-hacker:sesion1