Browse Source

Khoi's personal development branch

main
Khoi 1 year ago
parent
commit
78b60b2b2e
34 changed files with 346 additions and 8 deletions
  1. +0
    -0
      Forums/BestCardingWorld/__init__.py
  2. BIN
      Forums/BestCardingWorld/__pycache__/__init__.cpython-311.pyc
  3. BIN
      Forums/BestCardingWorld/__pycache__/crawler_selenium.cpython-311.pyc
  4. BIN
      Forums/BestCardingWorld/__pycache__/parser.cpython-311.pyc
  5. BIN
      Forums/Classifier/__pycache__/__init__.cpython-311.pyc
  6. BIN
      Forums/Classifier/__pycache__/classify_product.cpython-311.pyc
  7. BIN
      Forums/Classifier/__pycache__/transformer.cpython-311.pyc
  8. +28
    -0
      Forums/CryptBB/HTML_Pages/06092023/Description/showthreadphptid15446.html
  9. +8
    -0
      Forums/CryptBB/HTML_Pages/06092023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88.html
  10. +28
    -0
      Forums/CryptBB/HTML_Pages/06122023/Description/showthreadphptid15446.html
  11. +28
    -0
      Forums/CryptBB/HTML_Pages/06122023/Description/showthreadphptid4695.html
  12. +8
    -0
      Forums/CryptBB/HTML_Pages/06122023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88.html
  13. +8
    -0
      Forums/CryptBB/HTML_Pages/06122023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88page2.html
  14. BIN
      Forums/CryptBB/__pycache__/crawler_selenium.cpython-311.pyc
  15. BIN
      Forums/CryptBB/__pycache__/parser.cpython-311.pyc
  16. +1
    -1
      Forums/CryptBB/crawler_selenium.py
  17. BIN
      Forums/DB_Connection/__pycache__/__init__.cpython-311.pyc
  18. BIN
      Forums/DB_Connection/__pycache__/db_connection.cpython-311.pyc
  19. BIN
      Forums/DWForums/__pycache__/__init__.cpython-311.pyc
  20. BIN
      Forums/DWForums/__pycache__/crawler_selenium.cpython-311.pyc
  21. BIN
      Forums/DWForums/__pycache__/parser.cpython-311.pyc
  22. BIN
      Forums/Dread/__pycache__/__init__.cpython-311.pyc
  23. BIN
      Forums/Dread/__pycache__/crawler_selenium.cpython-311.pyc
  24. BIN
      Forums/Dread/__pycache__/parser.cpython-311.pyc
  25. BIN
      Forums/Helium/__pycache__/crawler_selenium.cpython-311.pyc
  26. BIN
      Forums/Helium/__pycache__/parser.cpython-311.pyc
  27. BIN
      Forums/Initialization/__pycache__/__init__.cpython-311.pyc
  28. BIN
      Forums/Initialization/__pycache__/prepare_parser.cpython-311.pyc
  29. +6
    -4
      Forums/Initialization/forums_mining.py
  30. +228
    -0
      Forums/Initialization/geckodriver.log
  31. BIN
      Forums/Utilities/__pycache__/__init__.cpython-311.pyc
  32. BIN
      Forums/Utilities/__pycache__/utilities.cpython-311.pyc
  33. BIN
      Forums/__pycache__/__init__.cpython-311.pyc
  34. +3
    -3
      path.txt

+ 0
- 0
Forums/BestCardingWorld/__init__.py View File


BIN
Forums/BestCardingWorld/__pycache__/__init__.cpython-311.pyc View File


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


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


BIN
Forums/Classifier/__pycache__/__init__.cpython-311.pyc View File


BIN
Forums/Classifier/__pycache__/classify_product.cpython-311.pyc View File


BIN
Forums/Classifier/__pycache__/transformer.cpython-311.pyc View File


+ 28
- 0
Forums/CryptBB/HTML_Pages/06092023/Description/showthreadphptid15446.html
File diff suppressed because it is too large
View File


+ 8
- 0
Forums/CryptBB/HTML_Pages/06092023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88.html
File diff suppressed because it is too large
View File


+ 28
- 0
Forums/CryptBB/HTML_Pages/06122023/Description/showthreadphptid15446.html
File diff suppressed because it is too large
View File


+ 28
- 0
Forums/CryptBB/HTML_Pages/06122023/Description/showthreadphptid4695.html
File diff suppressed because it is too large
View File


+ 8
- 0
Forums/CryptBB/HTML_Pages/06122023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88.html
File diff suppressed because it is too large
View File


+ 8
- 0
Forums/CryptBB/HTML_Pages/06122023/Listing/httpcryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebidonionforumdisplayphpfid88page2.html
File diff suppressed because it is too large
View File


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


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


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

@ -278,7 +278,7 @@ def crawlForum(driver):
try: try:
temp = driver.find_element(by=By.XPATH, value= temp = driver.find_element(by=By.XPATH, value=
'/html/body/div/div[2]/div/div[2]/div') '/html/body/div/div[2]/div/div[2]/div')
link = temp.find_element_by_class_name('pagination_next').get_attribute('href')
link = temp.find_element(By.CLASS_NAME, 'pagination_next').get_attribute('href')
if link == "": if link == "":
raise NoSuchElementException raise NoSuchElementException


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


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


BIN
Forums/DWForums/__pycache__/__init__.cpython-311.pyc View File


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


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


BIN
Forums/Dread/__pycache__/__init__.cpython-311.pyc View File


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


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


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


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


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


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


+ 6
- 4
Forums/Initialization/forums_mining.py View File

@ -13,6 +13,8 @@ from Forums.Dread.crawler_selenium import crawler as crawlerDread
from Forums.Helium.crawler_selenium import crawler as crawlerHelium from Forums.Helium.crawler_selenium import crawler as crawlerHelium
# from Forums.Nulled.crawler_selenium import crawler as crawlerNulled # from Forums.Nulled.crawler_selenium import crawler as crawlerNulled
import time import time
@ -92,10 +94,10 @@ if __name__ == '__main__':
time.sleep(5) time.sleep(5)
# input("Directories created successfully. Press ENTER to continue\n") # input("Directories created successfully. Press ENTER to continue\n")
# if forum == "BestCardingWorld":
# crawlerBestCardingWorld()
# elif forum == "CryptBB":
# crawlerCryptBB()
if forum == "BestCardingWorld":
crawlerBestCardingWorld()
elif forum == "CryptBB":
crawlerCryptBB()
# elif forum == "DWForums": # elif forum == "DWForums":
# crawlerDWForums() # crawlerDWForums()
# elif forum == "Dread": # elif forum == "Dread":


+ 228
- 0
Forums/Initialization/geckodriver.log View File

@ -1402,3 +1402,231 @@ unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109 destructor()@TargetList.jsm:109
stop()@CDP.jsm:104 stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138 close()@RemoteAgent.jsm:138
1686338107879 geckodriver INFO Listening on 127.0.0.1:51075
1686338111699 mozrunner::runner INFO Running command: "C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\firefox.exe" "--marionette" "--remote-debugging-port" "51076" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofileu8YXT1"
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
1686338112578 Marionette INFO Marionette enabled
1686338112592 Marionette INFO Listening on port 51083
WebDriver BiDi listening on ws://localhost:51076
Read port: 51083
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'"
console.error: "getTorFile: cannot get torrc-defaults" (new Error("torrc-defaults file not found: C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Tor\\torrc-defaults", "resource://gre/modules/TorLauncherUtil.jsm", 245))
console.error: TorProcess:
startTor error:
Message: TypeError: torrcDefaultsFile is null
Stack:
_makeArgs@resource://gre/modules/TorProcess.jsm:296:23
start@resource://gre/modules/TorProcess.jsm:81:12
console.error: TorMonitorService:
Tor not running, not starting to monitor it.
1686338112799 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
DevTools listening on ws://localhost:51076/devtools/browser/b464dd6c-a2b4-4747-abf5-91a65da41755
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1686338644977 Marionette INFO Stopped listening on port 51083
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
1686598153333 geckodriver INFO Listening on 127.0.0.1:51891
1686598157033 mozrunner::runner INFO Running command: "C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\firefox.exe" "--marionette" "--remote-debugging-port" "51892" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofilerD1dVu"
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
1686598157823 Marionette INFO Marionette enabled
1686598157835 Marionette INFO Listening on port 51899
WebDriver BiDi listening on ws://localhost:51892
console.debug: TorProtocolService:
TorProtocolService initialized
Read port: 51899
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'"
console.error: "getTorFile: cannot get torrc-defaults" (new Error("torrc-defaults file not found: C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Tor\\torrc-defaults", "resource://gre/modules/TorLauncherUtil.jsm", 245))
console.error: TorProcess:
startTor error:
Message: TypeError: torrcDefaultsFile is null
Stack:
_makeArgs@resource://gre/modules/TorProcess.jsm:296:23
start@resource://gre/modules/TorProcess.jsm:81:12
console.error: TorMonitorService:
Tor not running, not starting to monitor it.
1686598158033 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
DevTools listening on ws://localhost:51892/devtools/browser/a0c36c3d-baed-43e4-9009-07ae8ddc5484
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1686598796022 Marionette INFO Stopped listening on port 51899
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_mozprofilerD1dVu\thumbnails) because it does not exist
1686598808506 geckodriver INFO Listening on 127.0.0.1:52049
1686598812216 mozrunner::runner INFO Running command: "C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\firefox.exe" "--marionette" "--remote-debugging-port" "52050" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofileEKwGuk"
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
1686598812928 Marionette INFO Marionette enabled
1686598812946 Marionette INFO Listening on port 52057
WebDriver BiDi listening on ws://localhost:52050
console.debug: TorProtocolService:
TorProtocolService initialized
console.debug: TorMonitorService:
TorMonitorService initialized
console.log: "TorSettings: loadFromPrefs()"
Read port: 52057
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'"
console.error: "getTorFile: cannot get torrc-defaults" (new Error("torrc-defaults file not found: C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Tor\\torrc-defaults", "resource://gre/modules/TorLauncherUtil.jsm", 245))
console.error: TorProcess:
startTor error:
Message: TypeError: torrcDefaultsFile is null
Stack:
_makeArgs@resource://gre/modules/TorProcess.jsm:296:23
start@resource://gre/modules/TorProcess.jsm:81:12
console.error: TorMonitorService:
Tor not running, not starting to monitor it.
1686598813112 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
DevTools listening on ws://localhost:52050/devtools/browser/7b5b542f-e070-4bda-b575-b1ecd806f015
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript error: resource://gre/modules/PromiseWorker.jsm, line 106: Error: Could not get children of file(C:\Users\MINHKH~1\AppData\Local\Temp\rust_mozprofileEKwGuk\thumbnails) because it does not exist
1686603659258 geckodriver INFO Listening on 127.0.0.1:52198
1686603662883 mozrunner::runner INFO Running command: "C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\firefox.exe" "--marionette" "--remote-debugging-port" "52199" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "C:\\Users\\MINHKH~1\\AppData\\Local\\Temp\\rust_mozprofile5otdde"
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
1686603663671 Marionette INFO Marionette enabled
1686603663689 Marionette INFO Listening on port 52208
WebDriver BiDi listening on ws://localhost:52199
Read port: 52208
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'"
console.error: "getTorFile: cannot get torrc-defaults" (new Error("torrc-defaults file not found: C:\\Users\\minhkhoitran\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Tor\\torrc-defaults", "resource://gre/modules/TorLauncherUtil.jsm", 245))
console.error: TorProcess:
startTor error:
Message: TypeError: torrcDefaultsFile is null
Stack:
_makeArgs@resource://gre/modules/TorProcess.jsm:296:23
start@resource://gre/modules/TorProcess.jsm:81:12
console.error: TorMonitorService:
Tor not running, not starting to monitor it.
1686603663879 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
DevTools listening on ws://localhost:52199/devtools/browser/25b985dd-e7c4-40e2-90b3-6cec6811a13e
1686603672297 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
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.
1686603752801 Marionette INFO Stopped listening on port 52208
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

BIN
Forums/Utilities/__pycache__/__init__.cpython-311.pyc View File


BIN
Forums/Utilities/__pycache__/utilities.cpython-311.pyc View File


BIN
Forums/__pycache__/__init__.cpython-311.pyc View File


+ 3
- 3
path.txt View File

@ -1,3 +1,3 @@
C:\Users\calsyslab\Desktop\Tor Browser\Browser\firefox.exe
C:\Users\calsyslab\Desktop\Tor Browser\Browser\TorBrowser\Data\Browser\profile.default
C:\Users\calsyslab\Documents\CALSysLab\threatIntelligence\DarkWebMining_Working\selenium\geckodriver.exe
C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\firefox.exe
C:\Users\minhkhoitran\Desktop\Tor Browser\Browser\TorBrowser\Data\Browser\profile.default
C:\NSF-REU\dw_pipeline_test\selenium\geckodriver.exe

Loading…
Cancel
Save