利用匿名管道實現CMD回顯

2021-05-24 02:16:56 字數 1109 閱讀 7824

security_attributes sa;

handle hread,hwrite;

sa.nlength = sizeof(security_attributes); 

sa.lpsecuritydescriptor = null; //使用系統預設的安全描述符 

sa.binherithandle = true; //建立的程序繼承控制代碼

if (!createpipe(&hread,&hwrite,&sa,0)) //建立匿名管道

startupinfo si; 

process_information pi;

zeromemory(&si,sizeof(startupinfo));

si.cb = sizeof(startupinfo); 

getstartupinfo(&si); 

si.hstderror = hwrite; 

si.hstdoutput = hwrite; //新建立程序的標準輸出連在寫管道一端

si.wshowwindow = sw_hide; //隱藏視窗 

si.dwflags = startf_useshowwindow | startf_usestdhandles;

updatewindow();

char cmdline[200]; 

cstring tmp;//,stredit2;

getdlgitemtext(idc_edit_cmd,stredit2); //獲取編輯框中輸入的命令列

tmp.format(l"%s",stredit2);

//sprintf(cmdline,"%s",tmp);

if (!createprocess(l"ffmpeg.exe",tmp.getbuffer(),null,null,true,null,null,null,&si,&pi)) //建立子程序

closehandle(hwrite); //關閉管道控制代碼

char buffer[4096] = ;

//cstring stroutput;

dword bytesread;

while (true) 

closehandle(hread);

VC 模擬CMD 匿名管道

include stdafx.h include include include int call char cmd startupinfo si process information pi zeromemory si,sizeof startupinfo si.cb sizeof startup...

匿名管道實現基於Socket的簡單cmd後門

back.h ifndef backdoor h define backdoor h extern handle hreadone pipe one read extern handle hwriteone pipe one write extern handle hwritetwo pipe tw...

獲取CMD執行結果 匿名管道

管道是一種在程序間共享資料的機制,其實質是一段共享記憶體。windows系統為這段共享的記憶體設計使用資料流i o的方式來訪問。乙個程序讀,另乙個程序寫,這類似於乙個管道的兩端,因此這種程序間的通訊方式稱為 管道 管道分為匿名管道和命名管道。匿名管道只能在父子程序間進行通訊,不能在網路間通訊,而且資...