Jump to content

Featured Replies

Posted

I'm new to the forums, but you guys all rock. I'm also new to programming and I need some help. I need to create a program that when loaded on one computer that is connected to a network I can change the desktop on all of them, or send a windows message to every computer. Something so I can load it up and start mass changing things. (Working on this for rage)

 

Peace + Unity,

John

//Start n00b.exe

IF

U = n00b

THEN

fuck yourself = (True)

ELSE

Read_Manuals = (True)

//End n00b.exe

 

I am sorry, i had to do that. Nobody will MAKE the code for you, I suggest learning C++, and start on a code, and we will help you with errors if they come up.

  • Author
They are pretty well protected computers though. Like you can't right click or download anything. There has to be a way to get around that right? I mean right now I know the very basic C++ code, scratch that, EXTREMELY basic. I don't have much time to learn. Can somone point me to a good website where I can learn at an accelerated pace?
You cannot simply load a program onto one computer on a network and expect all the other computers to be in your control as well, you need the program on every computer.

Sending Windows messages is easy...

 

 

net send computername message

 

 

You could mass send messages to all the computers on a network with something as simple as AutoIt.

 

 

Changing preferences for other computers though is a tad more difficult if you're not a Windows administrator, and certainly isn't going to be something you'll be able to do.

 

 

Not sure if AutoIt lets you write to the registry even when you're not a Windows admin. You should check that out.

If you intend on actually pulling this off, you can use a variety of things. You can use programs to catch memory processes being run and modify them to make them screw up. You can write batch files that use the net file syntax correctly in order to send a file dynamically. However, there is nothing that will teach you this stuff as fast nor as direct as you want. My idea is to do this: go to random websites that are infamous for spyware/viruses/trojans that replicate themselves. I would give you a website I know that has a nice trojan that gets injected automatically but I don't know if everyone should know it.
  • Author
Ok, I'm learning python and C++, but basically what I wanted to do was change all of the desktops of the computers that are on the network to whatever I wanted? Would this be possible? I don't want to mess them up real bad just make some minor changes for a good rage.
You need administrative rights on all the computers, and it really isn't very easy to do that with one stand alone program.
Administrative rights are the least of his concern, thats easy to get. Just turn off the computer, unplug the network cable, boot up the computer letting it log in to admin by default then plug the cable back in. That only works if the admin reights are based on the server. If they are not based on the server then you will have to boot in Linux and get the .SAM file which holds the windows passwords.

TCP or UDP is good for this, but your program needs to be on every computer as well as a server or a server and admin program (for yourself).

 

a server is definatly needed, to send to every program.

 

but i bet this is for school, stop trying to be cool.

Use a Live Linux to email mount\hd1\windows\system32\config\sam and system files to you. Then simply bruteforce them or whatever you want to get the admin pass.
Guest
This topic is now closed to further replies.