use LWP::UserAgent;
$ua = LWP::UserAgent->new;
require HTTP::Request;
require HTTP::Response;
$i=1;
while($i<646)
{
  $qu = 'http://server/index.asp?page='.$i;
  $req = HTTP::Request->new(GET => $qu);
  $res = $ua->request($req);
  $filename = 'page'.$i.'.html';
  open(FILE,"> $filename") || die "file open error\n";
  print FILE $res->content;
  close(FILE);
  print $i."page success\n";
  $i=$i+1;
}

'programming > perl' 카테고리의 다른 글

tcp request  (0) 2010.05.10
외부파일실행예제  (0) 2010.04.28
HTTP 파일업로드(Perl)  (0) 2009.12.30
web login dictionary attack  (0) 2009.12.03
HTTP요청 스크립트(ActivePerl) form-data  (0) 2009.11.19
Posted by applicationlayer
:

중국산 Webshell Finder

tool 2010. 4. 8. 22:05 |
짱깨느님이 만드신 Webshell Finder이다. 닷넷이 설치되어 있어야함

'tool' 카테고리의 다른 글

网址有效性批量整理工具  (0) 2010.10.04
아이콘 바꾸기  (0) 2010.06.07
NetSparker v1.3.7.5  (0) 2010.04.09
skipfish  (0) 2010.03.26
Posted by applicationlayer
:
Set objIE = CreateObject("InternetExplorer.Application")
Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
Set fl = fso.CreateTextFile("QwiEdK.txt",True)
objIE.Navigate("about:blank")
strTemp = objIE.document.parentwindow.clipboardData.GetData("text")
objIE.Quit
fl.Write strTemp
fl.Close
Set WshShell = WScript.CreateObject("WScript.Shell")

WShShell.Run "C:\\Progra~1\\Wiresh~1\\text2pcap.exe QwiEdK.txt output.pcap"
WShShell.Run "del QwiEdK.txt"
WScript.Echo strTemp
Posted by applicationlayer
: