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

 

 


Tema destacado: Tutorial básico de Quickjs


  Mostrar Mensajes
Páginas: [1] 2 3 4 5 6 7 8 9 10
1  Programación / .NET (C#, VB.NET, ASP) / Duda en SQL Server en: 5 Agosto 2015, 19:31 pm
Bueno, no se si postear esto en bases de datos o aquí.

Tengo una aplicación en C# que utiliza SQL Server Management. Como hago para importar esa base de datos a otra PC?? O tengo que instalar SQL Server Management en la PC en la que lo quiero usar y crear la base de datos nuevamente?

Saludos
2  Programación / Ingeniería Inversa / Re: [Reto] Go Crack II en: 2 Julio 2015, 03:27 am
Seguramente el autor del crackme habra diseñado otro serial? o no? ese fue el primero que encontre.

Tiene mas seriales :P
3  Programación / Ingeniería Inversa / Re: [Reto] Go Crack II en: 1 Julio 2015, 19:11 pm
Por Resolver tu crackme . Me eh perdido la repeticion de los Goles de Argentina!!!



Serial Contiene Caracteres Invisibles

Serial: "||||||||||   " Eliminar las comillas

https://mega.co.nz/#!74FjxLQR!mTuCFuQ7QP0bMkH50lq7IKVHtQKGkbNr3cO6oN7h2mI

Thanks

Si te perdiste la repetición, estuviste bastante (?)
4  Programación / Ingeniería Inversa / Re: [Reto] Go Crack II en: 1 Julio 2015, 15:57 pm
https://mega.co.nz/#!shU0GAhZ!U6lBDyGYTCk0sdPTpOR584zETWubyIZZ7kmIZayHe68

Prueben con este jaja, mediafire me vuelve loco para subir estas cosas.
5  Programación / Ingeniería Inversa / [Reto] Go Crack II en: 1 Julio 2015, 06:22 am
Volví, les dejo este nuevo Crack Me (espero haber perfeccionado un poco en lo que es proteger aplicaciones .NET).

Download:

http://www.mediafire.com/download/a2hfsxhef6ssy84/Go+Crack+-+II.rar

Suerte!
6  Programación / Ingeniería Inversa / Re: Evitar ver código de .net en: 15 Junio 2015, 22:06 pm
Lo traté de usar, pero aún sigo pudiendo ver el codigo fuente del programa con ILSpy. Cabe aclarar que es solo un .exe, no uso .dlls ni nada por el estilo.
7  Programación / Ingeniería Inversa / Re: Evitar ver código de .net en: 15 Junio 2015, 16:00 pm
Me podrías pasar un ofuscador gratuito? No se la diferencia entre packer y ofuscador jaja

Yo busco esto debido a que en mi programa uso conexiones MySQL, y con el ILSpy pueden ver la pw de la base de datos y así acceder a ella
8  Programación / Ingeniería Inversa / Evitar ver código de .net en: 15 Junio 2015, 04:17 am
Hola, estaría necesitando saber como evitar que programas me lean el código de un programa en C#. Tengo entendido que se hace con themida, pero no encuentro una versión full (si alguien me la facilita estaría muy agradecido).

Si me recomiendan otro programa mejor, se los agradecería.
9  Programación / Programación C/C++ / Problema con Pilas en: 5 Junio 2015, 19:50 pm
Bueno, estoy haciendo un ejercicio para la facultad con pilas y secuencias (archivos de texto). El problema es que al pasar la pila a las funcionas para manejarla, me tira el siguiente error:

warning: passing argument 1 of 'pVacia' from incompatible pointer type [enabled by default]|
note: expected 'struct TPila *' but argument is of type 'struct TPila **'|
warning: passing argument 1 of 'pSacar' from incompatible pointer type [enabled by default]|
note: expected 'struct TPila *' but argument is of type 'struct TPila **'|
warning: passing argument 2 of 'pSacar' from incompatible pointer type [enabled by default]|
note: expected 'char *' but argument is of type 'char **'|
warning: passing argument 1 of 'pVacia' from incompatible pointer type [enabled by default]|
note: expected 'struct TPila *' but argument is of type 'struct TPila **'|
warning: passing argument 1 of 'sacarPila' from incompatible pointer type [enabled by default]|
note: expected 'char *' but argument is of type 'char **'|
warning: passing argument 3 of 'sacarPila' from incompatible pointer type [enabled by default]|
note: expected 'struct TPila *' but argument is of type 'struct TPila **'|
warning: passing argument 1 of 'pPoner' from incompatible pointer type [enabled by default]|
note: expected 'struct TPila *' but argument is of type 'struct TPila **'|
warning: passing argument 2 of 'pPoner' makes integer from pointer without a cast [enabled by default]|

Acá dejo el code y el header:

Código
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "Pila.h"
  4.  
  5. #define MAX 50
  6.  
  7. void sacarPila(char *c, int n, TPila *p)
  8. {
  9.    int i = 0;
  10.  
  11.    while(!pVacia(&p) && i <= n)
  12.    {
  13.        pSacar(&p, &c);
  14.        i += 1;
  15.    }
  16.  
  17.    if(pVacia(&p))
  18.    {
  19.        printf("La pila esta vacia\n");
  20.    }
  21. }
  22.  
  23. void esDigito(char *c, TPila *p)
  24. {
  25.    int i = 10;
  26.  
  27.    switch(*c)
  28.    {
  29.        case '0': i = 0;
  30.        case '1': i = 1;
  31.        case '2': i = 2;
  32.        case '3': i = 3;
  33.        case '4': i = 4;
  34.        case '5': i = 5;
  35.        case '6': i = 6;
  36.        case '7': i = 7;
  37.        case '8': i = 8;
  38.        case '9': i = 9;
  39.    }
  40.  
  41.    if( i != 10)
  42.    {
  43.        sacarPila(&c, i, &p);
  44.    }
  45.    else
  46.    {
  47.        pPoner(&p, c);
  48.    }
  49. }
  50.  
  51. void vaciarPila(TPila *p)
  52. {
  53.    int i = 0;
  54.  
  55.    for(i=0; i<MAX; i++)
  56.    {
  57.        (*p).elem[i] = 0;
  58.    }
  59. }
  60.  
  61. int main()
  62. {
  63.    char c;
  64.    TPila p;
  65.    FILE *arch;
  66.    arch = fopen("secuencia.txt", "r");
  67.  
  68.    vaciarPila(&p);
  69.    if ( arch == NULL )
  70.   {
  71.   printf("- No se puede abrir el Archivo\n");
  72. return 0;
  73. }
  74.  
  75.    while((feof(arch) == 0) && !pLlena(&p))
  76.    {
  77.        c = fgetc(arch);
  78.        esDigito(&c, &p);
  79.    }
  80.  
  81.    while(!pLlena(&p))
  82.    {
  83.        pSacar(&p, &c);
  84.        printf("%c", c);
  85.    }
  86.    return 0;
  87. }

Código
  1. #include <stdlib.h>
  2. #include <stdbool.h>
  3.  
  4. #define MAX 50
  5.  
  6. typedef struct Pila
  7. {
  8.    int elem[MAX];
  9.    int cima;
  10. }TPila;
  11.  
  12. bool pVacia(TPila *p)
  13. {
  14.    return (*p).cima == 0;
  15. }
  16.  
  17. bool pLlena(TPila *p)
  18. {
  19.    return (*p).cima == MAX;
  20. }
  21.  
  22. void pCrear(TPila *p)
  23. {
  24.    (*p).cima = 0;
  25. }
  26.  
  27. void pPoner(TPila *p, char x)
  28. {
  29.    (*p).cima = (*p).cima + 1;
  30.    (*p).elem[(*p).cima] = x;
  31. }
  32.  
  33. void pSacar(TPila *p, char *c)
  34. {
  35.    *c = (*p).elem[(*p).cima];
  36.    (*p).cima = (*p).cima + 1;
  37. }
10  Programación / .NET (C#, VB.NET, ASP) / Re: [C# 4.0][Databases] Duda con las Bases de Datos en: 3 Junio 2015, 17:10 pm
Claro que se puede. Obviamente si quieres usar la misma aplicación en varias PCS, lo podes hacer con MySQL (El cual podes usar la misma base de datos en todas las apps que quieras).
Páginas: [1] 2 3 4 5 6 7 8 9 10
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines