osintstalker icon indicating copy to clipboard operation
osintstalker copied to clipboard

IndexError after "Caching Pages Liked By: <User>"

Open th3l0b3 opened this issue 11 years ago • 3 comments

Was able to fight thorugh the last issue I had and now am getting to the Caching Pages Liked and errors to this:

Traceback (most recent call last): File "fbstalker1.py", line 2030, in options(sys.argv) File "fbstalker1.py", line 1974, in options mainProcess(user) File "fbstalker1.py", line 1790, in mainProcess dataList = parsePagesLiked(html) File "fbstalker1.py", line 1146, in parsePagesLiked pageCategory[count] IndexError: list index out of range

th3l0b3 avatar Sep 04 '14 17:09 th3l0b3

I am having this same issue.

MaxTrance avatar Sep 05 '14 18:09 MaxTrance

Me as well, the exact same issue. Has anyone made any progress?

FLYBOY611 avatar Oct 09 '14 23:10 FLYBOY611

I just change pageName to pageCategory, because the problem is that var count exceeds the limit of index in the array pageCategory, but it seems like a patch however it works:

#for x in pageName: for x in pageCategory: m = r.search(str(x)) if m: pageCategory[count] tempList.append([uid,x.text,pageCategory[count].text,m.group(1)]) count+=1 return tempList

emmanuelb23 avatar Oct 27 '14 22:10 emmanuelb23