UNIVERSIDAD NACIONAL EXPERIMENTAL
"SIMÓN RODRÍGUEZ"
NÚCLEO PALO VERDE

CONTENIDO PROGRAMÁTICO

TEMA 1: GENERALIDADES.

1. DEFINICIÓN DE FINANZAS.
2. CONCEPTO DE FINANZAS INTERNACIONALES.
3. IMPORTANCIA DE LAS FINANZAS INTERNACIONALES.
4. NOMENCLATURA USADAS EN LAS FINANZAS INTERNACIONALES.
5. VALOR DE CAMBIO CON RESPECTO AL DÓLAR Y AL EURO.
6. TIPOS DE OPERACIONES INTERNACIONALES.
7. VENTAJAS Y DESVENTAJAS.

TEMA 2: BALANZA DE PAGOS.

1. CONCEPTO, CARACTERÍSTICAS, TIPOS DE CUENTAS.
2. REGISTRO DE LAS OPERACIONES CONTABLES.
3. PROBLEMAS EN EL REGISTRO DE LAS OPERACIONES EN LA BALANZA DE PAGOS.
4. ANÁLISIS DE LOS EFECTOS DE LA BALANZA DE PAGOS.
5. DESCRIPCIÓN DE LA BALANZA DE PAGOS EN VENEZUELA DESDE EL AÑO 2005 HASTA EL PRESENTE.

TEMA 3: SISTEMA MONETARIO INTERNACIONAL.

1. CONCEPTO DEL SISTEMA MONETARIO INTERNACIONAL.
2. SISTEMA PATRÓN ORO: DEFINICIÓN Y FUNCIONAMIENTO.
3. SISTEMA BRETÓN WOODS: CONCEPTO Y CARACTERÍSTICAS, COMPORTAMIENTO DESDE 1944 HASTA EL PRESENTE.
4. INSTITUCIONES FINANCIERAS INTERNACIONALES: FONDO MONETARIO INTERNACIONAL: SU CREACIÓN, FUNCIONES, TIPOS DE SERVICIO QUE PRESTA, ROL DE ESTOS ORGANISMOS A NIVEL GLOBAL EN LOS ÚLTIMOS AÑOS.
5. BANCO MUNDIAL: CREACIÓN, FUNCIONES, TIPOS DE SERVICIO QUE PRESTA Y ROL DE ESTE ORGANISMO MUNDIAL EN LOS ÚLTIMOS TIEMPOS HASTA EL PRESENTE.
6. BANCO INTERNACIONAL DE PAGO (COMPENSACIÓN): ACUERDO DE BASILEA: SU CREACIÓN, FUNCIONES Y TIPOS DE SERVICIO QUE PRESTA.
7. SISTEMA MONETARIO EUROPEO: CREACIÓN, ESTRUCTURA, FUNCIONES Y TIPOS DE SERVICIO QUE PRESTA.
8. LA MONEDA EURO: COTIZACIÓN, ESTRUCTURA (CANASTA DE VARIAS MONEDAS).
9. DERECHO ESPECIAL DE GIRO: CONCEPTO, FUNCIONES Y ESTRUCTURA.

TEMA 4: MERCADO CAMBIARIO.

1. CONCEPTO DE DIVISA.
2. MERCADO DE DIVISAS.
3. OPERACIONES DE CAMBIO EN EL MERCADO INTERNACIONAL.
4. TIPOS DE COTIZACIONES DE CAMBIO.
5. CONTRATOS A FUTURO (FORWARD): CONCEPTO, FUNCIONES Y TIPOS DE CONTRATOS.
6. SISTEMA CAMBIARIO DE BANDAS: DEFINICIÓN Y FUNCIONAMIENTO.
7. RIESGO CAMBIARIO: CONCEPTO, ELEMENTOS FUNDAMENTALES DEL RIESGO CAMBIARIO: POSICIÓN CORTA Y POSICIÓN LARGA, TIPOS DE RIESGOS DE CAMBIO: TRANSACCIÓN DE BALANCE Y ECONÓMICO, ENDEUDAMIENTO EMPRESARIAL EN MONEDA EXTRANJERA.
8. COMPORTAMIENTO DEL MERCADO CAMBIARIO EN VENEZUELA DESDE 2005 HASTA EL PRESENTE.

TEMA 5: MERCADO FINANCIERO INTERNACIONAL.

1. CONCEPTO Y FINALIDAD.
2. ESTRUCTURA DEL MERCADO FINANCIERO INTERNACIONAL.
3. TIPOS Y FUNCIONAMIENTO DE LOS CRÉDITOS INTERNACIONALES. (TRAER MODELO).
4. MERCADO DE EURODÓLARES: TIPOS Y FUNCIONAMIENTO (TRAER MODELO).
5. MERCADO INTERNACIONAL DE BONOS: CLASIFICACIÓN DEL MERCADO DE BONOS, ESTRUCTURA Y FUNCIONAMIENTO.
6. MERCADO DE EUROCRÉDITOS: ESTRUCTURA Y FUNCIONAMIENTO.

TEMA 6: FINANCIAMIENTO DEL COMERCIO INTERNACIONAL.

1. CONCEPTO Y FINALIDAD.
2. CARTA DE CRÉDITO: DEFINICIÓN, TIPOS, MODALIDADES, VENTAJAS Y DESVENTAJAS (TRAER MODELO).
3. COBRO DOCUMENTARIO: CONCEPTO Y TIPOS (TRAER MODELO).
4. ACEPTACIÓN BANCARIA: CONCEPTO Y TIPOS. (TRAER MODELO).
5. FACTORIZACIÓN: DEFINICIÓN Y TIPOS (TRAER MODELO).
6. FORFETIZACIÓN: CONCEPTO Y TIPOS (TRAER MODELO).
7. ARRENDAMIENTO INTERNACIONAL: CONCEPTO Y TIPOS (TRAER MODELO).
8. PERMUTA INTERNACIONAL: CONCEPTO Y TIPOS (TRAER MODELO).

TEMA 7: MERCADO BURSÁTIL INTERNACIONAL.

1. MERCADO WALL STREET (NEW YORK): FUNCIONAMIENTO Y TIPOS DE OPERACIONES.
2. MERCADO DEL ORO: FUNCIONAMIENTO Y TIPOS DE OPERACIONES.
3. DEUDA EXTERNA MUNDIAL: MERCADO DE LA DEUDA EXTERNA LATINOAMERICANA, TIPOS DE TÍTULOS QUE SE COTIZAN Y OPERACIONES; PLAN BRADY: CONCEPTO, VENTAJA Y DESVENTAJAS.
4. DEUDA EXTERNA VENEZOLANA: COMPORTAMIENTO DESDE 1983 HASTA NUESTROS DÍAS.
5. CLUB DE PARÍS: FUNCIONAMIENTO, VENTAJAS Y DESVENTAJAS.
6. MERCADO DE TÍTULOS ADR Y GDR: CONCEPTO Y FUNCIONAMIENTO DE ESTOS TÍTULOS.

TEMA 8: INVERSIÓN EXTERNA DIRECTA.

1. CONCEPTO.
2. EFECTOS DE LA INVERSIÓN EXTERNA DIRECTA EN LA BALANZA DE PAGOS EN EL PAÍS RECEPTOR Y DEL PAÍS INVERSOR.
3. LA EMPRESA MULTINACIONAL: DEFINICIÓN, CARACTERÍSTICAS, VENTAJA Y DESVENTAJAS DE SU INSTALACIÓN EN EL PAÍS.
4. FINANCIAMIENTO DE CASA MATRIZ A FILIAL Y VICEVERSA.
5. ASOCIACIONES ESTRATÉGICAS: CONCEPTO Y FUNCIONAMIENTO EN VENEZUELA (TRAER 02 MODELOS DE CASOS EN NUESTRO PAÍS).
6. COMPORTAMIENTO DE LA INVERSIÓN EXTRANJERA DIRECTA EN VENEZUELA DESDE 2005 HASTA NUESTROS DÍAS.

sábado, 20 de enero de 2024

Linux Command Line Hackery Series - Part 3


Welcome back, hope you are enjoying this series, I don't know about you but I'm enjoying it a lot. This is part 3 of the series and in this article we're going to learn some new commands. Let's get started

Command: w
Syntax:      w
Function:   This simple function is used to see who is currently logged in and what they are doing, that is, their processes.

Command:  whoami
Syntax:       whoami
Function: This is another simple command which is used to print  the  user  name  associated  with the current effective user ID.

Try it and it will show up your user name.

If you want to know information about a particular user no matter whether it is you or someone else there is a command for doing that as well.

Command: finger
Syntax:      finger [option] [username]
Function:   finger is a user information lookup program. The [] around the arguments means that these arguments are optional this convention is used everywhere in this whole series.

In order to find information about your current user you can simply type:

finger username

Here username is your current username.
To find information about root you can type:

finger root

and it will display info about root user.

Command: uname
Syntax:      uname [options]
Function:   uname is used to display information about the system.

uname is mostly used with the flag -a, which means display all information like this:

uname -a

Command: df
Syntax:      df [option] [FILE ...] 
Function:   df is used to display the amount of space available.
If you type df in your terminal and then hit enter you'll see the used and available space of every drive currently mounted on the system. However the information is displayed in block-size, which is not so much human friendly. But don't worry we can have a human friendly output as well using df by typing:

df -h

the -h flag is used to display the used and available space in a more user friendly format.
We can also view the info of a single drive by specifying the drive name after df like this:

df -h /dev/sda2

That's it for now about df, let's move on.

Command:  free
Syntax:       free [options]
Function:    free is used to display the amount of free and used physical memory and swap memory in the system.
Again the displayed information is in block-size to get a more human readable format use the -h flag like this:

free -h

Command: cal
Syntax:      cal [options]
Function:    cal stands for calendar. It is used to display the calendar.

If you want to display current date on the calendar you can simply type:

cal

and wohooo! you get a nice looking calendar on screen with current date marked but what if you want to display calendar of a previous month well you can do that as well. Say you want to display calendar of Jan 2010, then you'll have to type:

cal -d 2010-01

Nice little handy tool, isn't it?

Command: file
Syntax:      file filename ...
Function:   file is an awesome tool, it's used to classify a file. It is used to determine the file type.

Let's demonstrate the usage of this command by solving a Noob's CTF challenge using file and base64 commands. We'll talk about base64 command in a bit. Go to InfoSecInstitute CTF Website. What you need to do here is to save the broken image file on your local computer in your home directory. After saving the file open your terminal (if it isn't already). Move to your home directory and then check what type of file it is using the file command:

cd
file image.jpg

Shocking output? The file command has identified the above file as an ASCII text file which means the above file is not an image file rather it is a text file now it's time to see it's contents so we'll type:

cat image.jpg

What is that? It's some kind of gibberish. Well it's base64 encoded text. We need to decode it. Let's learn how to do that.

Command: base64
Syntax:       base64 [option] FILE ...
Function:    base64 command is used to encode/decode data and then print it to stdout.

If we're to encode some text in base64 format we'd simply type base64 hit enter and then start typing the text in the terminal after you're done hit enter again and then press CTRL+D like this:

base64
some text here
<CTRL+D>
c29tZSB0ZXh0IGhlcmUK        # output - the encoded string

But in the above CTF we've got base64 encoded data we need to decode it, how are we going to do that? It's simple:

base64 -d image.jpg

There you go you've captured the flag.
The -d flag here specifies that we want to decode instead of encode and after it is the name of file we want to decode.

Voila!
So now you're officially a Hacker! Sorry no certificates available here :)

That's it for this article meet ya soon in the upcoming article.
Read more

Linux Command Line Hackery Series - Part 6


Welcome back to Linux Command Line Hackery series, I hope you've enjoyed this series so far and would have learned something (at least a bit). Today we're going to get into user management, that is we are going to learn commands that will help us add and remove users and groups. So bring it on...

Before we get into adding new users to our system lets first talk about a command that will be useful if you are a non-root user.

Command: sudo
Syntax: sudo [options] command
Description: sudo allows a permitted user to execute a command as a superuser or another user.

Since the commands to follow need root privileges, if you are not root then don't forget to prefix these commands with sudo command. And yes you'll need to enter the root password in order to execute any command with sudo as root.

Command: useradd
Syntax: useradd [options] username
Description: this command is used for creating new user but is kinda old school.
Lets try to add a new user to our box.
[Note: I'm performing these commands as root user, you'll need root privileges to add a new user to your box. If you aren't root then you can try these commands by prefixing the sudo command at the very beginning of these command like this sudo useradd joe. You'll be prompted for your root password, enter it and you're good to go]

useradd joe

To verify that this command has really added a user to our box we can look at three files that store a users data on a Linux box, which are:

/etc/passwd -> this file stores information about a user separated by colons in this manner, first is login name, then in past there used to be an encrypted password hash at the second place however since the password hashes were moved to shadow file now it has a cross (x) there, then there is user id, after it is the user's group id, following it is a comment field, then the next field contains users home directory, and at last is the login shell of the user.

/etc/group  -> this file stores information about groups, that is id of the group and to which group an user belongs.

/etc/shadow -> this file stores the encrypted password of users.

Using our command line techniques we learned so far lets check out these files and verify if our user has been created:

cat /etc/passwd /etc/group /etc/shadow | grep joe



In the above screenshot you can notice an ! in the /etc/shadow, this means the password of this user has not been set yet. That means we have to set the password of user joe manually, lets do just that.

Command: passwd
Syntax: passwd [options] [username]
Description: this command is used to change the password of user accounts.
Note that this command needs root privileges. So if you are not root then prefix this command with sudo.

passwd joe



After typing this command, you'll be prompted password and then for verifying your password. The password won't show up on the terminal.
Now joe's account is up and running with a password.

The useradd command is a old school command, lets create a new user with a different command which is kinda interactive.

Command: adduser
Syntax: adduser [options] user
Description: adduser command adds a user to the system. It is more friendly front-end to the useradd command.

So lets create a new user with adduser.

adduser jane



as seen in the image it prompts for password, full name and many other things and thus is easy to use.

OK now we know how to create a user its time to create a group which is very easy.

Command: addgroup
Syntax: addgroup [options] groupname
Description: This command is used to create a new group or add an existing user to an existing group.

We create a new group like this

addgroup grownups



So now we have a group called grownups, you can verify it by looking at /etc/group file.
Since joe is not a grownup user yet but jane is we'll add jane to grownups group like this:

addgroup jane grownups



Now jane is the member of grownups.

Its time to learn how to remove a user from our system and how to remove a group from the system, lets get straight to that.

Command: deluser
Syntax: deluser [options] username
Description: remove a user from system.

Lets remove joe from our system

deluser joe

Yes its as easy as that. But remember by default deluser will remove the user without removing the home directory or any other files owned by the user. Removing the home directory can be achieved by using the --remove-home option.

deluser jane --remove-home

Also the --remove-all-files option removes all the files from the system owned by the user (better watch-out). And to create a backup of all the files before deleting use the --backup option.

We don't need grownups group so lets remove it.

Command: delgroup
Syntax: delgroup [options] groupname
Description: remove a group from the system.

To remove grownups group just type:

delgroup grownups



That's it for today hope you got something in your head.

Continue reading


  1. Hack Tools 2019
  2. Pentest Reporting Tools
  3. Computer Hacker
  4. Pentest Tools Framework
  5. Hacking Tools 2020
  6. Hacking Tools Github
  7. Pentest Tools Website Vulnerability
  8. Github Hacking Tools
  9. Hack Tools
  10. Hack Tools Pc
  11. Hacker Tool Kit
  12. Hacking Tools For Mac
  13. Pentest Tools For Mac
  14. Growth Hacker Tools
  15. Kik Hack Tools
  16. Beginner Hacker Tools
  17. Pentest Tools Windows
  18. Bluetooth Hacking Tools Kali
  19. Hacker Tools 2020
  20. Hacker Tool Kit
  21. Hacker Tools Hardware
  22. Hak5 Tools
  23. Pentest Tools Alternative
  24. Hacker Tools Linux
  25. Nsa Hack Tools
  26. How To Make Hacking Tools
  27. Pentest Tools Windows
  28. Hack Website Online Tool
  29. Hack Tools Mac
  30. Hacker Tools Github
  31. Pentest Tools For Android
  32. Bluetooth Hacking Tools Kali
  33. Nsa Hack Tools Download
  34. Hacker Tools 2019
  35. Pentest Tools For Android
  36. Hack Tools Download
  37. Pentest Tools Bluekeep
  38. Hacking Tools Online
  39. Pentest Automation Tools
  40. Black Hat Hacker Tools
  41. Hacker Tools
  42. How To Hack
  43. Blackhat Hacker Tools
  44. Kik Hack Tools
  45. Pentest Tools For Windows
  46. Hacker Tool Kit
  47. How To Hack
  48. Black Hat Hacker Tools
  49. Pentest Tools Website
  50. Blackhat Hacker Tools
  51. Hack Tool Apk
  52. Ethical Hacker Tools
  53. Hacking Tools 2020
  54. Pentest Tools List
  55. Hacking Tools Download
  56. Game Hacking
  57. Black Hat Hacker Tools
  58. Pentest Tools Open Source
  59. Pentest Reporting Tools
  60. Hacker Tools Software
  61. Pentest Recon Tools
  62. Hacking Tools
  63. Top Pentest Tools
  64. Pentest Tools Website
  65. Hacker Search Tools
  66. Hack Tools Download
  67. Usb Pentest Tools
  68. Hack Tools
  69. Tools Used For Hacking
  70. What Are Hacking Tools
  71. Hack Tools Online
  72. Computer Hacker
  73. Hacking Tools Name
  74. Hacker Tools Windows
  75. Kik Hack Tools
  76. Hacker Security Tools
  77. Hacking Tools Usb
  78. Hack Tools Online
  79. Top Pentest Tools
  80. Nsa Hack Tools Download
  81. Pentest Tools Website
  82. Hacking Tools Hardware
  83. Hackrf Tools
  84. Free Pentest Tools For Windows
  85. Hack Tools For Games
  86. Hack Rom Tools
  87. Android Hack Tools Github
  88. Hack Tool Apk No Root
  89. Pentest Tools Port Scanner
  90. Hack Website Online Tool
  91. Pentest Box Tools Download
  92. Hacking Tools For Pc
  93. Hacks And Tools
  94. Ethical Hacker Tools
  95. Pentest Recon Tools
  96. Pentest Tools For Ubuntu
  97. Bluetooth Hacking Tools Kali
  98. Hacking Tools Kit
  99. Pentest Tools Port Scanner
  100. Kik Hack Tools
  101. Hacking Tools And Software
  102. Pentest Tools Website Vulnerability
  103. Hack Tools Pc
  104. Pentest Tools Download
  105. Hacks And Tools
  106. Best Hacking Tools 2020
  107. Hacks And Tools
  108. Pentest Tools Linux
  109. Hacking Tools Online
  110. Hacker Techniques Tools And Incident Handling
  111. Hacking Tools For Mac
  112. Kik Hack Tools
  113. Pentest Tools Website Vulnerability
  114. Hacking Tools Github
  115. Pentest Tools Website Vulnerability
  116. Hack Tools Github
  117. Github Hacking Tools
  118. Nsa Hacker Tools
  119. Hacking App
  120. Hacker Tools For Mac
  121. Beginner Hacker Tools
  122. Computer Hacker
  123. World No 1 Hacker Software
  124. Hacker Tools For Ios
  125. Pentest Tools Online
  126. Termux Hacking Tools 2019
  127. Hacker Tools Online
  128. Pentest Box Tools Download
  129. Hacking Tools
  130. Hacking Tools Hardware
  131. Github Hacking Tools
  132. Nsa Hack Tools
  133. Pentest Automation Tools
  134. Pentest Tools List
  135. Pentest Tools List
  136. Game Hacking
  137. Hackers Toolbox
  138. Hacking Tools Download
  139. Hack Tools For Mac
  140. Hacker Tools Windows
  141. Hacker Search Tools
  142. Pentest Tools Url Fuzzer
  143. Pentest Automation Tools
  144. World No 1 Hacker Software
  145. Bluetooth Hacking Tools Kali
  146. Hacking Tools For Mac
  147. Hack And Tools
  148. Kik Hack Tools
  149. Pentest Tools Url Fuzzer
  150. Pentest Tools For Ubuntu
  151. Install Pentest Tools Ubuntu
  152. Hacker Tool Kit
  153. Hacker Tools For Mac
  154. Hacking Tools For Windows Free Download
  155. Hack Tools
  156. Hacking Tools Name
  157. Hacker Techniques Tools And Incident Handling
  158. Pentest Tools Alternative

viernes, 19 de enero de 2024

Hackerhubb.blogspot.com

Hackerhubb.blogspot.com

Read more


  1. Hacking Tools For Pc
  2. Hacker Tools 2020
  3. Hack Tools For Pc
  4. Hack Tools Pc
  5. Nsa Hack Tools
  6. Hacking Tools 2019
  7. Hack Tool Apk No Root
  8. Best Pentesting Tools 2018
  9. Hack Tools
  10. Hacker Tools Free Download
  11. Hacker Tools Linux
  12. Hack Tools For Windows
  13. Black Hat Hacker Tools
  14. Pentest Tools For Mac
  15. Hack Tool Apk No Root
  16. Hacker Tools Mac
  17. What Is Hacking Tools
  18. Hacker Tools Hardware
  19. Best Hacking Tools 2020
  20. Hacking Tools For Windows 7
  21. Hacker Tools Hardware
  22. What Is Hacking Tools
  23. Hack Tools Pc
  24. Hacking Tools For Kali Linux
  25. Install Pentest Tools Ubuntu
  26. Pentest Tools Url Fuzzer
  27. Hacking Tools
  28. Android Hack Tools Github
  29. Pentest Tools Website Vulnerability
  30. Blackhat Hacker Tools
  31. Growth Hacker Tools
  32. Hack Tools For Mac
  33. Hacking Tools Software
  34. Pentest Tools Nmap
  35. Hacker Security Tools
  36. Hacker Tools Github
  37. Hacker Tools Software
  38. Hacking Tools Online
  39. Hacker Tool Kit
  40. Pentest Tools Windows
  41. Hack Tools For Mac
  42. Hacker Tools Online
  43. Wifi Hacker Tools For Windows
  44. Pentest Tools Port Scanner
  45. Pentest Tools Linux
  46. Hacking Tools Name
  47. Hack Tools For Ubuntu
  48. Pentest Tools For Mac
  49. Hacking Tools Github
  50. Hack Tools Download
  51. Computer Hacker
  52. Hacking Tools For Games
  53. Hacker Tools Mac
  54. Pentest Tools List
  55. Hacking Tools For Mac
  56. Tools 4 Hack
  57. Nsa Hack Tools
  58. Physical Pentest Tools
  59. Hacker Tools
  60. Hacking App
  61. Hacker
  62. Hacker Tools Hardware
  63. Pentest Tools Review
  64. Hacking Tools And Software
  65. Hacker Tools Github
  66. What Are Hacking Tools
  67. Pentest Tools Download
  68. Hackers Toolbox
  69. Hackrf Tools
  70. How To Hack
  71. Pentest Tools Kali Linux
  72. Pentest Tools Alternative
  73. Best Hacking Tools 2020
  74. Hacker
  75. Hack Tools Download
  76. Hacking Tools Name
  77. Tools 4 Hack
  78. Android Hack Tools Github
  79. Hacking Apps
  80. Pentest Tools Website
  81. Hacker Tools For Ios
  82. Usb Pentest Tools
  83. How To Hack
  84. Pentest Tools Website Vulnerability
  85. Hacker Tools Linux
  86. Hacking Tools Kit
  87. Hacker Tools 2019
  88. Hacker Tool Kit
  89. Hacking Tools Windows
  90. Hacker Tools List
  91. Hacking Tools Free Download
  92. Hack App
  93. Pentest Tools Website Vulnerability
  94. Pentest Tools For Windows
  95. Hacker Tools Apk Download