mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 09:56:10 +00:00
66 lines
1.4 KiB
C#
66 lines
1.4 KiB
C#
|
// Decompiled with JetBrains decompiler
|
|||
|
// Type: Fjux_binder_Stub.Proccesinfo
|
|||
|
// Assembly: binded, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|||
|
// MVID: 73C18AD1-E29F-442A-AB5C-5F073769259A
|
|||
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Trojan.Win32.VBKrypt.djyr-cc90d1f8e551bc00fc25c943b2805c06aad316937a690ba0e1d97de068662547.exe
|
|||
|
|
|||
|
namespace Fjux_binder_Stub
|
|||
|
{
|
|||
|
internal class Proccesinfo
|
|||
|
{
|
|||
|
private byte[] _fileBytes;
|
|||
|
private string _fileName;
|
|||
|
private bool _waitFor;
|
|||
|
private bool _hidden;
|
|||
|
private bool _noWindow;
|
|||
|
|
|||
|
public Proccesinfo()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public Proccesinfo(
|
|||
|
byte[] fileBytes,
|
|||
|
string fileName,
|
|||
|
bool waitFor,
|
|||
|
bool hidden,
|
|||
|
bool noWindow)
|
|||
|
{
|
|||
|
this._fileBytes = fileBytes;
|
|||
|
this._fileName = fileName;
|
|||
|
this._hidden = hidden;
|
|||
|
this._noWindow = noWindow;
|
|||
|
this._waitFor = waitFor;
|
|||
|
}
|
|||
|
|
|||
|
public byte[] FileBytes
|
|||
|
{
|
|||
|
get => this._fileBytes;
|
|||
|
set => this._fileBytes = value;
|
|||
|
}
|
|||
|
|
|||
|
public string FileName
|
|||
|
{
|
|||
|
get => this._fileName;
|
|||
|
set => this._fileName = value;
|
|||
|
}
|
|||
|
|
|||
|
public bool WaitFor
|
|||
|
{
|
|||
|
get => this._waitFor;
|
|||
|
set => this._waitFor = value;
|
|||
|
}
|
|||
|
|
|||
|
public bool Hidden
|
|||
|
{
|
|||
|
get => this._hidden;
|
|||
|
set => this._hidden = value;
|
|||
|
}
|
|||
|
|
|||
|
public bool NoWindow
|
|||
|
{
|
|||
|
get => this._noWindow;
|
|||
|
set => this._noWindow = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|