Jump to content

corcrash

Active Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by corcrash

  1. I thought that u could somehow patch the AV like any other program, make the patch start before the AV (probably get it RING 0 privileges), so ASM would be the right choice. But there is a problem i know with NOD32, if any program tries to change it detects the change and asks if u want to allow it. I don't know about other AV's, and nether do i know if it would check its own code if u change it before the start, but it might work.
  2. So if u don't have some lightweight idea, i would like some one else to post a challenge, cause i don't have an idea.
  3. Lols! Sorry but do u think this is for a small programing challenge? I mean the coding of this program could take months! I suggest someone else makes a challenge, this one is not realistic i u ask me! The challenges should be something u can make in (at most) 2-3 weeks, not something u could sell for 1000$!
  4. So, if no one wants to give us an answer, i would say this one is over. Post your challenge so we can go on.
  5. #include <stdio.h> #include <stdlib.h> #include <windows.h> #include <string.h> char image[255]; FILE *file; int main(int argc, char *argv[]) { HKEY hKey; strcpy(image, argv[1]); if((file = fopen(image, "r"))==NULL){ printf("The specified file doesn't exist!"); } else { if(RegOpenKeyEx(HKEY_CURRENT_USER, "Control Panel\\Desktop", 0, KEY_SET_VALUE, &hKey) != ERROR_SUCCESS){ printf("Couldn't open registry!"); } else { RegSetValueEx(hKey, "Wallpaper", 0, REG_SZ, (const unsigned char*)image, sizeof(image)); RegCloseKey(hKey); } } fclose(file); system("RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters"); printf("Check your background, it should be changed!"); system("PAUSE"); return 0; } There, this is the code, uncommented but if someone doesn't understand something feel free to ask. The program has only one bug, it crashes when no argument is given. So the usage goes like this, "nameofbin nameofimage", the image has to be a 24-bit BMP (don't ask why, its windows) u wanted the program compact so no place for conversion algorithms. I hope u can get it to work, if not ask and ill try to fix that. ^_^
  6. Yep! Good word m8! So should i post my code right now so we can finish this one and get Resixs idea going? :D
  7. Yeah it would be cool to have more languages, and would get us more participants for sure.
  8. Well if u have access to the file system, u could download pwd files, upload backdoors... And now just imagine what else...
  9. Ok! So, what 's the time limit for this one?! Then i think its no use to post screens of this one...
  10. Well, its one of the options. But it took me less than 30min to code this one so, if someone gets the code, he can alter it in no-time. So ether we post the bins and the code when the voting is over, or the one that sets the challenge takes the code and posts it for voting. ^_^
  11. Well if i post source, some one could use it for his code. How about we send u the source and u than post them when the time for submission is over?
  12. Ok, i 'm done with the coding. Should i upload the executable and put a link in here or is there any other procedure?
  13. I 'm in if u get this going! We had such a thread on another forum but its dead for long time now! I 'd like to get coding again! :D
  14. Well as it is atm there are only 2-3 of us. That could be enough for the start. What do u think?!
  15. I'm interested in getting this challenge up again, to! So if there are more ppl who would like to do it, I'm in for sure! :D
×
×
  • Create New...