ZAP Scanning Report

Site: http://192.168.120.146:8000

Generated on 화, 9 1월 2024 10:12:31

ZAP Version: 2.14.0

Summary of Alerts

Risk Level Number of Alerts
High
0
Medium
5
Low
4
Informational
6
False Positives:
0

경고

Name Risk Level Number of Instances
Absence of Anti-CSRF Tokens Medium 7
Content Security Policy (CSP) Header Not Set Medium 19
Directory Browsing Medium 6
Missing Anti-clickjacking Header Medium 17
XSLT Injection Medium 1
Cross-Domain JavaScript Source File Inclusion Low 1
Information Disclosure - Debug Error Messages Low 2
Server Leaks Version Information via "Server" HTTP Response Header Field Low 46
X-Content-Type-Options Header Missing Low 27
Authentication Request Identified Informational 5
Information Disclosure - Sensitive Information in URL Informational 5
Information Disclosure - Suspicious Comments Informational 1
Modern Web Application Informational 1
Session Management Response Identified Informational 3
User Agent Fuzzer Informational 506

Alert Detail

Medium
Absence of Anti-CSRF Tokens
설명
No Anti-CSRF tokens were found in a HTML submission form.

A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.

CSRF attacks are effective in a number of situations, including:

* The victim has an active session on the target site.

* The victim is authenticated via HTTP auth on the target site.

* The victim is on the same local network as the target site.

CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
URL http://192.168.120.146:8000/login.php
Method GET
Parameter
공격
Evidence <form action="login.php" method="post">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "Login" "password" "user_token" "username" ].
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter
공격
Evidence <form action="#" method="post">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "create_db" "user_token" ].
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter
공격
Evidence <form action="#" method="POST">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "Login" "password" "user_token" "username" ].
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter
공격
Evidence <form action="#" method="POST" >
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "Change" "password_conf" "password_current" "password_new" "recaptcha_response_field" "step" "user_token" ].
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter
공격
Evidence <form action="#" method="GET">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "Change" "password_conf" "password_current" "password_new" "user_token" ].
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter
공격
Evidence <form name="ping" action="#" method="post">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "ip" "Submit" "user_token" ].
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter
공격
Evidence <form name="XSS" action="#" method="GET">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "name" "user_token" ].
Instances 7
Solution
Phase: Architecture and Design

Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

For example, use anti-CSRF packages such as the OWASP CSRFGuard.

Phase: Implementation

Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.

Phase: Architecture and Design

Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).

Note that this can be bypassed using XSS.

Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.

Note that this can be bypassed using XSS.

Use the ESAPI Session Management control.

This control includes a component for CSRF.

Do not use the GET method for any request that triggers a state change.

Phase: Implementation

Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
Reference http://projects.webappsec.org/Cross-Site-Request-Forgery
https://cwe.mitre.org/data/definitions/352.html
CWE Id 352
WASC Id 9
Plugin Id 10202
Medium
Content Security Policy (CSP) Header Not Set
설명
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
URL http://192.168.120.146:8000
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=changelog
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=copying
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PDF
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=readme
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/sitemap.xml
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/var/www/html/config/config.inc.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter
공격
Evidence
Other Info
Instances 19
Solution
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
Reference https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html
http://www.w3.org/TR/CSP/
http://w3c.github.io/webappsec/specs/content-security-policy/csp-specification.dev.html
http://www.html5rocks.com/en/tutorials/security/content-security-policy/
http://caniuse.com/#feat=contentsecuritypolicy
http://content-security-policy.com/
CWE Id 693
WASC Id 15
Plugin Id 10038
Medium
Directory Browsing
설명
It is possible to view the directory listing. Directory listing may reveal hidden scripts, include files, backup source files, etc. which can be accessed to read sensitive information.
URL http://192.168.120.146:8000/docs/
Method GET
Parameter
공격 http://192.168.120.146:8000/docs/
Evidence Parent Directory
Other Info
URL http://192.168.120.146:8000/dvwa/
Method GET
Parameter
공격 http://192.168.120.146:8000/dvwa/
Evidence Parent Directory
Other Info
URL http://192.168.120.146:8000/dvwa/css/
Method GET
Parameter
공격 http://192.168.120.146:8000/dvwa/css/
Evidence Parent Directory
Other Info
URL http://192.168.120.146:8000/dvwa/images/
Method GET
Parameter
공격 http://192.168.120.146:8000/dvwa/images/
Evidence Parent Directory
Other Info
URL http://192.168.120.146:8000/dvwa/js/
Method GET
Parameter
공격 http://192.168.120.146:8000/dvwa/js/
Evidence Parent Directory
Other Info
URL http://192.168.120.146:8000/vulnerabilities/
Method GET
Parameter
공격 http://192.168.120.146:8000/vulnerabilities/
Evidence Parent Directory
Other Info
Instances 6
Solution
Disable directory browsing. If this is required, make sure the listed files does not induce risks.
Reference http://httpd.apache.org/docs/mod/core.html#options
http://alamo.satlug.org/pipermail/satlug/2002-February/000053.html
CWE Id 548
WASC Id 48
Plugin Id 0
Medium
Missing Anti-clickjacking Header
설명
The response does not include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options to protect against 'ClickJacking' attacks.
URL http://192.168.120.146:8000
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=changelog
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=copying
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PDF
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=readme
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter x-frame-options
공격
Evidence
Other Info
Instances 17
Solution
Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.

If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
Reference https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
CWE Id 1021
WASC Id 15
Plugin Id 10020
Medium
XSLT Injection
설명
Injection using XSL transformations may be possible, and may allow an attacker to read system information, read and write files, or execute arbitrary code.
URL http://192.168.120.146:8000/instructions.php?doc=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E
Method GET
Parameter doc
공격 <xsl:value-of select="system-property('xsl:vendor')"/>
Evidence Apache
Other Info The XSLT processor vendor name "Apache" was returned after an injection request.
Instances 1
Solution
Sanitize and analyze every user input coming from any client-side.
Reference https://www.contextis.com/blog/xslt-server-side-injection-attacks
CWE Id 91
WASC Id 23
Plugin Id 90017
Low
Cross-Domain JavaScript Source File Inclusion
설명
The page includes one or more script files from a third-party domain.
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter http://www.google.com/recaptcha/api/challenge?k=6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg
공격
Evidence <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg"></script>
Other Info
Instances 1
Solution
Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
Reference
CWE Id 829
WASC Id 15
Plugin Id 10017
Low
Information Disclosure - Debug Error Messages
설명
The response appeared to contain common error messages returned by platforms such as ASP.NET, and Web-servers such as IIS and Apache. You can configure the list of common debug messages.
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter
공격
Evidence PHP warning
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=readme
Method GET
Parameter
공격
Evidence PHP warning
Other Info
Instances 2
Solution
Disable debugging messages before pushing to production.
Reference
CWE Id 200
WASC Id 13
Plugin Id 10023
Low
Server Leaks Version Information via "Server" HTTP Response Header Field
설명
The web/application server is leaking version information via the "Server" HTTP response header. Access to such information may facilitate attackers identifying other vulnerabilities your web/application server is subject to.
URL http://192.168.120.146:8000
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/docs/DVWA_v1.3.pdf
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/css/login.css
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/css/main.css
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/images/login_logo.png
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/images/logo.png
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/images/RandomStorm.png
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/images/spanner.png
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/dvwa/js/dvwaPage.js
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/favicon.ico
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=changelog
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=copying
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PDF
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=readme
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/robots.txt
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/sitemap.xml
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/var/www/html/config/config.inc.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=file1.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=file2.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=file3.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter
공격
Evidence Apache/2.4.10 (Debian)
Other Info
Instances 46
Solution
Ensure that your web server, application server, load balancer, etc. is configured to suppress the "Server" header or provide generic details.
Reference http://httpd.apache.org/docs/current/mod/core.html#servertokens
http://msdn.microsoft.com/en-us/library/ff648552.aspx#ht_urlscan_007
http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx
http://www.troyhunt.com/2012/02/shhh-dont-let-your-response-headers.html
CWE Id 200
WASC Id 13
Plugin Id 10036
Low
X-Content-Type-Options Header Missing
설명
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
URL http://192.168.120.146:8000
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/about.php
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/docs/DVWA_v1.3.pdf
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/css/login.css
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/css/main.css
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/images/login_logo.png
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/images/logo.png
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/images/RandomStorm.png
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/images/spanner.png
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/dvwa/js/dvwaPage.js
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/favicon.ico
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php?doc=changelog
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php?doc=copying
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php?doc=PDF
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/instructions.php?doc=readme
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/login.php
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/robots.txt
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter x-content-type-options
공격
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
Instances 27
Solution
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
Reference http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx
https://owasp.org/www-community/Security_Headers
CWE Id 693
WASC Id 15
Plugin Id 10021
Informational
Authentication Request Identified
설명
The given request has been identified as an authentication request. The 'Other Info' field contains a set of key=value lines which identify any relevant fields. If the request is in a context which has an Authentication Method set to "Auto-Detect" then this rule will change the authentication to match the request identified.
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter user_token
공격
Evidence password_conf
Other Info userParam=user_token userValue=39bd9f7ba3005addb195343976d66065 passwordParam=password_conf referer=http://192.168.120.146:8000/vulnerabilities/csrf/
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Login
공격
Evidence password
Other Info userParam=Login userValue=Login passwordParam=password referer=http://192.168.120.146:8000/vulnerabilities/brute/
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter user_token
공격
Evidence password_conf
Other Info userParam=user_token userValue=8c16094a671c762350e4a817a9797774 passwordParam=password_conf referer=http://192.168.120.146:8000/vulnerabilities/captcha/
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Login
공격
Evidence password
Other Info userParam=Login userValue=Login passwordParam=password
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Login
공격
Evidence password
Other Info userParam=Login userValue=Login passwordParam=password referer=http://192.168.120.146:8000/login.php
Instances 5
Solution
This is an informational alert rather than a vulnerability and so there is nothing to fix.
Reference https://www.zaproxy.org/docs/desktop/addons/authentication-helper/auth-req-id/
CWE Id
WASC Id
Plugin Id 10111
Informational
Information Disclosure - Sensitive Information in URL
설명
The request appeared to contain sensitive information leaked in the URL. This can violate PCI and most organizational compliance policies. You can configure the list of strings for this check to add or remove values specific to your environment.
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter password_conf
공격
Evidence password_conf
Other Info The URL contains potentially sensitive information. The following string was found via the pattern: pass password_conf
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter password_current
공격
Evidence password_current
Other Info The URL contains potentially sensitive information. The following string was found via the pattern: pass password_current
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter password_new
공격
Evidence password_new
Other Info The URL contains potentially sensitive information. The following string was found via the pattern: pass password_new
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter user_token
공격
Evidence user_token
Other Info The URL contains potentially sensitive information. The following string was found via the pattern: user user_token
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter user_token
공격
Evidence user_token
Other Info The URL contains potentially sensitive information. The following string was found via the pattern: user user_token
Instances 5
Solution
Do not pass sensitive information in URIs.
Reference
CWE Id 200
WASC Id 13
Plugin Id 10024
Informational
Information Disclosure - Suspicious Comments
설명
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter
공격
Evidence db
Other Info The following pattern was used: \bDB\b and was detected in the element starting with: "<!-- Create db button -->", see evidence field for the suspicious comment/snippet.
Instances 1
Solution
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
Reference
CWE Id 200
WASC Id 13
Plugin Id 10027
Informational
Modern Web Application
설명
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter
공격
Evidence <noscript> <iframe src="http://www.google.com/recaptcha/api/noscript?k=6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg" height="300" width="500" frameborder="0"></iframe><br/> <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/> </noscript>
Other Info A noScript tag has been found, which is an indication that the application works differently with JavaScript enabled compared to when it is not.
Instances 1
Solution
This is an informational alert and so no changes are required.
Reference
CWE Id
WASC Id
Plugin Id 10109
Informational
Session Management Response Identified
설명
The given response has been identified as containing a session management token. The 'Other Info' field contains a set of header tokens that can be used in the Header Based Session Management Method. If the request is in a context which has a Session Management Method set to "Auto-Detect" then this rule will change the session management to use the tokens identified.
URL http://192.168.120.146:8000/login.php
Method GET
Parameter security
공격
Evidence impossible
Other Info cookie:security cookie:PHPSESSID
URL http://192.168.120.146:8000/login.php
Method GET
Parameter PHPSESSID
공격
Evidence 8t7vqog38i9boqbt66mks8a3b0
Other Info cookie:PHPSESSID
URL http://192.168.120.146:8000/login.php
Method GET
Parameter security
공격
Evidence impossible
Other Info cookie:security
Instances 3
Solution
This is an informational alert rather than a vulnerability and so there is nothing to fix.
Reference https://www.zaproxy.org/docs/desktop/addons/authentication-helper/session-mgmt-id
CWE Id
WASC Id
Plugin Id 10112
Informational
User Agent Fuzzer
설명
Check for differences in response based on fuzzed User Agent (eg. mobile sites, access as a Search Engine Crawler). Compares the response statuscode and the hashcode of the response body with the original response.
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/about.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/docs
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/css
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/images
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/dvwa/js
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/instructions.php?doc=PHPIDS-license
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/logout.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/phpinfo.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/security.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/csrf/?Change=Change&password_conf=ZAP&password_current=ZAP&password_new=ZAP&user_token=39bd9f7ba3005addb195343976d66065
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/fi/?page=include.php
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/sqli_blind/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/upload/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_r/?name=ZAP&user_token=ef21a28ebaf510fd0d617110715a3d91
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/xss_s/
Method GET
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/login.php
Method POST
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/setup.php
Method POST
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/brute/
Method POST
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/captcha/
Method POST
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Other Info
URL http://192.168.120.146:8000/vulnerabilities/exec/
Method POST
Parameter Header User-Agent
공격 msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Other Info
Instances 506
Solution
Reference https://owasp.org/wstg
CWE Id
WASC Id
Plugin Id 10104