where can I find: exploit module reference and payload module reference---for ex
ID: 3559516 • Letter: W
Question
where can I find: exploit module reference and payload module reference---for example- http://www.offensive-security.com/metasploit-unleashed/Auxiliary_Module_Reference#Admin provides the auxillary and post module references----I am looking for a list like this but for exploits and payloads. I will rate only for those that provide this information.. Note- I am not looking for a list of exploits or a list of payloads---Im looking specfically for the metasploit module references for exploits and payloads- if such a reference exsists
Explanation / Answer
public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse) throws ServletException, IOException { if(!ServletStatuses.UpdaterReady()) { DoNotReadyResponse(httpservletrequest, httpservletresponse); return; } ReportParams reportparams = new ReportParams(RequestNumber++); String s = httpservletrequest.getContentType(); if(s.startsWith("multipart/form-data")) { try { cat.debug("Content type is " + s); String s1 = CWD + IMPORT_FOLDER; cat.info("Import scripts directory has been set to : " + s1); String s2 = s1 + File.separator; cat.debug("doPost(): uploadDest=" + s2); File file = new File(s2); if(!file.exists()) file.mkdirs(); String s3 = ""; MalibuMultipartRequestParser malibumultipartrequestparser = new MalibuMultipartRequestParser(httpservletrequest, s2, "", s3); malibumultipartrequestparser.parseRequest(); HashMap hashmap = malibumultipartrequestparser.getWebVars(); LoadRP(reportparams, hashmap); } catch(Exception exception) { cat.debug("Unhandled exception reading multipart data in rtrlet", exception); } } else { cat.debug("ECNC2: " + rss.GetParamWithDefault("CharacterEncoding", ToolBox.DEFAULT_ENCODING)); httpservletrequest.setCharacterEncoding(rss.GetParamWithDefault("CharacterEncoding", ToolBox.DEFAULT_ENCODING)); LoadRP(reportparams, httpservletrequest); } DoReport(httpservletrequest, httpservletresponse, reportparams); //Call to DoReport() }
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.