d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Paying For Some Help Finding A Picture
12Next
Add Reply New Topic New Poll
Member
Posts: 63,058
Joined: Jul 15 2005
Gold: 152.00
Dec 13 2012 11:47am
Are there any methods to find a picture that has been "hidden" on a forum? I tried a reverse image search to no avail. It is a particular image hidden in any possible post on the forum.

I will pay 100fg if it successfully leads to a find. Thanks.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 13 2012 12:11pm
what does "hidden" mean? just look at the html for the file extension
Member
Posts: 63,058
Joined: Jul 15 2005
Gold: 152.00
Dec 13 2012 12:24pm
Quote (carteblanche @ Dec 13 2012 02:11pm)
what does "hidden" mean? just look at the html for the file extension


Sorry I should have been more specific.

It isn't technically hidden. It's hidden as in it was placed on some unknown topic by a user as a sort of game. Our job is to find what topic the image is in.
Member
Posts: 4,605
Joined: Sep 15 2011
Gold: 9,464.00
Dec 13 2012 01:19pm
since d2jsp doesnt have its own forum search for nontrade forums, using google site search is your best bet.

search for something like:
site:d2jsp.org imagename
Member
Posts: 63,058
Joined: Jul 15 2005
Gold: 152.00
Dec 13 2012 01:33pm
Quote (irimi @ Dec 13 2012 03:19pm)
since d2jsp doesnt have its own forum search for nontrade forums, using google site search is your best bet.

search for something like:
site:d2jsp.org imagename


I tried this already also.

The forum is not d2jsp, by the way.
Member
Posts: 4,605
Joined: Sep 15 2011
Gold: 9,464.00
Dec 13 2012 02:43pm
Yeah, not enough info. Depends on the board, depends on the format, depends on a lot of things you're not telling us.

But chances are, the short answer is "no".

This post was edited by irimi on Dec 13 2012 02:43pm
Member
Posts: 10,812
Joined: Oct 15 2009
Gold: Locked
Warn: 20%
Dec 13 2012 02:51pm
if you have a copy of the image, you could upload the image to google and try to find it that way.
Member
Posts: 63,058
Joined: Jul 15 2005
Gold: 152.00
Dec 13 2012 03:53pm
Quote (Azrad @ Dec 13 2012 04:51pm)
if you have a copy of the image, you could upload the image to google and try to find it that way.


If you are referring to reverse image search, I tried that.

Quote (irimi @ Dec 13 2012 04:43pm)
Yeah, not enough info.  Depends on the board, depends on the format, depends on a lot of things you're not telling us.

But chances are, the short answer is "no".


The forum runs on phpBB.

This post was edited by Voyaging on Dec 13 2012 03:53pm
Member
Posts: 624
Joined: May 20 2007
Gold: 17.33
Dec 16 2012 09:20pm
You could write a program which crawls through the whole forum by doing these steps:

Code

function crawlIt($url){

-> parse the source code
* show all images (<img> tags)
* save all urls in <a>-tags into an array

for each element of the url-array (maybe only <a> tags, that will lead to sub-sites of the board) -> call crawlIt($url_of_<a>_tag)

}


Could take a huge amount of time, depending on how big the forum is. Also your IP could be banned due to flooding the server.
i think there is no other way of doing this than writing a program.
maybe you can check the user's personality, hobbies.. etc. if he/she's an admin they might have hidden it in a rules thread. check in which sub-forums they are active and search for it there.
check their latest topics/posts. maye if you are a programmer and you use my method you can check the crawled pages for a string like 'last edited by user at date-xx-xx' which would make it a lot easier.
apart from that -> too little information
Member
Posts: 10,812
Joined: Oct 15 2009
Gold: Locked
Warn: 20%
Dec 17 2012 12:35am
Quote (LarsoPaso @ Dec 16 2012 08:20pm)
You could write a program which crawls through the whole forum by doing these steps:

Code
function crawlIt($url){

-> parse the source code
* show all images (<img> tags)
* save all urls in <a>-tags into an array

for each element of the url-array (maybe only <a> tags, that will lead to sub-sites of the board) -> call crawlIt($url_of_<a>_tag)

}


Could take a huge amount of time, depending on how big the forum is. Also your IP could be banned due to flooding the server.


heh i took a stab at it the other day, with more or less using that same idea, and yeah, I got IP banned :)
Go Back To Programming & Development Topic List
12Next
Add Reply New Topic New Poll