Codebase list fudgec2 / upstream/latest FudgeC2 / Implant / implant_core / screen_capture.py
upstream/latest

Tree @upstream/latest (Download .tar.gz)

screen_capture.py @upstream/latestraw · history · blame

class ScreenCapture:
    type = "SC"
    args = "base64 target file"
    input = "screenshot"

    def process_implant_response(self, data, args):
        return "Screen capture: In dev.", None

    def implant_text(self):
        var = '''
function {{ ron.obf_screen_capture }} ($b){
    try {
        $Script:tr = "1"
    } catch {
        Script:tr = "0"
    }
}'''
        return var