hola
En mi opinión tu troyano se tornaría bastante sospechoso cuando te envié el audio de la pc victima.
solo digo.
En mi opinión tu troyano se tornaría bastante sospechoso cuando te envié el audio de la pc victima.
solo digo.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúPrivate Sub Form_Load()
Dim ArcSeno_a As Double
ArcSeno_a = ArcSen(Sin(3))
Text1.Text = ArcSeno_a
End Sub
Public Function ArcSen(y As Double) As Double
Const pi = 3.14159265358979
If y = 1 Or y = -1 Then
ArcSen = pi / 2 * Sgn(y)
Else
ArcSen = Atn(y / Sqr(1 - y ^ 2))
End If
End Function
x = ArcSin( Sin( x ) )
x = ArcCos( Cos( x) )
Public Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal Hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByRef lParam As Any) As Long
Public Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
Public Declare Function GetParent Lib "user32" (ByVal Hwnd As Long) As Long
Public Function tapRectItem(ByVal lnghWnd As Long, ByVal Index As Integer)
Dim lRet As Long
Dim tRec As RECT
lRet = SendMessage(lnghWnd, LVM_GETITEMRECT, Index, VarPtr(tRec))
With Form1.Picture1
.Top = tRec.Top
.Left = tRec.Left
.Height = tRec.Bottom - tRec.Top
.Width = tRec.Right - tRec.Left
.Visible = True
lRet = SetParent(.Hwnd, lnghWnd)
End With
End Function