1,090 questions
0
votes
0
answers
41
views
Nix : how to link a file inside a package's nix-store directory?
I am attempting to configure the Tor daemon on nix-darwin. There is unfortunately no services.tor on this platform (yet ! maybe I'll port it from nixOS once I know enough Nix to do that)
I could ...
1
vote
0
answers
130
views
Include Tor as library in C (maybe through tor_api.h)
I was wondering if I could've use Tor and its functionalities as an external library in C codes. Note that this doesn't mean to just start the Tor process and connect with a SOCKS5 proxy, but to ...
2
votes
1
answer
61
views
HTTPS Issues with Express.js Hosting on Tor Network: Static Files Blocked Due to Same-Origin Policy
I am developing a website using the express framework with nodejs for school to learn about cybersecurity/encryption, i wanted to host my website over the Tor network for extra security / for fun. My ...
1
vote
0
answers
78
views
Getting "Too Many Files Open" Error in C Shared Library Despite ulimit Set to Unlimited
I'm working on a C program where I've created a shared library to intercept the connect system call and route the connection through a proxy server. The code works, but after running it for a while, I ...
0
votes
0
answers
13
views
How to connect the Tor core to Android Emulator?
I want to manage for my Android Emulator in Android studio using python's lib Uiautomator2.
And I have to change IP address at the right time. I have an experience used Tor core for web-parsing, but ...
0
votes
0
answers
134
views
How to host .onion website on the same server with normal sites (nginx)?
I have a running NginX server which already serves some .com sites. All work fine, as far as I'm concerned. I've also installed TOR and it is running, the .onion address is generated fine in the /var/...
0
votes
0
answers
158
views
Why Can't I Run Two Separate Tor Browsers with Selenium in Python Simultaneously?
I am trying to run two separate instances of the Tor Browser using Selenium in Python, but in two different scripts. I have set up two fresh Tor Browser installations and modified the torrc file in ...
0
votes
1
answer
103
views
Trouble renewing Tor IP address on Windows 11 using stem library
I'm trying to automate the renewal of Tor IP addresses using Python on Windows 11 with the stem library. However, I keep encountering the following error:
Error renewing Tor IP: [WinError 10061] No ...
0
votes
0
answers
96
views
how to forward proxy from yarp to tor
Client(http) <-> yarp(reverseProxy) <-> pproxy(http) <-> tor(socks5)
i have tor proxy server with socks5 protocol and use pproxy for send http request to socks5
i want forwarding ...
0
votes
1
answer
217
views
Is there a way to find out if a particular IP is coming from Tor or acting as a Tor exit node?
I want to add a method for my bot protection project that allows certain rules, one of these rules will be that the current IP belongs to Tor, not because connections from Tor are bad but rather to ...
-1
votes
1
answer
125
views
Connecting Tor in Google Colab
I try to make use of the following git (https://github.com/cubicbyte/reddit-account-generator) in my colab, whereas I am struggling with following Error:
How many accounts do you want to make? 1 2024-...
0
votes
0
answers
110
views
Error: SocksProxyAgent is not a constructor when trying to use socks-proxy-agent to proxy to a tor website
I am trying to connect to tor through socks-proxy-agent but it throws an error called:
SocksProxyAgent is not a constructor
I tried ChatGPT and also read somethings online and tried implementing but ...
0
votes
1
answer
101
views
whay proxychains is not working on ubuntu
guys where is the issue i do like the tutorial but my location do not change
i tried to do everything in tutorial but not working
this is the tutorial i used
https://www.youtube.com/watch?v=...
0
votes
1
answer
647
views
Intentionally rotating and holding IP addresses in web scraping [closed]
I am no scraping expert. I have a small fun Python project scraping data from a heavily guarded website, or so it seems, using Tor, Privoxy and a custom Python class. While there had been some caveats ...
0
votes
1
answer
160
views
Sending POST request with python to private OnionShare server in receive mode
Im trying to send data to a private onionshare server in receive mode with this simple program:
import socket
import requests
s = requests.session()
s.proxies['http'] = 'socks5h://127.0.0.1:9060'
s....