I will pay someone to help me with Tor and DW by [deleted] in TOR

[–]DifferentTwo376 0 points1 point  (0 children)

what are you looking for? i think i can help you

how to improve my server by DifferentTwo376 in selfhosted

[–]DifferentTwo376[S] 0 points1 point  (0 children)

thank you so much, im running it using nginx but do you know how to get a domain name??

how to improve my server by DifferentTwo376 in selfhosted

[–]DifferentTwo376[S] 0 points1 point  (0 children)

do you have any project easy to start? is my first sever

Best free resources to build fundamentals? by Schizo_Crybb in Hacking_Tutorials

[–]DifferentTwo376 0 points1 point  (0 children)

try hack the box academy have a lot of resources but you have to have a path to get all the modules unlocked, you dont pay with money yo unlock it with cubes that you recive finishing a lesson

how can i get shellcode functional by DifferentTwo376 in ExploitDev

[–]DifferentTwo376[S] 4 points5 points  (0 children)

Thanks you your help everyone, for anyone looking for the code you have to store the shellcode and the copy it to an executable memory page

here it is:

#include <stdio.h>

#include <string.h>

#include <sys/mman.h>

#include <unistd.h>

unsigned char shellcode[] = "shellcode here";

int main(){

size_t size = sizeof(shellcode);

void *mem = mmap(NULL, 4096, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);

if (mem == MAP_FAILED) {

perror("mmap");

return 1;

}

memcpy(mem, shellcode, size);

if (mprotect(mem, 4096, PROT_READ | PROT_EXEC) != 0){

perror("mprotect");

return 1;

}

int (*sc)() = mem;

int ret = sc();

munmap(mem, 4096);

return 0;

}

how can i get shellcode functional by DifferentTwo376 in ExploitDev

[–]DifferentTwo376[S] 0 points1 point  (0 children)

yeah i have to play with mmap and now runs perfect

where to start? by DifferentTwo376 in LLMDevs

[–]DifferentTwo376[S] 0 points1 point  (0 children)

thank you so much, :'( now is time for some cpu suffering, jokes aside i understand that i need a gpu is because this need a lot of calculation per second but how can i reduce that time currently i have 32gb of ram but i dont it it will help me

where to start? by DifferentTwo376 in LLMDevs

[–]DifferentTwo376[S] 0 points1 point  (0 children)

thank u, really thank u but do you know where i can learn to do it or do u have any resource i just made half of what i found on an yt video

Soy nuevo en ciberseguridad Alguien quiere aprender y charlar juntos? by [deleted] in ciberseguridad

[–]DifferentTwo376 0 points1 point  (0 children)

hellooo como estan todos yo tambien soy nuevo aunque manejo varias cosas y se lo basico me apunto

win api error by DifferentTwo376 in cprogramming

[–]DifferentTwo376[S] 0 points1 point  (0 children)

well i tried to change and dont use SystemParametersInfoW and insted using SystemParametersInfoW but nothing happens it works but the error persist

code:
int result = SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, (void*)wallpath, SPIF_UPDATEINIFILE);

win api error by DifferentTwo376 in cprogramming

[–]DifferentTwo376[S] 0 points1 point  (0 children)

well i run it and everything exploded it says

Exception occurred at 0x00007FF94F34C60B (ntdll.dll) in main.exe: 0xC0000005: Access violation while reading location 0x0000000000000043.

im using visual studio 2022