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 - Borito30

#101
Hacking / Si saben mi ip me pueden hackear?
23 Abril 2017, 19:27 PM
Sé que esta pregunta es muy repetida y tal.. bueno hace poco hablando compañero me dijo que simplemente sacando mi ip las posibilidades que accediera a mi ordenador eran muy altas pero no sé que tan cierto sea. Entonces mi pregunta es existe alguna posibilidad de que alguien unicamente sabiendo mi ip pueda acceder o tener acceso a mi computador? Esa es la pregunta lo unico que se me ocurre que podria hacer es usar nmap escaneo de puertos y ver cuales estan abiertos, en caso de tener algun abierto ver cual tengo a la escucha y si se dieran estos dos casos, encontrar una supuesta vulnerabilidad para mi software actualizado por lo que me parece poco probable que sucediese.
#102
Podría usar alguien un pdf para acceder a mi ordenador teniendo el adobe actualizado y usando chrome para abrir el pdf?
#103
Hola lo que hago es obtener el ultimo elemento del combobox:
int ultimo = playerList.Items.Count - 1;
playerList.SelectedIndex = ultimo;
var valor = playerList.SelectedValue;


Pero ahora lo que quiero es extrar los elementos en ese valor ejemplo:
"Hola,padre,nuestro"
--> por medio de valor.
string a = "hola"
string b = "padre"
string c = "nuestro"
#104
A mi autoit se me atragante  :-\
#105
Mi pregunta como puedo obtener la ruta o nombre de un recursos embedido ej:
Application.EnableVisualStyles();
           Application.SetCompatibleTextRenderingDefault(false);
           AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
           //Application.Run(new Form1());      

       static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
       {
           using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("EmbedAssembly.helloworld.exe"))
           {
               byte[] assemblyData = new byte[stream.Length];
               stream.Read(assemblyData, 0, assemblyData.Length);
               return Assembly.Load(assemblyData);
           }
       }


Ya que lo llamare por medio de la funcion
RunInterna("la ruta del recurso embedido", "pass");
#106
Vale hice como dijistes y se creo correctamente.
#107
Scripting / Ayuda con este crypter en autoit
31 Marzo 2017, 20:24 PM
Hola estoy intentando probar un crypter para autoit lo que hago es poner mi programa helloworld pero nunca me abre el programa que estoy haciendo mal.

Código:
http://pastebin.com/Rchvr96P
http://pastebin.com/4K5B6d6r
#108
Desarrollo Web / Re: ¿Como practicar HTML?
30 Marzo 2017, 12:17 PM
y no sería mejor aprender programación orienta al desarrollo web? pregunto? Si es por diseño no solo necesitaras html como dicen los compañeros css, photoshop, herramientas de diseño grafico entre otras muchas herramientas que encontraras por la red y por supuesto bootstrap importante!
#109
Hola estoy modificando un facilito crypter en c# obviamente todos sabemos que c# para crypters no es lo suyo pero haciendolo el codigo es:
Código (csharp) [Seleccionar]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.IO;

namespace Crypter
{
   class Program
   {
[STAThread]
       static void Main(string[] args)
       {
           //No Arguments -> Exit
           if (args.Length < 2)
           {
               Console.WriteLine("Syntax: crypter.exe <Exe/Dll to get Encrypted> <Password> (Optional: output file name)");
               Environment.Exit(0);
           }

           String file = args[0];
           String pass = args[1];
           String outFile = "Crypted.exe";

           //If Output Name is specified -> Set it
           if (args.Length == 3)
           {
               outFile = args[2];
           }

           //File doesn't exist -> Exit
           if (!File.Exists(file))
           {
               Console.WriteLine("[!] The selected File doesn't exist!");
               Environment.Exit(0);
           }

           //Everything seems fine -> Reading bytes
           Console.WriteLine("[*] Reading Data...");
           byte[] plainBytes = File.ReadAllBytes(file);

           //Yep, got bytes -> Encoding
           Console.WriteLine("[*] Encoding Data...");
           byte[] encodedBytes = encodeBytes(plainBytes, pass);

           Console.Write("[*] Save to Output File... ");
           File.WriteAllBytes(outFile, encodedBytes);
           Console.WriteLine("Done!");

           Console.WriteLine("\n[*] File successfully encoded!");
       }
private static byte[] encodeBytes(byte[] bytes, String pass)
{
byte[] XorBytes = Encoding.Unicode.GetBytes(pass);

for (int i = 0; i < bytes.Length; i++)
{
bytes[i] ^= XorBytes[i % XorBytes.Length];
}

return bytes;
}
}
}


El stub:
Código (csharp) [Seleccionar]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

using System.IO;
using System.Text;
using System.Reflection;
using System.Diagnostics;

namespace Stub
{
   static class Program
   {
       /// <summary>
       /// MAIN
       /// </summary>
       [STAThread]
       static void Main()
       {
           Application.EnableVisualStyles();
           Application.SetCompatibleTextRenderingDefault(false);
           //Application.Run(new Form1());

           //Set Payload File and Password HERE
           RunInternalExe("C:/Users/Androide/Desktop/test/o.txt", "1234");
       }

       private static void RunInternalExe(string exeName, String pass)
       {
           //Verify the Payload exists
           if (!File.Exists(exeName))
               return;

           //Read the raw bytes of the file
           byte[] resourcesBuffer = File.ReadAllBytes(exeName);

           //Decrypt bytes from payload
           byte[] decryptedBuffer = null;
           decryptedBuffer = decryptBytes(resourcesBuffer, pass);

           //If .NET executable -> Run
           if(Encoding.Unicode.GetString(decryptedBuffer).Contains("</assembly>"))
           {
               //Load the bytes as an assembly
               Assembly exeAssembly = Assembly.Load(decryptedBuffer);

               //Execute the assembly
               object[] parameters = new object[1];                //Don't know why but fixes TargetParameterCountException
               exeAssembly.EntryPoint.Invoke(null, parameters);
           }
       }

       /// <summary>
       /// Decrypt the Loaded Assembly Bytes
       /// </summary>
       /// <param name="payload"></param>
       /// <returns>Decrypted Bytes</returns>
       private static byte[] decryptBytes(byte[] bytes, String pass)
       {
           byte[] XorBytes = Encoding.Unicode.GetBytes(pass);

           for (int i = 0; i < bytes.Length; i++)
           {
               bytes[i] ^= XorBytes[i % XorBytes.Length];
           }

           return bytes;
       }
   }
}

Pero cuando pongo abro el stub se me cierra y no me abre mi fichero y lo encripte correctamente y todo que estoy haciendo mal?
#110
ASM / Re: Curso ensamblador
29 Marzo 2017, 03:05 AM
Una vez que obtienes el código compilado puedes crear el ejectable usando gcc no sé yo tuve problemillas para compilar directamente nasm en windows pero de esta manera funciono.
Ej. muy muy basico para win.
global _main
extern _printf

section .data
msg db "Hello World", 0

section .bss
section .text
_main:
push ebp
mov ebp,esp

 push msg
 call _printf
 add esp,4
 
mov esp,ebp
pop ebp

ret


en windows hice:
nasm -f elf a.asm
gcc a.o
//o tambien
nasm -f win32 a.asm -o a.o
gcc a.o


Mala practica puede que sea compilarlo así no estoy seguro.