def init(inputOptions=advancedDict()): """ Set attributes into both configuration and knowledge base singletons based upon command line and configuration file options. """ __mergeOptions(inputOptions) __setVerbosity() __saveCmdline() __setConfAttributes() __setKnowledgeBaseAttributes() __cleanupOptions() __setHTTPTimeout() __setHTTPCookies() __setHTTPReferer() __setHTTPUserAgent() __setHTTPExtraHeaders() __setHTTPMethod() __setHTTPAuthentication() __setHTTPProxy() __setThreads() __setDBMS() __setGoogleDorking() __setMultipleTargets() __urllib2Opener() update() queriesParser()
def init(inputOptions=advancedDict()): """ Set attributes into both configuration and knowledge base singletons based upon command line and configuration file options. """ __setConfAttributes() __setKnowledgeBaseAttributes() __mergeOptions(inputOptions) __setVerbosity() __saveCmdline() __cleanupOptions() __basicOptionValidation() __setRequestFromFile() __setMultipleTargets() __setTamperingFunctions() __setTrafficOutputFP() parseTargetUrl() parseTargetDirect() if conf.url or conf.list or conf.requestFile or conf.googleDork or conf.liveTest: __setHTTPTimeout() __setHTTPExtraHeaders() __setHTTPCookies() __setHTTPReferer() __setHTTPUserAgent() __setHTTPMethod() __setHTTPAuthentication() __setHTTPProxy() __setSafeUrl() __setUnion() __setGoogleDorking() __urllib2Opener() __findPageForms() __setDBMS() __setThreads() __setOS() __setWriteFile() __setMetasploit() update() __loadQueries()