├── Client ├── Client.csproj ├── Config │ └── Settings.cs ├── Core │ ├── Client.cs │ ├── Commands │ │ └── CommandHandler.cs │ ├── Compression │ │ ├── JpgCompression.cs │ │ └── SafeQuickLZ.cs │ ├── Elevation │ │ ├── CommandButton.cs │ │ ├── FrmElevation.Designer.cs │ │ ├── FrmElevation.cs │ │ └── FrmElevation.resx │ ├── Encryption │ │ ├── AES.cs │ │ └── SHA256.cs │ ├── Extensions │ │ └── SocketExtensions.cs │ ├── Helper │ │ ├── FileSplit.cs │ │ ├── Helper.cs │ │ └── UnsafeStreamCodec.cs │ ├── Information │ │ ├── GeoIP.cs │ │ └── OSInfo.cs │ ├── Packets │ │ ├── ClientPackets │ │ │ ├── DesktopResponse.cs │ │ │ ├── DirectoryResponse.cs │ │ │ ├── DownloadFileResponse.cs │ │ │ ├── DrivesResponse.cs │ │ │ ├── GetProcessesResponse.cs │ │ │ ├── GetStartupItemsResponse.cs │ │ │ ├── GetSystemInfoResponse.cs │ │ │ ├── Initialize.cs │ │ │ ├── MonitorsResponse.cs │ │ │ ├── ShellCommandResponse.cs │ │ │ ├── Status.cs │ │ │ └── UserStatus.cs │ │ ├── IPacket.cs │ │ ├── ServerPackets │ │ │ ├── Action.cs │ │ │ ├── AddStartupItem.cs │ │ │ ├── Delete.cs │ │ │ ├── Desktop.cs │ │ │ ├── Directory.cs │ │ │ ├── Disconnect.cs │ │ │ ├── DownloadAndExecute.cs │ │ │ ├── DownloadFile.cs │ │ │ ├── DownloadFileCanceled.cs │ │ │ ├── Drives.cs │ │ │ ├── GetProcesses.cs │ │ │ ├── GetStartupItems.cs │ │ │ ├── GetSystemInfo.cs │ │ │ ├── InitializeCommand.cs │ │ │ ├── KillProcess.cs │ │ │ ├── Monitors.cs │ │ │ ├── MouseClick.cs │ │ │ ├── Reconnect.cs │ │ │ ├── Rename.cs │ │ │ ├── ShellCommand.cs │ │ │ ├── ShowMessageBox.cs │ │ │ ├── StartProcess.cs │ │ │ ├── Uninstall.cs │ │ │ ├── Update.cs │ │ │ ├── UploadAndExecute.cs │ │ │ └── VisitWebsite.cs │ │ └── UnknownPacket.cs │ ├── ProtoBuf │ │ ├── BclHelpers.cs │ │ ├── BufferExtension.cs │ │ ├── BufferPool.cs │ │ ├── CallbackAttributes.cs │ │ ├── DataFormat.cs │ │ ├── Extensible.cs │ │ ├── ExtensibleUtil.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Helpers.cs │ │ ├── IExtensible.cs │ │ ├── IExtension.cs │ │ ├── ImplicitFields.cs │ │ ├── KeyValuePairProxy.cs │ │ ├── Meta │ │ │ ├── AttributeMap.cs │ │ │ ├── BasicList.cs │ │ │ ├── CallbackSet.cs │ │ │ ├── MetaType.cs │ │ │ ├── RuntimeTypeModel.cs │ │ │ ├── SubType.cs │ │ │ ├── TypeFormatEventArgs.cs │ │ │ ├── TypeModel.cs │ │ │ └── ValueMember.cs │ │ ├── NetObjectCache.cs │ │ ├── PrefixStyle.cs │ │ ├── ProtoContractAttribute.cs │ │ ├── ProtoConverterAttribute.cs │ │ ├── ProtoEnumAttribute.cs │ │ ├── ProtoException.cs │ │ ├── ProtoIgnoreAttribute.cs │ │ ├── ProtoIncludeAttribute.cs │ │ ├── ProtoMemberAttribute.cs │ │ ├── ProtoReader.cs │ │ ├── ProtoWriter.cs │ │ ├── SerializationContext.cs │ │ ├── Serializer.cs │ │ ├── Serializers │ │ │ ├── ArrayDecorator.cs │ │ │ ├── BlobSerializer.cs │ │ │ ├── BooleanSerializer.cs │ │ │ ├── ByteSerializer.cs │ │ │ ├── CharSerializer.cs │ │ │ ├── CompiledSerializer.cs │ │ │ ├── DateTimeSerializer.cs │ │ │ ├── DecimalSerializer.cs │ │ │ ├── DefaultValueDecorator.cs │ │ │ ├── DoubleSerializer.cs │ │ │ ├── EnumSerializer.cs │ │ │ ├── FieldDecorator.cs │ │ │ ├── GuidSerializer.cs │ │ │ ├── IProtoSerializer.cs │ │ │ ├── IProtoTypeSerializer.cs │ │ │ ├── ISerializerProxy.cs │ │ │ ├── ImmutableCollectionDecorator.cs │ │ │ ├── Int16Serializer.cs │ │ │ ├── Int32Serializer.cs │ │ │ ├── Int64Serializer.cs │ │ │ ├── KeyValuePairDecorator.cs │ │ │ ├── ListDecorator.cs │ │ │ ├── MemberSpecifiedDecorator.cs │ │ │ ├── NetObjectSerializer.cs │ │ │ ├── NullDecorator.cs │ │ │ ├── ParseableSerializer.cs │ │ │ ├── PropertyDecorator.cs │ │ │ ├── ProtoDecoratorBase.cs │ │ │ ├── SByteSerializer.cs │ │ │ ├── SingleSerializer.cs │ │ │ ├── StringSerializer.cs │ │ │ ├── SubItemSerializer.cs │ │ │ ├── SurrogateSerializer.cs │ │ │ ├── SystemTypeSerializer.cs │ │ │ ├── TagDecorator.cs │ │ │ ├── TimeSpanSerializer.cs │ │ │ ├── TupleSerializer.cs │ │ │ ├── TypeSerializer.cs │ │ │ ├── UInt16Serializer.cs │ │ │ ├── UInt32Serializer.cs │ │ │ ├── UInt64Serializer.cs │ │ │ └── UriDecorator.cs │ │ ├── ServiceModel │ │ │ ├── ProtoBehaviorAttribute.cs │ │ │ ├── ProtoBehaviorExtensionElement.cs │ │ │ ├── ProtoEndpointBehavior.cs │ │ │ ├── ProtoOperationBehavior.cs │ │ │ └── XmlProtoSerializer.cs │ │ ├── SubItemToken.cs │ │ └── WireType.cs │ ├── RemoteShell │ │ └── Shell.cs │ └── SystemCore.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── images │ └── information.png └── obj │ └── x86 │ └── Debug │ ├── Client.csproj.FileListAbsolute.txt │ ├── xClient.Core.Elevation.FrmElevation.resources │ └── xClient.Properties.Resources.resources ├── README.md ├── Server ├── Controls │ ├── ListViewEx.cs │ └── MainMenuEx.cs ├── Core │ ├── Build │ │ ├── ClientBuilder.cs │ │ ├── IconInjector.cs │ │ └── Renamer.cs │ ├── Client.cs │ ├── Commands │ │ └── CommandHandler.cs │ ├── Compression │ │ ├── JpgCompression.cs │ │ └── SafeQuickLZ.cs │ ├── Encryption │ │ └── AES.cs │ ├── Extensions │ │ ├── ListViewExtensions.cs │ │ └── SocketExtensions.cs │ ├── Helper │ │ ├── FileSplit.cs │ │ ├── Helper.cs │ │ ├── UPnP.cs │ │ └── UnsafeStreamCodec.cs │ ├── Misc │ │ ├── InputBox.cs │ │ ├── ListViewColumnSorter.cs │ │ └── SavedVariables.cs │ ├── Packets │ │ ├── ClientPackets │ │ │ ├── DesktopResponse.cs │ │ │ ├── DirectoryResponse.cs │ │ │ ├── DownloadFileResponse.cs │ │ │ ├── DrivesResponse.cs │ │ │ ├── GetProcessesResponse.cs │ │ │ ├── GetStartupItemsResponse.cs │ │ │ ├── GetSystemInfoResponse.cs │ │ │ ├── Initialize.cs │ │ │ ├── MonitorsResponse.cs │ │ │ ├── ShellCommandResponse.cs │ │ │ ├── Status.cs │ │ │ └── UserStatus.cs │ │ ├── IPacket.cs │ │ ├── ServerPackets │ │ │ ├── Action.cs │ │ │ ├── AddStartupItem.cs │ │ │ ├── Delete.cs │ │ │ ├── Desktop.cs │ │ │ ├── Directory.cs │ │ │ ├── Disconnect.cs │ │ │ ├── DownloadAndExecute.cs │ │ │ ├── DownloadFile.cs │ │ │ ├── DownloadFileCanceled.cs │ │ │ ├── Drives.cs │ │ │ ├── GetProcesses.cs │ │ │ ├── GetStartupItems.cs │ │ │ ├── GetSystemInfo.cs │ │ │ ├── InitializeCommand.cs │ │ │ ├── KillProcess.cs │ │ │ ├── Monitors.cs │ │ │ ├── MouseClick.cs │ │ │ ├── Reconnect.cs │ │ │ ├── Rename.cs │ │ │ ├── ShellCommand.cs │ │ │ ├── ShowMessageBox.cs │ │ │ ├── StartProcess.cs │ │ │ ├── Uninstall.cs │ │ │ ├── Update.cs │ │ │ ├── UploadAndExecute.cs │ │ │ └── VisitWebsite.cs │ │ └── UnknownPacket.cs │ ├── ProtoBuf │ │ ├── BclHelpers.cs │ │ ├── BufferExtension.cs │ │ ├── BufferPool.cs │ │ ├── CallbackAttributes.cs │ │ ├── DataFormat.cs │ │ ├── Extensible.cs │ │ ├── ExtensibleUtil.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Helpers.cs │ │ ├── IExtensible.cs │ │ ├── IExtension.cs │ │ ├── ImplicitFields.cs │ │ ├── KeyValuePairProxy.cs │ │ ├── Meta │ │ │ ├── AttributeMap.cs │ │ │ ├── BasicList.cs │ │ │ ├── CallbackSet.cs │ │ │ ├── MetaType.cs │ │ │ ├── RuntimeTypeModel.cs │ │ │ ├── SubType.cs │ │ │ ├── TypeFormatEventArgs.cs │ │ │ ├── TypeModel.cs │ │ │ └── ValueMember.cs │ │ ├── NetObjectCache.cs │ │ ├── PrefixStyle.cs │ │ ├── ProtoContractAttribute.cs │ │ ├── ProtoConverterAttribute.cs │ │ ├── ProtoEnumAttribute.cs │ │ ├── ProtoException.cs │ │ ├── ProtoIgnoreAttribute.cs │ │ ├── ProtoIncludeAttribute.cs │ │ ├── ProtoMemberAttribute.cs │ │ ├── ProtoReader.cs │ │ ├── ProtoWriter.cs │ │ ├── SerializationContext.cs │ │ ├── Serializer.cs │ │ ├── Serializers │ │ │ ├── ArrayDecorator.cs │ │ │ ├── BlobSerializer.cs │ │ │ ├── BooleanSerializer.cs │ │ │ ├── ByteSerializer.cs │ │ │ ├── CharSerializer.cs │ │ │ ├── CompiledSerializer.cs │ │ │ ├── DateTimeSerializer.cs │ │ │ ├── DecimalSerializer.cs │ │ │ ├── DefaultValueDecorator.cs │ │ │ ├── DoubleSerializer.cs │ │ │ ├── EnumSerializer.cs │ │ │ ├── FieldDecorator.cs │ │ │ ├── GuidSerializer.cs │ │ │ ├── IProtoSerializer.cs │ │ │ ├── IProtoTypeSerializer.cs │ │ │ ├── ISerializerProxy.cs │ │ │ ├── ImmutableCollectionDecorator.cs │ │ │ ├── Int16Serializer.cs │ │ │ ├── Int32Serializer.cs │ │ │ ├── Int64Serializer.cs │ │ │ ├── KeyValuePairDecorator.cs │ │ │ ├── ListDecorator.cs │ │ │ ├── MemberSpecifiedDecorator.cs │ │ │ ├── NetObjectSerializer.cs │ │ │ ├── NullDecorator.cs │ │ │ ├── ParseableSerializer.cs │ │ │ ├── PropertyDecorator.cs │ │ │ ├── ProtoDecoratorBase.cs │ │ │ ├── SByteSerializer.cs │ │ │ ├── SingleSerializer.cs │ │ │ ├── StringSerializer.cs │ │ │ ├── SubItemSerializer.cs │ │ │ ├── SurrogateSerializer.cs │ │ │ ├── SystemTypeSerializer.cs │ │ │ ├── TagDecorator.cs │ │ │ ├── TimeSpanSerializer.cs │ │ │ ├── TupleSerializer.cs │ │ │ ├── TypeSerializer.cs │ │ │ ├── UInt16Serializer.cs │ │ │ ├── UInt32Serializer.cs │ │ │ ├── UInt64Serializer.cs │ │ │ └── UriDecorator.cs │ │ ├── ServiceModel │ │ │ ├── ProtoBehaviorAttribute.cs │ │ │ ├── ProtoBehaviorExtensionElement.cs │ │ │ ├── ProtoEndpointBehavior.cs │ │ │ ├── ProtoOperationBehavior.cs │ │ │ └── XmlProtoSerializer.cs │ │ ├── SubItemToken.cs │ │ └── WireType.cs │ ├── Server.cs │ └── UserState.cs ├── Forms │ ├── FrmAbout.Designer.cs │ ├── FrmAbout.cs │ ├── FrmAbout.resx │ ├── FrmAddToAutostart.Designer.cs │ ├── FrmAddToAutostart.cs │ ├── FrmAddToAutostart.resx │ ├── FrmBuilder.Designer.cs │ ├── FrmBuilder.cs │ ├── FrmBuilder.resx │ ├── FrmDownloadAndExecute.Designer.cs │ ├── FrmDownloadAndExecute.cs │ ├── FrmDownloadAndExecute.resx │ ├── FrmFileManager.Designer.cs │ ├── FrmFileManager.cs │ ├── FrmFileManager.resx │ ├── FrmMain.Designer.cs │ ├── FrmMain.cs │ ├── FrmMain.resx │ ├── FrmRemoteDesktop.Designer.cs │ ├── FrmRemoteDesktop.cs │ ├── FrmRemoteDesktop.resx │ ├── FrmRemoteShell.Designer.cs │ ├── FrmRemoteShell.cs │ ├── FrmRemoteShell.resx │ ├── FrmSettings.Designer.cs │ ├── FrmSettings.cs │ ├── FrmSettings.resx │ ├── FrmShowMessagebox.Designer.cs │ ├── FrmShowMessagebox.cs │ ├── FrmShowMessagebox.resx │ ├── FrmStartupManager.Designer.cs │ ├── FrmStartupManager.cs │ ├── FrmStartupManager.resx │ ├── FrmStatistics.Designer.cs │ ├── FrmStatistics.cs │ ├── FrmStatistics.resx │ ├── FrmSystemInformation.Designer.cs │ ├── FrmSystemInformation.cs │ ├── FrmSystemInformation.resx │ ├── FrmTaskManager.Designer.cs │ ├── FrmTaskManager.cs │ ├── FrmTaskManager.resx │ ├── FrmTermsOfUse.Designer.cs │ ├── FrmTermsOfUse.cs │ ├── FrmTermsOfUse.resx │ ├── FrmUpdate.Designer.cs │ ├── FrmUpdate.cs │ ├── FrmUpdate.resx │ ├── FrmUploadAndExecute.Designer.cs │ ├── FrmUploadAndExecute.cs │ ├── FrmUploadAndExecute.resx │ ├── FrmVisitWebsite.Designer.cs │ ├── FrmVisitWebsite.cs │ └── FrmVisitWebsite.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── actions.png │ ├── delete.png │ ├── restart.png │ ├── shutdown.png │ ├── standby.png │ └── textfield_rename.png ├── Server.csproj ├── Settings │ ├── ProfileManager.cs │ └── Settings.cs ├── app.config ├── flags │ ├── ad.png │ ├── ae.png │ ├── af.png │ ├── ag.png │ ├── ai.png │ ├── al.png │ ├── am.png │ ├── an.png │ ├── ao.png │ ├── ar.png │ ├── as.png │ ├── at.png │ ├── au.png │ ├── aw.png │ ├── ax.png │ ├── az.png │ ├── ba.png │ ├── bb.png │ ├── bd.png │ ├── be.png │ ├── bf.png │ ├── bg.png │ ├── bh.png │ ├── bi.png │ ├── bj.png │ ├── bm.png │ ├── bn.png │ ├── bo.png │ ├── br.png │ ├── bs.png │ ├── bt.png │ ├── bv.png │ ├── bw.png │ ├── by.png │ ├── bz.png │ ├── ca.png │ ├── catalonia.png │ ├── cc.png │ ├── cd.png │ ├── cf.png │ ├── cg.png │ ├── ch.png │ ├── ci.png │ ├── ck.png │ ├── cl.png │ ├── cm.png │ ├── cn.png │ ├── co.png │ ├── cr.png │ ├── cs.png │ ├── cu.png │ ├── cv.png │ ├── cx.png │ ├── cy.png │ ├── cz.png │ ├── de.png │ ├── dj.png │ ├── dk.png │ ├── dm.png │ ├── do.png │ ├── dz.png │ ├── ec.png │ ├── ee.png │ ├── eg.png │ ├── eh.png │ ├── england.png │ ├── er.png │ ├── es.png │ ├── et.png │ ├── europeanunion.png │ ├── fam.png │ ├── fi.png │ ├── fj.png │ ├── fk.png │ ├── fm.png │ ├── fo.png │ ├── fr.png │ ├── ga.png │ ├── gb.png │ ├── gd.png │ ├── ge.png │ ├── gf.png │ ├── gh.png │ ├── gi.png │ ├── gl.png │ ├── gm.png │ ├── gn.png │ ├── gp.png │ ├── gq.png │ ├── gr.png │ ├── gs.png │ ├── gt.png │ ├── gu.png │ ├── gw.png │ ├── gy.png │ ├── hk.png │ ├── hm.png │ ├── hn.png │ ├── hr.png │ ├── ht.png │ ├── hu.png │ ├── id.png │ ├── ie.png │ ├── il.png │ ├── in.png │ ├── io.png │ ├── iq.png │ ├── ir.png │ ├── is.png │ ├── it.png │ ├── jm.png │ ├── jo.png │ ├── jp.png │ ├── ke.png │ ├── kg.png │ ├── kh.png │ ├── ki.png │ ├── km.png │ ├── kn.png │ ├── kp.png │ ├── kr.png │ ├── kw.png │ ├── ky.png │ ├── kz.png │ ├── la.png │ ├── lb.png │ ├── lc.png │ ├── li.png │ ├── lk.png │ ├── lr.png │ ├── ls.png │ ├── lt.png │ ├── lu.png │ ├── lv.png │ ├── ly.png │ ├── ma.png │ ├── mc.png │ ├── md.png │ ├── me.png │ ├── mg.png │ ├── mh.png │ ├── mk.png │ ├── ml.png │ ├── mm.png │ ├── mn.png │ ├── mo.png │ ├── mp.png │ ├── mq.png │ ├── mr.png │ ├── ms.png │ ├── mt.png │ ├── mu.png │ ├── mv.png │ ├── mw.png │ ├── mx.png │ ├── my.png │ ├── mz.png │ ├── na.png │ ├── nc.png │ ├── ne.png │ ├── nf.png │ ├── ng.png │ ├── ni.png │ ├── nl.png │ ├── no.png │ ├── np.png │ ├── nr.png │ ├── nu.png │ ├── nz.png │ ├── om.png │ ├── pa.png │ ├── pe.png │ ├── pf.png │ ├── pg.png │ ├── ph.png │ ├── pk.png │ ├── pl.png │ ├── pm.png │ ├── pn.png │ ├── pr.png │ ├── ps.png │ ├── pt.png │ ├── pw.png │ ├── py.png │ ├── qa.png │ ├── re.png │ ├── ro.png │ ├── rs.png │ ├── ru.png │ ├── rw.png │ ├── sa.png │ ├── sb.png │ ├── sc.png │ ├── scotland.png │ ├── sd.png │ ├── se.png │ ├── sg.png │ ├── sh.png │ ├── si.png │ ├── sj.png │ ├── sk.png │ ├── sl.png │ ├── sm.png │ ├── sn.png │ ├── so.png │ ├── sr.png │ ├── st.png │ ├── sv.png │ ├── sy.png │ ├── sz.png │ ├── tc.png │ ├── td.png │ ├── tf.png │ ├── tg.png │ ├── th.png │ ├── tj.png │ ├── tk.png │ ├── tl.png │ ├── tm.png │ ├── tn.png │ ├── to.png │ ├── tr.png │ ├── tt.png │ ├── tv.png │ ├── tw.png │ ├── tz.png │ ├── ua.png │ ├── ug.png │ ├── um.png │ ├── us.png │ ├── uy.png │ ├── uz.png │ ├── va.png │ ├── vc.png │ ├── ve.png │ ├── vg.png │ ├── vi.png │ ├── vn.png │ ├── vu.png │ ├── wales.png │ ├── wf.png │ ├── ws.png │ ├── xy.png │ ├── ye.png │ ├── yt.png │ ├── za.png │ ├── zm.png │ └── zw.png ├── icons │ ├── xRAT-16x16.png │ ├── xRAT-32x32.png │ ├── xRAT-64x64.ico │ └── xRAT-64x64.png ├── images │ ├── application.png │ ├── application_add.png │ ├── archive.png │ ├── back.png │ ├── bricks.png │ ├── cancel.png │ ├── computer.png │ ├── copy.png │ ├── done.png │ ├── download.png │ ├── drive_go.png │ ├── eye.png │ ├── file.png │ ├── folder.png │ ├── image.png │ ├── information.png │ ├── key_go.png │ ├── lightning.png │ ├── monitor.png │ ├── mouse_add.png │ ├── mouse_delete.png │ ├── movie.png │ ├── music.png │ ├── pdf.png │ ├── refresh.png │ ├── run.png │ ├── server-add.png │ ├── server-disconnect.png │ ├── server-reconnect.png │ ├── server-uninstall.png │ ├── server.png │ ├── startup_programs.png │ ├── task-manager.png │ ├── terminal.png │ ├── text.png │ ├── uac-shield.png │ ├── upload.png │ ├── website.png │ ├── word.png │ ├── world_go.png │ └── world_link.png └── obj │ └── x86 │ └── Debug │ ├── Server.csproj.FileListAbsolute.txt │ ├── xServer.Forms.FrmAbout.resources │ ├── xServer.Forms.FrmAddToAutostart.resources │ ├── xServer.Forms.FrmBuilder.resources │ ├── xServer.Forms.FrmDownloadAndExecute.resources │ ├── xServer.Forms.FrmFileManager.resources │ ├── xServer.Forms.FrmMain.resources │ ├── xServer.Forms.FrmRemoteDesktop.resources │ ├── xServer.Forms.FrmRemoteShell.resources │ ├── xServer.Forms.FrmSettings.resources │ ├── xServer.Forms.FrmShowMessagebox.resources │ ├── xServer.Forms.FrmStartupManager.resources │ ├── xServer.Forms.FrmStatistics.resources │ ├── xServer.Forms.FrmSystemInformation.resources │ ├── xServer.Forms.FrmTaskManager.resources │ ├── xServer.Forms.FrmTermsOfUse.resources │ ├── xServer.Forms.FrmUpdate.resources │ ├── xServer.Forms.FrmUploadAndExecute.resources │ ├── xServer.Forms.FrmVisitWebsite.resources │ └── xServer.Properties.Resources.resources └── xRAT 2.sln /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Config/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Config/Settings.cs -------------------------------------------------------------------------------- /Client/Core/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Client.cs -------------------------------------------------------------------------------- /Client/Core/Commands/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Commands/CommandHandler.cs -------------------------------------------------------------------------------- /Client/Core/Compression/JpgCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Compression/JpgCompression.cs -------------------------------------------------------------------------------- /Client/Core/Compression/SafeQuickLZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Compression/SafeQuickLZ.cs -------------------------------------------------------------------------------- /Client/Core/Elevation/CommandButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Elevation/CommandButton.cs -------------------------------------------------------------------------------- /Client/Core/Elevation/FrmElevation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Elevation/FrmElevation.Designer.cs -------------------------------------------------------------------------------- /Client/Core/Elevation/FrmElevation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Elevation/FrmElevation.cs -------------------------------------------------------------------------------- /Client/Core/Elevation/FrmElevation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Elevation/FrmElevation.resx -------------------------------------------------------------------------------- /Client/Core/Encryption/AES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Encryption/AES.cs -------------------------------------------------------------------------------- /Client/Core/Encryption/SHA256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Encryption/SHA256.cs -------------------------------------------------------------------------------- /Client/Core/Extensions/SocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Extensions/SocketExtensions.cs -------------------------------------------------------------------------------- /Client/Core/Helper/FileSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Helper/FileSplit.cs -------------------------------------------------------------------------------- /Client/Core/Helper/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Helper/Helper.cs -------------------------------------------------------------------------------- /Client/Core/Helper/UnsafeStreamCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Helper/UnsafeStreamCodec.cs -------------------------------------------------------------------------------- /Client/Core/Information/GeoIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Information/GeoIP.cs -------------------------------------------------------------------------------- /Client/Core/Information/OSInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Information/OSInfo.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/DesktopResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/DesktopResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/DirectoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/DirectoryResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/DownloadFileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/DownloadFileResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/DrivesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/DrivesResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/GetProcessesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/GetProcessesResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/GetStartupItemsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/GetStartupItemsResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/GetSystemInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/GetSystemInfoResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/Initialize.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/MonitorsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/MonitorsResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/ShellCommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/ShellCommandResponse.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/Status.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ClientPackets/UserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ClientPackets/UserStatus.cs -------------------------------------------------------------------------------- /Client/Core/Packets/IPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/IPacket.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Action.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/AddStartupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/AddStartupItem.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Delete.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Desktop.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Directory.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Disconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Disconnect.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/DownloadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/DownloadAndExecute.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/DownloadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/DownloadFile.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/DownloadFileCanceled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/DownloadFileCanceled.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Drives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Drives.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/GetProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/GetProcesses.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/GetStartupItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/GetStartupItems.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/GetSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/GetSystemInfo.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/InitializeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/InitializeCommand.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/KillProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/KillProcess.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Monitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Monitors.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/MouseClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/MouseClick.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Reconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Reconnect.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Rename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Rename.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/ShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/ShellCommand.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/ShowMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/ShowMessageBox.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/StartProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/StartProcess.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Uninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Uninstall.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/Update.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/UploadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/UploadAndExecute.cs -------------------------------------------------------------------------------- /Client/Core/Packets/ServerPackets/VisitWebsite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/ServerPackets/VisitWebsite.cs -------------------------------------------------------------------------------- /Client/Core/Packets/UnknownPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/Packets/UnknownPacket.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/BclHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/BclHelpers.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/BufferExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/BufferExtension.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/BufferPool.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/CallbackAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/CallbackAttributes.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/DataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/DataFormat.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Extensible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Extensible.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ExtensibleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ExtensibleUtil.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Helpers.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/IExtensible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/IExtensible.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/IExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/IExtension.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ImplicitFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ImplicitFields.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/KeyValuePairProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/KeyValuePairProxy.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/AttributeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/AttributeMap.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/BasicList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/BasicList.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/CallbackSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/CallbackSet.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/MetaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/MetaType.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/RuntimeTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/RuntimeTypeModel.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/SubType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/SubType.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/TypeFormatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/TypeFormatEventArgs.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/TypeModel.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Meta/ValueMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Meta/ValueMember.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/NetObjectCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/NetObjectCache.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/PrefixStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/PrefixStyle.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoContractAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoContractAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoConverterAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoEnumAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoException.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoIgnoreAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoIncludeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoIncludeAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoMemberAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoReader.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ProtoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ProtoWriter.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/SerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/SerializationContext.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ArrayDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ArrayDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/BlobSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/BlobSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/BooleanSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/BooleanSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ByteSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/CharSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/CharSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/CompiledSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/CompiledSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/DateTimeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/DateTimeSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/DecimalSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/DecimalSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/DefaultValueDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/DefaultValueDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/DoubleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/DoubleSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/EnumSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/EnumSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/FieldDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/FieldDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/GuidSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/GuidSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/IProtoSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/IProtoSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/IProtoTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/IProtoTypeSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ISerializerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ISerializerProxy.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ImmutableCollectionDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ImmutableCollectionDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/Int16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/Int16Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/Int32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/Int32Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/Int64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/Int64Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/KeyValuePairDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/KeyValuePairDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ListDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ListDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/MemberSpecifiedDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/MemberSpecifiedDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/NetObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/NetObjectSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/NullDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/NullDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ParseableSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ParseableSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/PropertyDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/PropertyDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/ProtoDecoratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/ProtoDecoratorBase.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/SByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/SByteSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/SingleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/SingleSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/StringSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/StringSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/SubItemSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/SubItemSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/SurrogateSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/SurrogateSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/SystemTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/SystemTypeSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/TagDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/TagDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/TimeSpanSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/TimeSpanSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/TupleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/TupleSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/TypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/TypeSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/UInt16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/UInt16Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/UInt32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/UInt32Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/UInt64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/UInt64Serializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/Serializers/UriDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/Serializers/UriDecorator.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ServiceModel/ProtoBehaviorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ServiceModel/ProtoBehaviorAttribute.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ServiceModel/ProtoBehaviorExtensionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ServiceModel/ProtoBehaviorExtensionElement.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ServiceModel/ProtoEndpointBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ServiceModel/ProtoEndpointBehavior.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ServiceModel/ProtoOperationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ServiceModel/ProtoOperationBehavior.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/ServiceModel/XmlProtoSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/ServiceModel/XmlProtoSerializer.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/SubItemToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/SubItemToken.cs -------------------------------------------------------------------------------- /Client/Core/ProtoBuf/WireType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/ProtoBuf/WireType.cs -------------------------------------------------------------------------------- /Client/Core/RemoteShell/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/RemoteShell/Shell.cs -------------------------------------------------------------------------------- /Client/Core/SystemCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Core/SystemCore.cs -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Properties/Resources.resx -------------------------------------------------------------------------------- /Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/Properties/Settings.settings -------------------------------------------------------------------------------- /Client/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/images/information.png -------------------------------------------------------------------------------- /Client/obj/x86/Debug/Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/obj/x86/Debug/Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Client/obj/x86/Debug/xClient.Core.Elevation.FrmElevation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/obj/x86/Debug/xClient.Core.Elevation.FrmElevation.resources -------------------------------------------------------------------------------- /Client/obj/x86/Debug/xClient.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Client/obj/x86/Debug/xClient.Properties.Resources.resources -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/README.md -------------------------------------------------------------------------------- /Server/Controls/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Controls/ListViewEx.cs -------------------------------------------------------------------------------- /Server/Controls/MainMenuEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Controls/MainMenuEx.cs -------------------------------------------------------------------------------- /Server/Core/Build/ClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Build/ClientBuilder.cs -------------------------------------------------------------------------------- /Server/Core/Build/IconInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Build/IconInjector.cs -------------------------------------------------------------------------------- /Server/Core/Build/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Build/Renamer.cs -------------------------------------------------------------------------------- /Server/Core/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Client.cs -------------------------------------------------------------------------------- /Server/Core/Commands/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Commands/CommandHandler.cs -------------------------------------------------------------------------------- /Server/Core/Compression/JpgCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Compression/JpgCompression.cs -------------------------------------------------------------------------------- /Server/Core/Compression/SafeQuickLZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Compression/SafeQuickLZ.cs -------------------------------------------------------------------------------- /Server/Core/Encryption/AES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Encryption/AES.cs -------------------------------------------------------------------------------- /Server/Core/Extensions/ListViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Extensions/ListViewExtensions.cs -------------------------------------------------------------------------------- /Server/Core/Extensions/SocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Extensions/SocketExtensions.cs -------------------------------------------------------------------------------- /Server/Core/Helper/FileSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Helper/FileSplit.cs -------------------------------------------------------------------------------- /Server/Core/Helper/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Helper/Helper.cs -------------------------------------------------------------------------------- /Server/Core/Helper/UPnP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Helper/UPnP.cs -------------------------------------------------------------------------------- /Server/Core/Helper/UnsafeStreamCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Helper/UnsafeStreamCodec.cs -------------------------------------------------------------------------------- /Server/Core/Misc/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Misc/InputBox.cs -------------------------------------------------------------------------------- /Server/Core/Misc/ListViewColumnSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Misc/ListViewColumnSorter.cs -------------------------------------------------------------------------------- /Server/Core/Misc/SavedVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Misc/SavedVariables.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/DesktopResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/DesktopResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/DirectoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/DirectoryResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/DownloadFileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/DownloadFileResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/DrivesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/DrivesResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/GetProcessesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/GetProcessesResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/GetStartupItemsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/GetStartupItemsResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/GetSystemInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/GetSystemInfoResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/Initialize.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/MonitorsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/MonitorsResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/ShellCommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/ShellCommandResponse.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/Status.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ClientPackets/UserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ClientPackets/UserStatus.cs -------------------------------------------------------------------------------- /Server/Core/Packets/IPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/IPacket.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Action.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/AddStartupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/AddStartupItem.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Delete.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Desktop.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Directory.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Disconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Disconnect.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/DownloadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/DownloadAndExecute.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/DownloadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/DownloadFile.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/DownloadFileCanceled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/DownloadFileCanceled.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Drives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Drives.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/GetProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/GetProcesses.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/GetStartupItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/GetStartupItems.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/GetSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/GetSystemInfo.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/InitializeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/InitializeCommand.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/KillProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/KillProcess.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Monitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Monitors.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/MouseClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/MouseClick.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Reconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Reconnect.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Rename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Rename.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/ShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/ShellCommand.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/ShowMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/ShowMessageBox.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/StartProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/StartProcess.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Uninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Uninstall.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/Update.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/UploadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/UploadAndExecute.cs -------------------------------------------------------------------------------- /Server/Core/Packets/ServerPackets/VisitWebsite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/ServerPackets/VisitWebsite.cs -------------------------------------------------------------------------------- /Server/Core/Packets/UnknownPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Packets/UnknownPacket.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/BclHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/BclHelpers.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/BufferExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/BufferExtension.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/BufferPool.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/CallbackAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/CallbackAttributes.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/DataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/DataFormat.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Extensible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Extensible.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ExtensibleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ExtensibleUtil.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Helpers.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/IExtensible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/IExtensible.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/IExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/IExtension.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ImplicitFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ImplicitFields.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/KeyValuePairProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/KeyValuePairProxy.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/AttributeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/AttributeMap.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/BasicList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/BasicList.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/CallbackSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/CallbackSet.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/MetaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/MetaType.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/RuntimeTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/RuntimeTypeModel.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/SubType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/SubType.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/TypeFormatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/TypeFormatEventArgs.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/TypeModel.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Meta/ValueMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Meta/ValueMember.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/NetObjectCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/NetObjectCache.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/PrefixStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/PrefixStyle.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoContractAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoContractAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoConverterAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoEnumAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoException.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoIgnoreAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoIncludeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoIncludeAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoMemberAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoReader.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ProtoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ProtoWriter.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/SerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/SerializationContext.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ArrayDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ArrayDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/BlobSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/BlobSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/BooleanSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/BooleanSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ByteSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/CharSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/CharSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/CompiledSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/CompiledSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/DateTimeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/DateTimeSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/DecimalSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/DecimalSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/DefaultValueDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/DefaultValueDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/DoubleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/DoubleSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/EnumSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/EnumSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/FieldDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/FieldDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/GuidSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/GuidSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/IProtoSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/IProtoSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/IProtoTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/IProtoTypeSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ISerializerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ISerializerProxy.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ImmutableCollectionDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ImmutableCollectionDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/Int16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/Int16Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/Int32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/Int32Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/Int64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/Int64Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/KeyValuePairDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/KeyValuePairDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ListDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ListDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/MemberSpecifiedDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/MemberSpecifiedDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/NetObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/NetObjectSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/NullDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/NullDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ParseableSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ParseableSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/PropertyDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/PropertyDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/ProtoDecoratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/ProtoDecoratorBase.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/SByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/SByteSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/SingleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/SingleSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/StringSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/StringSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/SubItemSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/SubItemSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/SurrogateSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/SurrogateSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/SystemTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/SystemTypeSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/TagDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/TagDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/TimeSpanSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/TimeSpanSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/TupleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/TupleSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/TypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/TypeSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/UInt16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/UInt16Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/UInt32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/UInt32Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/UInt64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/UInt64Serializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/Serializers/UriDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/Serializers/UriDecorator.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ServiceModel/ProtoBehaviorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ServiceModel/ProtoBehaviorAttribute.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ServiceModel/ProtoBehaviorExtensionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ServiceModel/ProtoBehaviorExtensionElement.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ServiceModel/ProtoEndpointBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ServiceModel/ProtoEndpointBehavior.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ServiceModel/ProtoOperationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ServiceModel/ProtoOperationBehavior.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/ServiceModel/XmlProtoSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/ServiceModel/XmlProtoSerializer.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/SubItemToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/SubItemToken.cs -------------------------------------------------------------------------------- /Server/Core/ProtoBuf/WireType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/ProtoBuf/WireType.cs -------------------------------------------------------------------------------- /Server/Core/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/Server.cs -------------------------------------------------------------------------------- /Server/Core/UserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Core/UserState.cs -------------------------------------------------------------------------------- /Server/Forms/FrmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAbout.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAbout.cs -------------------------------------------------------------------------------- /Server/Forms/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAbout.resx -------------------------------------------------------------------------------- /Server/Forms/FrmAddToAutostart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAddToAutostart.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmAddToAutostart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAddToAutostart.cs -------------------------------------------------------------------------------- /Server/Forms/FrmAddToAutostart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmAddToAutostart.resx -------------------------------------------------------------------------------- /Server/Forms/FrmBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmBuilder.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmBuilder.cs -------------------------------------------------------------------------------- /Server/Forms/FrmBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmBuilder.resx -------------------------------------------------------------------------------- /Server/Forms/FrmDownloadAndExecute.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmDownloadAndExecute.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmDownloadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmDownloadAndExecute.cs -------------------------------------------------------------------------------- /Server/Forms/FrmDownloadAndExecute.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmDownloadAndExecute.resx -------------------------------------------------------------------------------- /Server/Forms/FrmFileManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmFileManager.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmFileManager.cs -------------------------------------------------------------------------------- /Server/Forms/FrmFileManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmFileManager.resx -------------------------------------------------------------------------------- /Server/Forms/FrmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmMain.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmMain.cs -------------------------------------------------------------------------------- /Server/Forms/FrmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmMain.resx -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteDesktop.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteDesktop.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteDesktop.cs -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteDesktop.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteDesktop.resx -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteShell.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteShell.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteShell.cs -------------------------------------------------------------------------------- /Server/Forms/FrmRemoteShell.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmRemoteShell.resx -------------------------------------------------------------------------------- /Server/Forms/FrmSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSettings.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSettings.cs -------------------------------------------------------------------------------- /Server/Forms/FrmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSettings.resx -------------------------------------------------------------------------------- /Server/Forms/FrmShowMessagebox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmShowMessagebox.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmShowMessagebox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmShowMessagebox.cs -------------------------------------------------------------------------------- /Server/Forms/FrmShowMessagebox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmShowMessagebox.resx -------------------------------------------------------------------------------- /Server/Forms/FrmStartupManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStartupManager.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmStartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStartupManager.cs -------------------------------------------------------------------------------- /Server/Forms/FrmStartupManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStartupManager.resx -------------------------------------------------------------------------------- /Server/Forms/FrmStatistics.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStatistics.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStatistics.cs -------------------------------------------------------------------------------- /Server/Forms/FrmStatistics.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmStatistics.resx -------------------------------------------------------------------------------- /Server/Forms/FrmSystemInformation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSystemInformation.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmSystemInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSystemInformation.cs -------------------------------------------------------------------------------- /Server/Forms/FrmSystemInformation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmSystemInformation.resx -------------------------------------------------------------------------------- /Server/Forms/FrmTaskManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTaskManager.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmTaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTaskManager.cs -------------------------------------------------------------------------------- /Server/Forms/FrmTaskManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTaskManager.resx -------------------------------------------------------------------------------- /Server/Forms/FrmTermsOfUse.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTermsOfUse.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmTermsOfUse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTermsOfUse.cs -------------------------------------------------------------------------------- /Server/Forms/FrmTermsOfUse.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmTermsOfUse.resx -------------------------------------------------------------------------------- /Server/Forms/FrmUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUpdate.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUpdate.cs -------------------------------------------------------------------------------- /Server/Forms/FrmUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUpdate.resx -------------------------------------------------------------------------------- /Server/Forms/FrmUploadAndExecute.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUploadAndExecute.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmUploadAndExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUploadAndExecute.cs -------------------------------------------------------------------------------- /Server/Forms/FrmUploadAndExecute.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmUploadAndExecute.resx -------------------------------------------------------------------------------- /Server/Forms/FrmVisitWebsite.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmVisitWebsite.Designer.cs -------------------------------------------------------------------------------- /Server/Forms/FrmVisitWebsite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmVisitWebsite.cs -------------------------------------------------------------------------------- /Server/Forms/FrmVisitWebsite.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Forms/FrmVisitWebsite.resx -------------------------------------------------------------------------------- /Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Program.cs -------------------------------------------------------------------------------- /Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /Server/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Properties/Settings.settings -------------------------------------------------------------------------------- /Server/Resources/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/actions.png -------------------------------------------------------------------------------- /Server/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/delete.png -------------------------------------------------------------------------------- /Server/Resources/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/restart.png -------------------------------------------------------------------------------- /Server/Resources/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/shutdown.png -------------------------------------------------------------------------------- /Server/Resources/standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/standby.png -------------------------------------------------------------------------------- /Server/Resources/textfield_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Resources/textfield_rename.png -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Settings/ProfileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Settings/ProfileManager.cs -------------------------------------------------------------------------------- /Server/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/Settings/Settings.cs -------------------------------------------------------------------------------- /Server/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/app.config -------------------------------------------------------------------------------- /Server/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ad.png -------------------------------------------------------------------------------- /Server/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ae.png -------------------------------------------------------------------------------- /Server/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/af.png -------------------------------------------------------------------------------- /Server/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ag.png -------------------------------------------------------------------------------- /Server/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ai.png -------------------------------------------------------------------------------- /Server/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/al.png -------------------------------------------------------------------------------- /Server/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/am.png -------------------------------------------------------------------------------- /Server/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/an.png -------------------------------------------------------------------------------- /Server/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ao.png -------------------------------------------------------------------------------- /Server/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ar.png -------------------------------------------------------------------------------- /Server/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/as.png -------------------------------------------------------------------------------- /Server/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/at.png -------------------------------------------------------------------------------- /Server/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/au.png -------------------------------------------------------------------------------- /Server/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/aw.png -------------------------------------------------------------------------------- /Server/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ax.png -------------------------------------------------------------------------------- /Server/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/az.png -------------------------------------------------------------------------------- /Server/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ba.png -------------------------------------------------------------------------------- /Server/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bb.png -------------------------------------------------------------------------------- /Server/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bd.png -------------------------------------------------------------------------------- /Server/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/be.png -------------------------------------------------------------------------------- /Server/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bf.png -------------------------------------------------------------------------------- /Server/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bg.png -------------------------------------------------------------------------------- /Server/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bh.png -------------------------------------------------------------------------------- /Server/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bi.png -------------------------------------------------------------------------------- /Server/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bj.png -------------------------------------------------------------------------------- /Server/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bm.png -------------------------------------------------------------------------------- /Server/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bn.png -------------------------------------------------------------------------------- /Server/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bo.png -------------------------------------------------------------------------------- /Server/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/br.png -------------------------------------------------------------------------------- /Server/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bs.png -------------------------------------------------------------------------------- /Server/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bt.png -------------------------------------------------------------------------------- /Server/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bv.png -------------------------------------------------------------------------------- /Server/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bw.png -------------------------------------------------------------------------------- /Server/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/by.png -------------------------------------------------------------------------------- /Server/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/bz.png -------------------------------------------------------------------------------- /Server/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ca.png -------------------------------------------------------------------------------- /Server/flags/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/catalonia.png -------------------------------------------------------------------------------- /Server/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cc.png -------------------------------------------------------------------------------- /Server/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cd.png -------------------------------------------------------------------------------- /Server/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cf.png -------------------------------------------------------------------------------- /Server/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cg.png -------------------------------------------------------------------------------- /Server/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ch.png -------------------------------------------------------------------------------- /Server/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ci.png -------------------------------------------------------------------------------- /Server/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ck.png -------------------------------------------------------------------------------- /Server/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cl.png -------------------------------------------------------------------------------- /Server/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cm.png -------------------------------------------------------------------------------- /Server/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cn.png -------------------------------------------------------------------------------- /Server/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/co.png -------------------------------------------------------------------------------- /Server/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cr.png -------------------------------------------------------------------------------- /Server/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cs.png -------------------------------------------------------------------------------- /Server/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cu.png -------------------------------------------------------------------------------- /Server/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cv.png -------------------------------------------------------------------------------- /Server/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cx.png -------------------------------------------------------------------------------- /Server/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cy.png -------------------------------------------------------------------------------- /Server/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/cz.png -------------------------------------------------------------------------------- /Server/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/de.png -------------------------------------------------------------------------------- /Server/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/dj.png -------------------------------------------------------------------------------- /Server/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/dk.png -------------------------------------------------------------------------------- /Server/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/dm.png -------------------------------------------------------------------------------- /Server/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/do.png -------------------------------------------------------------------------------- /Server/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/dz.png -------------------------------------------------------------------------------- /Server/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ec.png -------------------------------------------------------------------------------- /Server/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ee.png -------------------------------------------------------------------------------- /Server/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/eg.png -------------------------------------------------------------------------------- /Server/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/eh.png -------------------------------------------------------------------------------- /Server/flags/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/england.png -------------------------------------------------------------------------------- /Server/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/er.png -------------------------------------------------------------------------------- /Server/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/es.png -------------------------------------------------------------------------------- /Server/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/et.png -------------------------------------------------------------------------------- /Server/flags/europeanunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/europeanunion.png -------------------------------------------------------------------------------- /Server/flags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fam.png -------------------------------------------------------------------------------- /Server/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fi.png -------------------------------------------------------------------------------- /Server/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fj.png -------------------------------------------------------------------------------- /Server/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fk.png -------------------------------------------------------------------------------- /Server/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fm.png -------------------------------------------------------------------------------- /Server/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fo.png -------------------------------------------------------------------------------- /Server/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/fr.png -------------------------------------------------------------------------------- /Server/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ga.png -------------------------------------------------------------------------------- /Server/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gb.png -------------------------------------------------------------------------------- /Server/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gd.png -------------------------------------------------------------------------------- /Server/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ge.png -------------------------------------------------------------------------------- /Server/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gf.png -------------------------------------------------------------------------------- /Server/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gh.png -------------------------------------------------------------------------------- /Server/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gi.png -------------------------------------------------------------------------------- /Server/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gl.png -------------------------------------------------------------------------------- /Server/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gm.png -------------------------------------------------------------------------------- /Server/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gn.png -------------------------------------------------------------------------------- /Server/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gp.png -------------------------------------------------------------------------------- /Server/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gq.png -------------------------------------------------------------------------------- /Server/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gr.png -------------------------------------------------------------------------------- /Server/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gs.png -------------------------------------------------------------------------------- /Server/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gt.png -------------------------------------------------------------------------------- /Server/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gu.png -------------------------------------------------------------------------------- /Server/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gw.png -------------------------------------------------------------------------------- /Server/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/gy.png -------------------------------------------------------------------------------- /Server/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/hk.png -------------------------------------------------------------------------------- /Server/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/hm.png -------------------------------------------------------------------------------- /Server/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/hn.png -------------------------------------------------------------------------------- /Server/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/hr.png -------------------------------------------------------------------------------- /Server/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ht.png -------------------------------------------------------------------------------- /Server/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/hu.png -------------------------------------------------------------------------------- /Server/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/id.png -------------------------------------------------------------------------------- /Server/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ie.png -------------------------------------------------------------------------------- /Server/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/il.png -------------------------------------------------------------------------------- /Server/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/in.png -------------------------------------------------------------------------------- /Server/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/io.png -------------------------------------------------------------------------------- /Server/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/iq.png -------------------------------------------------------------------------------- /Server/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ir.png -------------------------------------------------------------------------------- /Server/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/is.png -------------------------------------------------------------------------------- /Server/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/it.png -------------------------------------------------------------------------------- /Server/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/jm.png -------------------------------------------------------------------------------- /Server/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/jo.png -------------------------------------------------------------------------------- /Server/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/jp.png -------------------------------------------------------------------------------- /Server/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ke.png -------------------------------------------------------------------------------- /Server/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kg.png -------------------------------------------------------------------------------- /Server/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kh.png -------------------------------------------------------------------------------- /Server/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ki.png -------------------------------------------------------------------------------- /Server/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/km.png -------------------------------------------------------------------------------- /Server/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kn.png -------------------------------------------------------------------------------- /Server/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kp.png -------------------------------------------------------------------------------- /Server/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kr.png -------------------------------------------------------------------------------- /Server/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kw.png -------------------------------------------------------------------------------- /Server/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ky.png -------------------------------------------------------------------------------- /Server/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/kz.png -------------------------------------------------------------------------------- /Server/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/la.png -------------------------------------------------------------------------------- /Server/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lb.png -------------------------------------------------------------------------------- /Server/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lc.png -------------------------------------------------------------------------------- /Server/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/li.png -------------------------------------------------------------------------------- /Server/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lk.png -------------------------------------------------------------------------------- /Server/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lr.png -------------------------------------------------------------------------------- /Server/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ls.png -------------------------------------------------------------------------------- /Server/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lt.png -------------------------------------------------------------------------------- /Server/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lu.png -------------------------------------------------------------------------------- /Server/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/lv.png -------------------------------------------------------------------------------- /Server/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ly.png -------------------------------------------------------------------------------- /Server/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ma.png -------------------------------------------------------------------------------- /Server/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mc.png -------------------------------------------------------------------------------- /Server/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/md.png -------------------------------------------------------------------------------- /Server/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/me.png -------------------------------------------------------------------------------- /Server/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mg.png -------------------------------------------------------------------------------- /Server/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mh.png -------------------------------------------------------------------------------- /Server/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mk.png -------------------------------------------------------------------------------- /Server/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ml.png -------------------------------------------------------------------------------- /Server/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mm.png -------------------------------------------------------------------------------- /Server/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mn.png -------------------------------------------------------------------------------- /Server/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mo.png -------------------------------------------------------------------------------- /Server/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mp.png -------------------------------------------------------------------------------- /Server/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mq.png -------------------------------------------------------------------------------- /Server/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mr.png -------------------------------------------------------------------------------- /Server/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ms.png -------------------------------------------------------------------------------- /Server/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mt.png -------------------------------------------------------------------------------- /Server/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mu.png -------------------------------------------------------------------------------- /Server/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mv.png -------------------------------------------------------------------------------- /Server/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mw.png -------------------------------------------------------------------------------- /Server/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mx.png -------------------------------------------------------------------------------- /Server/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/my.png -------------------------------------------------------------------------------- /Server/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/mz.png -------------------------------------------------------------------------------- /Server/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/na.png -------------------------------------------------------------------------------- /Server/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nc.png -------------------------------------------------------------------------------- /Server/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ne.png -------------------------------------------------------------------------------- /Server/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nf.png -------------------------------------------------------------------------------- /Server/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ng.png -------------------------------------------------------------------------------- /Server/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ni.png -------------------------------------------------------------------------------- /Server/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nl.png -------------------------------------------------------------------------------- /Server/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/no.png -------------------------------------------------------------------------------- /Server/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/np.png -------------------------------------------------------------------------------- /Server/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nr.png -------------------------------------------------------------------------------- /Server/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nu.png -------------------------------------------------------------------------------- /Server/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/nz.png -------------------------------------------------------------------------------- /Server/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/om.png -------------------------------------------------------------------------------- /Server/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pa.png -------------------------------------------------------------------------------- /Server/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pe.png -------------------------------------------------------------------------------- /Server/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pf.png -------------------------------------------------------------------------------- /Server/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pg.png -------------------------------------------------------------------------------- /Server/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ph.png -------------------------------------------------------------------------------- /Server/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pk.png -------------------------------------------------------------------------------- /Server/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pl.png -------------------------------------------------------------------------------- /Server/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pm.png -------------------------------------------------------------------------------- /Server/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pn.png -------------------------------------------------------------------------------- /Server/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pr.png -------------------------------------------------------------------------------- /Server/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ps.png -------------------------------------------------------------------------------- /Server/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pt.png -------------------------------------------------------------------------------- /Server/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/pw.png -------------------------------------------------------------------------------- /Server/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/py.png -------------------------------------------------------------------------------- /Server/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/qa.png -------------------------------------------------------------------------------- /Server/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/re.png -------------------------------------------------------------------------------- /Server/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ro.png -------------------------------------------------------------------------------- /Server/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/rs.png -------------------------------------------------------------------------------- /Server/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ru.png -------------------------------------------------------------------------------- /Server/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/rw.png -------------------------------------------------------------------------------- /Server/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sa.png -------------------------------------------------------------------------------- /Server/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sb.png -------------------------------------------------------------------------------- /Server/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sc.png -------------------------------------------------------------------------------- /Server/flags/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/scotland.png -------------------------------------------------------------------------------- /Server/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sd.png -------------------------------------------------------------------------------- /Server/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/se.png -------------------------------------------------------------------------------- /Server/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sg.png -------------------------------------------------------------------------------- /Server/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sh.png -------------------------------------------------------------------------------- /Server/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/si.png -------------------------------------------------------------------------------- /Server/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sj.png -------------------------------------------------------------------------------- /Server/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sk.png -------------------------------------------------------------------------------- /Server/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sl.png -------------------------------------------------------------------------------- /Server/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sm.png -------------------------------------------------------------------------------- /Server/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sn.png -------------------------------------------------------------------------------- /Server/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/so.png -------------------------------------------------------------------------------- /Server/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sr.png -------------------------------------------------------------------------------- /Server/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/st.png -------------------------------------------------------------------------------- /Server/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sv.png -------------------------------------------------------------------------------- /Server/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sy.png -------------------------------------------------------------------------------- /Server/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/sz.png -------------------------------------------------------------------------------- /Server/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tc.png -------------------------------------------------------------------------------- /Server/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/td.png -------------------------------------------------------------------------------- /Server/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tf.png -------------------------------------------------------------------------------- /Server/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tg.png -------------------------------------------------------------------------------- /Server/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/th.png -------------------------------------------------------------------------------- /Server/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tj.png -------------------------------------------------------------------------------- /Server/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tk.png -------------------------------------------------------------------------------- /Server/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tl.png -------------------------------------------------------------------------------- /Server/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tm.png -------------------------------------------------------------------------------- /Server/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tn.png -------------------------------------------------------------------------------- /Server/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/to.png -------------------------------------------------------------------------------- /Server/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tr.png -------------------------------------------------------------------------------- /Server/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tt.png -------------------------------------------------------------------------------- /Server/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tv.png -------------------------------------------------------------------------------- /Server/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tw.png -------------------------------------------------------------------------------- /Server/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/tz.png -------------------------------------------------------------------------------- /Server/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ua.png -------------------------------------------------------------------------------- /Server/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ug.png -------------------------------------------------------------------------------- /Server/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/um.png -------------------------------------------------------------------------------- /Server/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/us.png -------------------------------------------------------------------------------- /Server/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/uy.png -------------------------------------------------------------------------------- /Server/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/uz.png -------------------------------------------------------------------------------- /Server/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/va.png -------------------------------------------------------------------------------- /Server/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/vc.png -------------------------------------------------------------------------------- /Server/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ve.png -------------------------------------------------------------------------------- /Server/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/vg.png -------------------------------------------------------------------------------- /Server/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/vi.png -------------------------------------------------------------------------------- /Server/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/vn.png -------------------------------------------------------------------------------- /Server/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/vu.png -------------------------------------------------------------------------------- /Server/flags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/wales.png -------------------------------------------------------------------------------- /Server/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/wf.png -------------------------------------------------------------------------------- /Server/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ws.png -------------------------------------------------------------------------------- /Server/flags/xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/xy.png -------------------------------------------------------------------------------- /Server/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/ye.png -------------------------------------------------------------------------------- /Server/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/yt.png -------------------------------------------------------------------------------- /Server/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/za.png -------------------------------------------------------------------------------- /Server/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/zm.png -------------------------------------------------------------------------------- /Server/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/flags/zw.png -------------------------------------------------------------------------------- /Server/icons/xRAT-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/icons/xRAT-16x16.png -------------------------------------------------------------------------------- /Server/icons/xRAT-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/icons/xRAT-32x32.png -------------------------------------------------------------------------------- /Server/icons/xRAT-64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/icons/xRAT-64x64.ico -------------------------------------------------------------------------------- /Server/icons/xRAT-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/icons/xRAT-64x64.png -------------------------------------------------------------------------------- /Server/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/application.png -------------------------------------------------------------------------------- /Server/images/application_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/application_add.png -------------------------------------------------------------------------------- /Server/images/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/archive.png -------------------------------------------------------------------------------- /Server/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/back.png -------------------------------------------------------------------------------- /Server/images/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/bricks.png -------------------------------------------------------------------------------- /Server/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/cancel.png -------------------------------------------------------------------------------- /Server/images/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/computer.png -------------------------------------------------------------------------------- /Server/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/copy.png -------------------------------------------------------------------------------- /Server/images/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/done.png -------------------------------------------------------------------------------- /Server/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/download.png -------------------------------------------------------------------------------- /Server/images/drive_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/drive_go.png -------------------------------------------------------------------------------- /Server/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/eye.png -------------------------------------------------------------------------------- /Server/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/file.png -------------------------------------------------------------------------------- /Server/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/folder.png -------------------------------------------------------------------------------- /Server/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/image.png -------------------------------------------------------------------------------- /Server/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/information.png -------------------------------------------------------------------------------- /Server/images/key_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/key_go.png -------------------------------------------------------------------------------- /Server/images/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/lightning.png -------------------------------------------------------------------------------- /Server/images/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/monitor.png -------------------------------------------------------------------------------- /Server/images/mouse_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/mouse_add.png -------------------------------------------------------------------------------- /Server/images/mouse_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/mouse_delete.png -------------------------------------------------------------------------------- /Server/images/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/movie.png -------------------------------------------------------------------------------- /Server/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/music.png -------------------------------------------------------------------------------- /Server/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/pdf.png -------------------------------------------------------------------------------- /Server/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/refresh.png -------------------------------------------------------------------------------- /Server/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/run.png -------------------------------------------------------------------------------- /Server/images/server-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/server-add.png -------------------------------------------------------------------------------- /Server/images/server-disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/server-disconnect.png -------------------------------------------------------------------------------- /Server/images/server-reconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/server-reconnect.png -------------------------------------------------------------------------------- /Server/images/server-uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/server-uninstall.png -------------------------------------------------------------------------------- /Server/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/server.png -------------------------------------------------------------------------------- /Server/images/startup_programs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/startup_programs.png -------------------------------------------------------------------------------- /Server/images/task-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/task-manager.png -------------------------------------------------------------------------------- /Server/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/terminal.png -------------------------------------------------------------------------------- /Server/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/text.png -------------------------------------------------------------------------------- /Server/images/uac-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/uac-shield.png -------------------------------------------------------------------------------- /Server/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/upload.png -------------------------------------------------------------------------------- /Server/images/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/website.png -------------------------------------------------------------------------------- /Server/images/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/word.png -------------------------------------------------------------------------------- /Server/images/world_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/world_go.png -------------------------------------------------------------------------------- /Server/images/world_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/images/world_link.png -------------------------------------------------------------------------------- /Server/obj/x86/Debug/Server.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/Server.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmAbout.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmAddToAutostart.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmAddToAutostart.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmBuilder.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmBuilder.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmDownloadAndExecute.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmDownloadAndExecute.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmFileManager.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmFileManager.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmMain.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmRemoteDesktop.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmRemoteDesktop.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmRemoteShell.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmRemoteShell.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmSettings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmSettings.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmShowMessagebox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmShowMessagebox.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmStartupManager.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmStartupManager.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmStatistics.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmStatistics.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmSystemInformation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmSystemInformation.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmTaskManager.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmTaskManager.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmTermsOfUse.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmTermsOfUse.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmUpdate.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmUpdate.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmUploadAndExecute.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmUploadAndExecute.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Forms.FrmVisitWebsite.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Forms.FrmVisitWebsite.resources -------------------------------------------------------------------------------- /Server/obj/x86/Debug/xServer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/Server/obj/x86/Debug/xServer.Properties.Resources.resources -------------------------------------------------------------------------------- /xRAT 2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuantungmta/xRAT/HEAD/xRAT 2.sln --------------------------------------------------------------------------------