#CURL Connections with Tor
Install Apache, PHP, CURL & Tor with apt-get
sudo apt-get install -y apache2 php5 php5-curl torTor creates a proxy on your mashine with port 9050 for SOCKS5 connections.
| 31.13.24.0/21 | |
| 31.13.64.0/19 | |
| 31.13.64.0/24 | |
| 31.13.69.0/24 | |
| 31.13.70.0/24 | |
| 31.13.71.0/24 | |
| 31.13.72.0/24 | |
| 31.13.73.0/24 | |
| 31.13.75.0/24 | |
| 31.13.76.0/24 |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <arpa/inet.h> | |
| void ping(int s, char *message) | |
| { | |
| char buf[8192]; |
#CURL Connections with Tor
Install Apache, PHP, CURL & Tor with apt-get
sudo apt-get install -y apache2 php5 php5-curl torTor creates a proxy on your mashine with port 9050 for SOCKS5 connections.
| import _winreg as reg | |
| import win32file | |
| adapter_key = r'SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}' | |
| def get_device_guid(): | |
| with reg.OpenKey(reg.HKEY_LOCAL_MACHINE, adapter_key) as adapters: | |
| try: |