deangt / goofile

Automatically exported from code.google.com/p/goofile
0 stars 0 forks source link

goofile does not return any results #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. goofile -d microsoft.com -f doc
2. goofile -d kali.org -f pdf
3. goofile -d adobe.com -f pdf

What is the expected output? What do you see instead?

All runs return no results:

root@kali:~# goofile -d adobe.com -f pdf

-------------------------------------
|Goofile v1.5                       |
|Coded by Thomas (G13) Richards     |
|www.g13net.com                     |
|code.google.com/p/goofile          |
-------------------------------------

Searching in adobe.com for pdf
========================================

Files found:
====================

No results were found
====================

What version of the product are you using? On what operating system?

goofile 1.5 on Kali Linux

Please provide any additional information below.

I suspect Google has changed things on you, preventing results from being 
returned.

Original issue reported on code.google.com by doo...@kali.org on 24 Mar 2015 at 3:06

GoogleCodeExporter commented 8 years ago
Maybe the reason for that is that within a browser you always connect via SSL 
and the connection withing goofile is with unencrypted http?

Original comment by twallu...@gmail.com on 5 Aug 2015 at 9:42

GoogleCodeExporter commented 8 years ago
Im not a Python guru but i tried something simple: i changed

h = httplib.HTTP('www.google.com')

to

h = httplib.HTTPS('www.google.com')

Now i see that that the connection is encrypted, but still no results...

Original comment by twallu...@gmail.com on 5 Aug 2015 at 9:50