-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Pep8 fixes
- Loading branch information
Showing
5 changed files
with
1,379 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,320 @@ | ||
|
||
[+] Spider Beggining for example.com:443 with a Virtual Host of example.com | ||
|
||
[+] Start points are '/' and '/images/dummy.txt' | ||
|
||
|
||
We Sent: | ||
|
||
GET / HTTP/1.1 | ||
Host: example.com | ||
|
||
|
||
|
||
Server Responded: | ||
|
||
HTTP/1.1 200 OK | ||
Cache-Control: max-age=604800 | ||
Content-Type: text/html | ||
Date: Tue, 24 Jan 2017 09:57:22 GMT | ||
Etag: "359670651+gzip+ident" | ||
Expires: Tue, 31 Jan 2017 09:57:22 GMT | ||
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT | ||
Server: ECS (cpm/F845) | ||
Vary: Accept-Encoding | ||
X-Cache: HIT | ||
x-ec-custom-error: 1 | ||
Content-Length: 1270 | ||
|
||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Example Domain</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style type="text/css"> | ||
body { | ||
background-color: #f0f0f2; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
|
||
} | ||
div { | ||
width: 600px; | ||
margin: 5em auto; | ||
padding: 50px; | ||
background-color: #fff; | ||
border-radius: 1em; | ||
} | ||
a:link, a:visited { | ||
color: #38488f; | ||
text-decoration: none; | ||
} | ||
@media (max-width: 700px) { | ||
body { | ||
background-color: #fff; | ||
} | ||
div { | ||
width: auto; | ||
margin: 0 auto; | ||
border-radius: 0; | ||
padding: 1em; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Example Domain</h1> | ||
<p>This domain is established to be used for illustrative examples in documents. You may use this | ||
domain in examples without prior coordination or asking for permission.</p> | ||
<p><a href="http://www.iana.org/domains/example">More information...</a></p> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
|
||
[+] Parsed Response: | ||
|
||
/domains/example | ||
|
||
We Sent: | ||
|
||
GET /images/dummy.txt HTTP/1.1 | ||
Host: example.com | ||
|
||
|
||
|
||
Server Responded: | ||
|
||
HTTP/1.1 404 Not Found | ||
Accept-Ranges: bytes | ||
Cache-Control: max-age=604800 | ||
Content-Type: text/html | ||
Date: Tue, 24 Jan 2017 09:57:22 GMT | ||
Etag: "359670651" | ||
Expires: Tue, 31 Jan 2017 09:57:22 GMT | ||
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT | ||
Server: ECS (oxr/83CA) | ||
Vary: Accept-Encoding | ||
X-Cache: HIT | ||
x-ec-custom-error: 1 | ||
Content-Length: 1270 | ||
|
||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Example Domain</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style type="text/css"> | ||
body { | ||
background-color: #f0f0f2; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
|
||
} | ||
div { | ||
width: 600px; | ||
margin: 5em auto; | ||
padding: 50px; | ||
background-color: #fff; | ||
border-radius: 1em; | ||
} | ||
a:link, a:visited { | ||
color: #38488f; | ||
text-decoration: none; | ||
} | ||
@media (max-width: 700px) { | ||
body { | ||
background-color: #fff; | ||
} | ||
div { | ||
width: auto; | ||
margin: 0 auto; | ||
border-radius: 0; | ||
padding: 1em; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Example Domain</h1> | ||
<p>This domain is established to be used for illustrative examples in documents. You may use this | ||
domain in examples without prior coordination or asking for permission.</p> | ||
<p><a href="http://www.iana.org/domains/example">More information...</a></p> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
|
||
[+] Parsed Response: | ||
|
||
/domains/example | ||
|
||
We Sent: | ||
|
||
GET /domains/example HTTP/1.1 | ||
Host: example.com | ||
|
||
|
||
|
||
Server Responded: | ||
|
||
HTTP/1.1 404 Not Found | ||
Accept-Ranges: bytes | ||
Cache-Control: max-age=604800 | ||
Content-Type: text/html | ||
Date: Tue, 24 Jan 2017 09:57:23 GMT | ||
Etag: "359670651" | ||
Expires: Tue, 31 Jan 2017 09:57:23 GMT | ||
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT | ||
Server: ECS (oxr/83CA) | ||
Vary: Accept-Encoding | ||
X-Cache: HIT | ||
x-ec-custom-error: 1 | ||
Content-Length: 1270 | ||
|
||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Example Domain</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style type="text/css"> | ||
body { | ||
background-color: #f0f0f2; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
|
||
} | ||
div { | ||
width: 600px; | ||
margin: 5em auto; | ||
padding: 50px; | ||
background-color: #fff; | ||
border-radius: 1em; | ||
} | ||
a:link, a:visited { | ||
color: #38488f; | ||
text-decoration: none; | ||
} | ||
@media (max-width: 700px) { | ||
body { | ||
background-color: #fff; | ||
} | ||
div { | ||
width: auto; | ||
margin: 0 auto; | ||
border-radius: 0; | ||
padding: 1em; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Example Domain</h1> | ||
<p>This domain is established to be used for illustrative examples in documents. You may use this | ||
domain in examples without prior coordination or asking for permission.</p> | ||
<p><a href="http://www.iana.org/domains/example">More information...</a></p> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
|
||
[+] Parsed Response: | ||
|
||
/domains/example | ||
|
||
We Sent: | ||
|
||
GET /domains/ HTTP/1.1 | ||
Host: example.com | ||
|
||
|
||
|
||
Server Responded: | ||
|
||
HTTP/1.1 404 Not Found | ||
Accept-Ranges: bytes | ||
Cache-Control: max-age=604800 | ||
Content-Type: text/html | ||
Date: Tue, 24 Jan 2017 09:57:23 GMT | ||
Etag: "359670651" | ||
Expires: Tue, 31 Jan 2017 09:57:23 GMT | ||
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT | ||
Server: ECS (oxr/83CA) | ||
Vary: Accept-Encoding | ||
X-Cache: HIT | ||
x-ec-custom-error: 1 | ||
Content-Length: 1270 | ||
|
||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Example Domain</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<style type="text/css"> | ||
body { | ||
background-color: #f0f0f2; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
|
||
} | ||
div { | ||
width: 600px; | ||
margin: 5em auto; | ||
padding: 50px; | ||
background-color: #fff; | ||
border-radius: 1em; | ||
} | ||
a:link, a:visited { | ||
color: #38488f; | ||
text-decoration: none; | ||
} | ||
@media (max-width: 700px) { | ||
body { | ||
background-color: #fff; | ||
} | ||
div { | ||
width: auto; | ||
margin: 0 auto; | ||
border-radius: 0; | ||
padding: 1em; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Example Domain</h1> | ||
<p>This domain is established to be used for illustrative examples in documents. You may use this | ||
domain in examples without prior coordination or asking for permission.</p> | ||
<p><a href="http://www.iana.org/domains/example">More information...</a></p> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
|
||
[+] Parsed Response: | ||
|
||
/domains/example |
Oops, something went wrong.