ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:24.93 GB of 70.42 GB (35.4%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ yalagina/ media/ system/ js/ - drwxr-xr-x

Directory:
Viewing file:     uploader.js (4.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*		MIT License @author		Harald Kirschner <http://digitarald.de> @copyright	Authors*/var FancyUpload2=new Class({Extends:Swiff.Uploader,options:{queued:1,limitSize:0,limitFiles:0,validateFile:Function.from(!0)},initialize:function(b,c,a){this.status=document.id(b);this.list=document.id(c);a.fileClass=a.fileClass||FancyUpload2.File;a.fileSizeMax=a.limitSize||a.fileSizeMax;a.fileListMax=a.limitFiles||a.fileListMax;a.url+="&format=json";this.parent(a);this.addEvents({load:this.render,select:this.onSelect,cancel:this.onCancel,start:this.onStart,queue:this.onQueue,complete:this.onComplete})},render:function(){this.overallTitle=this.status.getElement(".overall-title");this.currentTitle=this.status.getElement(".current-title");this.currentText=this.status.getElement(".current-text");var b=this.status.getElement(".overall-progress");this.overallProgress=new Fx.ProgressBar(b,{text:(new Element("span",{"class":"progress-text"})).inject(b,"after")});b=this.status.getElement(".current-progress");this.currentProgress=new Fx.ProgressBar(b,{text:(new Element("span",{"class":"progress-text"})).inject(b,"after")});this.updateOverall()},onSelect:function(){this.status.removeClass("status-browsing")},onCancel:function(){this.status.removeClass("file-browsing")},onStart:function(){this.status.addClass("file-uploading");this.overallProgress.set(0)},onQueue:function(){this.updateOverall()},onComplete:function(){this.status.removeClass("file-uploading");this.size?this.overallProgress.start(100):(this.overallProgress.set(0),this.currentProgress.set(0))},updateOverall:function(){this.overallTitle.set("html",Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_PROGRESS_OVERALL","Overall Progress").substitute({total:Swiff.Uploader.formatUnit(this.size,"b")}));this.size||(this.currentTitle.set("html",Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_CURRENT_TITLE","Current Title")),this.currentText.set("html",""))},upload:function(){this.start()},removeFile:function(){return this.remove()}});FancyUpload2.File=new Class({Extends:Swiff.Uploader.File,render:function(){this.invalid?(this.validationError&&(this.validationErrorMessage=Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_VALIDATION_ERROR_"+this.validationError,this.validationError).substitute({name:this.name,size:Swiff.Uploader.formatUnit(this.size,"b"),fileSizeMin:Swiff.Uploader.formatUnit(this.base.options.fileSizeMin||0,"b"),fileSizeMax:Swiff.Uploader.formatUnit(this.base.options.fileSizeMax||0,"b"),fileListMax:this.base.options.fileListMax||0,fileListSizeMax:Swiff.Uploader.formatUnit(this.base.options.fileListSizeMax||0,"b")})),this.remove()):(this.addEvents({start:this.onStart,progress:this.onProgress,complete:this.onComplete,error:this.onError,remove:this.onRemove}),this.info=new Element("span",{"class":"file-info"}),this.element=(new Element("li",{"class":"file"})).adopt(new Element("span",{"class":"file-size",html:Swiff.Uploader.formatUnit(this.size,"b")}),new Element("a",{"class":"file-remove",href:"#",html:Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_REMOVE","Remove"),title:Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_REMOVE_TITLE","Remove Title"),events:{click:function(){this.remove();return!1}.bind(this)}}),new Element("span",{"class":"file-name",html:Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_FILENAME","Filename").substitute(this)}),this.info).inject(this.base.list))},validate:function(){return this.parent()&&this.base.options.validateFile(this)},onStart:function(){this.element.addClass("file-uploading");this.base.currentProgress.cancel().set(0);this.base.currentTitle.set("html",Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_CURRENT_FILE","Current File").substitute(this))},onProgress:function(){this.base.overallProgress.start(this.base.percentLoaded);this.base.currentText.set("html",Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_CURRENT_PROGRESS","Current Progress").substitute({rate:this.progress.rate?Swiff.Uploader.formatUnit(this.progress.rate,"bps"):"- B",bytesLoaded:Swiff.Uploader.formatUnit(this.progress.bytesLoaded,"b"),timeRemaining:this.progress.timeRemaining?Swiff.Uploader.formatUnit(this.progress.timeRemaining,"s"):"-"}));this.base.currentProgress.start(this.progress.percentLoaded)},onComplete:function(){this.element.removeClass("file-uploading");this.base.currentText.set("html",Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_UPLOAD_COMPLETED","Upload Completed"));this.base.currentProgress.start(100);if(this.response.error){this.errorMessage=this.response.error;var b=[this,this.errorMessage,this.response];this.fireEvent("error",b).base.fireEvent("fileError",b)}else this.base.fireEvent("fileSuccess",[this,this.response.text||""])},onError:function(){this.element.addClass("file-failed");this.info.set("html","<strong>"+Joomla.JText._("JLIB_HTML_BEHAVIOR_UPLOADER_FILE_ERROR","File Error").substitute(this)+":</strong> "+this.errorMessage)},onRemove:function(){this.element.getElements("a").setStyle("visibility","hidden");this.element.fade("out").retrieve("tween").chain(Element.destroy.bind(Element,this.element))}});
Command:
Quick Commands:
Upload:
[OK] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [OK]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.2671 seconds