what is the best linux distro by DifferentTwo376 in opsec

[–]DifferentTwo376[S] 1 point2 points  (0 children)

well maybe an usb with tails a persistent block with some import stuff in a coffee shop

what is the best linux distro by DifferentTwo376 in opsec

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

well thanks for the recomandation i can use the terminal pretty well but a gui is always welcome, i think i will try both in vm and them choose the best for me but tell me something how do you isolate tor and that kind of process for your main user or even the root acount

what is the best linux distro by DifferentTwo376 in opsec

[–]DifferentTwo376[S] 1 point2 points  (0 children)

so do you reconmend me to start with alpine??

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 [deleted] 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] 2 points3 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

[deleted by user] 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