mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #620] Java based client #376
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#376
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Powershell-coder on GitHub (Oct 4, 2017).
Original GitHub issue: https://github.com/quasar/Quasar/issues/620
Hi
I wanna write a java based client for Quasar Server.
Is there available some where ?
What is authentication process for client ?
@MaxXor commented on GitHub (Oct 9, 2017):
You need to consider a few things to build your own client:
The outer layer of a packet which is sent over the wire looks like this:
github.com/quasar/QuasarRAT@15b01116bf/Client/Core/Cryptography/AES.cs (L47-L52)Once decrypted you need to decompress it with QuickLZ and the last step is deserialization which could be a little tricky as Quasar is using a non-standardized .NET library called NetSerializer.
When u got all this done, you are ready to build your own packets. Some basic authentication packet looks like this: https://github.com/quasar/QuasarRAT/blob/master/Client/Core/Packets/ClientPackets/GetAuthenticationResponse.cs
FYI: UbbeLol coded a client in C++
Maybe it can help you to get an overview about the basic functionality needed.
@Powershell-coder commented on GitHub (Oct 10, 2017):
Thanks