elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Estamos en la red social de Mastodon


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación General
| | |-+  .NET (C#, VB.NET, ASP) (Moderador: kub0x)
| | | |-+  [Help] OpenVPN GUI With VB.NET
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [Help] OpenVPN GUI With VB.NET  (Leído 3,436 veces)
alaa92

Desconectado Desconectado

Mensajes: 1


Ver Perfil
[Help] OpenVPN GUI With VB.NET
« en: 22 Diciembre 2013, 21:14 pm »

Hi
How are you?

Thank you very much for this website

I want help to run any program from VB.net by argument and hide the command line for the exe from task manager

I have made OpenVPN GUI with VB.net 2008 but how i can hide the command line for OpenVPN from task manager

Lock to the picture



Please any help

Thank you in advance
Sorry of my English
[/b]


En línea

Eleкtro
Ex-Staff
*
Desconectado Desconectado

Mensajes: 9.817



Ver Perfil
Re: [Help] OpenVPN GUI With VB.NET
« Respuesta #1 en: 23 Diciembre 2013, 05:13 am »

EDIT:

I've seen again your question and I've noticed now one thing that I didn't noticed when I were writting my answer, so seems that you only wanted to hide the CLI arguments of the process?, well, you can still follow the solution below to hide the item entirelly, or you could adapt the code to your needs, but properly hacking the TaskManager process is not easy as you've seen.




Well, I'm not an expert about this but it's not kinda "click & go" ...this has any of ease, basically you'll need to write a hook and that really requires a lot of guru knowledges, and also depends on some things like your OS version.

BTW an easier way to manage this is by taking control of the TaskManager's child window where the listview is inside to find the item where the process that we want to hide is listed on it, and then hide it. The control refreshes itself so we need to hide again the item(s) in a specified interval, again and again. The best you can do is follow the solution below.

The code below is a little vb6lish because the original code snippet was written by another guy, I've only extended the main code (Time ago) adding a couple of new features but ATM I've never simplified the code to remove these annoying vb6lish parts, BTW this large code worked well in my scenario under Win7 TaskManager process. On Win8 all the things changes.

I've added a feature to hide more than one process at once, you can see all of this at the header usage examples.

Código
  1. #Region " Hide Process From TaskManager "
  2.  
  3. ' [ Hide Process From TaskManager ]
  4. '
  5. ' // By Elektro H@cker
  6. '
  7. ' Examples :
  8. '
  9. ' Hide_Process_From_TaskManager.Processes_Names = {Process.GetCurrentProcess.ProcessName, "cmd", "notepad.exe"} ' Processes to hide.
  10. ' Hide_Process_From_TaskManager.Task_Manager_Window_Titles = {"Administrador de tareas de Windows", "Windows Task Manager"} ' Support for unknown TaskManager Window Titles.
  11. ' Hide_Process_From_TaskManager.Hide_Interval = 3 ' Hidding Interval.
  12. ' Hide_Process_From_TaskManager.Running = True  ' Start hidding processes.
  13. ' Hide_Process_From_TaskManager.Running = False ' Stop hidding processes.
  14.  
  15. #Region " Hide Process From TaskManager Class "
  16.  
  17. Imports Microsoft.Win32.SafeHandles
  18. Imports System.Runtime.InteropServices
  19. Imports System.Text
  20. Imports System.ComponentModel
  21.  
  22. Module Hide_Process_From_TaskManager
  23.  
  24. #Region " API's "
  25.  
  26.    Private Delegate Function EnumDelegate(ByVal lngHwnd As IntPtr, ByVal lngLParam As Integer) As Integer
  27.    Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal Hwnd As IntPtr, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer
  28.    Private Declare Function EnumChildWindows Lib "user32.dll" (ByVal hWndParent As IntPtr, ByVal lpEnumFunc As EnumDelegate, ByVal lParam As Integer) As Integer
  29.    Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hWnd As IntPtr, ByVal lpString As System.Text.StringBuilder, ByVal cch As Integer) As Integer
  30.    Private Declare Function GetWindowTextLength Lib "user32" Alias "GetWindowTextLengthA" (ByVal hWnd As IntPtr) As Integer
  31.    Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Integer
  32.  
  33.    <DllImport("user32.dll", CharSet:=CharSet.Auto)> _
  34.    Private Sub GetClassName(ByVal hWnd As System.IntPtr, ByVal lpClassName As System.Text.StringBuilder, ByVal nMaxCount As Integer)
  35.    End Sub
  36.  
  37. #End Region
  38.  
  39. #Region " Variables "
  40.  
  41.    ''' <summary>
  42.    ''' The processses to hide from TaskManager.
  43.    ''' Caution: The process name is Case-Sensitive.
  44.    ''' </summary>
  45.    Public Processes_Names() As String = {Process.GetCurrentProcess.ProcessName} ' The current process.
  46.  
  47.    ''' <summary>
  48.    ''' The interval time in ms to hide the process from TaskManager.
  49.    ''' Values greater than "5" can cause bad visual effects in TaskManager processes list.
  50.    ''' </summary>
  51.    Public Hide_Interval As Int32 = 3 ' ms
  52.  
  53.    ''' <summary>
  54.    ''' The known Window Titles for Task Manager process.
  55.    ''' This is necessary to work properly in all languages.
  56.    ''' Add here your own Task Manager Window Tittle if is not inside.
  57.    ''' Default support: Spanish, English, Deutsch
  58.    ''' </summary>
  59.    Public Task_Manager_Window_Titles() As String = { _
  60.        "Administrador de tareas de Windows", _
  61.        "Windows Task Manager", _
  62.        "Windows Task-Manager", _
  63.    }
  64.  
  65.    ''' <summary>
  66.    ''' Gets the next process in the Processes_Names array to hide it.
  67.    ''' Don't touch this.
  68.    ''' </summary>
  69.    Public MyProc As String
  70.  
  71.    Dim t As New Timer
  72.    Dim hwnd As IntPtr
  73.    Dim controls As String
  74.    Dim ProcLV As IntPtr = IntPtr.Zero
  75.  
  76.    Private Const LVM_FIRST = &H1000
  77.    Private Const LVM_DELETECOLUMN = LVM_FIRST + 28
  78.    Private Const LVM_GETITEMCOUNT = (LVM_FIRST + 4)
  79.    Private Const LVM_SORTITEMS = (LVM_FIRST + 48)
  80.    Private Const LVM_DELETEITEM = (LVM_FIRST + 8)
  81.    Private Const LVM_GETNEXTITEM = (LVM_FIRST + 12)
  82.    Private Const LVM_GETITEM = (LVM_FIRST + 75)
  83.  
  84. #End Region
  85.  
  86. #Region " Properties "
  87.  
  88.    ''' <summary>
  89.    ''' Turns ON/OFF the process hiding.
  90.    ''' </summary>
  91.    Public Property Running() As Boolean
  92.        Get
  93.            If t.Enabled = True Then
  94.                Return True
  95.            Else
  96.                Return False
  97.            End If
  98.        End Get
  99.        Set(ByVal value As Boolean)
  100.            If value = True Then
  101.  
  102.                If Processes_Names.Length = 0 Then Throw New Exception("Processes_Names Array is empty.")
  103.                If Hide_Interval <= 0 Then Throw New Exception("Hide_Interval value is too low, minimum value: 1")
  104.  
  105.                MyProc = Processes_Names(0)
  106.                If Not t.Interval = Hide_Interval Then
  107.                    With t
  108.                        AddHandler t.Tick, AddressOf t_Tick
  109.                        .Interval = Hide_Interval
  110.                        .Enabled = True
  111.                        .Start()
  112.                    End With
  113.                Else
  114.                    t.Enabled = True
  115.                    t.Start()
  116.                End If
  117.            Else
  118.                t.Enabled = False
  119.                t.Stop()
  120.                ProcLV = IntPtr.Zero
  121.            End If
  122.        End Set
  123.    End Property
  124.  
  125. #End Region
  126.  
  127. #Region " Timer Tick event "
  128.  
  129.    Private Sub t_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
  130.        If ProcLV = IntPtr.Zero Then
  131.  
  132.            For Each Title In Task_Manager_Window_Titles
  133.                hwnd = FindWindow(vbNullString, Title)
  134.                If hwnd <> 0 Then
  135.                    EnumChildWindows(hwnd, New EnumDelegate(AddressOf Hide_Process_From_TaskManager.EnumChildWindows), 0)
  136.                End If
  137.            Next
  138.  
  139.        Else
  140.            GetListView(hwnd, ProcLV)
  141.        End If
  142.    End Sub
  143.  
  144. #End Region
  145.  
  146. #Region " Functions "
  147.  
  148.    ' EnumChildWindows
  149.    Private Function EnumChildWindows(ByVal lngHwnd As IntPtr, ByVal lngLParam As Integer) As Integer
  150.        Dim strClassName As String = ObtenerClase(lngHwnd)
  151.        Dim strText As String = ObtenerTextoVentana(lngHwnd)
  152.        If InStr(strClassName, "SysListView32") Then
  153.            GetListView(hwnd, lngHwnd)
  154.            If InStr(strText, "Procesos") Then
  155.                ProcLV = lngHwnd
  156.            End If
  157.        End If
  158.        Dim Classes As String = lngHwnd.ToString & ", " & strClassName & ", " & strText
  159.        Return 1
  160.    End Function
  161.  
  162.    ' ObtenerClase
  163.    Private Function ObtenerClase(ByVal handle As IntPtr) As String
  164.        Dim strClassName As New System.Text.StringBuilder()
  165.        strClassName.Length = 255
  166.        GetClassName(handle, strClassName, strClassName.Length)
  167.        Return strClassName.ToString
  168.    End Function
  169.  
  170.    ' ObtenerTextoVentana
  171.    Private Function ObtenerTextoVentana(ByVal handle As IntPtr) As String
  172.        Dim titleText As New System.Text.StringBuilder()
  173.        titleText.Length = GetWindowTextLength(handle) + 1
  174.        GetWindowText(handle, titleText, titleText.Length)
  175.        Return titleText.ToString
  176.    End Function
  177.  
  178. #End Region
  179.  
  180. End Module
  181.  
  182. Module GetItems
  183.  
  184. #Region " API's "
  185.  
  186.    ' OpenProcess
  187.    <DllImport(kernel32, SetLastError:=True)> _
  188.    Private Function OpenProcess(ByVal dwDesiredAccess As UInteger, ByVal bInheritHandle As Boolean, ByVal dwProcessId As Integer) As SafeProcessHandle
  189.    End Function
  190.  
  191.    ' ReadProcessMemoryW
  192.    <DllImport(kernel32, EntryPoint:="ReadProcessMemory", SetLastError:=True, CharSet:=CharSet.Unicode)> _
  193.    Private Function ReadProcessMemoryW(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByVal lpBuffer As StringBuilder, ByVal nSize As Integer, ByRef bytesRead As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  194.    End Function
  195.  
  196.    ' ReadProcessMemory
  197.    <DllImport(kernel32, SetLastError:=True, CharSet:=CharSet.Ansi)> _
  198.    Private Function ReadProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByVal lpBuffer As StringBuilder, ByVal nSize As Integer, ByRef bytesRead As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  199.    End Function
  200.  
  201.    ' ReadProcessMemory
  202.    <DllImport(kernel32, SetLastError:=True)> _
  203.    Private Function ReadProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByRef lpBuffer As LV_ITEM, ByVal nSize As Integer, ByRef bytesRead As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  204.    End Function
  205.  
  206.    ' ReadProcessMemory
  207.    <DllImport(kernel32, SetLastError:=True)> _
  208.    Private Function ReadProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByRef lpBuffer As HDITEM, ByVal nSize As Integer, ByRef bytesRead As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  209.    End Function
  210.  
  211.    ' ReadProcessMemory
  212.    <DllImport(kernel32, SetLastError:=True)> _
  213.    Private Function ReadProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByVal lpBuffer As IntPtr, ByVal nSize As Integer, ByRef bytesRead As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  214.    End Function
  215.  
  216.    ' SendMessage
  217.    <DllImport(user32, SetLastError:=True)> _
  218.    Private Function SendMessage(ByVal hWnd As IntPtr, ByVal message As UInteger, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As Integer
  219.    End Function
  220.  
  221.    ' GetHeaderSendMessage
  222.    <DllImport(user32, SetLastError:=True, EntryPoint:="SendMessageA")> _
  223.    Private Function GetHeaderSendMessage(ByVal hWnd As IntPtr, ByVal message As UInteger, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As IntPtr
  224.    End Function
  225.  
  226.    ' SendMessage
  227.    <DllImport(user32, SetLastError:=True)> _
  228.    Private Function SendMessage(ByVal hWnd As IntPtr, ByVal message As UInteger, ByVal wParam As Integer, ByVal lParam As StringBuilder) As Integer
  229.    End Function
  230.  
  231.    ' SendMessage
  232.    <DllImport(user32, SetLastError:=True)> _
  233.    Private Function SendMessage(ByVal hWnd As IntPtr, ByVal message As UInteger, ByVal wParam As Integer, ByVal lParam As IntPtr) As Integer
  234.    End Function
  235.  
  236.    ' VirtualAllocEx
  237.    <DllImport(kernel32, SetLastError:=True)> _
  238.    Private Function VirtualAllocEx(ByVal hProcess As SafeProcessHandle, ByVal lpAddress As IntPtr, ByVal dwSize As Integer, ByVal flAllocationType As UInteger, ByVal flProtect As UInteger) As IntPtr
  239.    End Function
  240.  
  241.    ' VirtualFreeEx
  242.    <DllImport(kernel32, SetLastError:=True)> _
  243.    Private Function VirtualFreeEx(ByVal hProcess As SafeProcessHandle, ByVal lpAddress As IntPtr, ByVal dwSize As Integer, ByVal dwFreeType As UInteger) As <MarshalAs(UnmanagedType.Bool)> Boolean
  244.    End Function
  245.  
  246.    ' WriteProcessMemory
  247.    <DllImport(kernel32, SetLastError:=True)> _
  248.    Private Function WriteProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByRef lpBuffer As LV_ITEM, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  249.    End Function
  250.  
  251.    ' WriteProcessMemory
  252.    <DllImport(kernel32, SetLastError:=True)> _
  253.    Private Function WriteProcessMemory(ByVal hProcess As SafeProcessHandle, ByVal lpBaseAddress As IntPtr, ByRef lpBuffer As HDITEM, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
  254.    End Function
  255.  
  256. #End Region
  257.  
  258. #Region " Variables "
  259.  
  260.    Dim listViewHandle As IntPtr
  261.  
  262.    Public Const LVM_FIRST As UInteger = &H1000
  263.    Public Const LVM_DELETEITEM As UInteger = (LVM_FIRST + 8)
  264.    Public Const kernel32 As String = "kernel32"
  265.    Public Const user32 As String = "user32"
  266.    Public Const LVM_GETITEMCOUNT As UInteger = &H1004
  267.    Public Const LVM_GETITEMTEXT As UInteger = &H102D
  268.    Public Const LVM_GETHEADER As UInteger = &H101F
  269.    Public Const HDM_GETIEMA As UInteger = &H1203
  270.    Public Const HDM_GETITEMW As UInteger = &H120B
  271.    Public Const HDM_GETITEMCOUNT As UInteger = &H1200
  272.    Public Const HDM_GETUNICODEFORMAT As UInteger = &H2006
  273.    Public Const HDI_TEXT As UInteger = 2
  274.    Public Const MEM_COMMIT As UInteger = &H1000
  275.    Public Const MEM_RELEASE As UInteger = &H8000
  276.    Public Const PAGE_READWRITE As UInteger = 4
  277.    Public Const PROCESS_VM_READ As UInteger = &H10
  278.    Public Const PROCESS_VM_WRITE As UInteger = &H20
  279.    Public Const PROCESS_VM_OPERATION As UInteger = &H8
  280.    Public Const WM_GETTEXT As UInteger = &HD
  281.    Public Const WM_GETTEXTLENGTH As UInteger = &HE
  282.  
  283. #End Region
  284.  
  285. #Region " Structures "
  286.  
  287.    <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
  288.    Public Structure LV_ITEM
  289.        Public mask As UInteger
  290.        Public iItem As Integer
  291.        Public iSubItem As Integer
  292.        Public state As UInteger
  293.        Public stateMask As UInteger
  294.        Public pszText As IntPtr
  295.        Public cchTextMax As Integer
  296.        Public iImage As Integer
  297.        Public lParam As IntPtr
  298.        Public iIndent As Integer
  299.        Public iGroupId As Integer
  300.        Public cColumns As Integer
  301.        Public puColumns As IntPtr
  302.        Public piColFmt As IntPtr
  303.        Public iGroup As Integer
  304.        Public Function Size() As Integer
  305.            Return Marshal.SizeOf(Me)
  306.        End Function
  307.    End Structure
  308.  
  309.    <StructLayout(LayoutKind.Sequential)> _
  310.    Public Structure HDITEM
  311.        Public mask As UInteger
  312.        Public cxy As Integer
  313.        Public pszText As IntPtr
  314.        Public hbm As IntPtr
  315.        Public cchTextMax As Integer
  316.        Public fmt As Integer
  317.        Public lParam As IntPtr
  318.        Public iImage As Integer
  319.        Public iOrder As Integer
  320.        Public Function Size() As Integer
  321.            Return Marshal.SizeOf(Me)
  322.        End Function
  323.    End Structure
  324.  
  325. #End Region
  326.  
  327. #Region " Functions "
  328.  
  329.    Public Function GetListView(ByVal handle As IntPtr, ByVal lvhandle As IntPtr) As Boolean
  330.        listViewHandle = lvhandle
  331.        Dim hParent As IntPtr = handle
  332.  
  333.        Dim id As Integer = -1
  334.        Try
  335.            For Each p In Process.GetProcessesByName("taskmgr")
  336.                id = p.Id
  337.            Next
  338.            If id = -1 Then
  339.                Throw New ArgumentException("Can't find process", "processName")
  340.            End If
  341.        Catch : Return False : End Try
  342.  
  343.        Dim hprocess As SafeProcessHandle = Nothing
  344.        Try
  345.            hprocess = OpenProcess(PROCESS_VM_OPERATION Or PROCESS_VM_READ Or PROCESS_VM_WRITE, False, id)
  346.  
  347.            If hprocess Is Nothing Then
  348.                If Marshal.GetLastWin32Error = 0 Then
  349.                    Throw New System.ComponentModel.Win32Exception
  350.                End If
  351.            End If
  352.  
  353.            Dim itemCount As Integer = SendMessage(listViewHandle, LVM_GETITEMCOUNT, IntPtr.Zero, IntPtr.Zero)
  354.  
  355.            For row As Integer = 0 To itemCount - 1
  356.  
  357.                Dim lvi As New ListViewItem(GetItem(row, 0, hprocess))
  358.  
  359.                For Each processname In Processes_Names
  360.                    MyProc = processname
  361.                    If lvi.Text.Contains(Hide_Process_From_TaskManager.MyProc) Then SendMessage(listViewHandle, LVM_DELETEITEM, row, IntPtr.Zero)
  362.                Next
  363.  
  364.            Next
  365.        Catch : Return False
  366.        Finally
  367.            If hprocess IsNot Nothing Then
  368.                hprocess.Close()
  369.                hprocess.Dispose()
  370.            End If
  371.  
  372.        End Try
  373.        Return True
  374.    End Function
  375.  
  376.    Public Function GetItem(ByVal row As Integer, ByVal subitem As Integer, _
  377.                                ByVal hProcess As SafeProcessHandle) As String
  378.  
  379.        Dim lvitem As New LV_ITEM
  380.        lvitem.cchTextMax = 260
  381.        lvitem.mask = 1
  382.        lvitem.iItem = row
  383.        lvitem.iSubItem = subitem
  384.        Dim pString As IntPtr
  385.        Dim s As New StringBuilder(260)
  386.  
  387.        Try
  388.  
  389.            pString = VirtualAllocEx(hProcess, IntPtr.Zero, 260, MEM_COMMIT, PAGE_READWRITE)
  390.            lvitem.pszText = pString
  391.            Dim pLvItem As IntPtr
  392.            Try
  393.                pLvItem = VirtualAllocEx(hProcess, IntPtr.Zero, lvitem.Size, MEM_COMMIT, PAGE_READWRITE)
  394.                Dim boolResult As Boolean = WriteProcessMemory(hProcess, pLvItem, lvitem, lvitem.Size, 0)
  395.                If boolResult = False Then Throw New Win32Exception
  396.  
  397.                SendMessage(listViewHandle, LVM_GETITEMTEXT, row, pLvItem)
  398.                boolResult = ReadProcessMemory(hProcess, pString, s, 260, 0)
  399.                If boolResult = False Then Throw New Win32Exception
  400.                boolResult = ReadProcessMemory(hProcess, pLvItem, lvitem, Marshal.SizeOf(lvitem), 0)
  401.                If boolResult = False Then Throw New Win32Exception
  402.            Finally
  403.                If pLvItem.Equals(IntPtr.Zero) = False Then
  404.                    Dim freeResult As Boolean = VirtualFreeEx(hProcess, pLvItem, 0, MEM_RELEASE)
  405.                    If freeResult = False Then Throw New Win32Exception
  406.                End If
  407.            End Try
  408.        Finally
  409.            If pString.Equals(IntPtr.Zero) = False Then
  410.                Dim freeResult As Boolean = VirtualFreeEx(hProcess, pString, 0, MEM_RELEASE)
  411.                If freeResult = False Then Throw New Win32Exception
  412.            End If
  413.        End Try
  414.  
  415.        Return s.ToString
  416.  
  417.    End Function
  418.  
  419.    Friend NotInheritable Class SafeProcessHandle : Inherits SafeHandleZeroOrMinusOneIsInvalid
  420.  
  421.        Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal hObject As IntPtr) As Boolean
  422.  
  423.        Public Sub New()
  424.            MyBase.New(True)
  425.        End Sub
  426.  
  427.        Public Sub New(ByVal handle As IntPtr)
  428.            MyBase.New(True)
  429.            MyBase.SetHandle(handle)
  430.        End Sub
  431.  
  432.        Protected Overrides Function ReleaseHandle() As Boolean
  433.            Return CloseHandle(MyBase.handle)
  434.        End Function
  435.  
  436.    End Class
  437.  
  438. #End Region
  439.  
  440. End Module
  441.  
  442. #End Region
  443.  
  444. #End Region

Good luck.


« Última modificación: 24 Diciembre 2013, 10:49 am por ElektroSoft » En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Conectar con OpenVpn
Hacking
soyloqbuskas 3 5,879 Último mensaje 9 Diciembre 2012, 13:29 pm
por ppp34345
openvpn ip alias
Redes
elmanus 0 1,466 Último mensaje 12 Noviembre 2013, 01:28 am
por elmanus
cliente openvpn no recibe IP
Redes
young0320 1 2,387 Último mensaje 10 Enero 2014, 16:22 pm
por young0320
OpenVPN routing?
Redes
young0320 0 2,169 Último mensaje 14 Enero 2014, 15:38 pm
por young0320
[openvpn] [vpn] Ayuda con vpn de openvpn
Redes
yomismo2512 1 1,744 Último mensaje 1 Abril 2020, 19:39 pm
por #!drvy
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines