#d

JJF Hackers Team Journal 8

eZine's profile picture
Published in 
 · 3 days ago
... 8Npvha1kuqJAEYEGBECAAYFAjZqHkEACgkQ6HNIQtTz HzuP3gCfbzDnGPm9X2F4XOkV1lU0BZsiuYwAoKdHNilOKmpnKPmz2ApogjMfM1sc =HQVG -----END PGP PUBLIC KEY BLOCK----- #dISTRIBUIDORES OFICIALES DEL E-ZINE : - http://members.xoom.com/zine_store/ - http://travel.to/silence - http://hello.to/hacker_novatos - http://www.geocities.com/Colosseum/Sideline/9497/index2.html #MIEMBRO OFICIAL (web ring) DE : - Black Angels - Spanish Underground Web Ring #COLABORADORES CON ESTE NUMERO : - Estado+Porcino (WKT) - PoSiDoN - Skorpion (DarkMoon) - ToMaCHeLi - Perro Bombardero - Seth (TRAX) - Zhodiac #SALUDOS : - Met ...

JJF Hackers Team Journal 7

eZine's profile picture
Published in 
 · 3 days ago
... 8Npvha1kuqJAEYEGBECAAYFAjZqHkEACgkQ6HNIQtTz HzuP3gCfbzDnGPm9X2F4XOkV1lU0BZsiuYwAoKdHNilOKmpnKPmz2ApogjMfM1sc =HQVG -----END PGP PUBLIC KEY BLOCK----- #dISTRIBUIDORES OFICIALES DEL E-ZINE : - http://wakanda.islatortuga.com - http://underhack.islatortuga.com - http://personal.redestb.es/cheroky-1 - http://members.xoom.com/baron_rojo/ - http://members.xoom.com/rifoxxx - http://www.bigfoot.com/~u_taker - http://phucksys.dyn.ml.org - http://www.bigfoot.com/~proyecto_r - http://members.xoom.com/zine_store/ - http://visitweb.com/disciple ...

JJF Hackers Team Journal 6

eZine's profile picture
Published in 
 · 3 days ago
... DuUDxoq4x9j/yDJQvhBwzPw53uwNWLs6+iI31jk NCyv9h37hSfRTsRLq8hiQ3jqNWQO/i+O+c5RVr5gkSHdZF0lCvWI5NoSFnk0 =Wu00 -----END PGP PUBLIC KEY BLOCK----- #dISTRIBUIDORES OFICIALES DEL E-ZINE : - http://wakanda.islatortuga.com - http://underhack.islatortuga.com - http://www.redestb.es/~cheroky-1 - http://members.xoom.com/baron_rojo/ - http://members.xoom.com/rifoxxx - http://www.geocities.com/Colosseum/Sideline/9497/ #MIEMBRO OFICIAL (web ring) DE : - Black Angels - Spanish Underground Web Ring #COLABORADORES CON ESTE NUMERO : - LeTaL - CORE SDI S.A. - \Wend|g0 - ZeD (Ha ...

JJF Hackers Team Journal 5

eZine's profile picture
Published in 
 · 3 days ago
... DuUDxoq4x9j/yDJQvhBwzPw53uwNWLs6+iI31jk NCyv9h37hSfRTsRLq8hiQ3jqNWQO/i+O+c5RVr5gkSHdZF0lCvWI5NoSFnk0 =Wu00 -----END PGP PUBLIC KEY BLOCK----- #dISTRIBUIDORES OFICIALES DEL E-ZINE : - http://wakanda.islatortuga.com - http://underhack.islatortuga.com - http://teleline.es/persona/dep_blue - http://members.xoom.com/baron_rojo/ - http://oioio.dyn.ml.org #MIEMBRO OFICIAL (web ring) DE : - Black Angels - Spanish Underground Web Ring #COLABORADORES CON ESTE NUMERO : - CubikIce - Nobody - Estado Porcino (WKT) #SALUDOS : - Metalslug (Wakanda) - Schoddy Guy (Underhack) - Cheroky - Silicon Dra ...

JJF Hackers Team Journal 3

eZine's profile picture
Published in 
 · 3 days ago
... ;www.angelfire.com/mi/JJFHackers - http://jjfhackers.home.ml.org #E-MAIL OFICIAL : - jjf_team@usa.net <=============== NUEVO !!!!! #dISTRIBUIDORES OFICIALES DEL E-ZINE: - http://wakanda.islatortuga.com - http://underhack.islatortuga.com #COLABORADORES CON ESTE NUMERO : - Koji - Nobody - Cesar - Bisho - Enif (Oioio) - Daemon #SALUDOS: - Metalslug (Wakanda) - Schoddy Guy (Underhack) <----------------------------------------------------------------------------> <----------------------------------------------------------------------------> <----------------------------------------------------------- ...

JJF Hackers Team Journal 1

eZine's profile picture
Published in 
 · 3 days ago
... guiente ejemplo lv_size es el tama¤o de la variable local que queremos desbordar y buffer es el nombre del campo de datos (que tambien es local). ej. #define lv_size=1024 char buffer[lv_size+8] A¤adimos exactamente 8 bytes, mira mas detenidamente la pila de arriba y sabras por que. Si queremos sobreescribir la direccion de retorno tenemos que sobreescribir 4 bytes el puntero base y 4 bytes la direccion de retorno. El campo de datos buffer deberia aparecer asi: ... <nop> <nop> <nop> <nop> <nop> <codigo que ejecuta una shell> Analiza este codigo en c para aprender como podemos hacer esto, lv_size es una abrevia ...

Phrack Inc. Volume 16 Issue 71 File 03

eZine's profile picture
Published in 
 · 6 days ago
... set of #ifdef, making different (randomly picked) parts of the source to be included in the build process. The compiler allowed me to set appropriate #define before I start the compilation, but when it comes to the randomization of code, it can be done with pure preprocessor directives as well [2] if anyone prefers it. Of course, randomized parts cannot change the application behavior and their execution should not matter. After analyzing different functions to be randomly imported I found SNMP and Bcrypt DLLs most convenient. Both look suspicious enough to dig deeper but when called in a right way they do nothing except returning an error I ca ...

Phrack Inc. Volume 16 Issue 70 File 11

eZine's profile picture
Published in 
 · 6 days ago
... ST_INSERT_HEAD(&change_head, mevp, me_list); . . . } struct mevent { void (*me_func)(int, enum ev_type, void *); . . . LIST_ENTRY(mevent) me_list; }; #define LIST_ENTRY(type) \ struct { \ struct type *le_next; /* next element */ \ struct type **le_prev; /* address of previous next element */ \ } Similarly, writing a value 0xa1 (BHYVE_ACPI_DISABLE) will trigger a call to mevent_delete() in mevent.c. mevent_delete() unlinks the event from the list using LIST_REMOVE() and marks it for deletion by mevent thread: static int mevent_delete_event(struct mevent *evp, int closefd) { . . . LIST_REMOVE(evp, me_list); . . . } #define LIST_NE ...

Phrack Inc. Volume 16 Issue 70 File 10

eZine's profile picture
Published in 
 · 6 days ago
... ; initialize EL1 required register values ldr x0, =AARCH64_TCR_EL1_BOOT_VAL msr tcr_el1, x0 ldr x0, =AARCH64_SCTLR_EL1_BOOT_VAL msr sctlr_el1, x0 ... #define AARCH64_TCR_EL1_BOOT_VAL ( \ ( AARCH64_TCR_IPS_1TB << AARCH64_TCR_EL1_IPS_SHIFT ) | \ ( AARCH64_TCR_TG1_4KB << AARCH64_TCR_EL1_TG1_SHIFT ) | \ ( AARCH64_TCR_TSZ_512G << AARCH64_TCR_EL1_T1SZ_SHIFT ) | \ ( AARCH64_TCR_TG0_4KB << AARCH64_TCR_EL1_TG0_SHIFT ) | \ ( AARCH64_TCR_TSZ_512G << AARCH64_TCR_EL1_T0SZ_SHIFT ) | \ ... ) As Translation Control Register (TCR_EL1) values suggest, we use a 40-bit 1TB sized Intermediate Physical Address space (TCR_EL1.I ...

1.6: Using the CD-ROM

PS_2's profile picture
Published in 
 · 1 week ago
1.6: Using the CD-ROM
... ; // GTE header, not really used but libgpu.h depends on it #include <psxgpu.h> // GPU library header #include <psxapi.h> #define OTLEN 8 // Ordering table length (recommended to set as a define // so it can be changed easily) DISPENV disp[2]; // Display/drawing buffer parameters DRAWENV draw[2]; int db = 0; // PSn00bSDK requires having all u_long types replaced with // u_int, as u_long in modern GCC that PSn00bSDK uses defines it as a 64-bit integer. u_int ot[2][OTLEN]; // Ordering table length char pribuff[2][32768]; // Primitive buffer char *nextpri; / ...
loading
Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT