Browse Source

Updated testing.py for OnniForums

main
Khoi 1 year ago
parent
commit
547dc8afb1
50 changed files with 2029 additions and 56 deletions
  1. BIN
      Forums/AbyssForum/__pycache__/crawler_selenium.cpython-311.pyc
  2. BIN
      Forums/AbyssForum/__pycache__/parser.cpython-311.pyc
  3. BIN
      Forums/Altenens/__pycache__/crawler_selenium.cpython-311.pyc
  4. BIN
      Forums/CryptBB/__pycache__/crawler_selenium.cpython-311.pyc
  5. +10
    -10
      Forums/CryptBB/crawler_selenium.py
  6. BIN
      Forums/DB_Connection/__pycache__/db_connection.cpython-311.pyc
  7. BIN
      Forums/HiddenAnswers/__pycache__/crawler_selenium.cpython-311.pyc
  8. BIN
      Forums/HiddenAnswers/__pycache__/parser.cpython-311.pyc
  9. +1
    -1
      Forums/HiddenAnswers/parser.py
  10. BIN
      Forums/Initialization/__pycache__/forums_mining.cpython-311.pyc
  11. BIN
      Forums/Initialization/__pycache__/prepare_parser.cpython-311.pyc
  12. +1
    -2
      Forums/Initialization/forumsList.txt
  13. +2
    -11
      Forums/Initialization/forums_mining.py
  14. +1095
    -0
      Forums/Initialization/geckodriver.log
  15. BIN
      Forums/OnniForums/__pycache__/crawler_selenium.cpython-311.pyc
  16. BIN
      Forums/OnniForums/__pycache__/parser.cpython-311.pyc
  17. +4
    -4
      Forums/OnniForums/crawler_selenium.py
  18. +7
    -7
      Forums/OnniForums/parser.py
  19. +2
    -2
      Forums/OnniForums/testing.py
  20. BIN
      MarketPlaces/AnonymousMarketplace/__pycache__/crawler_selenium.cpython-311.pyc
  21. BIN
      MarketPlaces/AnonymousMarketplace/__pycache__/parser.cpython-311.pyc
  22. BIN
      MarketPlaces/Apocalypse/__pycache__/crawler_selenium.cpython-311.pyc
  23. BIN
      MarketPlaces/Apocalypse/__pycache__/parser.cpython-311.pyc
  24. BIN
      MarketPlaces/CityMarket/__pycache__/crawler_selenium.cpython-311.pyc
  25. BIN
      MarketPlaces/CityMarket/__pycache__/parser.cpython-311.pyc
  26. BIN
      MarketPlaces/DB_Connection/__pycache__/db_connection.cpython-311.pyc
  27. BIN
      MarketPlaces/DarkFox/__pycache__/crawler_selenium.cpython-311.pyc
  28. BIN
      MarketPlaces/DarkMatter/__pycache__/crawler_selenium.cpython-311.pyc
  29. BIN
      MarketPlaces/DarkMatter/__pycache__/parser.cpython-311.pyc
  30. BIN
      MarketPlaces/DarkTor/__pycache__/crawler_selenium.cpython-311.pyc
  31. BIN
      MarketPlaces/DarkTor/__pycache__/parser.cpython-311.pyc
  32. BIN
      MarketPlaces/DigitalThriftShop/__pycache__/crawler_selenium.cpython-311.pyc
  33. BIN
      MarketPlaces/DigitalThriftShop/__pycache__/parser.cpython-311.pyc
  34. BIN
      MarketPlaces/Initialization/__pycache__/markets_mining.cpython-311.pyc
  35. BIN
      MarketPlaces/Initialization/__pycache__/prepare_parser.cpython-311.pyc
  36. +859
    -0
      MarketPlaces/Initialization/geckodriver.log
  37. +1
    -1
      MarketPlaces/Initialization/marketsList.txt
  38. BIN
      MarketPlaces/LionMarketplace/__pycache__/crawler_selenium.cpython-311.pyc
  39. BIN
      MarketPlaces/M00nkeyMarket/__pycache__/crawler_selenium.cpython-311.pyc
  40. BIN
      MarketPlaces/M00nkeyMarket/__pycache__/parser.cpython-311.pyc
  41. BIN
      MarketPlaces/MikesGrandStore/__pycache__/crawler_selenium.cpython-311.pyc
  42. BIN
      MarketPlaces/MikesGrandStore/__pycache__/parser.cpython-311.pyc
  43. +45
    -17
      MarketPlaces/MikesGrandStore/crawler_selenium.py
  44. +1
    -0
      MarketPlaces/MikesGrandStore/testing.py
  45. BIN
      MarketPlaces/ThiefWorld/__pycache__/crawler_selenium.cpython-311.pyc
  46. BIN
      MarketPlaces/ThiefWorld/__pycache__/parser.cpython-311.pyc
  47. BIN
      MarketPlaces/Tor2door/__pycache__/crawler_selenium.cpython-311.pyc
  48. BIN
      MarketPlaces/TorBay/__pycache__/crawler_selenium.cpython-311.pyc
  49. BIN
      MarketPlaces/TorMarket/__pycache__/crawler_selenium.cpython-311.pyc
  50. +1
    -1
      setup.ini

BIN
Forums/AbyssForum/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
Forums/AbyssForum/__pycache__/parser.cpython-311.pyc View File


BIN
Forums/Altenens/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
Forums/CryptBB/__pycache__/crawler_selenium.cpython-311.pyc View File


+ 10
- 10
Forums/CryptBB/crawler_selenium.py View File

@ -28,17 +28,17 @@ baseURL = 'http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion
# Opens Tor Browser, crawls the website # Opens Tor Browser, crawls the website
def startCrawling(): def startCrawling():
# opentor()
opentor()
forumName = getForumName() forumName = getForumName()
# driver = getAccess()
#
# if driver != 'down':
# try:
# login(driver)
# crawlForum(driver)
# except Exception as e:
# print(driver.current_url, e)
# closetor(driver)
driver = getAccess()
if driver != 'down':
try:
login(driver)
crawlForum(driver)
except Exception as e:
print(driver.current_url, e)
closetor(driver)
new_parse(forumName, baseURL, False) new_parse(forumName, baseURL, False)


BIN
Forums/DB_Connection/__pycache__/db_connection.cpython-311.pyc View File


BIN
Forums/HiddenAnswers/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
Forums/HiddenAnswers/__pycache__/parser.cpython-311.pyc View File


+ 1
- 1
Forums/HiddenAnswers/parser.py View File

@ -11,7 +11,7 @@ from bs4 import BeautifulSoup
# This is the method to parse the Description Pages (one page to each topic in the Listing Pages) # This is the method to parse the Description Pages (one page to each topic in the Listing Pages)
def cryptBB_description_parser(soup):
def HiddenAnswers_description_parser(soup: BeautifulSoup):
# Fields to be parsed # Fields to be parsed


BIN
Forums/Initialization/__pycache__/forums_mining.cpython-311.pyc View File


BIN
Forums/Initialization/__pycache__/prepare_parser.cpython-311.pyc View File


+ 1
- 2
Forums/Initialization/forumsList.txt View File

@ -1,2 +1 @@
OnniForums
CryptBB
OnniForums

+ 2
- 11
Forums/Initialization/forums_mining.py View File

@ -13,14 +13,7 @@ from Forums.AbyssForum.crawler_selenium import crawler as crawlerAbyssForum
from Forums.Altenens.crawler_selenium import crawler as crawlerAltenensForum from Forums.Altenens.crawler_selenium import crawler as crawlerAltenensForum
from Forums.HiddenAnswers.crawler_selenium import crawler as crawlerHiddenAnswers from Forums.HiddenAnswers.crawler_selenium import crawler as crawlerHiddenAnswers
<<<<<<< HEAD
=======
import configparser import configparser
>>>>>>> 98de158ee6f14b35b2a5ac61427d7de36b4ee442
import time import time
config = configparser.ConfigParser() config = configparser.ConfigParser()
@ -110,12 +103,10 @@ if __name__ == '__main__':
if forum == "BestCardingWorld": if forum == "BestCardingWorld":
crawlerBestCardingWorld() crawlerBestCardingWorld()
# elif forum == "CryptBB":
# crawlerCryptBB()
elif forum == "CryptBB":
crawlerCryptBB()
elif forum == "OnniForums": elif forum == "OnniForums":
crawlerOnniForums() crawlerOnniForums()
# elif forum == "CrackingPro":
# crawlerCrackingPro()
elif forum == "AbyssForum": elif forum == "AbyssForum":
crawlerAbyssForum() crawlerAbyssForum()
elif forum == "HiddenAnswers": elif forum == "HiddenAnswers":


+ 1095
- 0
Forums/Initialization/geckodriver.log
File diff suppressed because it is too large
View File


BIN
Forums/OnniForums/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
Forums/OnniForums/__pycache__/parser.cpython-311.pyc View File


+ 4
- 4
Forums/OnniForums/crawler_selenium.py View File

@ -280,12 +280,12 @@ def crawlForum(driver):
driver.back() driver.back()
# comment out, one topic per page # comment out, one topic per page
break
# break
# comment out, go through all pages # comment out, go through all pages
if count == 1:
count = 0
break
# if count == 1:
# count = 0
# break
try: try:
temp = driver.find_element(by=By.XPATH, value= temp = driver.find_element(by=By.XPATH, value=


+ 7
- 7
Forums/OnniForums/parser.py View File

@ -41,7 +41,7 @@ def onniForums_description_parser(soup: BeautifulSoup) -> tuple:
username: str = author_information.find("span", {"class": "largetext"}).text username: str = author_information.find("span", {"class": "largetext"}).text
username_cleaned = cleanString(username.strip()) username_cleaned = cleanString(username.strip())
users.append(username)
users.append(username_cleaned)
user_status: str = author_information.find("span", {"class": "smalltext"}).text user_status: str = author_information.find("span", {"class": "smalltext"}).text
@ -105,7 +105,7 @@ def onniForums_description_parser(soup: BeautifulSoup) -> tuple:
# Populate the final variable (this should be a list with all fields scraped) # Populate the final variable (this should be a list with all fields scraped)
row = (topicName, posts, users, addDates, feedbacks, statuses, reputations, signs, interests)
row = (topicName, users, statuses, reputations, interests, signs, posts, feedbacks, addDates)
# Sending the results # Sending the results
@ -117,7 +117,7 @@ def onniForums_listing_parser(soup: BeautifulSoup):
boardName = "-1" # board name (the previous level of the topic in the Forum categorization tree. boardName = "-1" # board name (the previous level of the topic in the Forum categorization tree.
# For instance: Security/Malware/Tools to hack Facebook. The board here should be Malware) # For instance: Security/Malware/Tools to hack Facebook. The board here should be Malware)
forum = "OnniForums"
nm = 0 # this variable should receive the number of topics nm = 0 # this variable should receive the number of topics
topic : List[str] = [] # all topics topic : List[str] = [] # all topics
user : List[str] = [] # all users of each topic user : List[str] = [] # all users of each topic
@ -155,9 +155,9 @@ def onniForums_listing_parser(soup: BeautifulSoup):
views = thread.find_all("td", {"align": "center"})[3].text views = thread.find_all("td", {"align": "center"})[3].text
view.append(views) view.append(views)
dates_added: str = thread.find("span",{"class" : "thread_start_datetime smalltext"}).text
dates_added_cleaned = dates_added.split(',')[0]
addDate.append(dates_added_cleaned)
# dates_added: str = thread.find("span",{"class" : "thread_start_datetime smalltext"}).text
# dates_added_cleaned = dates_added.split(',')[0]
# addDate.append(dates_added_cleaned)
author = thread.find("span",{"class" : "author smalltext"}).text author = thread.find("span",{"class" : "author smalltext"}).text
author_cleaned = cleanString(author.strip()) author_cleaned = cleanString(author.strip())
@ -168,7 +168,7 @@ def onniForums_listing_parser(soup: BeautifulSoup):
href.append(thread_link) href.append(thread_link)
return organizeTopics( return organizeTopics(
forum="OnniForums",
forum=forum,
nm=nm, nm=nm,
board=boardName, board=boardName,
author=user, author=user,


+ 2
- 2
Forums/OnniForums/testing.py View File

@ -1,6 +1,6 @@
import os import os
from parser import onniForums_description_parser
from parser import onniForums_listing_parser
from Forums.OnniForums.parser import onniForums_description_parser
from Forums.OnniForums.parser import onniForums_listing_parser
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
baseUrl = './HTML_Pages/06272023/Listing/httponnii6niq53gv3rvjpi7z5axkasurk2x5w5lwliep4qyeb2azagxn4qdonionForumCardingFraud.html' baseUrl = './HTML_Pages/06272023/Listing/httponnii6niq53gv3rvjpi7z5axkasurk2x5w5lwliep4qyeb2azagxn4qdonionForumCardingFraud.html'


BIN
MarketPlaces/AnonymousMarketplace/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/AnonymousMarketplace/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/Apocalypse/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/Apocalypse/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/CityMarket/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/CityMarket/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/DB_Connection/__pycache__/db_connection.cpython-311.pyc View File


BIN
MarketPlaces/DarkFox/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/DarkMatter/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/DarkMatter/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/DarkTor/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/DarkTor/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/DigitalThriftShop/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/DigitalThriftShop/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/Initialization/__pycache__/markets_mining.cpython-311.pyc View File


BIN
MarketPlaces/Initialization/__pycache__/prepare_parser.cpython-311.pyc View File


+ 859
- 0
MarketPlaces/Initialization/geckodriver.log View File

@ -11295,3 +11295,862 @@ destructor()@TargetList.jsm:109
stop()@CDP.jsm:104 stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138 close()@RemoteAgent.jsm:138
>>>>>>> 98de158ee6f14b35b2a5ac61427d7de36b4ee442 >>>>>>> 98de158ee6f14b35b2a5ac61427d7de36b4ee442
1688074717517 geckodriver INFO Listening on 127.0.0.1:50062
1688074721101 mozrunner::runner INFO Running command: "C:\\\\Users\\\\minhkhoitran\\\\Desktop\\\\Tor Browser\\\\Browser\\\\firefox.exe" "--marionette" "--remote-debugging-port" "50063" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofilehgd6gq"
console.info: SecurityLevel: Listening for messages from NoScript.
console.info: SecurityLevel: Initializing security-prefs.js
console.info: SecurityLevel: security-prefs.js initialization complete
console.info: TorProtocolService: SOCKS port type: TCP
console.info: TorProtocolService: SOCKS host: 127.0.0.1
console.info: TorProtocolService: SOCKS port: 9150
1688074721955 Marionette INFO Marionette enabled
1688074721964 Marionette INFO Listening on port 50070
WebDriver BiDi listening on ws://localhost:50063
Read port: 50070
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
console.log: "TorConnect: init()"
console.log: "TorConnect: Entering Initial state"
console.log: "TorConnect: Observing topic 'TorProcessExited'"
console.log: "TorConnect: Observing topic 'TorLogHasWarnOrErr'"
console.log: "TorConnect: Observing topic 'torsettings:ready'"
1688074722139 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: "TorConnect: Will load after bootstrap => [about:blank]"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XPCOMUtils.jsm, line 161: TypeError: Cc[aContract] is undefined
console.info: TorMonitorService: tor started
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
Jun 29 21:38:43.576 [notice] Tor 0.4.7.13 (git-7c1601fb6edd780f) running on Windows 8 [or later] with Libevent 2.1.12-stable, OpenSSL 1.1.1u, Zlib 1.2.13, Liblzma N/A, Libzstd N/A and Unknown N/A as libc.
console.debug: TorMonitorService:
Control port not ready, waiting 0.05s.
Jun 29 21:38:43.576 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://support.torproject.org/faq/staying-anonymous/
Jun 29 21:38:43.576 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc-defaults".
Jun 29 21:38:43.576 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc".
Jun 29 21:38:43.576 [notice] Opening Control listener on 127.0.0.1:9151
Jun 29 21:38:43.576 [warn] Could not bind to 127.0.0.1:9151: Address already in use [WSAEADDRINUSE ]. Is Tor already running?
Jun 29 21:38:43.576 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Jun 29 21:38:43.576 [err] Reading config failed--see warnings above.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.warn: TorProcess: The watched Tor process exited with code 1.
console.info: TorProcess: Tor exited during startup. This might be due to an error in your torrc file, a bug in Tor or another program on your system, or faulty hardware. Until you fix the underlying problem and restart Tor, Tor Browser will not start.
console.debug: TorMonitorService:
Control port not ready, waiting 0.1s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
DevTools listening on ws://localhost:50063/devtools/browser/00ba47aa-1ab6-4c8a-8e33-cf268a7eecaa
console.debug: TorMonitorService:
Control port not ready, waiting 0.4s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.8s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 1.6s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 3.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 5575477e6225485e6b4a5547643c7b59 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.log: "TorConnect: Observed TorProcessExited"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/PromiseWorker.jsm, line 106: Error: Could not get children of file(C:\Users\MINHKH~1\AppData\Local\Temp\rust_mozprofilehgd6gq\thumbnails) because it does not exist
1688074793915 Marionette INFO Stopped listening on port 50070
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: uncaught exception: SessionFileInternal.getWriter() called too early! Please read the session file from disk first.
JavaScript error: resource://gre/modules/PromiseWorker.jsm, line 106: Error: Could not get children of file(C:\Users\MINHKH~1\AppData\Local\Temp\rust_mozprofilehgd6gq\thumbnails) because it does not exist
[Parent 8784, IPC I/O Parent] WARNING: file /var/tmp/build/firefox-b1c79245b9a4/ipc/chromium/src/base/process_util_win.cc:167
1688074948767 geckodriver INFO Listening on 127.0.0.1:50140
1688074952363 mozrunner::runner INFO Running command: "C:\\\\Users\\\\minhkhoitran\\\\Desktop\\\\Tor Browser\\\\Browser\\\\firefox.exe" "--marionette" "--remote-debugging-port" "50141" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofileYx7ybw"
console.info: SecurityLevel: Listening for messages from NoScript.
console.info: SecurityLevel: Initializing security-prefs.js
console.info: SecurityLevel: security-prefs.js initialization complete
console.info: TorProtocolService: SOCKS port type: TCP
console.info: TorProtocolService: SOCKS host: 127.0.0.1
console.info: TorProtocolService: SOCKS port: 9150
1688074953103 Marionette INFO Marionette enabled
1688074953119 Marionette INFO Listening on port 50148
WebDriver BiDi listening on ws://localhost:50141
Read port: 50148
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
console.log: "TorConnect: init()"
console.log: "TorConnect: Entering Initial state"
console.log: "TorConnect: Observing topic 'TorProcessExited'"
console.log: "TorConnect: Observing topic 'TorLogHasWarnOrErr'"
console.log: "TorConnect: Observing topic 'torsettings:ready'"
1688074953297 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: "TorConnect: Will load after bootstrap => [about:blank]"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XPCOMUtils.jsm, line 161: TypeError: Cc[aContract] is undefined
console.info: TorMonitorService: tor started
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.05s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
Jun 29 21:42:34.658 [notice] Tor 0.4.7.13 (git-7c1601fb6edd780f) running on Windows 8 [or later] with Libevent 2.1.12-stable, OpenSSL 1.1.1u, Zlib 1.2.13, Liblzma N/A, Libzstd N/A and Unknown N/A as libc.
Jun 29 21:42:34.658 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://support.torproject.org/faq/staying-anonymous/
Jun 29 21:42:34.658 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc-defaults".
Jun 29 21:42:34.658 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc".
Jun 29 21:42:34.658 [notice] Opening Control listener on 127.0.0.1:9151
Jun 29 21:42:34.658 [warn] Could not bind to 127.0.0.1:9151: Address already in use [WSAEADDRINUSE ]. Is Tor already running?
Jun 29 21:42:34.658 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Jun 29 21:42:34.658 [err] Reading config failed--see warnings above.
console.warn: TorProcess: The watched Tor process exited with code 1.
console.info: TorProcess: Tor exited during startup. This might be due to an error in your torrc file, a bug in Tor or another program on your system, or faulty hardware. Until you fix the underlying problem and restart Tor, Tor Browser will not start.
console.debug: TorMonitorService:
Control port not ready, waiting 0.1s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
DevTools listening on ws://localhost:50141/devtools/browser/f8ec9bec-ce46-4b00-8a3a-78d107a0c541
console.debug: TorMonitorService:
Control port not ready, waiting 0.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.4s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.8s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 1.6s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 3.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 493d2351292b3d46776e5a7b71677972 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.log: "TorConnect: Observed TorProcessExited"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1688075079988 Marionette INFO Stopped listening on port 50148
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: uncaught exception: SessionFileInternal.getWriter() called too early! Please read the session file from disk first.
JavaScript error: resource://gre/modules/PromiseWorker.jsm, line 106: Error: Could not get children of file(C:\Users\MINHKH~1\AppData\Local\Temp\rust_mozprofileYx7ybw\thumbnails) because it does not exist
[Parent 1900, IPC I/O Parent] WARNING: file /var/tmp/build/firefox-b1c79245b9a4/ipc/chromium/src/base/process_util_win.cc:167
1688075517768 geckodriver INFO Listening on 127.0.0.1:50250
1688075521282 mozrunner::runner INFO Running command: "C:\\\\Users\\\\minhkhoitran\\\\Desktop\\\\Tor Browser\\\\Browser\\\\firefox.exe" "--marionette" "--remote-debugging-port" "50251" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofileyyURzR"
console.info: SecurityLevel: Listening for messages from NoScript.
console.info: SecurityLevel: Initializing security-prefs.js
console.info: SecurityLevel: security-prefs.js initialization complete
console.info: TorProtocolService: SOCKS port type: TCP
console.info: TorProtocolService: SOCKS host: 127.0.0.1
console.info: TorProtocolService: SOCKS port: 9150
1688075521914 Marionette INFO Marionette enabled
1688075521921 Marionette INFO Listening on port 50258
WebDriver BiDi listening on ws://localhost:50251
Read port: 50258
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
console.log: "TorConnect: init()"
console.log: "TorConnect: Entering Initial state"
console.log: "TorConnect: Observing topic 'TorProcessExited'"
console.log: "TorConnect: Observing topic 'TorLogHasWarnOrErr'"
console.log: "TorConnect: Observing topic 'torsettings:ready'"
1688075522104 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: "TorConnect: Will load after bootstrap => [about:blank]"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XPCOMUtils.jsm, line 161: TypeError: Cc[aContract] is undefined
console.info: TorMonitorService: tor started
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.05s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
Jun 29 21:52:03.537 [notice] Tor 0.4.7.13 (git-7c1601fb6edd780f) running on Windows 8 [or later] with Libevent 2.1.12-stable, OpenSSL 1.1.1u, Zlib 1.2.13, Liblzma N/A, Libzstd N/A and Unknown N/A as libc.
console.warn: TorProcess: The watched Tor process exited with code 1.
console.info: TorProcess: Tor exited during startup. This might be due to an error in your torrc file, a bug in Tor or another program on your system, or faulty hardware. Until you fix the underlying problem and restart Tor, Tor Browser will not start.
Jun 29 21:52:03.537 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://support.torproject.org/faq/staying-anonymous/
Jun 29 21:52:03.537 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc-defaults".
Jun 29 21:52:03.537 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc".
Jun 29 21:52:03.553 [notice] Opening Control listener on 127.0.0.1:9151
Jun 29 21:52:03.553 [warn] Could not bind to 127.0.0.1:9151: Address already in use [WSAEADDRINUSE ]. Is Tor already running?
Jun 29 21:52:03.553 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Jun 29 21:52:03.553 [err] Reading config failed--see warnings above.
console.debug: TorMonitorService:
Control port not ready, waiting 0.1s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
DevTools listening on ws://localhost:50251/devtools/browser/dcb33e9e-4836-4ecf-9f14-1d52e6f35d80
console.debug: TorMonitorService:
Control port not ready, waiting 0.4s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.8s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 1.6s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 312f285f335525494053485a6421654e -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.log: "TorConnect: Observed TorProcessExited"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1688075604112 Marionette INFO Stopped listening on port 50258
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: uncaught exception: SessionFileInternal.getWriter() called too early! Please read the session file from disk first.
JavaScript error: resource://gre/modules/PageThumbs.jsm, line 718: AbortError: IOUtils.profileBeforeChange getter: IOUtils: profileBeforeChange phase has already finished
1688075684522 geckodriver INFO Listening on 127.0.0.1:50322
1688075688658 mozrunner::runner INFO Running command: "C:\\\\Users\\\\minhkhoitran\\\\Desktop\\\\Tor Browser\\\\Browser\\\\firefox.exe" "--marionette" "--remote-debugging-port" "50323" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofileiVwnng"
console.info: SecurityLevel: Listening for messages from NoScript.
console.info: SecurityLevel: Initializing security-prefs.js
console.info: SecurityLevel: security-prefs.js initialization complete
console.info: TorProtocolService: SOCKS port type: TCP
console.info: TorProtocolService: SOCKS host: 127.0.0.1
console.info: TorProtocolService: SOCKS port: 9150
1688075689261 Marionette INFO Marionette enabled
1688075689271 Marionette INFO Listening on port 50330
WebDriver BiDi listening on ws://localhost:50323
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
console.log: "TorConnect: init()"
console.log: "TorConnect: Entering Initial state"
console.log: "TorConnect: Observing topic 'TorProcessExited'"
console.log: "TorConnect: Observing topic 'TorLogHasWarnOrErr'"
console.log: "TorConnect: Observing topic 'torsettings:ready'"
Read port: 50330
1688075689654 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: "TorConnect: Will load after bootstrap => [about:blank]"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XPCOMUtils.jsm, line 161: TypeError: Cc[aContract] is undefined
console.info: TorMonitorService: tor started
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
Jun 29 21:54:50.730 [notice] Tor 0.4.7.13 (git-7c1601fb6edd780f) running on Windows 8 [or later] with Libevent 2.1.12-stable, OpenSSL 1.1.1u, Zlib 1.2.13, Liblzma N/A, Libzstd N/A and Unknown N/A as libc.
Jun 29 21:54:50.730 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://support.torproject.org/faq/staying-anonymous/
Jun 29 21:54:50.730 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc-defaults".
Jun 29 21:54:50.730 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc".
Jun 29 21:54:50.730 [notice] Opening Control listener on 127.0.0.1:9151
Jun 29 21:54:50.730 [warn] Could not bind to 127.0.0.1:9151: Address already in use [WSAEADDRINUSE ]. Is Tor already running?
Jun 29 21:54:50.730 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Jun 29 21:54:50.730 [err] Reading config failed--see warnings above.
console.warn: TorProcess: The watched Tor process exited with code 1.
console.info: TorProcess: Tor exited during startup. This might be due to an error in your torrc file, a bug in Tor or another program on your system, or faulty hardware. Until you fix the underlying problem and restart Tor, Tor Browser will not start.
console.debug: TorMonitorService:
Control port not ready, waiting 0.05s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.1s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.2s.
DevTools listening on ws://localhost:50323/devtools/browser/c03bb9f4-dfd0-475a-b53f-492733b46e2a
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.4s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.8s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 6e50333c7951546a6b6d7b7476712269 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.log: "TorConnect: Observed TorProcessExited"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1688075771476 Marionette INFO Stopped listening on port 50330
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: uncaught exception: SessionFileInternal.getWriter() called too early! Please read the session file from disk first.
JavaScript error: resource://gre/modules/PageThumbs.jsm, line 718: AbortError: IOUtils.profileBeforeChange getter: IOUtils: profileBeforeChange phase has already finished
1688079114842 geckodriver INFO Listening on 127.0.0.1:50415
1688079118051 mozrunner::runner INFO Running command: "C:\\\\Users\\\\minhkhoitran\\\\Desktop\\\\Tor Browser\\\\Browser\\\\firefox.exe" "--marionette" "--remote-debugging-port" "50416" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofile5wtzYO"
console.info: SecurityLevel: Listening for messages from NoScript.
console.info: SecurityLevel: Initializing security-prefs.js
console.info: SecurityLevel: security-prefs.js initialization complete
console.info: TorProtocolService: SOCKS port type: TCP
console.info: TorProtocolService: SOCKS host: 127.0.0.1
console.info: TorProtocolService: SOCKS port: 9150
1688079118592 Marionette INFO Marionette enabled
1688079118599 Marionette INFO Listening on port 50427
WebDriver BiDi listening on ws://localhost:50416
Read port: 50427
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
console.log: "TorConnect: init()"
console.log: "TorConnect: Entering Initial state"
console.log: "TorConnect: Observing topic 'TorProcessExited'"
console.log: "TorConnect: Observing topic 'TorLogHasWarnOrErr'"
console.log: "TorConnect: Observing topic 'torsettings:ready'"
1688079118736 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: "TorConnect: Will load after bootstrap => [about:blank]"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XPCOMUtils.jsm, line 161: TypeError: Cc[aContract] is undefined
console.info: TorMonitorService: tor started
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.05s.
Jun 29 22:52:01.172 [notice] Tor 0.4.7.13 (git-7c1601fb6edd780f) running on Windows 8 [or later] with Libevent 2.1.12-stable, OpenSSL 1.1.1u, Zlib 1.2.13, Liblzma N/A, Libzstd N/A and Unknown N/A as libc.
Jun 29 22:52:01.172 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://support.torproject.org/faq/staying-anonymous/
Jun 29 22:52:01.178 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc-defaults".
Jun 29 22:52:01.178 [notice] Read configuration file "C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Tor\torrc".
Jun 29 22:52:01.181 [notice] Opening Control listener on 127.0.0.1:9151
Jun 29 22:52:01.181 [warn] Could not bind to 127.0.0.1:9151: Address already in use [WSAEADDRINUSE ]. Is Tor already running?
Jun 29 22:52:01.181 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Jun 29 22:52:01.181 [err] Reading config failed--see warnings above.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.warn: TorProcess: The watched Tor process exited with code 1.
console.info: TorProcess: Tor exited during startup. This might be due to an error in your torrc file, a bug in Tor or another program on your system, or faulty hardware. Until you fix the underlying problem and restart Tor, Tor Browser will not start.
console.debug: TorMonitorService:
Control port not ready, waiting 0.1s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
DevTools listening on ws://localhost:50416/devtools/browser/63ccc55c-790e-4356-854c-a0627059c51e
console.debug: TorMonitorService:
Control port not ready, waiting 0.2s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.4s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 0.8s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.debug: TorMonitorService:
Control port not ready, waiting 1.6s.
console.error: TorMonitorService:
Cannot open a control port connection
Message: Error: authenticate 2664602173483636377c3a422b5a3a70 -> 515 Authentication failed: Password did not match HashedControlPassword *or* authentication cookie.
Stack:
_handleCommandReply@resource://torbutton/modules/tor-control-port.js:320:19
pushMessage@resource://torbutton/modules/tor-control-port.js:392:19
_startMessagePump@resource://torbutton/modules/tor-control-port.js:277:29
openPromptSync@resource://gre/modules/Prompter.jsm:1057:17
confirmEx@resource://gre/modules/Prompter.jsm:1465:10
confirmEx@resource://gre/modules/Prompter.jsm:305:14
showConfirm@resource://gre/modules/TorLauncherUtil.jsm:357:25
_processExitedUnexpectedly@resource://gre/modules/TorProcess.jsm:217:37
_watchProcess@resource://gre/modules/TorProcess.jsm:185:12
awaitPromise@resource://gre/modules/addons/XPIProvider.jsm:220:15
processFileChanges@resource://gre/modules/addons/XPIDatabase.jsm:3504:19
getNewSideloads@resource://gre/modules/addons/XPIProvider.jsm:3111:28
console.log: "TorConnect: Observed TorProcessExited"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1688079714680 Marionette INFO Stopped listening on port 50427
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: uncaught exception: SessionFileInternal.getWriter() called too early! Please read the session file from disk first.
JavaScript error: resource://gre/modules/PromiseWorker.jsm, line 106: Error: Could not get children of file(C:\Users\MINHKH~1\AppData\Local\Temp\rust_mozprofile5wtzYO\thumbnails) because it does not exist
[Parent 9204, IPC I/O Parent] WARNING: pipe error: 232: file /var/tmp/build/firefox-b1c79245b9a4/ipc/chromium/src/chrome/common/ipc_channel_win.cc:554

+ 1
- 1
MarketPlaces/Initialization/marketsList.txt View File

@ -1 +1 @@
ThiefWorld
MikesGrandStore

BIN
MarketPlaces/LionMarketplace/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/M00nkeyMarket/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/M00nkeyMarket/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/MikesGrandStore/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/MikesGrandStore/__pycache__/parser.cpython-311.pyc View File


+ 45
- 17
MarketPlaces/MikesGrandStore/crawler_selenium.py View File

@ -31,19 +31,47 @@ baseURL = 'http://4yx2akutmkhwfgzlpdxiah7cknurw6vlddlq24fxa3r3ebophwgpvhyd.onion
# Opens Tor Browser, crawls the website, then parses, then closes tor # Opens Tor Browser, crawls the website, then parses, then closes tor
#acts like the main method for the crawler, another function at the end of this code calls this function later #acts like the main method for the crawler, another function at the end of this code calls this function later
def startCrawling(): def startCrawling():
# opentor()
mktName = getMKTName()
# driver = getAccess()
# if driver != 'down':
# try:
# login(driver)
# crawlForum(driver)
# except Exception as e:
# print(driver.current_url, e)
# closetor(driver)
new_parse(mktName, baseURL, False)
print("Welcome to the darkweb pipeline. Do you want to run:")
print("[A] Entire pipeline\t[B] Crawler only\t[C] Parser only")
choice = input()
while choice not in {'A', 'B', 'C'}:
print("Choose the options below only!")
print("[A] Entire pipeline\t[B] Crawler only\t[C] Parser only")
choice = input()
if choice == 'A':
opentor()
mktName = getMKTName()
driver = getAccess()
if driver != 'down':
try:
login(driver)
crawlForum(driver)
except Exception as e:
print(driver.current_url, e)
closetor(driver)
new_parse(mktName, baseURL, False)
if choice == 'B':
opentor()
driver = getAccess()
if driver != 'down':
try:
login(driver)
crawlForum(driver)
except Exception as e:
print(driver.current_url, e)
closetor(driver)
if choice == 'C':
mktName = getMKTName()
new_parse(mktName, baseURL, False)
# Opens Tor Browser # Opens Tor Browser
@ -228,12 +256,12 @@ def crawlForum(driver):
driver.back() driver.back()
# comment out # comment out
break
# break
# comment out # comment out
if count == 1:
count = 0
break
# if count == 1:
# count = 0
# break
try: try:
link = driver.find_element(by=By.XPATH, value= link = driver.find_element(by=By.XPATH, value=


+ 1
- 0
MarketPlaces/MikesGrandStore/testing.py View File

@ -0,0 +1 @@
from MarketPlaces.MikesGrandStore.parser import mikesGrandStore_description_parser

BIN
MarketPlaces/ThiefWorld/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/ThiefWorld/__pycache__/parser.cpython-311.pyc View File


BIN
MarketPlaces/Tor2door/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/TorBay/__pycache__/crawler_selenium.cpython-311.pyc View File


BIN
MarketPlaces/TorMarket/__pycache__/crawler_selenium.cpython-311.pyc View File


+ 1
- 1
setup.ini View File

@ -5,7 +5,7 @@ firefox_profile_path = C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\T
geckodriver_path = C:\\NSF-REU\\dw_pipeline_test\\selenium\\geckodriver.exe geckodriver_path = C:\\NSF-REU\\dw_pipeline_test\\selenium\\geckodriver.exe
[Project] [Project]
project_directory = C:\Users\Helium\\PycharmProjects\dw_pipeline_test
project_directory = C:\\NSF-REU\\dw_pipeline_test\
shared_folder = \\VBoxSvr\Shared shared_folder = \\VBoxSvr\Shared
[PostgreSQL] [PostgreSQL]


Loading…
Cancel
Save