github.com/iDigitalFlame/xmt@v0.5.4/c2/task/vx_win.go (about)

     1  //go:build windows || !implant
     2  // +build windows !implant
     3  
     4  // Copyright (C) 2020 - 2023 iDigitalFlame
     5  //
     6  // This program is free software: you can redistribute it and/or modify
     7  // it under the terms of the GNU General Public License as published by
     8  // the Free Software Foundation, either version 3 of the License, or
     9  // any later version.
    10  //
    11  // This program is distributed in the hope that it will be useful,
    12  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14  // GNU General Public License for more details.
    15  //
    16  // You should have received a copy of the GNU General Public License
    17  // along with this program.  If not, see <https://www.gnu.org/licenses/>.
    18  //
    19  
    20  package task
    21  
    22  const (
    23  	regOpLs  uint8 = 0
    24  	regOpGet uint8 = iota
    25  	regOpMake
    26  	regOpDeleteKey
    27  	regOpDelete
    28  	regOpSet
    29  	regOpSetString
    30  	regOpSetDword
    31  	regOpSetQword
    32  	regOpSetBytes
    33  	regOpSetExpandString
    34  	regOpSetStringList
    35  )
    36  const (
    37  	taskWindowEnable  uint8 = 0
    38  	taskWindowDisable uint8 = iota
    39  	taskWindowTransparency
    40  	taskWindowShow
    41  	taskWindowClose
    42  	taskWindowMessage
    43  	taskWindowMove
    44  	taskWindowFocus
    45  	taskWindowType
    46  )
    47  const (
    48  	taskTrollSwapEnable  uint8 = 0
    49  	taskTrollSwapDisable uint8 = iota
    50  	taskTrollHcEnable
    51  	taskTrollHcDisable
    52  	taskTrollWallpaper
    53  	taskTrollWallpaperPath
    54  	taskTrollBlockInputEnable
    55  	taskTrollBlockInputDisable
    56  	taskTrollWTF
    57  )
    58  const (
    59  	taskLoginsDisconnect uint8 = 0
    60  	taskLoginsLogoff     uint8 = iota
    61  	taskLoginsMessage
    62  )
    63  const (
    64  	taskFuncMapMap   uint8 = 0
    65  	taskFuncMapUnmap uint8 = iota
    66  	taskFuncMapUnmapAll
    67  )