|
|
@ -183,16 +183,16 @@ def getInterestedLinks(): |
|
|
|
|
|
|
|
# carding methods |
|
|
|
links.append('https://leaks.ws/forums/carding-methods.82/') |
|
|
|
# carding schools |
|
|
|
links.append('https://leaks.ws/forums/help-desk-carding-school.35/') |
|
|
|
# carding discussion |
|
|
|
links.append('https://leaks.ws/forums/carding-discussion-desk.58/') |
|
|
|
# carding tutorials |
|
|
|
links.append('https://leaks.ws/forums/carding-tutorials.13/') |
|
|
|
# carding tools and software |
|
|
|
links.append('https://leaks.ws/forums/carding-tools-softwares.10/') |
|
|
|
# exploits and cracking tools |
|
|
|
links.append('https://leaks.ws/forums/exploits-cracking-tools.22/') |
|
|
|
# # carding schools |
|
|
|
# links.append('https://leaks.ws/forums/help-desk-carding-school.35/') |
|
|
|
# # carding discussion |
|
|
|
# links.append('https://leaks.ws/forums/carding-discussion-desk.58/') |
|
|
|
# # carding tutorials |
|
|
|
# links.append('https://leaks.ws/forums/carding-tutorials.13/') |
|
|
|
# # carding tools and software |
|
|
|
# links.append('https://leaks.ws/forums/carding-tools-softwares.10/') |
|
|
|
# # exploits and cracking tools |
|
|
|
# links.append('https://leaks.ws/forums/exploits-cracking-tools.22/') |
|
|
|
|
|
|
|
return links |
|
|
|
|
|
|
@ -249,8 +249,11 @@ def crawlForum(driver): |
|
|
|
except NoSuchElementException: |
|
|
|
has_next_topic_page = False |
|
|
|
|
|
|
|
for j in range(counter): |
|
|
|
driver.back() |
|
|
|
# making sure we go back to the listing page (browser back button simulation) |
|
|
|
try: |
|
|
|
driver.get(link) |
|
|
|
except: |
|
|
|
driver.refresh() |
|
|
|
|
|
|
|
# # comment out |
|
|
|
# break |
|
|
@ -284,7 +287,7 @@ def isDescriptionLink(url): |
|
|
|
|
|
|
|
# Returns True if the link is a listingPage link, may need to change for every website |
|
|
|
def isListingLink(url): |
|
|
|
if 'forums' in url: |
|
|
|
if '.ws/forums' in url: |
|
|
|
return True |
|
|
|
return False |
|
|
|
|
|
|
|