Paros Scanning Report

Report generated at Tue, 31 Oct 2006 16:07:19.

Summary of Alerts

Risk LevelNumber of Alerts
High2
Medium4
Low2
Informational0

Alert Detail

High (Suspicious)SQL Injection Fingerprinting

Description

SQL injection may be possible.

URL
http://yaronet.com/en/lang.php?l=es'INJECTED_PARAM
Parameter
l=es'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets24.php?s=2'INJECTED_PARAM
Parameter
s=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/en/forum.php?s=489'INJECTED_PARAM
Parameter
s=489'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets.php?f=12'INJECTED_PARAM&s=2
Parameter
f=12'INJECTED_PARAM&s=2
Other information
sql
URL
http://yaronet.com/sujets.php?f=12&s=2'INJECTED_PARAM
Parameter
f=12&s=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1&h=3'INJECTED_PARAM
Parameter
sl=&s=89782&p=1&h=3'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets.php?f=26'INJECTED_PARAM
Parameter
f=26'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782'INJECTED_PARAM
Parameter
sl=&s=89782'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1'INJECTED_PARAM&h=3
Parameter
sl=&s=89782&p=1'INJECTED_PARAM&h=3
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782'INJECTED_PARAM&p=1&h=3
Parameter
sl=&s=89782'INJECTED_PARAM&p=1&h=3
Other information
sql
URL
http://yaronet.com/news.php?nj=61024&f=&fp=0'INJECTED_PARAM
Parameter
nj=61024&f=&fp=0'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?f=&fp=0&key=1'INJECTED_PARAM
Parameter
f=&fp=0&key=1'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl='INJECTED_PARAM&s=89782
Parameter
sl='INJECTED_PARAM&s=89782
Other information
sql
URL
http://yaronet.com/posts.php?sl='INJECTED_PARAM&s=89782&p=1&h=3
Parameter
sl='INJECTED_PARAM&s=89782&p=1&h=3
Other information
sql
URL
http://yaronet.com/news.php?nj=61024&f='INJECTED_PARAM&fp=0
Parameter
nj=61024&f='INJECTED_PARAM&fp=0
Other information
sql
URL
http://yaronet.com/news.php?f=&fp=0'INJECTED_PARAM&key=1
Parameter
f=&fp=0'INJECTED_PARAM&key=1
Other information
sql
URL
http://yaronet.com/news.php?p=2'INJECTED_PARAM
Parameter
p=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?f=14'INJECTED_PARAM
Parameter
f=14'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?nj=61024'INJECTED_PARAM&f=&fp=0
Parameter
nj=61024'INJECTED_PARAM&f=&fp=0
Other information
sql
URL
http://yaronet.com/last.php?s=89460&sl=2'INJECTED_PARAM
Parameter
s=89460&sl=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?f='INJECTED_PARAM&fp=0&key=1
Parameter
f='INJECTED_PARAM&fp=0&key=1
Other information
sql
URL
http://yaronet.com/last.php?s=89769'INJECTED_PARAM
Parameter
s=89769'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/last.php?s=89460'INJECTED_PARAM&sl=2
Parameter
s=89460'INJECTED_PARAM&sl=2
Other information
sql
URL
http://yaronet.com/forum.php?s=14'INJECTED_PARAM
Parameter
s=14'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/lang.php?l=es'INJECTED_PARAM
Parameter
l=es'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/annuM.php?skin=&l=&s='INJECTED_PARAM
Parameter
skin=&l=&s='INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/annuM.php?skin=&l='INJECTED_PARAM&s=
Parameter
skin=&l='INJECTED_PARAM&s=
Other information
sql
URL
http://yaronet.com/annuM.php?skin='INJECTED_PARAM&l=&s=
Parameter
skin='INJECTED_PARAM&l=&s=
Other information
sql
URL
http://yaronet.com/annuM.php?s='INJECTED_PARAM
Parameter
s='INJECTED_PARAM
Other information
sql

Solution

Do not trust client side input even if there is client side validation. In general,

  • If the input string is numeric, type check it.
  • If the application used JDBC, use PreparedStatement or CallableStatement with parameters passed by '?'
  • If the application used ASP, use ADO Command Objects with strong type checking and parameterized query.
  • If stored procedure or bind variables can be used, use it for parameter passing into query. Do not just concatenate string into query in the stored procedure!
  • Do not create dynamic SQL query by simple string concatentation.
  • Use minimum database user privilege for the application. This does not eliminate SQL injection but minimize its damage. Eg if the application require reading one table only, grant such access to the application. Avoid using 'sa' or 'db-owner'.

Reference

  • The OWASP guide at http://www.owasp.org/documentation/guide
  • http://www.sqlsecurity.com/DesktopDefault.aspx?tabid=23
  • http://www.spidynamics.com/whitepapers/WhitepaperSQLInjection.pdf
  • For Oracle database, refer to http://www.integrigy.com/info/IntegrigyIntrotoSQLInjectionAttacks.pdf

High (Suspicious)SQL Injection

Description

SQL injection is possible. User parameters submitted will be formulated into a SQL query for database processing. If the query is built by simple 'string concatenation', it is possible to modify the meaning of the query by carefully crafting the parameters. Depending on the access right and type of database used, tampered query can be used to retrieve sensitive information from the database or execute arbitrary code. MS SQL and PostGreSQL, which supports multiple statements, may be exploited if the database access right is more powerful.

This can occur in URL query strings, POST paramters or even cookies. Currently check on cookie is not supported by Paros. You should check SQL injection manually as well as some blind SQL injection areas cannot be discovered by this check.

URL
http://yaronet.com/en/lang.php?l=es'INJECTED_PARAM
Parameter
l=es'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/en/sujets.php?f=1738'INJECTED_PARAM
Parameter
f=1738'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets.php?f=12&s=2'INJECTED_PARAM
Parameter
f=12&s=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/en/forum.php?s=489'INJECTED_PARAM
Parameter
s=489'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets.php?f=12'INJECTED_PARAM&s=2
Parameter
f=12'INJECTED_PARAM&s=2
Other information
sql
URL
http://yaronet.com/sujets24.php?s=2'INJECTED_PARAM
Parameter
s=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1&h=3'INJECTED_PARAM
Parameter
sl=&s=89782&p=1&h=3'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/sujets.php?f=26'INJECTED_PARAM
Parameter
f=26'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782'INJECTED_PARAM
Parameter
sl=&s=89782'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1'INJECTED_PARAM&h=3
Parameter
sl=&s=89782&p=1'INJECTED_PARAM&h=3
Other information
sql
URL
http://yaronet.com/news.php?nj=61024&f=&fp=0'INJECTED_PARAM
Parameter
nj=61024&f=&fp=0'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl=&s=89782'INJECTED_PARAM&p=1&h=3
Parameter
sl=&s=89782'INJECTED_PARAM&p=1&h=3
Other information
sql
URL
http://yaronet.com/news.php?f=&fp=0&key=1'INJECTED_PARAM
Parameter
f=&fp=0&key=1'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/posts.php?sl='INJECTED_PARAM&s=89782
Parameter
sl='INJECTED_PARAM&s=89782
Other information
sql
URL
http://yaronet.com/news.php?nj=61024&f='INJECTED_PARAM&fp=0
Parameter
nj=61024&f='INJECTED_PARAM&fp=0
Other information
sql
URL
http://yaronet.com/posts.php?sl='INJECTED_PARAM&s=89782&p=1&h=3
Parameter
sl='INJECTED_PARAM&s=89782&p=1&h=3
Other information
sql
URL
http://yaronet.com/news.php?p=2'INJECTED_PARAM
Parameter
p=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?f=&fp=0'INJECTED_PARAM&key=1
Parameter
f=&fp=0'INJECTED_PARAM&key=1
Other information
sql
URL
http://yaronet.com/news.php?f='INJECTED_PARAM&fp=0&key=1
Parameter
f='INJECTED_PARAM&fp=0&key=1
Other information
sql
URL
http://yaronet.com/news.php?nj=61024'INJECTED_PARAM&f=&fp=0
Parameter
nj=61024'INJECTED_PARAM&f=&fp=0
Other information
sql
URL
http://yaronet.com/last.php?s=89460&sl=2'INJECTED_PARAM
Parameter
s=89460&sl=2'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/news.php?f=14'INJECTED_PARAM
Parameter
f=14'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/last.php?s=89769'INJECTED_PARAM
Parameter
s=89769'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/last.php?s=89460'INJECTED_PARAM&sl=2
Parameter
s=89460'INJECTED_PARAM&sl=2
Other information
sql
URL
http://yaronet.com/forum.php?s=14'INJECTED_PARAM
Parameter
s=14'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/lang.php?l=es'INJECTED_PARAM
Parameter
l=es'INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/annuM.php?skin=&l='INJECTED_PARAM&s=
Parameter
skin=&l='INJECTED_PARAM&s=
Other information
sql
URL
http://yaronet.com/annuM.php?skin=&l=&s='INJECTED_PARAM
Parameter
skin=&l=&s='INJECTED_PARAM
Other information
sql
URL
http://yaronet.com/annuM.php?skin='INJECTED_PARAM&l=&s=
Parameter
skin='INJECTED_PARAM&l=&s=
Other information
sql
URL
http://yaronet.com/annuM.php?s='INJECTED_PARAM
Parameter
s='INJECTED_PARAM
Other information
sql

Solution

Do not trust client side input even if there is client side validation. In general,

  • If the input string is numeric, type check it.
  • If the application used JDBC, use PreparedStatement or CallableStatement with parameters passed by '?'
  • If the application used ASP, use ADO Command Objects with strong type checking and parameterized query.
  • If stored procedure or bind variables can be used, use it for parameter passing into query. Do not just concatenate string into query in the stored procedure!
  • Do not create dynamic SQL query by simple string concatentation.
  • Use minimum database user privilege for the application. This does not eliminate SQL injection but minimize its damage. Eg if the application require reading one table only, grant such access to the application. Avoid using 'sa' or 'db-owner'.

Reference

  • The OWASP guide at http://www.owasp.org/documentation/guide
  • http://www.sqlsecurity.com/DesktopDefault.aspx?tabid=23
  • http://www.spidynamics.com/whitepapers/WhitepaperSQLInjection.pdf
  • For Oracle database, refer to http://www.integrigy.com/info/IntegrigyIntrotoSQLInjectionAttacks.pdf

Medium (Warning)Password Autocomplete in browser

Description

AUTOCOMPLETE attribute is not disabled in HTML FORM/INPUT element containing password type input. Passwords may be stored in browsers and retrieved.

URL
http://yaronet.com/en/forum.php?s=489
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/en/sujets.php?f=1738
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/en/lang.php?l=es
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/en/sujets.php?f=1738
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/blogs/blog_new.php
Other information
<input type='password' name='pass' value='' />
URL
http://yaronet.com/blogs/blog.php?id=44
Other information
<input type='password' name='mdp' size='15' maxlength='25' />
URL
http://yaronet.com/sujets24.php?s=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/sujets.php?f=26
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/sujets.php?f=26
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/sujets.php?f=12&s=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/sujets.php?f=12&s=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/yn24.php
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/posts.php?sl=&s=89782
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1&h=3
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/posts.php?sl=&s=89782&p=1&h=3
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/profil.php?skin=
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/news.php?p=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/posts.php?sl=&s=89782
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/news.php?f=&fp=0&key=1
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/news.php?nj=61024&f=&fp=0
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/news.php?f=14
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/news.php
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/last.php?s=89460&sl=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/last.php?s=89460&sl=2
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/last.php?s=89769
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/last.php?s=89769
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/forum.php?s=14
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/lang.php?l=es
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/annuM.php?skin=&l=&s=
Other information
<input type='password' name='mdp' size='25' maxlength='25' />
URL
http://yaronet.com/annuM.php?s=
Other information
<input type='password' name='mdp' size='25' maxlength='25' />

Solution

Turn off AUTOCOMPLETE attribute in form or individual input elements containing password by using AUTOCOMPLETE='OFF'

Reference

http://msdn.microsoft.com/library/default.asp?url=/workshop/author/forms/autocomplete_ovr.asp

Medium (Suspicious)Lotus Domino default files

Description

Lotus Domino default files found.

URL
http://yaronet.com/?OpenServer
URL
http://yaronet.com/?Open

Solution

Remove default files.

Reference

Medium (Suspicious)Cross site scripting

Description

Cross-site scripting or HTML injection is possible. Malicious script may be injected into the browser which appeared to be genuine content from the original site. These scripts can be used to execute arbitrary code or steal customer sensitive information such as user password or cookies.

Very often this is in the form of a hyperlink with the injected script embeded in the query strings. However, XSS is possible via FORM POST data, cookies, user data sent from another user or shared data retrieved from database.

Currently this check does not verify XSS from cookie or database. They should be checked manually if the application retrieve database records from another user's input.

URL
http://yaronet.com/addMn.php?skin=
Parameter
texte=<SCRIPT>alert("Paros");</SCRIPT>
URL
http://yaronet.com/addMn.php?skin=
Parameter
sujetID=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/en/sujets.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/sujets.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E&s=2
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/fCpost.php
Parameter
texte=<SCRIPT>alert("Paros");</SCRIPT>
URL
http://yaronet.com/statsF.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/sujets.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/rss_f.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?nj=61024&f=&fp=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
fp=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?f=&fp=0&key=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
key=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?nj=61024&f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E&fp=0
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E&fp=0&key=1
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?f=&fp=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E&key=1
Parameter
fp=<SCRIPT>alert(Paros);</SCRIPT>
URL
http://yaronet.com/news.php?f=%3CSCRIPT%3Ealert(Paros);%3C/SCRIPT%3E
Parameter
f=<SCRIPT>alert(Paros);</SCRIPT>

Solution

Do not trust client side input even if there is client side validation. Sanitize potentially danger characters in the server side. Very often filtering the <, >, " characters prevented injected script to be executed in most cases. However, sometimes other danger meta-characters such as ' , (, ), /, &, ; etc are also needed.

In addition (or if these characters are needed), HTML encode meta-characters in the response. For example, encode < as &lt;

Reference

  • The OWASP guide at http://www.owasp.org/documentation/guide
  • http://www.technicalinfo.net/papers/CSS.html
  • http://www.cgisecurity.org/articles/xss-faq.shtml
  • http://www.cert.org/tech_tips/malicious_code_FAQ.html
  • http://sandsprite.com/Sleuth/papers/RealWorld_XSS_1.html

Medium (Suspicious)Parameter tampering

Description

Certain parameter caused error page or Java stacktrace to be displayed. This indicated lack of exception handling and potential areas for further exploit.

URL
http://yaronet.com/sujets.php?f=+&s=2
Parameter
f=+&s=2
Other information
on line <b>
URL
http://yaronet.com/en/sujets.php?f=+
Parameter
f=+
Other information
on line <b>
URL
http://yaronet.com/rss_f.php?
Parameter
nil
Other information
on line <b>
URL
http://yaronet.com/sujets.php?f=+
Parameter
f=+
Other information
on line <b>
URL
http://yaronet.com/news.php?p=@
Parameter
p=@
Other information
on line <b>

Solution

Identify the cause of the error and fix it. Do not trust client side input and enforece tight check in the server side. Besides, catch the exception properly. Use a generic 500 error page for internal server error.

Reference

Low (Warning)Obsolete file

Description

Miscellenous include files, backup, unused or obsolete files exist as indicated. If these files contain program source, information such as server logic or ODBC/JDBC user ID and passwords may be revealed since these file extension may not be processed by the web server.

URL
http://yaronet.com/en/oubli.php.inc
URL
http://yaronet.com/en/sujets.php.inc?f=1738
URL
http://yaronet.com/en/insc.php.inc?skin=&s=489
URL
http://yaronet.com/en/lang.php.inc?l=es
URL
http://yaronet.com/en/oubli.php.bak
URL
http://yaronet.com/en/sujets.php.bak?f=1738
URL
http://yaronet.com/en/lang.php.bak?l=es
URL
http://yaronet.com/en/forum.php.inc?s=489
URL
http://yaronet.com/en/sujets.php.old?f=1738
URL
http://yaronet.com/en/insc.php.bak?skin=&s=489
URL
http://yaronet.com/en/forum.php.bak?s=489
URL
http://yaronet.com/en/oubli.php.old
URL
http://yaronet.com/en/insc.php.old?skin=&s=489
URL
http://yaronet.com/en/lang.php.old?l=es
URL
http://yaronet.com/blogs/blog_new.php.inc
URL
http://yaronet.com/en/forum.php.old?s=489
URL
http://yaronet.com/blogs/blog_new.php.bak
URL
http://yaronet.com/blogs/blog.php.inc?id=44
URL
http://yaronet.com/blogs/blog_new.php.old
URL
http://yaronet.com/blogs/blog.php.bak?id=44
URL
http://yaronet.com/profil.php.inc?a=1&amp;skin=
URL
http://yaronet.com/blogs/blog.php.old?id=44
URL
http://yaronet.com/fCpost.php.inc
URL
http://yaronet.com/lookS.php.inc
URL
http://yaronet.com/addMn.php.inc?skin=
URL
http://yaronet.com/login.php.inc
URL
http://yaronet.com/lookS.php.bak
URL
http://yaronet.com/profil.php.bak?a=1&amp;skin=
URL
http://yaronet.com/login.php.bak
URL
http://yaronet.com/fCpost.php.bak
URL
http://yaronet.com/profil.php.old?a=1&amp;skin=
URL
http://yaronet.com/addMn.php.bak?skin=
URL
http://yaronet.com/login.php.old
URL
http://yaronet.com/lookS.php.old
URL
http://yaronet.com/addMn.php.old?skin=
URL
http://yaronet.com/fCpost.php.old
URL
http://yaronet.com/sujets24.php.inc?s=2
URL
http://yaronet.com/yn24.php.inc
URL
http://yaronet.com/sujets.php.inc?f=12&s=2
URL
http://yaronet.com/sujets.php.inc?f=26
URL
http://yaronet.com/sujets24.php.bak?s=2
URL
http://yaronet.com/yn24.php.bak
URL
http://yaronet.com/sujets.php.bak?f=12&s=2
URL
http://yaronet.com/sujets.php.bak?f=26
URL
http://yaronet.com/sujets24.php.old?s=2
URL
http://yaronet.com/yn24.php.old
URL
http://yaronet.com/sujets.php.old?f=12&s=2
URL
http://yaronet.com/sujets.php.old?f=26
URL
http://yaronet.com/statsF.php.inc?f=424
URL
http://yaronet.com/sticky.php.inc?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/skin.php.inc?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/stats.php.inc
URL
http://yaronet.com/sticky.php.bak?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/selG.php.inc?s=2&skin=
URL
http://yaronet.com/stats.php.bak
URL
http://yaronet.com/statsF.php.bak?f=424
URL
http://yaronet.com/selG.php.bak?s=2&skin=
URL
http://yaronet.com/skin.php.bak?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/statsF.php.old?f=424
URL
http://yaronet.com/sticky.php.old?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/stats.php.old
URL
http://yaronet.com/skin.php.old?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/rss_f.php.inc?f=2
URL
http://yaronet.com/selG.php.old?s=2&skin=
URL
http://yaronet.com/rss.php.inc
URL
http://yaronet.com/search.php.inc?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/posts.php.inc?sl=&s=89782
URL
http://yaronet.com/profil.php.inc?skin=
URL
http://yaronet.com/rss_f.php.bak?f=2
URL
http://yaronet.com/search.php.bak?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/profil.php.bak?skin=
URL
http://yaronet.com/rss.php.bak
URL
http://yaronet.com/rss_f.php.old?f=2
URL
http://yaronet.com/posts.php.bak?sl=&s=89782
URL
http://yaronet.com/rss.php.old
URL
http://yaronet.com/search.php.old?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/posts.php.old?sl=&s=89782
URL
http://yaronet.com/profil.php.old?skin=
URL
http://yaronet.com/oubli.php.inc
URL
http://yaronet.com/posts.php.inc?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.inc?p=2
URL
http://yaronet.com/news.php.inc?f=&fp=0&key=1
URL
http://yaronet.com/posts.php.bak?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.inc?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.bak?p=2
URL
http://yaronet.com/oubli.php.bak
URL
http://yaronet.com/news.php.bak?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.bak?f=&fp=0&key=1
URL
http://yaronet.com/oubli.php.old
URL
http://yaronet.com/posts.php.old?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.old?p=2
URL
http://yaronet.com/news.php.old?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.inc?f=14
URL
http://yaronet.com/news.php.old?f=&fp=0&key=1
URL
http://yaronet.com/news.php.inc
URL
http://yaronet.com/mmsg.php.inc?skin=
URL
http://yaronet.com/mmsend.php.inc?eNick=willcoyote
URL
http://yaronet.com/msdel.php.inc?sl=&s=89782&f=75
URL
http://yaronet.com/mmsg.php.bak?skin=
URL
http://yaronet.com/news.php.bak?f=14
URL
http://yaronet.com/msdel.php.bak?sl=&s=89782&f=75
URL
http://yaronet.com/news.php.bak
URL
http://yaronet.com/news.php.old?f=14
URL
http://yaronet.com/mmsend.php.bak?eNick=willcoyote
URL
http://yaronet.com/msdel.php.old?sl=&s=89782&f=75
URL
http://yaronet.com/news.php.old
URL
http://yaronet.com/mmsend.php.old?eNick=willcoyote
URL
http://yaronet.com/mmsg.php.old?skin=
URL
http://yaronet.com/last.php.inc?s=89769
URL
http://yaronet.com/last.php.inc?s=89460&sl=2
URL
http://yaronet.com/lang.php.inc?l=es
URL
http://yaronet.com/insc.php.inc?skin=&s=2
URL
http://yaronet.com/last.php.bak?s=89460&sl=2
URL
http://yaronet.com/index.php.inc
URL
http://yaronet.com/lang.php.bak?l=es
URL
http://yaronet.com/insc.php.bak?skin=&s=2
URL
http://yaronet.com/index.php.bak
URL
http://yaronet.com/last.php.bak?s=89769
URL
http://yaronet.com/lang.php.old?l=es
URL
http://yaronet.com/last.php.old?s=89460&sl=2
URL
http://yaronet.com/last.php.old?s=89769
URL
http://yaronet.com/insc.php.old?skin=&s=2
URL
http://yaronet.com/ignore.php.inc?n=Godzil&a=a
URL
http://yaronet.com/index.php.old
URL
http://yaronet.com/fav.php.inc?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/forum.php.inc?s=14
URL
http://yaronet.com/fCsmile.php.inc
URL
http://yaronet.com/hook.php.inc?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/forum.php.bak?s=14
URL
http://yaronet.com/ignore.php.bak?n=Godzil&a=a
URL
http://yaronet.com/fav.php.bak?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/hook.php.bak?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/ignore.php.old?n=Godzil&a=a
URL
http://yaronet.com/fCsmile.php.bak
URL
http://yaronet.com/hook.php.old?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/forum.php.old?s=14
URL
http://yaronet.com/fCsmile.php.old
URL
http://yaronet.com/fav.php.old?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/depl.php.inc?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/dposts.php.inc?skin=
URL
http://yaronet.com/delog.php.inc
URL
http://yaronet.com/del.php.inc?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/dposts.php.bak?skin=
URL
http://yaronet.com/clore.php.inc?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/del.php.bak?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/delog.php.bak
URL
http://yaronet.com/clore.php.bak?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.bak?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/del.php.old?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/dposts.php.old?skin=
URL
http://yaronet.com/depl.php.old?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/delog.php.old
URL
http://yaronet.com/blogs/~?l=Z
URL
http://yaronet.com/clore.php.old?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/chat2.php.inc
URL
http://yaronet.com/blogs/~
URL
http://yaronet.com/chat2.php.bak
URL
http://yaronet.com/chat.php.inc?skin=&s=
URL
http://yaronet.com/chat2.php.old
URL
http://yaronet.com/chat.php.bak?skin=&s=
URL
http://yaronet.com/annuS.php.inc
URL
http://yaronet.com/chat.php.old?skin=&s=
URL
http://yaronet.com/annuM.php.inc?skin=&l=&s=
URL
http://yaronet.com/annuM.php.inc?s=
URL
http://yaronet.com/annuF.php.inc?l=last
URL
http://yaronet.com/aide.php.inc
URL
http://yaronet.com/annuM.php.bak?s=
URL
http://yaronet.com/annuS.php.bak
URL
http://yaronet.com/aide.php.bak
URL
http://yaronet.com/annuM.php.bak?skin=&l=&s=
URL
http://yaronet.com/annuM.php.old?s=
URL
http://yaronet.com/annuF.php.bak?l=last
URL
http://yaronet.com/annuM.php.old?skin=&l=&s=
URL
http://yaronet.com/annuS.php.old
URL
http://yaronet.com/aide.php.old
URL
http://yaronet.com/annuF.php.old?l=last

Solution

Remove backup, unused or obsolete files. For include files, carefully choose the suffix to prevent information disclosure.

Reference

Low (Warning)Obsolete file extended check

Description

Miscellenous include files, backup, unused or obsolete files exist as indicated. If these files contain program source, information such as server logic or ODBC/JDBC user ID and passwords may be revealed since these file extension may not be processed by the web server.

URL
http://yaronet.com/en/oubli.php.Inc
URL
http://yaronet.com/en/sujets.php.Inc?f=1738
URL
http://yaronet.com/en/oubli.php.INC
URL
http://yaronet.com/en/sujets.php.INC?f=1738
URL
http://yaronet.com/en/oubli.php.java
URL
http://yaronet.com/en/sujets.php.java?f=1738
URL
http://yaronet.com/en/oubli.php.Bak
URL
http://yaronet.com/en/sujets.php.Bak?f=1738
URL
http://yaronet.com/blogs/blog_new.php.Inc
URL
http://yaronet.com/en/sujets.php.BAK?f=1738
URL
http://yaronet.com/en/sujets.php.Old?f=1738
URL
http://yaronet.com/en/oubli.php.BAK
URL
http://yaronet.com/en/oubli.php.Old
URL
http://yaronet.com/blogs/blog_new.php.INC
URL
http://yaronet.com/blogs/blog_new.php.java
URL
http://yaronet.com/en/sujets.php.OLD?f=1738
URL
http://yaronet.com/blogs/blog_new.php.Bak
URL
http://yaronet.com/en/oubli.php.OLD
URL
http://yaronet.com/blogs/blog_new.php.Old
URL
http://yaronet.com/blogs/blog_new.php.BAK
URL
http://yaronet.com/en/lang.php.INC?l=es
URL
http://yaronet.com/en/lang.php.Inc?l=es
URL
http://yaronet.com/en/lang.php.Bak?l=es
URL
http://yaronet.com/en/lang.php.java?l=es
URL
http://yaronet.com/en/lang.php.Old?l=es
URL
http://yaronet.com/en/lang.php.BAK?l=es
URL
http://yaronet.com/en/insc.php.Inc?skin=&s=489
URL
http://yaronet.com/en/lang.php.OLD?l=es
URL
http://yaronet.com/en/insc.php.java?skin=&s=489
URL
http://yaronet.com/en/insc.php.INC?skin=&s=489
URL
http://yaronet.com/en/insc.php.BAK?skin=&s=489
URL
http://yaronet.com/en/insc.php.Bak?skin=&s=489
URL
http://yaronet.com/en/insc.php.OLD?skin=&s=489
URL
http://yaronet.com/en/insc.php.Old?skin=&s=489
URL
http://yaronet.com/en/forum.php.INC?s=489
URL
http://yaronet.com/en/forum.php.Inc?s=489
URL
http://yaronet.com/en/forum.php.Bak?s=489
URL
http://yaronet.com/en/forum.php.java?s=489
URL
http://yaronet.com/en/forum.php.Old?s=489
URL
http://yaronet.com/en/forum.php.BAK?s=489
URL
http://yaronet.com/blogs/blog.php.Inc?id=44
URL
http://yaronet.com/en/forum.php.OLD?s=489
URL
http://yaronet.com/blogs/blog.php.java?id=44
URL
http://yaronet.com/blogs/blog.php.INC?id=44
URL
http://yaronet.com/blogs/blog.php.BAK?id=44
URL
http://yaronet.com/blogs/blog.php.Bak?id=44
URL
http://yaronet.com/blogs/blog_new.php.OLD
URL
http://yaronet.com/blogs/blog.php.Old?id=44
URL
http://yaronet.com/profil.php.Inc?a=1&amp;skin=
URL
http://yaronet.com/blogs/blog.php.OLD?id=44
URL
http://yaronet.com/profil.php.INC?a=1&amp;skin=
URL
http://yaronet.com/lookS.php.Inc
URL
http://yaronet.com/login.php.Inc
URL
http://yaronet.com/fCpost.php.Inc
URL
http://yaronet.com/lookS.php.INC
URL
http://yaronet.com/addMn.php.Inc?skin=
URL
http://yaronet.com/fCpost.php.INC
URL
http://yaronet.com/login.php.INC
URL
http://yaronet.com/addMn.php.INC?skin=
URL
http://yaronet.com/profil.php.java?a=1&amp;skin=
URL
http://yaronet.com/login.php.java
URL
http://yaronet.com/lookS.php.java
URL
http://yaronet.com/profil.php.Bak?a=1&amp;skin=
URL
http://yaronet.com/fCpost.php.java
URL
http://yaronet.com/lookS.php.Bak
URL
http://yaronet.com/addMn.php.java?skin=
URL
http://yaronet.com/fCpost.php.Bak
URL
http://yaronet.com/login.php.Bak
URL
http://yaronet.com/addMn.php.Bak?skin=
URL
http://yaronet.com/profil.php.BAK?a=1&amp;skin=
URL
http://yaronet.com/login.php.BAK
URL
http://yaronet.com/lookS.php.BAK
URL
http://yaronet.com/addMn.php.BAK?skin=
URL
http://yaronet.com/fCpost.php.BAK
URL
http://yaronet.com/lookS.php.Old
URL
http://yaronet.com/profil.php.Old?a=1&amp;skin=
URL
http://yaronet.com/login.php.Old
URL
http://yaronet.com/fCpost.php.Old
URL
http://yaronet.com/addMn.php.Old?skin=
URL
http://yaronet.com/profil.php.OLD?a=1&amp;skin=
URL
http://yaronet.com/login.php.OLD
URL
http://yaronet.com/lookS.php.OLD
URL
http://yaronet.com/addMn.php.OLD?skin=
URL
http://yaronet.com/fCpost.php.OLD
URL
http://yaronet.com/yn24.php.INC
URL
http://yaronet.com/yn24.php.Inc
URL
http://yaronet.com/sujets24.php.Inc?s=2
URL
http://yaronet.com/sujets.php.Inc?f=12&s=2
URL
http://yaronet.com/sujets.php.INC?f=12&s=2
URL
http://yaronet.com/sujets.php.Inc?f=26
URL
http://yaronet.com/sujets.php.INC?f=26
URL
http://yaronet.com/sujets24.php.INC?s=2
URL
http://yaronet.com/sujets24.php.java?s=2
URL
http://yaronet.com/yn24.php.java
URL
http://yaronet.com/sujets.php.java?f=12&s=2
URL
http://yaronet.com/sujets.php.java?f=26
URL
http://yaronet.com/sujets.php.Bak?f=26
URL
http://yaronet.com/yn24.php.Bak
URL
http://yaronet.com/sujets.php.Bak?f=12&s=2
URL
http://yaronet.com/sujets24.php.Bak?s=2
URL
http://yaronet.com/sujets24.php.BAK?s=2
URL
http://yaronet.com/yn24.php.BAK
URL
http://yaronet.com/sujets.php.BAK?f=26
URL
http://yaronet.com/sujets.php.BAK?f=12&s=2
URL
http://yaronet.com/sujets24.php.Old?s=2
URL
http://yaronet.com/yn24.php.Old
URL
http://yaronet.com/sujets.php.Old?f=26
URL
http://yaronet.com/sujets.php.Old?f=12&s=2
URL
http://yaronet.com/sujets24.php.OLD?s=2
URL
http://yaronet.com/yn24.php.OLD
URL
http://yaronet.com/sujets.php.OLD?f=26
URL
http://yaronet.com/sujets.php.OLD?f=12&s=2
URL
http://yaronet.com/statsF.php.Inc?f=424
URL
http://yaronet.com/sticky.php.Inc?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/sticky.php.INC?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/stats.php.Inc
URL
http://yaronet.com/skin.php.Inc?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/selG.php.Inc?s=2&skin=
URL
http://yaronet.com/stats.php.INC
URL
http://yaronet.com/statsF.php.INC?f=424
URL
http://yaronet.com/selG.php.INC?s=2&skin=
URL
http://yaronet.com/sticky.php.java?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/statsF.php.java?f=424
URL
http://yaronet.com/skin.php.INC?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/sticky.php.Bak?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/stats.php.java
URL
http://yaronet.com/skin.php.java?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/selG.php.java?s=2&skin=
URL
http://yaronet.com/stats.php.Bak
URL
http://yaronet.com/statsF.php.Bak?f=424
URL
http://yaronet.com/selG.php.Bak?s=2&skin=
URL
http://yaronet.com/sticky.php.BAK?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/statsF.php.BAK?f=424
URL
http://yaronet.com/skin.php.Bak?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/sticky.php.Old?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/stats.php.BAK
URL
http://yaronet.com/skin.php.BAK?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/selG.php.BAK?s=2&skin=
URL
http://yaronet.com/stats.php.Old
URL
http://yaronet.com/statsF.php.Old?f=424
URL
http://yaronet.com/skin.php.Old?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/sticky.php.OLD?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/statsF.php.OLD?f=424
URL
http://yaronet.com/selG.php.Old?s=2&skin=
URL
http://yaronet.com/selG.php.OLD?s=2&skin=
URL
http://yaronet.com/stats.php.OLD
URL
http://yaronet.com/search.php.Inc?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/skin.php.OLD?skin=&ref=http%3A%2F%2Fyaronet.com
URL
http://yaronet.com/rss.php.Inc
URL
http://yaronet.com/rss_f.php.Inc?f=2
URL
http://yaronet.com/search.php.INC?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/posts.php.Inc?sl=&s=89782
URL
http://yaronet.com/rss_f.php.INC?f=2
URL
http://yaronet.com/profil.php.Inc?skin=
URL
http://yaronet.com/posts.php.INC?sl=&s=89782
URL
http://yaronet.com/rss.php.INC
URL
http://yaronet.com/profil.php.INC?skin=
URL
http://yaronet.com/search.php.java?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/rss.php.java
URL
http://yaronet.com/rss_f.php.java?f=2
URL
http://yaronet.com/search.php.Bak?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/posts.php.java?sl=&s=89782
URL
http://yaronet.com/rss_f.php.Bak?f=2
URL
http://yaronet.com/profil.php.java?skin=
URL
http://yaronet.com/posts.php.Bak?sl=&s=89782
URL
http://yaronet.com/rss.php.Bak
URL
http://yaronet.com/search.php.BAK?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/profil.php.Bak?skin=
URL
http://yaronet.com/rss.php.BAK
URL
http://yaronet.com/rss_f.php.BAK?f=2
URL
http://yaronet.com/search.php.Old?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/posts.php.BAK?sl=&s=89782
URL
http://yaronet.com/rss_f.php.Old?f=2
URL
http://yaronet.com/profil.php.BAK?skin=
URL
http://yaronet.com/posts.php.Old?sl=&s=89782
URL
http://yaronet.com/rss.php.Old
URL
http://yaronet.com/profil.php.Old?skin=
URL
http://yaronet.com/search.php.OLD?skin=&s=&ref=%2Findex.php
URL
http://yaronet.com/rss.php.OLD
URL
http://yaronet.com/rss_f.php.OLD?f=2
URL
http://yaronet.com/profil.php.OLD?skin=
URL
http://yaronet.com/posts.php.OLD?sl=&s=89782
URL
http://yaronet.com/posts.php.Inc?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/oubli.php.Inc
URL
http://yaronet.com/news.php.Inc?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.Inc?p=2
URL
http://yaronet.com/oubli.php.INC
URL
http://yaronet.com/news.php.Inc?f=&fp=0&key=1
URL
http://yaronet.com/news.php.INC?p=2
URL
http://yaronet.com/posts.php.INC?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/oubli.php.java
URL
http://yaronet.com/news.php.INC?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.INC?f=&fp=0&key=1
URL
http://yaronet.com/posts.php.java?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.java?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.java?p=2
URL
http://yaronet.com/news.php.java?f=&fp=0&key=1
URL
http://yaronet.com/oubli.php.Bak
URL
http://yaronet.com/news.php.Bak?p=2
URL
http://yaronet.com/posts.php.Bak?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.Bak?f=&fp=0&key=1
URL
http://yaronet.com/news.php.Bak?nj=61024&f=&fp=0
URL
http://yaronet.com/posts.php.BAK?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/oubli.php.BAK
URL
http://yaronet.com/news.php.BAK?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.BAK?p=2
URL
http://yaronet.com/oubli.php.Old
URL
http://yaronet.com/news.php.BAK?f=&fp=0&key=1
URL
http://yaronet.com/news.php.Old?p=2
URL
http://yaronet.com/posts.php.Old?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.Old?f=&fp=0&key=1
URL
http://yaronet.com/news.php.Old?nj=61024&f=&fp=0
URL
http://yaronet.com/oubli.php.OLD
URL
http://yaronet.com/posts.php.OLD?sl=&s=89782&p=1&h=3
URL
http://yaronet.com/news.php.OLD?nj=61024&f=&fp=0
URL
http://yaronet.com/news.php.OLD?p=2
URL
http://yaronet.com/news.php.Inc?f=14
URL
http://yaronet.com/news.php.OLD?f=&fp=0&key=1
URL
http://yaronet.com/mmsg.php.Inc?skin=
URL
http://yaronet.com/news.php.Inc
URL
http://yaronet.com/news.php.INC?f=14
URL
http://yaronet.com/msdel.php.Inc?sl=&s=89782&f=75
URL
http://yaronet.com/news.php.INC
URL
http://yaronet.com/mmsend.php.Inc?eNick=willcoyote
URL
http://yaronet.com/msdel.php.INC?sl=&s=89782&f=75
URL
http://yaronet.com/mmsg.php.INC?skin=
URL
http://yaronet.com/news.php.java
URL
http://yaronet.com/mmsend.php.INC?eNick=willcoyote
URL
http://yaronet.com/mmsg.php.java?skin=
URL
http://yaronet.com/news.php.java?f=14
URL
http://yaronet.com/mmsend.php.java?eNick=willcoyote
URL
http://yaronet.com/msdel.php.java?sl=&s=89782&f=75
URL
http://yaronet.com/news.php.Bak?f=14
URL
http://yaronet.com/news.php.Bak
URL
http://yaronet.com/msdel.php.Bak?sl=&s=89782&f=75
URL
http://yaronet.com/mmsg.php.Bak?skin=
URL
http://yaronet.com/news.php.BAK
URL
http://yaronet.com/mmsend.php.Bak?eNick=willcoyote
URL
http://yaronet.com/mmsg.php.BAK?skin=
URL
http://yaronet.com/news.php.BAK?f=14
URL
http://yaronet.com/mmsend.php.BAK?eNick=willcoyote
URL
http://yaronet.com/msdel.php.BAK?sl=&s=89782&f=75
URL
http://yaronet.com/news.php.Old
URL
http://yaronet.com/news.php.Old?f=14
URL
http://yaronet.com/msdel.php.Old?sl=&s=89782&f=75
URL
http://yaronet.com/mmsg.php.Old?skin=
URL
http://yaronet.com/news.php.OLD?f=14
URL
http://yaronet.com/mmsend.php.Old?eNick=willcoyote
URL
http://yaronet.com/mmsg.php.OLD?skin=
URL
http://yaronet.com/news.php.OLD
URL
http://yaronet.com/mmsend.php.OLD?eNick=willcoyote
URL
http://yaronet.com/msdel.php.OLD?sl=&s=89782&f=75
URL
http://yaronet.com/last.php.Inc?s=89769
URL
http://yaronet.com/last.php.Inc?s=89460&sl=2
URL
http://yaronet.com/insc.php.Inc?skin=&s=2
URL
http://yaronet.com/index.php.Inc
URL
http://yaronet.com/last.php.INC?s=89460&sl=2
URL
http://yaronet.com/lang.php.Inc?l=es
URL
http://yaronet.com/index.php.INC
URL
http://yaronet.com/last.php.INC?s=89769
URL
http://yaronet.com/insc.php.INC?skin=&s=2
URL
http://yaronet.com/lang.php.INC?l=es
URL
http://yaronet.com/last.php.java?s=89769
URL
http://yaronet.com/last.php.java?s=89460&sl=2
URL
http://yaronet.com/insc.php.java?skin=&s=2
URL
http://yaronet.com/lang.php.java?l=es
URL
http://yaronet.com/last.php.Bak?s=89460&sl=2
URL
http://yaronet.com/index.php.java
URL
http://yaronet.com/insc.php.Bak?skin=&s=2
URL
http://yaronet.com/last.php.Bak?s=89769
URL
http://yaronet.com/index.php.Bak
URL
http://yaronet.com/lang.php.Bak?l=es
URL
http://yaronet.com/last.php.BAK?s=89769
URL
http://yaronet.com/last.php.BAK?s=89460&sl=2
URL
http://yaronet.com/lang.php.BAK?l=es
URL
http://yaronet.com/insc.php.BAK?skin=&s=2
URL
http://yaronet.com/last.php.Old?s=89460&sl=2
URL
http://yaronet.com/index.php.BAK
URL
http://yaronet.com/insc.php.Old?skin=&s=2
URL
http://yaronet.com/last.php.Old?s=89769
URL
http://yaronet.com/index.php.Old
URL
http://yaronet.com/lang.php.Old?l=es
URL
http://yaronet.com/last.php.OLD?s=89769
URL
http://yaronet.com/last.php.OLD?s=89460&sl=2
URL
http://yaronet.com/lang.php.OLD?l=es
URL
http://yaronet.com/insc.php.OLD?skin=&s=2
URL
http://yaronet.com/ignore.php.Inc?n=Godzil&a=a
URL
http://yaronet.com/index.php.OLD
URL
http://yaronet.com/forum.php.Inc?s=14
URL
http://yaronet.com/hook.php.Inc?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/ignore.php.INC?n=Godzil&a=a
URL
http://yaronet.com/fCsmile.php.Inc
URL
http://yaronet.com/fav.php.Inc?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/hook.php.INC?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/fCsmile.php.INC
URL
http://yaronet.com/forum.php.INC?s=14
URL
http://yaronet.com/hook.php.java?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/ignore.php.java?n=Godzil&a=a
URL
http://yaronet.com/forum.php.java?s=14
URL
http://yaronet.com/fav.php.INC?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/ignore.php.Bak?n=Godzil&a=a
URL
http://yaronet.com/fCsmile.php.java
URL
http://yaronet.com/fav.php.java?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/hook.php.Bak?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/fCsmile.php.Bak
URL
http://yaronet.com/forum.php.Bak?s=14
URL
http://yaronet.com/hook.php.BAK?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/ignore.php.BAK?n=Godzil&a=a
URL
http://yaronet.com/forum.php.BAK?s=14
URL
http://yaronet.com/fav.php.Bak?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/ignore.php.Old?n=Godzil&a=a
URL
http://yaronet.com/fCsmile.php.BAK
URL
http://yaronet.com/fav.php.BAK?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/hook.php.Old?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/fCsmile.php.Old
URL
http://yaronet.com/forum.php.Old?s=14
URL
http://yaronet.com/hook.php.OLD?sl=&s=89782&f=75&h=3
URL
http://yaronet.com/ignore.php.OLD?n=Godzil&a=a
URL
http://yaronet.com/forum.php.OLD?s=14
URL
http://yaronet.com/fav.php.Old?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/fCsmile.php.OLD
URL
http://yaronet.com/fav.php.OLD?a=add&skin=&titre=Forum%20Ti%2068k%20-%20Ti%2089%2F92%2F92%2B%2FV200&url=%2Fforum.php%3Fs%3D2
URL
http://yaronet.com/depl.php.Inc?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/dposts.php.Inc?skin=
URL
http://yaronet.com/dposts.php.INC?skin=
URL
http://yaronet.com/delog.php.Inc
URL
http://yaronet.com/depl.php.INC?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/clore.php.Inc?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/delog.php.INC
URL
http://yaronet.com/del.php.Inc?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/clore.php.INC?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/dposts.php.java?skin=
URL
http://yaronet.com/del.php.INC?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.java?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/dposts.php.Bak?skin=
URL
http://yaronet.com/delog.php.java
URL
http://yaronet.com/clore.php.java?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.Bak?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/delog.php.Bak
URL
http://yaronet.com/del.php.java?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.BAK?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/dposts.php.BAK?skin=
URL
http://yaronet.com/del.php.Bak?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/clore.php.Bak?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/dposts.php.Old?skin=
URL
http://yaronet.com/delog.php.BAK
URL
http://yaronet.com/clore.php.BAK?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.Old?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/delog.php.Old
URL
http://yaronet.com/del.php.BAK?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/depl.php.OLD?s=89782&sl=10&f=75&skin=
URL
http://yaronet.com/dposts.php.OLD?skin=
URL
http://yaronet.com/del.php.Old?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/clore.php.Old?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/delog.php.OLD
URL
http://yaronet.com/blogs/~?l=Z
URL
http://yaronet.com/del.php.OLD?s=89782&sl=&f=75&skin=
URL
http://yaronet.com/blogs/~
URL
http://yaronet.com/chat2.php.Inc
URL
http://yaronet.com/clore.php.OLD?s=89782&m=f&sl=&f=75&skin=
URL
http://yaronet.com/chat2.php.INC
URL
http://yaronet.com/chat.php.Inc?skin=&s=
URL
http://yaronet.com/chat.php.java?skin=&s=
URL
http://yaronet.com/chat.php.INC?skin=&s=
URL
http://yaronet.com/chat2.php.Bak
URL
http://yaronet.com/chat2.php.java
URL
http://yaronet.com/chat2.php.BAK
URL
http://yaronet.com/chat.php.Bak?skin=&s=
URL
http://yaronet.com/chat2.php.Old
URL
http://yaronet.com/chat.php.BAK?skin=&s=
URL
http://yaronet.com/chat.php.OLD?skin=&s=
URL
http://yaronet.com/chat.php.Old?skin=&s=
URL
http://yaronet.com/annuF.php.Inc?l=last
URL
http://yaronet.com/chat2.php.OLD
URL
http://yaronet.com/annuM.php.Inc?s=
URL
http://yaronet.com/annuS.php.Inc
URL
http://yaronet.com/aide.php.Inc
URL
http://yaronet.com/annuM.php.Inc?skin=&l=&s=
URL
http://yaronet.com/annuS.php.INC
URL
http://yaronet.com/annuF.php.INC?l=last
URL
http://yaronet.com/annuM.php.INC?skin=&l=&s=
URL
http://yaronet.com/annuM.php.INC?s=
URL
http://yaronet.com/annuF.php.java?l=last
URL
http://yaronet.com/aide.php.INC
URL
http://yaronet.com/annuM.php.java?skin=&l=&s=
URL
http://yaronet.com/annuS.php.java
URL
http://yaronet.com/aide.php.java
URL
http://yaronet.com/annuM.php.java?s=
URL
http://yaronet.com/annuS.php.Bak
URL
http://yaronet.com/annuF.php.Bak?l=last
URL
http://yaronet.com/annuM.php.Bak?s=
URL
http://yaronet.com/annuM.php.Bak?skin=&l=&s=
URL
http://yaronet.com/annuF.php.BAK?l=last
URL
http://yaronet.com/aide.php.Bak
URL
http://yaronet.com/annuM.php.BAK?skin=&l=&s=
URL
http://yaronet.com/annuS.php.BAK
URL
http://yaronet.com/aide.php.BAK
URL
http://yaronet.com/annuM.php.BAK?s=
URL
http://yaronet.com/annuM.php.Old?skin=&l=&s=
URL
http://yaronet.com/annuS.php.Old
URL
http://yaronet.com/annuM.php.Old?s=
URL
http://yaronet.com/annuF.php.Old?l=last
URL
http://yaronet.com/annuS.php.OLD
URL
http://yaronet.com/aide.php.Old
URL
http://yaronet.com/aide.php.OLD
URL
http://yaronet.com/annuM.php.OLD?s=
URL
http://yaronet.com/annuF.php.OLD?l=last
URL
http://yaronet.com/annuM.php.OLD?skin=&l=&s=

Solution

Remove backup, unused or obsolete files. For include files, carefully choose the suffix to prevent information disclosure.

Reference