Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


How rats make cross platform servers? filter_list
Author
Message
How rats make cross platform servers? #1
In The Name Of Allah
Al-Salam Alekum

how rats make cross platform servers?
I mean I heard while we make server it will work on all operation system, how this happen?

Wa Salam Alekum
(This post was last modified: 01-07-2017, 07:00 PM by Mr.Kurd.)
Die  But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
[Image: p_237m2jx1.png]
Click for Free VPN

Reply

RE: How rats make cross platform servers? #2
Tools (not necessarily RATs, but the same technique can be used) like the Mirai BotNet compile slaves for all CPU architectures (Servers are distributed separately), so it's technically cross-platform.

https://sinister.ly/Thread-Q-How-is-Mira...#pid734145
It's often the outcasts, the iconoclasts ... those who have the least to lose because they
don't have much in the first place, who feel the new currents and ride them the farthest.

Reply

RE: How rats make cross platform servers? #3
(01-07-2017, 06:58 PM)Mr.Kurd Wrote: In The Name Of Allah

You can't talk in the name of Allah!
You are being disrespectful to god and you will burn in Jahannam for this!
Allahu akbar!

Reply

RE: How rats make cross platform servers? #4
(01-07-2017, 07:59 PM)Pikami Wrote:
(01-07-2017, 06:58 PM)Mr.Kurd Wrote: In The Name Of Allah

You can't talk in the name of Allah!
You are being disrespectful to god and you will burn in Jahannam for this!
Allahu akbar!

Do you know what you saying?
It's Besmala
https://en.wikipedia.org/wiki/Basmala
and If you haven't information about my questions why you reply?
sorry bro, If I made you angry, forgive me Smile .
Die  But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
[Image: p_237m2jx1.png]
Click for Free VPN

Reply

RE: How rats make cross platform servers? #5
(01-07-2017, 07:26 PM)Inori Wrote: Tools (not necessarily RATs, but the same technique can be used) like the Mirai BotNet compile slaves for all CPU architectures (Servers are distributed separately), so it's technically cross-platform.

https://sinister.ly/Thread-Q-How-is-Mira...#pid734145
Thank you, I didn't understand all but it will help Smile .
Die  But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
[Image: p_237m2jx1.png]
Click for Free VPN

Reply

RE: How rats make cross platform servers? #6
(01-07-2017, 08:48 PM)Mr.Kurd Wrote: It's Besmala
That makes sense...

(01-07-2017, 08:48 PM)Mr.Kurd Wrote:
(01-07-2017, 07:26 PM)Inori Wrote: Tools (not necessarily RATs, but the same technique can be used) like the Mirai BotNet compile slaves for all CPU architectures (Servers are distributed separately), so it's technically cross-platform.

https://sinister.ly/Thread-Q-How-is-Mira...#pid734145
Thank you, I didn't understand all but it will help Smile .

What part didn't you understand?
The bot master compiles an individual binary for the platforms they want.
For example: let's say you have a botnet and your targets are Windows and Linux users, you write your RAT in C for example. Than you need to compile the RAT, but because you need it to work on 2 platforms you compile individual binaries for every platform you want to target.
So, you take your C code and compile it for the windows platform:
Code:
/opt/mingw32/bin/i686-w64-mingw32-gcc /pro/rat.c -o /pro/rat-w32.exe /opt/mingw64/bin/x86_64-w64-mingw32-gcc /pro/rat.c -o /pro/rat-w64.exe
Now you have "rat-w32.exe" for 32bit windows and "rat-w64.exe" for 64bit windows
Then you compile binaries for the Linux platform:
Code:
/bin/gcc -m32 /pro/rat.c -o /pro/rat-l32.o /bin/gcc -m64 /pro/rat.c -o /pro/rat-l64.o
Now you have 2 additional binaries for linux users.
You could take a step forward and compile for ARM, MIPS or anything else you want to target.
If you still don't get something, just ask.

[+] 2 users Like Pikami's post
Reply

RE: How rats make cross platform servers? #7
(01-07-2017, 09:12 PM)Pikami Wrote:
(01-07-2017, 08:48 PM)Mr.Kurd Wrote: It's Besmala
That makes sense...

(01-07-2017, 08:48 PM)Mr.Kurd Wrote:
(01-07-2017, 07:26 PM)Inori Wrote: Tools (not necessarily RATs, but the same technique can be used) like the Mirai BotNet compile slaves for all CPU architectures (Servers are distributed separately), so it's technically cross-platform.

https://sinister.ly/Thread-Q-How-is-Mira...#pid734145
Thank you, I didn't understand all but it will help Smile .

What part didn't you understand?
The bot master compiles an individual binary for the platforms they want.
For example: let's say you have a botnet and your targets are Windows and Linux users, you write your RAT in C for example. Than you need to compile the RAT, but because you need it to work on 2 platforms you compile individual binaries for every platform you want to target.
So, you take your C code and compile it for the windows platform:
Code:
/opt/mingw32/bin/i686-w64-mingw32-gcc /pro/rat.c -o /pro/rat-w32.exe /opt/mingw64/bin/x86_64-w64-mingw32-gcc /pro/rat.c -o /pro/rat-w64.exe
Now you have "rat-w32.exe" for 32bit windows and "rat-w64.exe" for 64bit windows
Then you compile binaries for the Linux platform:
Code:
/bin/gcc -m32 /pro/rat.c -o /pro/rat-l32.o /bin/gcc -m64 /pro/rat.c -o /pro/rat-l64.o
Now you have 2 additional binaries for linux users.
You could take a step forward and compile for ARM, MIPS or anything else you want to target.
If you still don't get something, just ask.

Really thank, my question was while we make a server directly will work on the operation systems?
If yes, how?
But you said while we make a server we will choose the operations target, it' means we have to make a server for each target Thank you.
I didn't understand you know what means Basmala?
Die  But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
[Image: p_237m2jx1.png]
Click for Free VPN

Reply

RE: How rats make cross platform servers? #8
Mr.Kurd Wrote:I didn't understand you know what means Basmala?
Thanks to wikipedia - Yes

Reply







Users browsing this thread: 1 Guest(s)